/* =============================================
   MOBILE RESPONSIVE — ALL PAGES
   ============================================= */

@media (max-width: 768px) {

  /* ── Top Bar ── */
  .top-bar {
    flex-direction: column;
    padding: 8px 16px;
    gap: 6px;
    text-align: center;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  /* ── Navbar ── */
  .navbar {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px;
    position: relative;
  }

  .logo img {
    width: 140px;
    height: 56px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    gap: 0;
    background-color: #6bb23f;
    padding: 0 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    display: flex;
    max-height: 1000px;
    opacity: 1;
    padding: 10px 0;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
  }

  /* ── Mobile Menu Toggle Button ── */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b4a6f;
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .menu-toggle.open {
    transform: rotate(90deg);
    background: #093a57;
  }

  .enquire-btn {
    display: none;
  }

  .hero-banner {
    min-height: 55vh;
    height: auto;
  }

  .hero-slide {
    min-height: 55vh;
  }

  .hero-content {
    max-width: 90%;
    padding: 14px;
  }

  .hero-dots {
    bottom: 14px;
    gap: 8px;
  }

  .hero-content h1 {
    font-size: 1.7em;
  }

  .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 0.95em;
  }

  /* ── Dropdown on Mobile ── */
  .dropdown {
    width: 100%;
  }

  .dropbtn {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    background-color: rgba(0,0,0,0.15);
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: 100%;
  }

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

  .dropdown-content a {
    padding: 10px 30px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
  }

  .dropdown-content a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
    padding-left: 34px;
  }

  /* ── Hero Section ── */
  .hero-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 0.95em;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-icon {
    font-size: 90px;
  }

  /* ── Stats Bar ── */
  .home-stats {
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
  }

  .home-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 16px 20px;
    width: 100%;
  }

  .home-stat-item:last-child {
    border-bottom: none;
  }

  /* ── About Stats ── */
  .about-stats {
    flex-direction: column;
    padding: 30px 20px;
  }

  .about-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 16px 20px;
    width: 100%;
  }

  .about-stat-item:last-child {
    border-bottom: none;
  }

  /* ── Services Cards ── */
  .categories-section {
    padding: 40px 16px;
  }

  .categories-container {
    flex-direction: column;
    align-items: center;
  }

  .category-card {
    width: 100%;
    max-width: 380px;
  }

  /* ── Sub Banner ── */
  .sub-banner,
  .about-banner,
  .contact-banner,
  .st-banner {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .sub-banner-content h1,
  .about-banner-content h1,
  .contact-banner-content h1,
  .st-banner-content h1 {
    font-size: 2em;
  }

  .sub-banner-icon,
  .about-banner-icon,
  .contact-banner-icon,
  .st-banner-icon {
    font-size: 80px;
  }

  /* ── Why Items ── */
  .wd-why,
  .about-why,
  .home-why {
    padding: 40px 16px;
  }

  .wd-why-grid,
  .about-why-grid,
  .home-why-grid,
  .st-why-grid {
    flex-direction: column;
    align-items: center;
  }

  .wd-why-item,
  .about-why-item,
  .home-why-item,
  .st-why-item {
    width: 100%;
    max-width: 400px;
  }

  /* ── Service Cards Inner Pages ── */
  .wd-section,
  .st-section {
    padding: 40px 16px;
  }

  .wd-grid,
  .st-grid {
    flex-direction: column;
    align-items: center;
  }

  .wd-card,
  .st-card {
    width: 100%;
    max-width: 400px;
  }

  /* ── Process Steps ── */
  .wd-process,
  .st-process {
    flex-direction: column;
    align-items: center;
  }

  .wd-step,
  .st-step {
    width: 100%;
    max-width: 300px;
  }

  .wd-step-arrow,
  .st-step-arrow {
    transform: rotate(90deg);
  }

  /* ── About Who We Are ── */
  .about-who,
  .home-about {
    flex-direction: column;
    padding: 40px 16px;
    text-align: center;
  }

  .about-img-placeholder,
  .home-about-placeholder {
    width: 100%;
    height: 200px;
    font-size: 50px;
  }

  .about-who-text,
  .home-about-text {
    text-align: left;
  }

  /* ── Mission Vision Values ── */
  .about-mvv {
    padding: 40px 16px;
  }

  .about-mvv-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-mvv-card {
    width: 100%;
    max-width: 400px;
  }

  /* ── Services Overview ── */
  .about-services {
    padding: 40px 16px;
  }

  .about-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-service-card {
    width: 100%;
    max-width: 400px;
  }

  /* ── Contact Section ── */
  .contact-section {
    padding: 40px 16px;
  }

  .contact-info-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-card {
    width: 100%;
    max-width: 380px;
  }

  .contact-main {
    flex-direction: column;
  }

  .contact-form-box,
  .contact-map-box {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
  }

  .form-row {
    flex-direction: column;
  }

  /* ── Testimonial Slider ── */
  .home-feedback {
    padding: 40px 16px;
  }

  .feedback-card {
    min-width: calc(100% - 0px);
  }

  .t-prev { left: 0; }
  .t-next { right: 0; }

  /* ── CTA ── */
  .st-cta,
  .wd-cta {
    padding: 40px 20px;
  }

  .st-cta h2,
  .wd-cta h2 {
    font-size: 1.5em;
  }

  /* ── Section Titles ── */
  .section-title {
    font-size: 1.6em;
  }

  /* ── Footer ── */
  .footer {
    padding: 40px 16px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

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

  .footer-social-icons {
    flex-wrap: wrap;
  }

  /* ── Scroll Top ── */
  .scroll-top {
    width: 38px;
    height: 38px;
    font-size: 15px;
    bottom: 16px;
    right: 16px;
  }
}

/* ── Small Mobile ── */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.4em;
  }

  .section-title {
    font-size: 1.3em;
  }

  .sub-banner-content h1,
  .about-banner-content h1,
  .contact-banner-content h1,
  .st-banner-content h1 {
    font-size: 1.4em;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .top-bar {
    padding: 8px 12px;
  }

  .navbar {
    padding: 8px 12px;
  }

  .logo img {
    width: 130px;
    height: auto;
  }

  .hero-banner {
    min-height: 50vh;
  }

  .hero-slide {
    min-height: 50vh;
  }

  .hero-content {
    padding: 12px;
  }

  .hero-content p {
    font-size: 0.95em;
    margin-bottom: 16px;
  }

  .hero-btn {
    padding: 10px 14px;
    font-size: 0.95em;
  }

  .hero-dots {
    bottom: 10px;
  }

  .footer {
    padding: 30px 12px 20px;
  }

  .footer-container {
    gap: 18px;
  }

  .footer-links li,
  .footer-contact li {
    font-size: 12px;
  }
}
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #e9f9d9;
}

