/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #fff;
    color: #111;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 700;
  }
  .logo span {
    color: #37df09;
  }
  
  /* Desktop Nav */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    position: relative;
  }
  .nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }
  .nav-links a:hover {
    color: #0a66c2;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    list-style: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    min-width: 200px;
    border-radius: 6px;
    z-index: 99;
  }
  .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #111;
  }
  .dropdown-menu a:hover {
    background: #f5f5f5;
    color: #0a66c2;
  }
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  
  /* Right side */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  /* Buttons */
  .btn-primary {
    background: #0bbe11f6;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
  }
  .btn-primary:hover {
    background: #004182;
  }
  .btn-outline {
    border: 2px solid #0a66c2;
    background: transparent;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #0a66c2;
  }
  .btn-outline:hover {
    background: #0a66c2;
    color: #fff;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 8%;
    gap: 40px;
  }
  .hero-text {
    flex: 1;
  }
  .sub-heading {
    color: gray;
    margin-bottom: 10px;
  }
  .hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  #typewriter {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    border-right: 3px solid #0a66c2;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
  }
  .description {
    margin-bottom: 25px;
    max-width: 500px;
  }
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  .hero-img {
    flex: 1;
  }
  .hero-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }
  
  /* ✅ Responsive */
  @media (max-width: 992px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 28px;
    }
    .hero-text #typewriter {
      font-size: 24px;
    }
    .hero-img img {
      max-width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 65px;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 15px 0;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    .nav-links.show {
      display: flex;
    }
    .nav-links li {
      text-align: center;
      padding: 10px 0;
    }
    .dropdown-menu {
      position: relative;
      top: 0;
      box-shadow: none;
      border-radius: 0;
    }
    .dropdown:hover .dropdown-menu {
      display: none; /* disable hover on mobile */
    }
    .dropdown.open .dropdown-menu {
      display: flex;
    }
  }
  

  /* 3 Steps Section */
.steps {
    padding: 60px 8%;
    text-align: center;
    background: #f9f9f9;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
  }
  
  .steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
  }
  .step:hover {
    transform: translateY(-5px);
  }
  
  .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0a66c2;
  }
  
  .step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .step p {
    font-size: 15px;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      align-items: center;
    }
    .step {
      max-width: 90%;
    }
  }

  



  /* =============== Why Choose Us =============== */
.why-choose {
    padding: 60px 8%;
    background: #fff;
  }
  
  .why-choose .section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #111;
  }
  
  .choose-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  /* Card */
  .choose-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.09);
  }
  
  /* Icon (supports emoji or <img>) */
  .choose-card .icon {
    font-size: 48px;               /* for emoji */
    line-height: 1;
    margin-bottom: 14px;
    display: inline-block;
    color: #0a66c2;                 /* primary accent */
  }
  .choose-card .icon img {
    height: 52px;                   /* for image icons */
    width: auto;
    display: inline-block;
  }
  
  /* Headings & text */
  .choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
  }
  .choose-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
  }
  
  /* =============== Responsive =============== */
  @media (max-width: 1024px) {
    .choose-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }
  }
  
  @media (max-width: 680px) {
    .why-choose { padding: 48px 6%; }
    .why-choose .section-title { font-size: 24px; margin-bottom: 24px; }
    .choose-container { grid-template-columns: 1fr; }
    .choose-card { padding: 22px 18px; }
    .choose-card h3 { font-size: 18px; }
    .choose-card p { font-size: 14px; }
  }
  




  /* Keywords Section */
.keywords-section {
  padding: 50px 8%;
  background: #f8f9fa;
}

.keywords-section .section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
}

/* Table Styles */
.keywords-table {
  overflow-x: auto;   /* mobile scroll */
}

.keywords-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.keywords-table td {
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.keywords-table tr:nth-child(even) {
  background: #fafafa;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .keywords-table td {
    font-size: 14px;
    padding: 12px 14px;
  }
}




/* Achievements */
.achievements {
  padding: 60px 8%;
  background: #f9fafb;
  text-align: center;
}

.achievements .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ach-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.09);
}

.ach-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.ach-value {
  font-size: 34px;
  font-weight: 800;
  color: #0a66c2;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.ach-label {
  font-size: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .achievements { padding: 48px 6%; }
  .achievements-grid { grid-template-columns: 1fr; }
  .ach-value { font-size: 30px; }
}






/* Testimonials Section */
.testimonials {
  padding: 60px 8%;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

/* Slider Wrapper */
.testimonial-slider {
  overflow: hidden;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

/* Track */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Testimonial Card */
.testimonial-card {
  min-width: 100%;
  background: #f9fafb;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: #0a66c2;
}

/* Navigation Buttons */
.testimonials button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0a66c2;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}
.testimonials button:hover {
  background: #084b8a;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Responsive */
@media (max-width: 640px) {
  .testimonial-card {
    padding: 20px 16px;
  }
  .testimonial-text {
    font-size: 14px;
  }
}




.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.btn {
  padding: 12px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Color categories */
.btn-green { background: #2e7d32; }
.btn-green:hover { background: #1b5e20; }

.btn-blue { background: #1565c0; }
.btn-blue:hover { background: #0d47a1; }

.btn-yellow { background: #f9a825; }
.btn-yellow:hover { background: #f57f17; }

/* Mobile spacing */
@media (max-width: 600px) {
  .btn {
    font-size: 14px;
    padding: 10px;
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 1000;
  transition: 0.3s;
  font-family: Arial, sans-serif;
}

.whatsapp-float:hover {
  background: #1ebe5c;
  transform: scale(1.05);
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .whatsapp-float {
    font-size: 14px;
    padding: 10px 14px;
    bottom: 15px;
    right: 15px;
  }
}




 /* Container + heading */
 


  .partners-text {
    background: #f7f9f7;
    padding: 28px 16px;
    font-family: Arial, sans-serif;
  }

  .partners-text h2 {
    text-align: center;
    color: #1b5e20;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .partners-marquee {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 12px 0;
  }

  .partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: slide 40s linear infinite;
    will-change: transform;
  }

  .partners-track span {
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .partners-track span:hover {
    color: #1565c0;
  }

  @keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* Pause on hover */
  .partners-marquee:hover .partners-track {
    animation-play-state: paused;
  }

  /* Mobile adjustments */
  @media (max-width: 600px) {
    .partners-track {
      gap: 30px;
      animation-duration: 30s;
    }
    .partners-track span {
      font-size: 15px;
    }
  }



  .tagline-section {
    background: linear-gradient(135deg, #1b5e20, #43a047);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    margin-top: 30px;
  }

  .tagline-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }

  .tagline-box h2 {
    font-size: 30px;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .tagline-box p {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
  }

  .tagline-box span {
    font-weight: 700;
    color: #ffeb3b;
  }

  /* Mobile Friendly */
  @media (max-width: 600px) {
    .tagline-box h2 { font-size: 22px; }
    .tagline-box p { font-size: 16px; }
  }



  .footer {
    background: #1b1b1b;
    color: #ddd;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 250px;
  }

  .footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 12px;
  }

  .footer-about p {
    line-height: 1.6;
    font-size: 14px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-links ul li a:hover {
    color: #43a047;
  }

  .footer-contact p {
    margin: 6px 0;
    font-size: 14px;
  }

  .whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }

  .whatsapp-btn:hover {
    background: #1ebe5c;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #aaa;
    margin-top: 20px;
  }

  /* Mobile Friendly */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  }