/* Top Bar and Hamburger Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Top Bar */
  @keyframes scrollText {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* Adjust based on number of repeats */
  }

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background-color: #f2f2f2;
  flex-wrap: wrap;
  position: relative;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 20px;
}

.nav-center img {
  width: 150px;
  max-height: 60px;
  margin-right: 100px;
}

.nav-right a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

.nav-right a:hover {
  color: #d9251c;
}


/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.dropbtn:hover {
  color: #d9251c;
}

.dropdown-list {
  list-style-type: none;  /* Changed from 'disc' to 'none' */
  padding-left: 0;        /* Optional: remove extra left space */
  margin: 0;
  width: 260px;
}

.dropdown-list li {
  padding: 0px 10px;
}

.dropdown-list li a {
  color: #000;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  display: block;
}

.dropdown-list li a:hover {
  background-color: #eee;
  border-radius: 4px;
}

.dropdown-content {
  position: absolute;
  background-color: white;
  min-width: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 100;
  top: 100%;
  left: 0;
  border-radius: 5px;
  margin-left: -25px;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);

  transition: max-height 0.4s ease, visibility 0.3s ease;
}




.dropdown-content a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: #000;
}

.dropdown-content a:hover {
  background-color: #eee;
}

.dropdown:hover .dropdown-content {
  max-height: 500px; /* adjust as needed */
  visibility: visible;
  pointer-events: auto;
  animation: dropdownFade 0.3s ease-in-out forwards;
}



@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Mobile */
.mobile-header {
  display: none;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Slide-Out Mobile Menu */
/* Slide-Out Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  background: #f2f2f2;
  transform: translateX(100%); /* start hidden off-screen to the right */
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}

.mobile-menu.active {
  transform: translateX(0); /* slide into view */
}


.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.close-btn {
  font-size: 28px;
  color: #000;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 20px;
}

.submenu-toggle {
  cursor: pointer;
  padding: 12px 0;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.submenu {
  display: none;
  flex-direction: column;
  margin-left: 10px;
}

.submenu a {
  padding: 8px 0;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-left,
  .nav-right,
  .nav-center {
    display: none !important;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #f2f2f2;
  }

  .mobile-logo {
    max-height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-left: -25px; /* Add this */
  }

  .hamburger {
    display: block;
    margin-left: 100px;  /* Add this */
  }
}




/* contact Banner Section */
* {
      margin: 0;
      padding: 0;
    }

    body, html {
      width: 100%;
      overflow-x: hidden;
    }

    .hero-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .hero-wrapper img {
      width: 100%;
    height: 600px;
    display: block;
    }

    /* ✅ Mobile L: 600px–767px */
@media (max-width: 767px) and (min-width: 600px) {
  .hero-wrapper img {
    width: 100%;
    height: auto;
  }
}

/* ✅ Mobile M: 400px–599px */
@media (max-width: 599px) and (min-width: 400px) {
  .hero-wrapper img {
    width: 100%;
    height: auto;
  }
}

/* ✅ Mobile S: below 400px */
@media (max-width: 399px) {
  .hero-wrapper img {
    width: 100%;
    height: auto;
  }
}


/* Contact Section */

.contact-heading-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.contact-heading-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #333;
  text-align: center;
  margin-top: -10px;
  font-family: 'Playfair Display', serif;
}

/* ✅ Tablet Screens */
@media (max-width: 768px) {
  .contact-heading-section {
    margin: 60px auto;
    padding: 0 15px;
  }

  .contact-heading-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

/* ✅ Small Mobile Screens */
@media (max-width: 480px) {
  .contact-heading-section {
    margin: 40px auto;
    padding: 0 10px;
  }

  .contact-heading-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}



/* Address Section */

body {
  margin: 0;
  padding: 40px;
  background-color: #fff;
}

.contact-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  border: 3px solid #28a745;
  border-radius: 25px;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-column {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  padding: 20px;
  text-align: center;
}

.contact-column h2 {
  color: black;
  font-size: 24px;
  margin-bottom: 15px;
  font-family: Sans-serif;
}

.contact-column p {
  font-size: 18px;
  margin: 10px 0;
  color: #000;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
.contact-column h2 {
  font-size: 22px;
}

.contact-column p {
  font-size: 16px;
}
}



/* Contact Form Section */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 50px auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
  flex: 1;
  min-width: 280px;
  margin-right: 30px;
}

.contact-form h1 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: left;
  font-family: Sans-serif;
}

.subtitle {
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
  margin-bottom: 30px;
  color: #28a745;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Playfair Display', serif;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: #d9251c;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  width: 120px;
  font-size: 18px;
}

.contact-info {
  min-width: 250px;
  margin-top: 150px;
}

.info-item {
  text-align: center;
  margin-bottom: 25px;
  color: #555;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.info-item i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  color: #28a745;
}

.contact-social-icons {
  text-align: center;
  margin-top: 20px;
}

.contact-social-icons a {
  text-decoration: none;
  margin: 0 8px;
  color: #28a745;
  font-size: 24px;
}

/* ✅ Responsive Styling */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
  }

  .contact-form {
    margin-right: 0;
  }

  .contact-form h1,
  .subtitle {
    text-align: center;
  }

  .contact-info {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
.contact-form h1 {
  font-size: 28px;
}

  .subtitle {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }

  .contact-form button {
    width: 100%;
    font-size: 16px;
  }

  .info-item {
    font-size: 16px;
  }

  .info-item i {
    font-size: 26px;
  }

  .contact-social-icons a {
    font-size: 22px;
  }
}



/* Map Section */

body {
  margin: 0;
}

.map-section {
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 20px;
  font-size: 36px;
  color: #333;
  font-family: Sans-serif;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .map-section h2 {
    font-size: 28px;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-section h2 {
    font-size: 24px;
  }

  .map-container iframe {
    height: 250px;
  }
}