/* ── Top Bar ── */
.top-bar {
  background-color: #0b4a6f;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
}

.top-bar a {
  color: #aaa;
  text-decoration: none;
  margin-left: 5px;
}

.social-icons a {
  color: #aaa;
  margin-left: 10px;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #6bb23f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo img {
  width: 200px;
  height: 80px;
  margin-right: 10px;
}

.menu-toggle {
  display: none;
}

/* Only target .nav-links — NOT all ul inside navbar */
.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  align-items: center;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    gap: 0;
    background-color: #6bb23f;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    z-index: 999;
  }

  .nav-links.open {
    display: flex !important;
  }
}

.nav-links > li > a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.enquire-btn .btn {
  background-color: #0b4a6f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.enquire-btn .btn:hover {
  background-color: #093a57;
}

/* ── Dropdown ── */
.dropdown {
  position: relative;
}

.dropbtn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Hidden by default — div not ul, so no navbar ul styles leak in */
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background-color: #ffffff;
  min-width: 210px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 4px 0;
}

/* Arrow pointer */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  transform: rotate(45deg);
}

/* JS toggles this to show */
.dropdown-content.show {
  display: block;
}

/* Links inside dropdown */
.dropdown-content a {
  display: block;
  padding: 10px 18px;
  font-size: 0.92em;
  color: #0b4a6f;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #e9f9d9;
  color: #6bb23f;
  padding-left: 22px;
}
/* Hero Banner */
.hero-banner {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 24px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  outline: none;
}

.hero-dot.active,
.hero-dot:hover {
  background: #6bb23f;
  transform: scale(1.15);
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #6bb23f;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  background-color: #6bb23f;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #0b4a6f;
}

