* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #000;
      line-height: 1.6;
    }

    /* HEADER */
header {
  width: 100%;
  background: #0d47a1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header img {
  height: 60px;
}

/* NAVIGATION */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffcc00;
}

/* MENU TOGGLE BUTTON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  right: 15px; /* LEFT SIDE FIX */
  top: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: #0d48a1b2;
    width: 100%;
    text-align: center;
    gap: 0;
    transition: 0.3s ease;
    padding: 10px 0;
  }

  nav ul li {
    padding: 15px 0;
  }

  nav ul.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  header img {
    margin-left: 60px; /* Toggle ke liye space create */
  }
}

    /* #herosection  */
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Image ko full screen me fit karega */
  object-position: center;  /* Image ka center focus rakhega */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

@media(max-width: 1024px) {
  .hero {
    height: 100vh;
  }
}

@media(max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .slides img {
    object-fit: cover;
    object-position: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

    /* #about section  */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f5f7fb;
      color: #333;
    }

    section {
      padding: 60px 10%;
    }

    .about-section h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }

    .about-section h2::after {
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background-color: #0056D2;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .about-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      margin-top: 40px;
    }

    .about-text {
      flex: 1;
      min-width: 280px;
      margin-right: 30px;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .about-text p {
      margin-bottom: 20px;
    }

    .about-highlights {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .highlight-box {
      flex: 1;
      min-width: 200px;
      background: #fff;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .highlight-box:hover {
      transform: translateY(-5px);
    }

    .highlight-box i {
      font-size: 2.5rem;
      color: #0056D2;
      margin-bottom: 10px;
    }

    .highlight-box h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #000;
    }

    .mission-card {
      flex: 1;
      min-width: 280px;
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .mission-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .mission-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
      }

      .about-text {
        margin-right: 0;
        margin-bottom: 30px;
      }
    }
    /* #ourvalue section  */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #ffffff;
    }

    section.values {
      text-align: center;
      padding: 60px 20px;
      background-color: #fff;
    }

    section.values h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #000;
    }

    .underline {
      width: 70px;
      height: 3px;
      background-color: #1E50FF;
      margin: 0 auto 40px;
      border-radius: 3px;
    }

    .values-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .value-box {
      background: #f8f9fc;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }

    .value-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    }

    .value-box i {
      font-size: 40px;
      color: #1E50FF;
      margin-bottom: 15px;
    }

    .value-box h3 {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #000;
    }

    .value-box p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      section.values h2 {
        font-size: 2rem;
      }
      .value-box {
        padding: 25px 15px;
      }
    }
    /* #our expertise  */
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f9fbff;
      color: #111;
    }

    .expertise {
      padding: 60px 20px;
      text-align: center;
      background: #f9fbff;
    }

    .expertise h2 {
      font-size: 2.2rem;
      font-weight: bold;
      color: #111;
      margin-bottom: 10px;
    }

    .expertise h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background: #2563eb; /* Blue underline */
      margin: 10px auto;
      border-radius: 3px;
    }

    .expertise p {
      color: #555;
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 1rem;
    }

    .expertise-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .expertise-card {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .expertise-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .expertise-card i {
      font-size: 2rem;
      color: #2563eb; /* Blue icons */
      margin-bottom: 15px;
      display: inline-block;
    }

    .expertise-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: bold;
      color: #111;
    }

    .expertise-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }
    /* #footer  */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    footer {
      background: #0f172a; /* Dark Blue */
      color: #fff;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    /* Left - Logo & About */
    .footer-logo {
      flex: 1;
      min-width: 220px;
      margin-bottom: 20px;
    }

    .footer-logo img {
      width: 140px;
      margin-bottom: 10px;
    }

    .footer-logo p {
      font-size: 0.95rem;
      color: #cbd5e1;
      line-height: 1.6;
    }

    /* Center - Links */
    .footer-links {
      flex: 1;
      min-width: 220px;
      margin-bottom: 20px;
    }

    .footer-links h3 {
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: #fff;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 8px;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #cbd5e1;
      transition: color 0.3s ease;
    }

    .footer-links ul li a:hover {
      color: #2563eb;
    }

    /* Right - Contact & Social */
    .footer-contact {
      flex: 1;
      min-width: 220px;
      margin-bottom: 20px;
    }

    .footer-contact h3 {
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: #fff;
    }

    .footer-contact p {
      color: #cbd5e1;
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .social-icons a {
      display: inline-block;
      color: #cbd5e1;
      font-size: 1.2rem;
      margin-right: 10px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #2563eb;
    }

    /* Bottom bar */
    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #1e293b;
      font-size: 0.85rem;
      color: #94a3b8;
    }

    /* Responsive */
    @media(max-width:768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-logo, .footer-links, .footer-contact {
        text-align: center;
      }
    }
    /* #whychooseus  */
        body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f8f9fa;
    }

    .why-choose-us {
      text-align: center;
      padding: 60px 20px;
      background: #ffffff;
    }

    .why-choose-us h2 {
      font-size: 2.8rem;
      margin-bottom: 10px;
      color: #2563eb;
    }

    .why-choose-us p {
      font-size: 1.1rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-box {
      background: #f0f4ff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    }

    .feature-box i {
      font-size: 40px;
      color: #2563eb;
      margin-bottom: 15px;
    }

    .feature-box h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #111;
    }

    .feature-box p {
      font-size: 1rem;
      color: #555;
    }

    /* Responsive Text */
    @media(max-width:768px) {
      .why-choose-us h2 {
        font-size: 2.2rem;
      }

      .why-choose-us p {
        font-size: 1rem;
      }
    }
    /* #map  */
    .map-section {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.map-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
}

.map-container {
  width: 100%;
  max-width: 1400px;
  height: 400px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media(max-width:768px) {
  .map-section h2 {
    font-size: 2rem;
  }

  .map-container {
    height: 300px;
  }
}
/* #contact  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fc;
}

.contact-section {
  text-align: center;
  padding: 60px 20px;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111;
}

.contact-section .line {
  width: 80px;
  height: 4px;
  background: #2962ff;
  margin: 15px auto;
  border-radius: 5px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 10px auto 40px;
  line-height: 1.6;
}

.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  width: 300px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 2.5rem;
  color: #2962ff;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.card p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
/* #whatsapp  */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #1ebd5a;
    transform: scale(1.1);
}