body {
   margin: 0;
   font-family: 'Roboto', sans-serif;
   padding-top: 80px; 
  }
  header {
   position: fixed;
   top: 0;
   width: 100%; 
   display: flex;
   justify-content: space-between;
   align-items: center;
   min-height: 80px; 
 padding: 5px 30px;
   background-color: rgba(0, 0, 0, 0.85);
   color: #fff;
    transition: background-color 0.3s, color 0.3s;
   z-index: 1000;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  } 

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.2);
}
  .logo img {
   width: 150px; 
   transition: opacity 0.3s;
  }  

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 100px;
    gap: 10px;
}

nav a, .dropbtn {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 20px;
    margin: 0;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

nav a:hover, .dropbtn:hover {
    color: #Fdd700;
    border-bottom: 2px solid #ffd700;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    top: 100%;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #333;
    text-align: center;
}

.dropdown:hover .dropdown-content {
    display: block;
}




.hero-section {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically center the items */
    justify-content: space-between; /* Space out the image and content */
    text-align: left; /* Align text to the left */
    color: #fff;
    padding: 20px;
    background-color: #333; /* Fallback background color */
}

/* Styling for the content part */
.hero-content {
    width: 50%; /* Take up half the width */
    z-index: 2;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for better text visibility */
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box; /* Ensure padding is included in width */
    
}

/* Styling for the image part */
.hero-image {
    width: 50%; /* Take up half the width */
    height: auto;
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column; /* Stack content and image vertically on smaller screens */
    }

    .hero-content, .hero-image {
        width: 100%; /* Full width for both content and image on smaller screens */
    }

    .hero-content {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}

/* Contact Form Container */
.contact-form-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background-color: #FFE754;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* Contact Form */
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Add space between form fields */
}

.contact-form-container label {
  font-size: 0.9em;
  color: #333;
  font-weight: bold;
}

.contact-form-container input,
.contact-form-container textarea {
  padding: 20px ;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
}

.contact-form-container input[type="submit"] {
  background-color: #444; /* Darker color for the button */
  color: #fff;
  font-size: 1em;
  padding: 15px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.contact-form-container input[type="submit"]:hover {
  background-color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 0px 30px 0px 30px;
    margin: 0px 20px 20px 20px;
  }
}


.hero-content h2 {
    font-size: 2em; /* Slightly smaller for subheading */
    color: #FFFDa2;
    font-weight: 500;
    margin-bottom: 1em;
}

.hero-content p {
    font-size: 1.2em;
    color: #FFFDa2;
    margin-bottom: .5em;
}



.contact-hero {
    background-color: #fde700; /* Adjust color to fit your theme */
    text-align: center;
    padding: 50px 20px;
}

.contact-hero h1,
.contact-hero p {
    margin: 0;
    padding: 10px;
}

.contact-content,
.contact-form-section {
    max-width: 800px;
    margin: 0px auto;
    padding: 5px 20px;
    color: black;
    font-style: oblique;
    background-color: #ffffff; /* White background for content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.contact-content address {
    font-style: normal;
    line-height: 1.6;
    white-space: pre-line; /* Ensures line breaks are respected */
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
}

.contact-form-section label {
    margin-top: 10px;
}

.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section input[type="tel"],
.contact-form-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form-section input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form-section input[type="submit"]:hover {
    background-color: #6A5100;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 30px 15px;
    }

    .contact-content,
    .contact-form-section {
        padding: 20px 15px;
    }
}


/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content horizontally */
    text-align: center; /* Center text inside the hero section */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.90);
    color: #fde700;
}

.hero-content {
    max-width: 80%; /* Adjust the max width as needed */
    padding: 20px;
}

/* Social Icon Styles - Updated */
.social-icon img {
    width: 24px; /* Adjust the size of the social icons */
    height: 24px;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

/* General Text Styles */
h2 {
    font-size: 1.5em;
    margin: 20px;
    color: #C80000;
}

p {
    margin: 20px;
    text-align: justify;
}

/* Background Image Style */
.image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    width: 20%;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 5px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section .social-links {
    text-align: center;
}

.footer-section .social-icon {
    margin: 0 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #ffd700;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }

    .image-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image, .content {
        width: 100%;
    }

    .content {
        margin-top: 20px;
    }
}

 .hero-content {
        max-width: 100%; /* Full width on smaller screens */
    }