/* ── Hero Section ── */
.hero-section {
  text-align: center;
  padding: 60px 20px;
}

/* ── Page Hero (services page) ── */
.page-hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #0b4a6f;
  color: white;
}

.page-hero h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.page-hero h1 span {
  color: #6bb23f;
}

.page-hero p {
  font-size: 1em;
  color: #cce8f4;
}
.home-feedback {
  background-color: #e9f9d9;
  padding: 70px 60px;
  text-align: center;
}

.testimonial-wrapper {
  position: relative;
  margin-top: 30px;
  padding: 14px;
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(11, 74, 111, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 18px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.feedback-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 220px;
  padding: 18px 16px;
  box-sizing: border-box;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: center;
}

@media (max-width: 640px) {
  .testimonial-wrapper { max-width: 100%; padding: 12px; }
  .feedback-card { min-height: 260px; padding: 16px; }
}

.feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.feedback-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8dee3;
  border: 1px solid #cbd3db;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.active {
  background: #0b4a6f;
  transform: scale(1.15);
}

.t-prev,
.t-next {
  background-color: #0b4a6f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.t-prev i,
.t-next i {
  font-size: 1rem;
}

.t-prev:hover,
.t-next:hover {
  background-color: #6bb23f;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .testimonial-track {
    gap: 16px;
  }

  .feedback-card {
    min-width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .testimonial-controls {
    flex-direction: column;
    gap: 12px;
  }
}

.feedback-card p {
  color: #444;
  font-size: 0.88em;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #0b4a6f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.feedback-author h4 {
  color: #0b4a6f;
  font-size: 0.92em;
  margin: 0 0 3px 0;
}

.feedback-author span {
  color: #888;
  font-size: 0.82em;
}

/* Prev / Next Buttons */
.t-prev,
.t-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0b4a6f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-prev { left: 0px; }
.t-next { right: 0px; }

.t-prev:hover,
.t-next:hover {
  background-color: #6bb23f;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .home-feedback {
    padding: 40px 16px;
  }

  .feedback-card {
    min-width: calc(100% - 0px);
  }

  .t-prev { left: 0; }
  .t-next { right: 0; }
}

