









 body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    /* 🔵 Fixed Topbar */
    .topbar {
      background-color:  #157497;
      color: white;
      font-size: 0.9em;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1001;
      Height:50px;
    
    }

    .topbar a {
      color:white;
      text-decoration: none;
      margin-left: 10px;
    }




    
    /* 🟢 Navbar Styles */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 0 20px; /* vertical padding  */
  position: fixed;
  top: 30px;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  height: 100px; /* ✅ lowercase */
}



  .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 0 auto;        /* ✅ Add this */
  position: relative;
    font-size: 1.5em;  
}


    .nav-links a {
      color: black;
      text-decoration: none;
      font-size: 1em;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #1abc9c;
    }


/* 🔽 Desktop Styles */
.dropdown {
  position: relative;

}

.dropdown-content {
  position: absolute;
  top: calc(100% + 15px);  
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 30px 40px;
  width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 10px;
  z-index: 1000;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .dropdown-content {
    position: relative;        /* ✅ Scroll with dropdown website */
    top: unset;                /* Remove absolute positioning */
    left: unset;
    transform: none;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
    display: none;             /* Initially hidden */
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dropdown.open .dropdown-content {
    display: grid;             /* Click se show ho */
  }

  .dropdown:hover .dropdown-content {
    display: none;             /* Disable hover on mobile */
  }
}







.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #004d80;  /* Darker for better visibility */
}

.service-item p {
  margin: 0;
  font-size: 14px;
  color: #555;     /* Improved contrast */
  line-height: 1.5;
}

.service-item img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
}

  .menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
}

    /* 🔁 Responsive Styles */
   @media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; /* 👈 Bilkul top pe */
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh; /* 👈 Full screen height */
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
  }

  .nav-links.active {
    transform: translateY(0);
  
}


      .menu-toggle {
        display: block;
      }

      nav {
        flex-wrap: wrap;
      }

      .logo {
        flex: none;
      }

      .topbar {
        flex-direction: column;
        text-align: center;
      }

      .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px;
      }

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

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




    /* Push content below fixed nav+topbar */
    .content {
      margin-top: 110px;
      padding: 20px;
    }























    /* Hero Section with background image */




/* === ABOUT SECTION === */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  padding: 60px 40px;
  background-color: #f1f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.about-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.about-content .green {
  color: green;
}

.about-content .red {
  color: red;
}

.about-content p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
}

/* === ABOUT IMAGE WITH SLIDER === */
.about-image {
  width: 500px;
  height: 350px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  flex-shrink: 0;
}

.slider-inner {
  display: flex;
  width: 2000px; /* Assuming 4 images */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-inner img {
  width: 500px;
  height: 300px;
  flex-shrink: 0;
  object-fit: contain;
}

/* === RESPONSIVE (MOBILE DEVICES) === */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .slider-inner {
    width: 100%;
    flex-wrap: nowrap;
  }

  .slider-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}


@media (min-width: 769px) {
  .about-image {
    width: 650px; /* 👈 zyada width desktop par */
    height: 400px;
  }

  .slider-inner img {
    width: 650px;
    height: 400px;
  }

  .slider-inner {
    width: 2600px; /* 650 * 4 (if 4 images) */
  }
}





   /* Container for cards */
#services .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}

/* Individual card */
.card {
  width: 100%;
  max-width: 500px;       /* Horizontal rectangle look */
  min-height: 160px;
  padding: 20px 25px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card ion-icon {
  font-size: 40px;
  color: #125e82;
  flex-shrink: 0;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #125e82;
}

.card p {
  font-size: 14px;
  color: #444;
}

.card-content {
  display: flex;
  flex-direction: column;
}



@media (max-width: 768px) {
  .card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .card-content {
    align-items: center;
  }

  .card ion-icon {
    font-size: 50px;
  }
}





  

#contact {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}

.contact-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

#contact form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
}

#contact iframe {
  flex: 1 1 400px;
  min-height: 450px;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  #contact iframe,
  #contact form {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

    #map {
      margin-top: 1.5rem;
      height: 200px;
      background: #eee;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #999;
      font-style: italic;
      border-radius: 6px;
    }

    /* Responsive */
    @media(max-width: 768px) {
      #services .cards {
        flex-direction: column;
        align-items: center;
      }
      .menu {
        display: block;
      }
      #nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 1rem;
        border-radius: 8px;
      }






      #nav li {
        margin-bottom: 1rem;
      }
    }



.sub-heading {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: black;
  font-weight: 600;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}






.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px; /* Add horizontal padding on small screens */
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  color: #222;
  text-align: left;
}

.faq-answer {
  display: none;
  padding-top: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.toggle-icon {
  background-color: #217da6;
  color: white;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  flex-shrink: 0; /* Keeps icon from shrinking */
  transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

/* ✅ Responsive styles */
@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    flex-direction: row;
  }

  .toggle-icon {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 1.6rem;
  }

  .faq-container {
    padding: 0 15px;
  }

  .faq-question {
    font-size: 0.95rem;
    gap: 8px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}











.footer-logo {
  width: 250px;
  height: 60px;
  object-fit: contain;
  display: block;
}



/* Tablet screens (e.g., iPad, 768–992px width) */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 130px;
  }
}


/* Large smartphones & small tablets (e.g., iPhone Plus, Pixel) */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 130px;
  }
}

/* Small smartphones (e.g., older iPhones, low-end Androids) */
@media (max-width: 480px) {
  .footer-logo {
    max-width: 110px;
  }
}

/* Standard laptops (MacBook, most Windows laptops) */
@media (max-width: 576px) {
  .footer-logo {
    width: 160px;
    height: auto;
  }
}