@keyframes floatCards {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.wd-hero {
  background: url('wd-hero.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.wd-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.wd-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.wd-hero-content h1 span {
  color: #6bb23f;
}

.wd-hero-content p {
  font-size: 1.1em;
  color: #cce8f4;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.wd-hero-btn {
  background-color: #6bb23f;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s;
}

.wd-hero-btn:hover {
  background-color: #559030;
}

.wd-hero-icon {
  font-size: 130px;
  color: rgba(107, 178, 63, 0.3);
}

/* Services Grid */
.wd-section {
  text-align: center;
  padding: 60px 40px;
  background-color: #e9f9d9;
}

.wd-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.wd-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.wd-card-icon {
  width: 52px;
  height: 52px;
  background-color: #e9f9d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6bb23f;
  margin-bottom: 16px;
}

.wd-card h3 {
  color: #0b4a6f;
  font-size: 1em;
  margin-bottom: 8px;
}

.wd-card p {
  color: #444;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Why Choose Us */
.wd-why {
  background-color: #ffffff;
  padding: 60px 60px;
  text-align: center;
}

.wd-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.wd-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #f4fbee;
  border-left: 4px solid #6bb23f;
  border-radius: 10px;
  padding: 20px 20px;
  width: 280px;
  text-align: left;
}

.wd-why-item i {
  font-size: 24px;
  color: #6bb23f;
  margin-top: 2px;
  flex-shrink: 0;
}

.wd-why-item h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.wd-why-item p {
  color: #444;
  font-size: 0.88em;
  line-height: 1.6;
  margin: 0;
}

/* Process Steps */
.wd-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.wd-step {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  width: 180px;
  text-align: center;
}

.wd-step-num {
  font-size: 2em;
  font-weight: bold;
  color: #6bb23f;
  margin-bottom: 8px;
}

.wd-step h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.wd-step p {
  color: #555;
  font-size: 0.85em;
  line-height: 1.5;
}

.wd-step-arrow {
  font-size: 22px;
  color: #6bb23f;
  padding: 0 4px;
}

/* Call To Action */
.wd-cta {
  background-color: #6bb23f;
  color: white;
  text-align: center;
  padding: 60px 40px;
}

.wd-cta h2 {
  font-size: 2em;
  margin-bottom: 14px;
}

.wd-cta p {
  font-size: 1em;
  margin-bottom: 28px;
  color: #e8f8d8;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.wd-cta-btn {
  background-color: #0b4a6f;
  color: white;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s;
}

.wd-cta-btn:hover {
  background-color: #093a57;
}

/* Responsive */
@media (max-width: 768px) {
  .wd-hero {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .wd-hero-icon {
    font-size: 80px;
  }

  .wd-hero-content h1 {
    font-size: 2em;
  }

  .wd-section,
  .wd-why {
    padding: 40px 20px;
  }

  .wd-process {
    flex-direction: column;
    align-items: center;
  }

  .wd-step-arrow {
    transform: rotate(90deg);
  }

  .navbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.dm-banner {
  background: url('dm-banner.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.dm-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.dm-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.dm-banner-content h1 span {
  color: #6bb23f;
}

.dm-banner-content p {
  font-size: 1.1em;
  color: #cce8f4;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.dm-banner-btn {
  background-color: #6bb23f;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s;
}

.dm-banner-btn:hover {
  background-color: #559030;
}

.dm-banner-icon {
  font-size: 130px;
  color: rgba(107, 178, 63, 0.3);
}

/* Services Grid */
.dm-section {
  text-align: center;
  padding: 60px 40px;
  background-color: #e9f9d9;
}

.dm-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.dm-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dm-card-icon {
  width: 52px;
  height: 52px;
  background-color: #e9f9d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6bb23f;
  margin-bottom: 16px;
}

.dm-card h3 {
  color: #0b4a6f;
  font-size: 1em;
  margin-bottom: 8px;
}

.dm-card p {
  color: #444;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Why Choose Us */
.dm-why {
  background-color: #ffffff;
  padding: 60px 60px;
  text-align: center;
}

.dm-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.dm-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #f4fbee;
  border-left: 4px solid #6bb23f;
  border-radius: 10px;
  padding: 20px 20px;
  width: 280px;
  text-align: left;
}

.dm-why-item i {
  font-size: 24px;
  color: #6bb23f;
  margin-top: 2px;
  flex-shrink: 0;
}

.dm-why-item h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.dm-why-item p {
  color: #444;
  font-size: 0.88em;
  line-height: 1.6;
  margin: 0;
}

/* Process Steps */
.dm-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.dm-step {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  width: 180px;
  text-align: center;
}

.dm-step-num {
  font-size: 2em;
  font-weight: bold;
  color: #6bb23f;
  margin-bottom: 8px;
}

.dm-step h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.dm-step p {
  color: #555;
  font-size: 0.85em;
  line-height: 1.5;
}

.dm-step-arrow {
  font-size: 22px;
  color: #6bb23f;
  padding: 0 4px;
}

/* Call To Action */
.dm-cta {
  background-color: #6bb23f;
  color: white;
  text-align: center;
  padding: 60px 40px;
}

.dm-cta h2 {
  font-size: 2em;
  margin-bottom: 14px;
}

.dm-cta p {
  font-size: 1em;
  margin-bottom: 28px;
  color: #e8f8d8;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.dm-cta-btn {
  background-color: #0b4a6f;
  color: white;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s;
}

.dm-cta-btn:hover {
  background-color: #093a57;
}

/* Responsive */
@media (max-width: 768px) {
  .dm-hero {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .dm-hero-icon {
    font-size: 80px;
  }

  .dm-hero-content h1 {
    font-size: 2em;
  }

  .dm-section,
  .dm-why {
    padding: 40px 20px;
  }

  .dm-process {
    flex-direction: column;
    align-items: center;
  }

  .dm-step-arrow {
    transform: rotate(90deg);
  }

  .navbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}

.st-banner {
  background: url('st-banner.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.st-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.st-banner-content {
  position: relative;
  z-index: 1;
}

.st-banner-content h1 {
  font-size: 2.8em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.st-banner-content h1 span {
  color: #6bb23f;
}

.st-banner-content p {
  font-size: 1.1em;
  color: #cce8f4;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.st-banner-btn {
  background-color: #6bb23f;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s;
  display: inline-block;
}

.st-banner-btn:hover {
  background-color: #559030;
}

.st-banner-icon {
  font-size: 130px;
  color: rgba(107, 178, 63, 0.3);
}

/* Services Grid */
.st-section {
  text-align: center;
  padding: 60px 40px;
  background-color: #e9f9d9;
}

.st-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.st-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.st-card-icon {
  width: 52px;
  height: 52px;
  background-color: #e9f9d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6bb23f;
  margin-bottom: 16px;
}

.st-card h3 {
  color: #0b4a6f;
  font-size: 1em;
  margin-bottom: 8px;
}

.st-card p {
  color: #444;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Why Choose Us */
.st-why {
  background-color: #ffffff;
  padding: 60px 60px;
  text-align: center;
}

.st-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.st-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #f4fbee;
  border-left: 4px solid #6bb23f;
  border-radius: 10px;
  padding: 20px 20px;
  width: 280px;
  text-align: left;
}

.st-why-item i {
  font-size: 24px;
  color: #6bb23f;
  margin-top: 2px;
  flex-shrink: 0;
}

.st-why-item h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.st-why-item p {
  color: #444;
  font-size: 0.88em;
  line-height: 1.6;
  margin: 0;
}

/* Process Steps */
.st-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.st-step {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  width: 180px;
  text-align: center;
}

.st-step-num {
  font-size: 2em;
  font-weight: bold;
  color: #6bb23f;
  margin-bottom: 8px;
}

.st-step h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.st-step p {
  color: #555;
  font-size: 0.85em;
  line-height: 1.5;
}

.st-step-arrow {
  font-size: 22px;
  color: #6bb23f;
  padding: 0 4px;
}

/* Call To Action */
.st-cta {
  background-color: #6bb23f;
  color: white;
  text-align: center;
  padding: 60px 40px;
}

.st-cta h2 {
  font-size: 2em;
  margin-bottom: 14px;
}

.st-cta p {
  font-size: 1em;
  margin-bottom: 28px;
  color: #e8f8d8;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.st-cta-btn {
  background-color: #0b4a6f;
  color: white;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s;
  display: inline-block;
}

.st-cta-btn:hover {
  background-color: #093a57;
}

/* Industries Icons */
.st-why-item i.fa-microchip,
.st-why-item i.fa-heartbeat,
.st-why-item i.fa-industry,
.st-why-item i.fa-chart-bar,
.st-why-item i.fa-shopping-bag,
.st-why-item i.fa-graduation-cap {
  font-size: 28px;
  color: #6bb23f;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .st-banner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .st-banner-icon {
    font-size: 80px;
  }

  .st-banner-content h1 {
    font-size: 2em;
  }

  .st-section,
  .st-why {
    padding: 40px 20px;
  }

  .st-process {
    flex-direction: column;
    align-items: center;
  }

  .st-step-arrow {
    transform: rotate(90deg);
  }

  .st-grid,
  .st-why-grid {
    flex-direction: column;
    align-items: center;
  }

  .st-card,
  .st-why-item {
    width: 100%;
    max-width: 400px;
  }

  .st-step {
    width: 100%;
    max-width: 300px;
  }

  .st-cta {
    padding: 40px 20px;
  }

  .st-cta h2 {
    font-size: 1.5em;
  }
 .navbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}
/* ── Section Titles ── */
.section-subtitle {
  color: #080f0d;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2em;
  color: #0b4a6f;
  margin-bottom: 40px;
}

.section-title span {
  color: #6bb23f;
}

/* ── Categories / Services Section ── */
.categories-section {
  text-align: center;
  padding: 60px 20px;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ── Service Cards ── */
.category-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 30px 20px;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card i {
  font-size: 50px;
  color: #6bb23f;
  margin-bottom: 15px;
}

.category-card h3 {
  color: #0b4a6f;
  margin-bottom: 10px;
}

.category-card p {
  color: #333;
  font-size: 0.95em;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ── Scroll To Top ── */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #6bb23f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 18px;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
  background-color: #0b4a6f;
}

.contact-banner {
  background-color: #0b4a6f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-banner-content h1 {
  font-size: 2.8em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-banner-content h1 span {
  color: #6bb23f;
}

.contact-banner-content p {
  font-size: 1.1em;
  color: #cce8f4;
  max-width: 500px;
  line-height: 1.7;
}

.contact-banner-icon {
  font-size: 130px;
  color: rgba(107, 178, 63, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-banner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .contact-banner-icon {
    font-size: 80px;
  }

  .contact-banner-content h1 {
    font-size: 2em;
  }
}
.contact-section {
  padding: 60px 40px;
  background-color: #e9f9d9;
}

/* Info Cards */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}

.contact-info-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 240px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background-color: #e9f9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6bb23f;
  margin: 0 auto 16px;
}

.contact-info-card h3 {
  color: #0b4a6f;
  margin-bottom: 8px;
  font-size: 1em;
}

.contact-info-card p {
  color: #555;
  font-size: 0.9em;
  margin: 2px 0;
}

.contact-info-card a {
  color: #0b4a6f;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card a:hover {
  color: #6bb23f;
}

/* Form + Map Layout */
.contact-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Form Box */
.contact-form-box {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 36px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 580px;
}

.contact-form-box h2 {
  font-size: 1.6em;
  color: #0b4a6f;
  margin-bottom: 8px;
}

.contact-form-box h2 span {
  color: #6bb23f;
}

.contact-form-box > p {
  color: #666;
  font-size: 0.92em;
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
  margin-bottom: 16px;
}

.form-group.full-width {
  width: 100%;
  flex: none;
}

.form-group label {
  font-size: 0.88em;
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group label span {
  color: #e63946;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.92em;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6bb23f;
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
}

.contact-submit-btn {
  background-color: #0b4a6f;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 0.95em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.contact-submit-btn:hover {
  background-color: #6bb23f;
}

.contact-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-message {
  display: none;
  margin-top: 16px;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95em;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background-color: #e9f9d9;
  color: #1f5d1f;
  border: 1px solid #6bb23f;
}

.form-message.error {
  display: block;
  background-color: #fde6e6;
  color: #a22020;
  border: 1px solid #e63946;
}

.form-message i {
  margin-right: 8px;
}

/* Map Box */
.contact-map-box {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 36px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}

.contact-map-box h2 {
  font-size: 1.6em;
  color: #0b4a6f;
  margin-bottom: 8px;
}

.contact-map-box h2 span {
  color: #6bb23f;
}

.contact-map-box > p {
  color: #666;
  font-size: 0.92em;
  margin-bottom: 20px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 16px;
  }

  .contact-info-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-card {
    width: 100%;
    max-width: 360px;
  }

  .contact-main {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-box,
  .contact-map-box {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
  }

  .form-row {
    flex-direction: column;
  }
}
/* About Banner */
.about-banner {
  background-color: #0b4a6f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.about-banner-content h1 {
  font-size: 2.8em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-banner-content h1 span {
  color: #6bb23f;
}

.about-banner-content p {
  font-size: 1.1em;
  color: #cce8f4;
  max-width: 500px;
  line-height: 1.7;
}

.about-banner-icon {
  font-size: 130px;
  color: rgba(107, 178, 63, 0.3);
}

/* About Section */
.home-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 60px;
  background-color: #ffffff;
}

.home-about-text {
  flex: 1;
  min-width: 280px;
}

.home-about-text p {
  color: #444;
  font-size: 0.95em;
  line-height: 1.8;
  margin-bottom: 14px;
}

.home-about-img {
  flex: 1;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.home-about-placeholder {
  width: 100%;
  max-width: 520px;
  min-height: 420px;
  border-radius: 24px;
  background-color: #f4f4f4;
  box-shadow: 0 24px 60px rgba(11, 74, 111, 0.18);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

.home-about-placeholder:hover {
  box-shadow: 0 30px 68px rgba(11, 74, 111, 0.24);
}

.home-about-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.35s ease;
}

.home-about-placeholder:hover .home-about-image {
  transform: scale(1.04);
}

.about-cta-link {
  display: inline-block;
  margin-top: 20px;
  background-color: #0b4a6f;
  color: white;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.92em;
  transition: background 0.2s;
}

.about-cta-link:hover {
  background-color: #6bb23f;
}

@media (max-width: 920px) {
  .home-about {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .home-about {
    flex-direction: column;
  }
}

/* Stats */
.about-stats {
  background-color: #0b4a6f;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 50px 40px;
}

.about-stat-item {
  text-align: center;
  padding: 20px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-stat-item:last-child {
  border-right: none;
}

.about-stat-item h3 {
  font-size: 2.6em;
  color: #6bb23f;
  margin-bottom: 6px;
}

.about-stat-item p {
  color: #cce8f4;
  font-size: 0.92em;
  margin: 0;
}

.about-stat-item {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-stat-item.animate {
  animation: statsReveal 10s ease infinite both;
}

.about-stat-item.animate:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.12);
}

.about-stat-item.animate:nth-child(1) {
  animation-delay: 0.1s;
}

.about-stat-item.animate:nth-child(2) {
  animation-delay: 0.3s;
}

.about-stat-item.animate:nth-child(3) {
  animation-delay: 0.6s;
}

.about-stat-item.animate:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes statsReveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  25% {
    opacity: 0.8;
    transform: translateY(12px) scale(0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  }
  75% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  }
}

/* Mission Vision Values */
.about-mvv {
  text-align: center;
  padding: 60px 40px;
  background-color: #e9f9d9;
}

.about-mvv-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.about-mvv-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  padding: 30px 22px;
  text-align: left;
  transition: transform 0.3s ease;
}

.about-mvv-card:hover {
  transform: translateY(-6px);
}

.about-mvv-icon {
  width: 52px;
  height: 52px;
  background-color: #e9f9d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6bb23f;
  margin-bottom: 16px;
}

.about-mvv-card h3 {
  color: #0b4a6f;
  font-size: 1em;
  margin-bottom: 10px;
}

.about-mvv-card p {
  color: #444;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Why Choose Us */
.about-why {
  background-color: #ffffff;
  padding: 60px 60px;
  text-align: center;
}

.about-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #f4fbee;
  border-left: 4px solid #6bb23f;
  border-radius: 10px;
  padding: 20px 20px;
  width: 280px;
  text-align: left;
}

.about-why-item i {
  font-size: 24px;
  color: #6bb23f;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-why-item h4 {
  color: #0b4a6f;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.about-why-item p {
  color: #444;
  font-size: 0.88em;
  line-height: 1.6;
  margin: 0;
}

/* Services Overview */
.about-services {
  text-align: center;
  padding: 60px 40px;
  background-color: #e9f9d9;
}

.about-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.about-service-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  padding: 30px 22px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-service-card i {
  font-size: 36px;
  color: #6bb23f;
  margin-bottom: 14px;
  display: block;
}

.about-service-card h3 {
  color: #0b4a6f;
  font-size: 1em;
  margin-bottom: 8px;
}

.about-service-card p {
  color: #444;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .about-banner-icon {
    font-size: 80px;
  }

  .about-banner-content h1 {
    font-size: 2em;
  }

  .about-who {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .about-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 100%;
  }

  .about-stat-item:last-child {
    border-bottom: none;
  }

  .about-mvv,
  .about-why,
  .about-services {
    padding: 40px 20px;
  }

  .about-mvv-grid,
  .about-why-grid,
  .about-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-mvv-card,
  .about-why-item,
  .about-service-card {
    width: 100%;
    max-width: 400px;
  }
}
/* ── Footer ── */
.footer {
  background-color: #0b4a6f;
  color: #ccc;
  padding: 60px 60px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column 1 — About */
.footer-about {
  max-width: 280px;
}

.footer-logo img {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.88em;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 20px;
}

.footer-social p {
  color: #ffffff;
  font-size: 0.92em;
  margin-bottom: 12px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-social-icons a:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}

/* Brand hover colors */
.footer-social-icons a.facebook:hover { background-color: #1877F2; }
.footer-social-icons a.whatsapp:hover { background-color: #25D366; }
.footer-social-icons a.linkedin:hover { background-color: #0077B5; }
.footer-social-icons a.instagram:hover { background-color: #C13584; }
.footer-social-icons a.youtube:hover { background-color: #FF0000; }

/* Ensure icons render crisply */
.footer-social-icons i {
  line-height: 1;
}

/* Columns */
.footer-col {
  min-width: 160px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #6bb23f;
  display: inline-block;
}

/* Quick Links & Services */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links li a i {
  color: #6bb23f;
  font-size: 11px;
}

.footer-links li a:hover {
  color: #6bb23f;
  padding-left: 4px;
}

/* Contact List */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(107, 178, 63, 0.15);
  border: 1px solid #6bb23f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6bb23f;
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact span {
  color: #aaa;
  font-size: 0.88em;
  line-height: 1.7;
  padding-top: 8px;
}

.footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #6bb23f;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.85em;
  color: #eff3f4;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-about {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    min-width: auto;
    width: 100%;
    max-width: 500px;
  }

  .footer-social-icons {
    justify-content: center;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Slide In Left ── */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Slide In Right ── */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Staggered delay for cards ── */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ── Hover Effects — Cards ── */
.category-card,
.st-card,
.wd-card,
.about-mvv-card,
.about-service-card,
.feedback-card,
.contact-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.category-card:hover,
.st-card:hover,
.wd-card:hover,
.about-mvv-card:hover,
.about-service-card:hover,
.feedback-card:hover,
.contact-info-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ── Hover Effects — Icons inside cards ── */
.category-card i,
.st-card .st-card-icon i,
.wd-card .wd-card-icon i,
.about-mvv-icon i,
.about-service-card i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-card:hover i,
.st-card:hover .st-card-icon i,
.wd-card:hover .wd-card-icon i,
.about-mvv-card:hover .about-mvv-icon i,
.about-service-card:hover i {
  transform: scale(1.2) rotate(-5deg);
  color: #0b4a6f;
}

/* ── Hover Effects — Buttons ── */
.btn,
.st-banner-btn,
.sub-banner-btn,
.about-cta-link,
.home-about-btn,
.st-cta-btn,
.wd-cta-btn,
.wd-hero-btn,
.hero-btn-primary,
.hero-btn-secondary,
.contact-submit-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.btn:hover,
.st-banner-btn:hover,
.sub-banner-btn:hover,
.about-cta-link:hover,
.home-about-btn:hover,
.st-cta-btn:hover,
.wd-cta-btn:hover,
.wd-hero-btn:hover,
.hero-btn-primary:hover,
.hero-btn-secondary:hover,
.contact-submit-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* ── Navbar link hover underline ── */
.nav-links > li > a {
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-links > li > a:hover::after {
  width: 100%;
}

/* ── Social icons (top bar + footer) ── */
/* Top bar small links */
.social-icons a {
  display: inline-block;
  color: #fff;
  transition: transform 0.18s ease, color 0.18s ease;
}
.social-icons a:hover {
  transform: translateY(-3px) scale(1.08);
  color: #cfead1;
}

/* Footer social buttons */
.footer-social {
  margin-top: 12px;
}
.footer-social p {
  margin: 0 0 6px 0;
  color: #333;
  font-weight: 600;
}
.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social-icons .social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f4f4;
  color: #0b4a6f;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(11, 74, 111, 0.06);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.footer-social-icons .social i { pointer-events: none; font-size: 16px; }

/* Brand hover colors */
.footer-social-icons .social.facebook:hover { background: #1877F2; color: #fff; transform: translateY(-4px); }
.footer-social-icons .social.whatsapp:hover  { background: #25D366; color: #fff; transform: translateY(-4px); }
.footer-social-icons .social.linkedin:hover  { background: #0A66C2; color: #fff; transform: translateY(-4px); }
.footer-social-icons .social.instagram:hover { background: radial-gradient(circle at 30% 30%, #feda75, #f58529 30%, #dd2a7b 60%, #8134af 80%); color: #fff; transform: translateY(-4px); }
.footer-social-icons .social.youtube:hover   { background: #FF0000; color: #fff; transform: translateY(-4px); }

@media (max-width: 768px) {
  .footer-social-icons { justify-content: flex-start; }
}

/* ── Why item hover ── */
.home-why-item,
.about-why-item,
.st-why-item,
.wd-why-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-why-item:hover,
.about-why-item:hover,
.st-why-item:hover,
.wd-why-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ── Process step hover ── */
.wd-step,
.st-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wd-step:hover,
.st-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ── Scroll to top button animation ── */
.scroll-top {
  transition: transform 0.2s ease, background 0.2s ease !important;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.1) !important;
}
.form-error {
  display: none;
  margin-top: 16px;
  background-color: #fdecea;
  color: #e63946;
  border: 1px solid #e63946;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92em;
  font-weight: 500;
}

.form-error i {
  margin-right: 6px;
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}