.footer-classic .footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.86rem;
  position: relative;
  transition: color .2s ease;
}

/* Hero background thumbnails navigator */
.hero .hero-bg-thumbs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 99;
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  /* hidden until hovered */
  transition: opacity .25s ease;
  /* smooth reveal */
}

.hero .hero-bg-thumbs .thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0.85;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero .hero-bg-thumbs .thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.hero .hero-bg-thumbs .thumb.active {
  border-color: #19b87a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  opacity: 1;
}

/* Reveal thumbnails only when hovering/focusing that area */
.hero .hero-bg-thumbs:hover,
.hero .hero-bg-thumbs:focus-within {
  opacity: 1;
}

/* Always visible on touch devices and very small screens (no hover) */
@media (hover: none),
(max-width: 640px) {
  .hero .hero-bg-thumbs {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero .hero-bg-thumbs {
    bottom: 10px;
    gap: 8px;
    padding: 6px 8px;
  }

  .hero .hero-bg-thumbs .thumb {
    width: 32px;
    height: 32px;
  }
}

/* Remove any residual white from nested elements or pseudo-elements */
.hero-ticker .ticker-item *,
.hero-ticker .ticker-item::before,
.hero-ticker .ticker-item::after {
  background: transparent !important;
}

/* Ensure segments don't introduce background color */
.hero-ticker .ticker-segment {
  background: transparent !important;
}

.footer-classic .footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #19b87a;
  transition: width .2s ease;
}

.footer-classic .footer-nav a:hover {
  color: #ffffff;
}

.footer-classic .footer-nav a:hover::after {
  width: 100%;
}

.footer-classic .footer-cta-btn {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  padding: 10px 18px;
  border-radius: 28px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  background: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-classic .footer-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Center column separators on dark background */
.footer-classic .footer-center {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.footer-classic .footer-center::before,
.footer-classic .footer-center::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-classic .footer-center::before {
  left: -24px;
}

.footer-classic .footer-center::after {
  right: -24px;
}

@media (max-width: 992px) {
  .site-footer.footer-classic .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-classic .footer-center::before,
  .footer-classic .footer-center::after {
    display: none;
  }
}

/* Ensure footer containers aren't constrained by the global .container override */
.site-footer .container,
.site-footer.footer-classic .container,
.footer-classic .footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile refinements for footer */
@media (max-width: 768px) {
  .footer-classic .footer-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  /* Stack footer columns: left -> center -> right */
  .footer-classic .footer-top {
    grid-template-columns: 1fr;
    row-gap: 24px;
    align-items: start;
  }

  .footer-classic .footer-left {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-classic .footer-center {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-classic .footer-right {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-classic .footer-top>* {
    justify-self: stretch;
  }

  .footer-classic .footer-left,
  .footer-classic .footer-right,
  .footer-classic .footer-center {
    text-align: center;
    width: 100%;
  }

  .footer-classic .footer-logo.monochrome {
    margin: 0 auto;
  }

  .footer-classic .footer-tagline {
    text-align: center;
  }

  .footer-classic .footer-address {
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
    text-align: left;
    padding-right: 84px;
    /* avoid overlap with floating buttons */
    box-sizing: border-box;
  }

  .site-footer.footer-classic .container {
    padding: 0 16px;
  }

  .footer-classic .footer-bottom .container {
    padding: 0 16px;
  }

  .footer-classic .footer-center {
    padding: 0;
  }

  .site-footer.footer-classic {
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .site-footer.footer-classic .footer-right .footer-address {
    padding-right: 104px;
  }
}

/* Home page specific styles */

/* Late overrides to ensure home footer mobile fixes win the cascade */
@media (max-width: 768px) {

  .site-footer.footer-classic .container,
  .footer-classic .footer-bottom .container {
    padding: 0 16px;
  }

  .site-footer.footer-classic {
    padding-bottom: 10px;
  }

  .footer-classic .footer-right .footer-address {
    padding-right: 72px;
  }

  .footer-classic .footer-center {
    padding: 0;
  }

  .footer-classic .footer-tagline {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 8px;
  }

  .footer-classic .footer-nav a {
    letter-spacing: 1px;
  }
}

/* Sticky Social Media Icons */
.sticky-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 8px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

/* Floating Enquire Now button (separate element) */
.floating-enquire-btn {
  position: fixed;
  right: 16px;
  bottom: 184px;
  /* sits above the WhatsApp icon group */
  z-index: 901;
  /* above social strip */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  border-radius: 999px;
  background: #f00101f4;
  /* red */
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.1px;
  font-size: 9px;
  box-shadow: 0 5px 5px rgba(229, 56, 53, 0.158);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 57, 53, 0.45);
}

.floating-enquire-btn:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .floating-enquire-btn {
    bottom: 170px;
    /* social icons are slightly smaller/padded on mobile */
    padding: 10px 16px;
    font-size: 13px;
  }
}

.sticky-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sticky-social .social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(8, 156, 68, 0.3);
}

.sticky-social .social-icon.whatsapp {
  background: #25D366;
}

.sticky-social .social-icon.linkedin {
  background: #0077B5;
}

.sticky-social .social-icon.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45);
}

/* Sticky Cards */
.sticky-cards {
  position: fixed;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  gap: 1.8vh;
  z-index: 900;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) rgba(0, 0, 0, 0.1);
  padding: 2vh 0;
  margin: 0;
}

/* Custom scrollbar for WebKit browsers */
.sticky-cards::-webkit-scrollbar {
  width: 6px;
}

.sticky-cards::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.sticky-cards::-webkit-scrollbar-thumb {
  background-color: var(--brand);
  border-radius: 10px;
}

/* When sticky cards are placed inside the hero, make them overlap the hero and not affect layout */
.hero .sticky-cards.in-hero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0.9;
  max-height: 80vh;
  overflow-y: auto;
  padding: 15px 0;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) rgba(0, 0, 0, 0.1);
}

/* Right side address cards */
.hero .sticky-cards.in-hero:not(.left-side) {
  right: 20px;
  left: auto;
  align-items: flex-end;
}

.hero .policy-cards.in-hero {
  left: 0;
  padding-left: 5px;
  /* ensure fully visible, no slide-in offset */
  transform: translateY(-50%);
  align-items: flex-start;
  /* left align the stack */
}

.hero .address-cards.in-hero {
  right: 0;
  padding-right: 5px;
  padding-left: 5px;
  /* ensure fully visible, no slide-in offset */
  transform: translateY(-50%);
  align-items: flex-end;
  /* right align the stack */
}

/* Prevent in-hero cards from hiding or shifting when 'collapsed' is toggled by JS */
.hero .sticky-cards.in-hero .sticky-card,
.hero .sticky-cards.in-hero.collapsed .sticky-card {
  opacity: 0.95;
  pointer-events: auto;
  transform: none;
}

.policy-cards {
  left: 0;
  top: 45%;
  transform: translateY(-50%) translateX(calc(-100% + 45px));
  transition: all 0.3s ease;
  padding-left: 0px;
  margin: 0;
  height: auto;
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* force cards to align left within column */
}

.policy-cards:not(.collapsed) {
  transform: translateY(-50%) translateX(0);
}

.policy-cards .toggle-arrow {
  right: 0;
  left: auto;
  border-radius: 0 5px 5px 0;
}

/* Ensure policy card content is left-aligned */
.policy-cards .sticky-card,
.policy-cards .sticky-card span {
  text-align: left;
}

.policy-cards .sticky-card {
  align-self: flex-start;
  justify-content: flex-start;
}

.policy-cards .sticky-card i {
  text-align: left;
}

/* Make label occupy available width and enforce left alignment */
.policy-cards .sticky-card span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  /* allow flex child to shrink so ellipsis works and full width is used */
  text-align: left !important;
}

.address-cards {
  right: 0;
  top: 45%;
  transform: translateY(-50%) translateX(calc(100% - 45px));
  transition: all 0.3s ease;
  padding-right: 45px;
  padding-left: 15px;
  margin: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-cards:not(.collapsed) {
  transform: translateY(-50%) translateX(0);
}

.address-cards .toggle-arrow {
  left: 0;
  right: auto;
  border-radius: 5px 0 0 5px;
}

/* Toggle Arrow */
.toggle-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.toggle-arrow:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.toggle-arrow i {
  color: var(--brand);
  font-size: 16px;
}

.sticky-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-left: 5px solid var(--brand);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 22vw;
  min-width: 200px;
  max-width: 320px;
  opacity: 0.95;
  text-decoration: none;
  color: #2c3e50;
  font-size: clamp(12px, 1.2vw, 16px);
  min-height: 8vh;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}

/* Enter animation defaults for hero city cards */
.hero .sticky-cards.in-hero .sticky-card {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .5s ease, transform .5s ease;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card {
  opacity: 0.98;
  transform: translateY(0);
}

/* Stagger using nth-child for up to 7 items */
.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(1) {
  transition-delay: 40ms;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(2) {
  transition-delay: 100ms;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(3) {
  transition-delay: 160ms;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(4) {
  transition-delay: 220ms;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(5) {
  transition-delay: 280ms;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(6) {
  transition-delay: 340ms;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(7) {
  transition-delay: 400ms;
}

/* Cards width for both policy and address cards */
.policy-cards .sticky-card,
.address-cards .sticky-card {
  width: 180px;
  max-width: 200px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.address-cards .sticky-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.sticky-card:hover {
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.sticky-card i {
  font-size: 1.4em;
  color: var(--brand);
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.sticky-card:hover i {
  transform: scale(1.1);
}

/* Adjust font sizes for different screen sizes */
@media (min-width: 1600px) {
  .sticky-card {
    font-size: 0.9rem;
    padding: 1.8vh 1.8vw;
  }
}

.sticky-cards.collapsed .sticky-card {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
}

.address-cards.collapsed .sticky-card {
  transform: translateX(10px);
}

.sticky-card i {
  color: var(--brand);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.sticky-card span {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.address-cards .sticky-card:hover {
  transform: translateX(-5px);
}

/* Small hover preview for policy cards */
.policy-hover-preview {
  position: fixed;
  z-index: 9999;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.95);
  transform-origin: left center;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.policy-hover-preview.visible {
  opacity: 1;
  transform: scale(1.05);
  pointer-events: auto;
}

.policy-hover-preview a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.policy-hover-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .sticky-card {
    width: 180px;
    padding: 10px 12px;
    width: 180px;
    padding: 10px 12px;
  }

  .sticky-card span {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .sticky-card {
    width: 24vw;
    min-width: 200px;
    padding: 1.6vh 1.6vw;
  }
}

@media (max-width: 992px) {

  /* Show sticky cards on mobile as a grid; disable absolute positioning */
  .hero {
    height: 60vh !important;
    display: grid !important;
    place-items: center;
    overflow: hidden;
    padding-bottom: 0;
  }

  .hero .sticky-cards.in-hero {
    position: absolute !important;
    top: 45%;
    transform: translateY(-50%) !important;
    z-index: 95;
    margin: 0;
    padding: 0;
    height: auto;
    max-height: 100%;
    display: flex !important;
    align-items: center;
    overflow: visible;
  }

  .policy-cards.in-hero,
  .address-cards.in-hero {
    align-items: center;
    padding: 0;
    width: auto;
    position: absolute !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  /* Removed mobile hard reset to keep desktop-like overlay on mobile */
  /* .policy-cards, .address-cards { position: static !important; left: auto !important; right: auto !important; top: auto !important; transform: none !important; } */

  /* Section labels for clarity on mobile */
  .policy-cards.in-hero::before,
  .address-cards.in-hero::before {
    display: none !important;
  }

  /* Provide default titles if data-mobile-title attribute is missing */
  .policy-cards.in-hero:not([data-mobile-title])::before {
    content: 'Policies';
  }

  .address-cards.in-hero:not([data-mobile-title])::before {
    content: 'Offices';
  }

  .sticky-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 48px;
    /* larger tap target */
  }

  /* Hide hover preview on mobile */
  .policy-hover-preview {
    display: none !important;
  }

  /* Ensure collapsed styles do not hide cards on mobile */
  .sticky-cards.collapsed .sticky-card {
    opacity: 0.95;
    pointer-events: auto;
    transform: none !important;
  }

  .address-cards.collapsed .sticky-card {
    transform: none !important;
  }

  .hero-center-logo {
    position: relative;
    z-index: 96;
    width: 65vw !important;
    height: 45vw !important;
    min-width: 150px !important;
    min-height: 100px !important;
    top: 0% !important;
    padding: 1.5% !important;
    margin: 0;
  }

  /* Place ticker in normal flow after hero (no overlay) */
  .hero-ticker {
    position: relative !important;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
  }
}

.sticky-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-social i {
  font-size: 18px;
}

/* removed stray unmatched brace */

:root {
  --brand: #089c44;
  --brand-dark: #067a35;
  --text: #2c3e50;
  --muted: #6c757d;
  --bg: #ffffff;
}

/* Hero */
.hero {
  position: relative;
  /* Full viewport height on desktop; include padding in height */
  height: 100vh;
  min-height: 100vh;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  /* Account for transparent navbar overlay height */
  --nav-h: 86px;
  padding-top: var(--nav-h);
  background: url('/assets/images/heroimg.png') center/cover no-repeat,
    #111;
  /* fallback if no hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Parallax feel: keep background fixed to viewport */
  background-attachment: fixed;
}

/* Dark overlay over hero slideshow — reduces brightness of bright images
   TUNE: increase alpha (0.0 → 1.0) to darken more, decrease to lighten
   Current value: 0.35 (moderate) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.35); /* ← TUNE THIS VALUE */
  z-index: 1;
  /* below stacked content and partition (z>=90) */
}

/* When alt content shows (after ~2s), darken hero bg with black overlay */
.hero.show-alt::before {
  background: rgba(0, 0, 0, 0.55);
}

/* Three-part overlay inside hero */
.hero-partition {
  position: absolute;
  inset: 0;
  z-index: 94;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  /* push content below navbar */
  padding-top: var(--nav-h);
}

.hero-partition .col-title {
  grid-row: 1;
  align-self: start;
  justify-self: center;
  margin-top: 8px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: none;
  font-size: clamp(12px, 1.4vw, 16px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .35s ease, transform .45s ease;
}

.hero-partition .col-title.center {
  text-transform: none;
  font-weight: 800;
}

.hero-partition .v-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 2px dashed rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity .4s ease, transform .6s ease;
}

.hero-partition .v-divider.left {
  left: 33.3333%;
  transform: translateX(-1px);
}

.hero-partition .v-divider.right {
  left: 66.6666%;
  transform: translateX(-1px);
}

/* Attach side stacks to edges and slightly inset within partitions */
.hero .policy-cards.in-hero {
  left: 0;
}

/* Only the explicit right-side stack should attach to the right edge */
.hero .address-cards.in-hero.right-side {
  right: 0;
}

/* Ensure only the visible cards themselves are clickable, not the entire side area */
.hero .sticky-cards.in-hero {
  pointer-events: none;
}

.hero .sticky-cards.in-hero .sticky-card {
  pointer-events: auto;
}

/* Left-side address stack behavior inside hero */
.hero .address-cards.in-hero.left-side {
  left: 0;
  right: auto;
  padding-left: 5px;
  padding-right: 5px;
  transform: translateY(-50%);
  align-items: flex-start;
}

/* Custom scrollbar styling for city stacks */
.hero .sticky-cards.in-hero::-webkit-scrollbar {
  width: 10px;
}

.hero .sticky-cards.in-hero::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 10px;
}

.hero .sticky-cards.in-hero::-webkit-scrollbar-thumb {
  background: var(--brand, #089c44);
  border-radius: 10px;
}

.hero .sticky-cards.in-hero::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark, #067a35);
}

/* Firefox */
.hero .sticky-cards.in-hero {
  scrollbar-width: thin;
  scrollbar-color: var(--brand, #089c44) rgba(0, 0, 0, 0.22);
}

/* Smaller city cards within hero on both sides */
.hero .sticky-cards.in-hero .sticky-card {
  width: clamp(160px, 20vw, 280px);
  min-height: 48px;
  padding: 10px 14px;
  font-size: clamp(11px, 1vw, 14px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.hero .sticky-cards.in-hero .sticky-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
}

.hero .sticky-cards.in-hero .sticky-card i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 156, 68, 0.18);
  color: #19b87a;
}

.hero .sticky-cards.in-hero .sticky-card span {
  letter-spacing: 1.2px;
  font-weight: 800;
  color: #ffffff;
}

/* Entrance animation for city chips */
.hero.cards-enter .sticky-cards.in-hero .sticky-card {
  opacity: 0;
  transform: translateX(-8px);
}

.hero.cards-enter .sticky-cards.in-hero.right-side .sticky-card {
  transform: translateX(8px);
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card {
  animation: cityIn .6s ease forwards;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(1) {
  animation-delay: .05s;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(2) {
  animation-delay: .14s;
}

.hero.cards-enter .sticky-cards.in-hero .sticky-card:nth-child(3) {
  animation-delay: .23s;
}

@keyframes cityIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alternate hero content (appears after 2s) */
.hero-alt {
  position: absolute;
  inset: calc(56px + var(--nav-h)) 12px 72px 12px;
  /* keep space for titles/nav and ticker */
  z-index: 93;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.hero.show-alt .hero-alt {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Reveal dashed dividers only when alt view is shown */
.hero.show-alt .hero-partition .v-divider {
  opacity: .85;
  transform: scaleY(1);
}

/* Reveal titles with a subtle fade/slide when alt view is shown */
.hero.show-alt .hero-partition .col-title {
  opacity: 1;
  transform: translateY(0);
}

.hero.show-alt .hero-partition .col-title.left {
  transition-delay: .05s;
}

.hero.show-alt .hero-partition .col-title.center {
  transition-delay: .12s;
}

.hero.show-alt .hero-partition .col-title.right {
  transition-delay: .19s;
}

.hero-alt .alt-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .6s ease, transform .6s ease;
}

.hero-alt .alt-col.left {
  align-items: center;
}

.hero-alt .alt-col.center {
  align-items: center;
}

/* Center the state names column as requested */
.hero-alt .alt-col.right {
  align-items: center;
  padding-left: 0;
}

/* Left and middle partitions share the same alignment; links use global .alt-links rules */
/* Staggered reveal for each column when alt view shows */
.hero.show-alt .hero-alt .alt-col {
  opacity: 1;
  transform: translateY(0);
}

.hero.show-alt .hero-alt .alt-col:nth-child(1) {
  transition-delay: .05s;
}

.hero.show-alt .hero-alt .alt-col:nth-child(2) {
  transition-delay: .16s;
}

.hero.show-alt .hero-alt .alt-col:nth-child(3) {
  transition-delay: .27s;
}

.alt-map {
  width: clamp(140px, 40%, 240px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: transparent;
  /* no placeholder background */
  border: none;
  /* remove border */
  box-shadow: none;
  /* remove shadow */
}

/* Ensure no background image on the placeholder; only the <img> renders */
.hero-alt .alt-col.left .alt-map {
  background: none !important;
}

.hero-alt .alt-col.center .alt-map {
  background: none !important;
}

.alt-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  width: 100%;
  justify-items: start;
}

/* Align policy names to the left and present as transparent rounded buttons */
.alt-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 17px);
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.alt-links a svg {
  width: 16px;
  height: 16px;
  color: currentColor;
  opacity: .95;
  flex: 0 0 auto;
}

.alt-links a:hover {
  background: rgba(8, 156, 68, 0.18);
  border-color: rgba(8, 156, 68, 0.55);
  box-shadow: 0 8px 18px rgba(8, 156, 68, 0.22);
  transform: translateY(-1px);
}

/* Left column links: align to left edge, text right-aligned toward the logo */
.hero-alt .alt-col.left .alt-links,
.hero-alt .alt-col.center .alt-links {
  align-self: flex-start;
  margin-left: 0;
  justify-items: end;
  text-align: right;
}

.hero-alt .alt-col.left .alt-links a {
  text-align: right;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.state-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #111;
  font-weight: 600;
  text-align: left;
  width: clamp(160px, 50%, 260px);
  justify-self: center;
}

.state-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(14px, 1.25vw, 18px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.state-list a svg {
  width: 16px;
  height: 16px;
  color: currentColor;
  opacity: .95;
  margin-right: 6px;
  flex: 0 0 auto;
}

.state-list a:hover {
  background: rgba(8, 156, 68, 0.18);
  border-color: rgba(8, 156, 68, 0.55);
  box-shadow: 0 8px 18px rgba(8, 156, 68, 0.22);
  transform: translateY(-1px);
}

/* Green outline that follows transparent edges of the PNG maps */
.alt-map {
  position: relative;
}

.alt-map .map-img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  /* refined green outline + soft ambient glow */
  filter: drop-shadow(0 0 1.5px #10a463) drop-shadow(0 4px 10px rgba(16, 164, 99, 0.35));
  -webkit-filter: drop-shadow(0 0 1.5px #10a463) drop-shadow(0 4px 10px rgba(16, 164, 99, 0.35));
}

/* Slightly stronger on hover for emphasis */
.alt-map:hover .map-img {
  filter: drop-shadow(0 0 2px #10a463) drop-shadow(0 6px 14px rgba(16, 164, 99, 0.45));
  -webkit-filter: drop-shadow(0 0 2px #10a463) drop-shadow(0 6px 14px rgba(16, 164, 99, 0.45));
}

/* Fade out existing stacks when alt is shown */
.hero.show-alt .sticky-cards.in-hero {
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

/* Mobile: when show-alt, hide cards/logo to reveal alt content */
@media (max-width: 992px) {

  .hero.show-alt .sticky-cards.in-hero {
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    pointer-events: none;
  }
}

@media (max-width: 992px) {
  .hero {
    --nav-h: 70px;
  }

  .hero-alt {
    inset: calc(56px + var(--nav-h)) 8px 56px 8px;
    gap: 16px;
  }

  .alt-map {
    width: min(65%, 260px);
  }

  .hero .sticky-cards.in-hero {
    max-height: 44vh;
  }
}

@media (max-width: 992px) {
  .hero .hero-alt {
    display: none;
  }

  .hero.show-alt .hero-alt {
    display: block !important;
  }
}

/* Centered logo in hero */
.hero-center-logo {
  position: relative;
  z-index: 90;
  /* behind the overlay card stacks (>=95) */
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  width: clamp(220px, 34vw, 480px);
  height: clamp(110px, 17vw, 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  top: -5%;
  /* rely on grid centering for position stability */
  padding: 0px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
}

/* Stats Section Layout */
.stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.stats-graph-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}

.graph-section {
  position: relative;
  z-index: 2;
}

.bubbles-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Floating Background Bubbles - Decorative Elements */
.floating-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(8, 156, 68, 0.1), rgba(8, 156, 68, 0.05));
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 12px;
  height: 12px;
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 8px;
  height: 8px;
  top: 35%;
  right: 25%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 15px;
  height: 15px;
  bottom: 40%;
  left: 15%;
  animation-delay: 4s;
}

.bubble-4 {
  width: 6px;
  height: 6px;
  bottom: 20%;
  right: 30%;
  animation-delay: 6s;
}

.bubble-5 {
  width: 10px;
  height: 10px;
  top: 55%;
  left: 75%;
  animation-delay: 1s;
}

.bubble-6 {
  width: 9px;
  height: 9px;
  top: 75%;
  right: 40%;
  animation-delay: 3s;
}

.bubble-7 {
  width: 7px;
  height: 7px;
  top: 25%;
  left: 50%;
  animation-delay: 5s;
}

.bubble-8 {
  width: 11px;
  height: 11px;
  bottom: 60%;
  left: 60%;
  animation-delay: 7s;
}

/* Additional bubbles for spacing between main stat bubbles */
.bubble-9 {
  width: 5px;
  height: 5px;
  top: 45%;
  left: 45%;
  animation-delay: 1.5s;
}

.bubble-10 {
  width: 8px;
  height: 8px;
  top: 50%;
  right: 50%;
  animation-delay: 3.5s;
}

.bubble-11 {
  width: 6px;
  height: 6px;
  bottom: 50%;
  left: 40%;
  animation-delay: 2.5s;
}

.bubble-12 {
  width: 7px;
  height: 7px;
  bottom: 45%;
  right: 45%;
  animation-delay: 4.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Ring-based layout to arrange background bubbles in circular shape */
.floating-bubbles .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Larger circular container */
  width: min(640px, 95%);
  height: min(640px, 95%);
  border-radius: 50%;
  pointer-events: none;
}

.floating-bubbles .ring .bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  /* Subtle breathing animation to keep them alive */
  animation: bubbleRingFloat 6s ease-in-out infinite;
  background: #089c44;
  /* brand green as per design */
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@keyframes bubbleRingFloat {

  0%,
  100% {
    transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a))) translateY(0);
    opacity: .95;
  }

  50% {
    transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a))) translateY(-2px);
    opacity: 1;
  }
}

/* Outer ring: 24 dots around the circle */
.floating-bubbles .ring .bubble-1,
.floating-bubbles .ring .bubble-2,
.floating-bubbles .ring .bubble-3,
.floating-bubbles .ring .bubble-4,
.floating-bubbles .ring .bubble-5,
.floating-bubbles .ring .bubble-6,
.floating-bubbles .ring .bubble-7,
.floating-bubbles .ring .bubble-8,
.floating-bubbles .ring .bubble-9,
.floating-bubbles .ring .bubble-10,
.floating-bubbles .ring .bubble-11,
.floating-bubbles .ring .bubble-12,
.floating-bubbles .ring .bubble-13,
.floating-bubbles .ring .bubble-14,
.floating-bubbles .ring .bubble-15,
.floating-bubbles .ring .bubble-16,
.floating-bubbles .ring .bubble-17,
.floating-bubbles .ring .bubble-18,
.floating-bubbles .ring .bubble-19,
.floating-bubbles .ring .bubble-20,
.floating-bubbles .ring .bubble-21,
.floating-bubbles .ring .bubble-22,
.floating-bubbles .ring .bubble-23,
.floating-bubbles .ring .bubble-24 {
  --r: calc(min(640px, 95%) / 2 - 12px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.floating-bubbles .ring .bubble-1 {
  --a: 0deg;
}

.floating-bubbles .ring .bubble-2 {
  --a: 15deg;
}

.floating-bubbles .ring .bubble-3 {
  --a: 30deg;
}

.floating-bubbles .ring .bubble-4 {
  --a: 45deg;
}

.floating-bubbles .ring .bubble-5 {
  --a: 60deg;
}

.floating-bubbles .ring .bubble-6 {
  --a: 75deg;
}

.floating-bubbles .ring .bubble-7 {
  --a: 90deg;
}

.floating-bubbles .ring .bubble-8 {
  --a: 105deg;
}

.floating-bubbles .ring .bubble-9 {
  --a: 120deg;
}

.floating-bubbles .ring .bubble-10 {
  --a: 135deg;
}

.floating-bubbles .ring .bubble-11 {
  --a: 150deg;
}

.floating-bubbles .ring .bubble-12 {
  --a: 165deg;
}

.floating-bubbles .ring .bubble-13 {
  --a: 180deg;
}

.floating-bubbles .ring .bubble-14 {
  --a: 195deg;
}

.floating-bubbles .ring .bubble-15 {
  --a: 210deg;
}

.floating-bubbles .ring .bubble-16 {
  --a: 225deg;
}

.floating-bubbles .ring .bubble-17 {
  --a: 240deg;
}

.floating-bubbles .ring .bubble-18 {
  --a: 255deg;
}

.floating-bubbles .ring .bubble-19 {
  --a: 270deg;
}

.floating-bubbles .ring .bubble-20 {
  --a: 285deg;
}

.floating-bubbles .ring .bubble-21 {
  --a: 300deg;
}

.floating-bubbles .ring .bubble-22 {
  --a: 315deg;
}

.floating-bubbles .ring .bubble-23 {
  --a: 330deg;
}

.floating-bubbles .ring .bubble-24 {
  --a: 345deg;
}

/* Inner ring: 12 dots */
.floating-bubbles .ring .bubble-25,
.floating-bubbles .ring .bubble-26,
.floating-bubbles .ring .bubble-27,
.floating-bubbles .ring .bubble-28,
.floating-bubbles .ring .bubble-29,
.floating-bubbles .ring .bubble-30,
.floating-bubbles .ring .bubble-31,
.floating-bubbles .ring .bubble-32,
.floating-bubbles .ring .bubble-33,
.floating-bubbles .ring .bubble-34,
.floating-bubbles .ring .bubble-35,
.floating-bubbles .ring .bubble-36 {
  --r: calc(min(640px, 95%) / 2 - 110px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.floating-bubbles .ring .bubble-25 {
  --a: 0deg;
}

.floating-bubbles .ring .bubble-26 {
  --a: 30deg;
}

.floating-bubbles .ring .bubble-27 {
  --a: 60deg;
}

.floating-bubbles .ring .bubble-28 {
  --a: 90deg;
}

.floating-bubbles .ring .bubble-29 {
  --a: 120deg;
}

.floating-bubbles .ring .bubble-30 {
  --a: 150deg;
}

.floating-bubbles .ring .bubble-31 {
  --a: 180deg;
}

.floating-bubbles .ring .bubble-32 {
  --a: 210deg;
}

.floating-bubbles .ring .bubble-33 {
  --a: 240deg;
}

.floating-bubbles .ring .bubble-34 {
  --a: 270deg;
}

.floating-bubbles .ring .bubble-35 {
  --a: 300deg;
}

.floating-bubbles .ring .bubble-36 {
  --a: 330deg;
}

/* Fill rings: extra dots to densely populate remaining space */
.floating-bubbles .ring .bubble-37,
.floating-bubbles .ring .bubble-38,
.floating-bubbles .ring .bubble-39,
.floating-bubbles .ring .bubble-40,
.floating-bubbles .ring .bubble-41,
.floating-bubbles .ring .bubble-42,
.floating-bubbles .ring .bubble-43,
.floating-bubbles .ring .bubble-44,
.floating-bubbles .ring .bubble-45,
.floating-bubbles .ring .bubble-46,
.floating-bubbles .ring .bubble-47,
.floating-bubbles .ring .bubble-48 {
  /* mid-inner ring */
  --r: calc(min(640px, 95%) / 2 - 160px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.floating-bubbles .ring .bubble-49,
.floating-bubbles .ring .bubble-50,
.floating-bubbles .ring .bubble-51,
.floating-bubbles .ring .bubble-52,
.floating-bubbles .ring .bubble-53,
.floating-bubbles .ring .bubble-54,
.floating-bubbles .ring .bubble-55,
.floating-bubbles .ring .bubble-56,
.floating-bubbles .ring .bubble-57,
.floating-bubbles .ring .bubble-58,
.floating-bubbles .ring .bubble-59,
.floating-bubbles .ring .bubble-60 {
  /* inner-most ring */
  --r: calc(min(640px, 95%) / 2 - 210px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Angle placement for fill rings (every 30deg and 15deg offsets) */
.floating-bubbles .ring .bubble-37 {
  --a: 15deg;
}

.floating-bubbles .ring .bubble-38 {
  --a: 45deg;
}

.floating-bubbles .ring .bubble-39 {
  --a: 75deg;
}

.floating-bubbles .ring .bubble-40 {
  --a: 105deg;
}

.floating-bubbles .ring .bubble-41 {
  --a: 135deg;
}

.floating-bubbles .ring .bubble-42 {
  --a: 165deg;
}

.floating-bubbles .ring .bubble-43 {
  --a: 195deg;
}

.floating-bubbles .ring .bubble-44 {
  --a: 225deg;
}

.floating-bubbles .ring .bubble-45 {
  --a: 255deg;
}

.floating-bubbles .ring .bubble-46 {
  --a: 285deg;
}

.floating-bubbles .ring .bubble-47 {
  --a: 315deg;
}

.floating-bubbles .ring .bubble-48 {
  --a: 345deg;
}

.floating-bubbles .ring .bubble-49 {
  --a: 0deg;
}

.floating-bubbles .ring .bubble-50 {
  --a: 30deg;
}

.floating-bubbles .ring .bubble-51 {
  --a: 60deg;
}

.floating-bubbles .ring .bubble-52 {
  --a: 90deg;
}

.floating-bubbles .ring .bubble-53 {
  --a: 120deg;
}

.floating-bubbles .ring .bubble-54 {
  --a: 150deg;
}

.floating-bubbles .ring .bubble-55 {
  --a: 180deg;
}

.floating-bubbles .ring .bubble-56 {
  --a: 210deg;
}

.floating-bubbles .ring .bubble-57 {
  --a: 240deg;
}

.floating-bubbles .ring .bubble-58 {
  --a: 270deg;
}

.floating-bubbles .ring .bubble-59 {
  --a: 300deg;
}

.floating-bubbles .ring .bubble-60 {
  --a: 330deg;
}

/* Main Statistics Bubbles */
.stats-bubbles {
  position: relative;
  z-index: 2;
  width: 100%;
  /* Larger area to host main bubbles within the circular container */
  max-width: 620px;
  height: 620px;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, rgba(240, 248, 255, 0.02) 70%, transparent 100%);
}

.stat-bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1) translateY(0);
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 3;
  /* ensure above background ring */
}

.stat-bubble::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  border-radius: 50%;
  z-index: -1;
  filter: blur(1px);
}

.stat-bubble::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 30%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
}

.stat-bubble:nth-child(1) {
  animation-delay: 0.2s;
}

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

.stat-bubble:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-bubble:nth-child(4) {
  animation-delay: 0.5s;
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Individual Bubble Styles - Modern Infographic Design */
.professionals-bubble {
  background: linear-gradient(135deg, #2e7d32, #1b5e20, #0d4f14);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
  width: 140px;
  height: 140px;
  /* cluster centered over ring */
  top: 120px;
  left: 15px;
  bottom: auto;
  right: auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.clients-bubble {
  background: linear-gradient(135deg, #2e7d32, #1b5e20, #0d4f14);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
  width: 130px;
  height: 130px;
  top: 290px;
  left: 35px;
  bottom: auto;
  right: auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.experience-bubble {
  background: linear-gradient(135deg, #2e7d32, #1b5e20, #0d4f14);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
  width: 120px;
  height: 120px;
  top: 150px;
  left: 215px;
  bottom: auto;
  right: auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 6;
}

.cities-bubble {
  background: linear-gradient(135deg, #2e7d32, #1b5e20, #0d4f14);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
  width: 140px;
  height: 140px;
  top: 350px;
  left: 220px;
  bottom: auto;
  right: auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
}

/* Bubble Content */
.bubble-content {
  text-align: center;
  color: white;
  z-index: 3;
  position: relative;
}

.stat-number {
  font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 4px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(255, 255, 255, 0.1);
  color: white;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.stat-plus {
  font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: inline;
  margin-left: 3px;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(255, 255, 255, 0.1);
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.stat-label {
  font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 4px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(255, 255, 255, 0.1);
  z-index: 10;
  position: relative;
}

.stat-description {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.2;
  max-width: 140px;
  margin: 0 auto;
}

/* Bubble Glow Effect */
.bubble-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.professionals-bubble .bubble-glow {
  background: radial-gradient(circle, rgba(8, 156, 68, 0.4) 0%, transparent 70%);
}

.clients-bubble .bubble-glow {
  background: radial-gradient(circle, rgba(255, 107, 157, 0.4) 0%, transparent 70%);
}

.experience-bubble .bubble-glow {
  background: radial-gradient(circle, rgba(91, 125, 255, 0.4) 0%, transparent 70%);
}

.projects-bubble .bubble-glow {
  background: radial-gradient(circle, rgba(38, 208, 206, 0.4) 0%, transparent 70%);
}

/* Hover Effects */
.stat-bubble:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.stat-bubble:hover .bubble-glow {
  opacity: 1;
}

.stat-bubble:hover .stat-number {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-graph-container {
    gap: 30px;
  }

  .stat-bubble {
    width: 200px;
    height: 200px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .stats-graph-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stats-bubbles {
    max-width: 100%;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .stat-bubble {
    position: relative !important;
    width: 150px !important;
    height: 150px !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 auto;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-plus {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 80px 0;
  }

  .stats-bubbles {
    gap: 20px;
    padding: 0 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-bubble {
    width: 140px;
    height: 140px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-plus {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.9rem;
    margin: 6px 0 3px 0;
  }

  .stat-description {
    font-size: 0.65rem;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .bubbles-section {
    min-height: auto;
  }

  .stats-bubbles {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .stat-bubble {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-plus {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-description {
    font-size: 0.7rem;
    max-width: 130px;
  }

  /* Zoom background ring on small screens (may overflow intentionally) */
  .floating-bubbles .ring {
    transform: translate(-50%, -50%) scale(1.7);
    width: min(820px, 130%);
    height: min(820px, 130%);
  }
}

/* Logo image styling */
.hero-logo-img {
  max-width: 95%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transform: scale(1.0);
}

/* Home navbar tweaks applied from home.css (loaded after global styles) */
/* Make hamburger bars white over the hero on home; revert when scrolled */
body.home .navbar .hamburger .bar {
  background-color: #fff;
}

body.home .navbar.scrolled .hamburger .bar {
  background-color: #333;
}

/* Ensure mobile off-canvas menu text is readable on the light panel */
@media (max-width: 992px) {
  .navbar .nav-menu .nav-link {
    color: #333 !important;
  }

  .navbar .nav-menu .nav-link::after {
    background-color: #089c44;
  }

  /* Wrap header and place tagline under the main line */
  .nav-container {
    flex-wrap: wrap;
  }

  .nav-logo+.nav-logo {
    flex-basis: auto;
  }

  .nav-logo+.nav-logo .logo-text2 {
    position: static;
    display: block;
    margin-top: 2px;
  }
}

/* Mobile navbar layout: stack logo-text2 above logo-text on the left, center hamburger on right */
@media (max-width: 992px) {
  body.home .navbar .nav-container {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    height: auto !important;
    min-height: 72px;
    padding: 6px 12px;
  }

  /* Reset absolute/transform from desktop */
  body.home .navbar .nav-logo {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  /* First .nav-logo (logo-text) on bottom-left */
  body.home .navbar .nav-container>.nav-logo:first-of-type {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  /* Second .nav-logo (logo-text2) on top-left */
  body.home .navbar .nav-container>.nav-logo:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  /* Tweak text spacing and reduce font sizes for mobile */
  body.home .navbar .logo-text {
    margin: 2px;
    line-height: 1.1;
    font-size: 0.9rem !important;
    /* Reduced from 1.06rem */
  }

  body.home .navbar .logo-text2 {
    margin: 2px;
    line-height: 1;
    font-size: 0.7rem !important;
    /* Reduced from 0.8rem */
  }

  /* Hamburger on right spanning both rows, centered - smaller size */
  body.home .navbar .nav-right {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
  }

  body.home .navbar .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    /* Reduce hamburger size by 20% */
  }

  /* Allow navbar itself to grow for two rows */
  body.home .navbar {
    height: auto !important;
  }
}

/* Additional font size reductions for smaller mobile screens */
@media (max-width: 480px) {
  body.home .navbar .logo-text {
    font-size: 0.8rem !important;
    /* Even smaller for very small screens */
  }

  body.home .navbar .logo-text2 {
    font-size: 0.6rem !important;
    /* Even smaller for very small screens */
  }

  body.home .navbar .hamburger {
    transform: scale(0.7);
    /* Even smaller hamburger for very small screens */
  }
}

.hero-center-logo:hover .hero-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* =============================
   Hero bottom testimonial ticker
   ============================= */
.hero-ticker {
  position: relative;
  /* so gradients can be absolutely positioned inside */
  height: 56px;
  overflow: hidden;
  z-index: 96;
  /* above hero bg */
  /* Transparent glass (no dark/white solid look) */
  background: rgba(255, 255, 255, 0.06);


  border-top: 1px solid rgba(252, 248, 248, 0.99);
}

.hero-ticker .ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.hero-ticker .ticker-segment {
  display: inline-flex;
  gap: 32px;
  padding: 0 24px;
  align-items: center;
  height: 56px;
}

.hero-ticker .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #000000;
  font-size: 0.98rem;
  padding: 8px 12px;
  /* Light glass chip */
  background: rgba(255, 255, 255, 0.942);
  border: 1px solid rgba(255, 255, 255, 0.969);
  /* perfect rounded pill */
  overflow: hidden;
  /* clip inner contents to the rounded shape */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);

}

.hero-ticker .ticker-item .quote {
  font-weight: 700;
  opacity: 0.95;
  color: #131313;
  background: transparent;
}

.hero-ticker .ticker-item .by {
  color: #089c44;
  font-weight: 700;
  margin-left: 6px;
  background: transparent;
}

.hero-ticker .ticker-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 97;
}

.hero-ticker .ticker-gradient.left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-ticker .ticker-gradient.right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0) 100%);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-ticker .ticker-track {
    animation: none;
  }
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-ticker {
    height: 48px;
  }

  .hero-ticker .ticker-segment {
    height: 48px;
    gap: 20px;
    padding: 0 16px;
  }

  .hero-ticker .ticker-item {
    font-size: 0.9rem;
  }

  .hero-ticker .ticker-gradient {
    width: 50px;
  }

  /* Stack cards single column on very small screens */
  .hero .sticky-cards.in-hero {
    grid-template-columns: 1fr;
    padding: 0 14px;
  }
}

.hero-inner {
  max-width: 480px;
  padding: 0 20px;
}

/* Hero Eyebrow - Increased specificity */
.hero .hero-inner .hero-eyebrow {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.3rem !important;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: -20px;
  margin-bottom: 20px;
  position: relative;
  top: -10px;
  line-height: 1.2;
}

.hero h1 {
  /* hide large heading visually to match slider-first layout */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero p {
  color: #e8f5ee;
  line-height: 1.8;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: .9;
  position: relative;
  padding-bottom: 10px;
}

.hero-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

/* Hero slider */
.hero-slider {
  position: relative;
  margin-top: 14px;
}

.slides {
  position: relative;
  min-height: 120px;
  display: grid;
  place-items: center;
}

.slide {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 16px;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.hero-slider p {
  max-width: 760px;
  color: #e8f5ee;
  font-size: 1.05rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #a9e6c3;
  font-size: 32px;
  cursor: pointer;
  padding: 10px 15px;
}

.hero-nav:hover {
  color: #fff;
}

.hero-nav.prev {
  left: -230px;
}

.hero-nav.next {
  right: -230px;
}

.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(8, 156, 68, .35);
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.hero-dots button.active {
  background: var(--brand);
}

/* Ensure slider wrapper has no line or border */
.hero-slider,
.slides {
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Kill any accidental pseudo-element lines */
.hero-slider::before,
.hero-slider::after,
.slides::before,
.slides::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Hero call-to-actions */
.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 24px rgba(8, 156, 68, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 156, 68, .35);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border: 2px solid var(--red);
}

.btn-ghost:hover {
  background: rgba(230, 57, 70, .15);
  border-color: var(--red-dark);
}

/* Legacy hero dots removed in favor of slider dots above */
.hero-dots {
  position: static;
}

/* Section wrappers */
.section-wrap {
  padding: 70px 20px;
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Wider-screen gutters for a narrower look */
@media (min-width: 1280px) {
  .section-wrap {
    padding-left: 12vw;
    padding-right: 12vw;
  }
}

.section-title {
  text-align: center;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--brand);
}

/* Underline for all section titles */
.section-title::after {
  content: '';
  display: block;
  width: 220px;
  height: 4px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, rgba(8, 156, 68, 0), #089c44, rgba(8, 156, 68, 0));
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(8, 156, 68, 0.25);
}

/* Section line image styling */
.section-title .section-line {
  display: block;
  margin: 12px auto 0;
  max-width: 200px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.section-title:hover .section-line {
  opacity: 1;
}

.section-heading {
  text-align: center;
  font-size: 1.9rem;
  margin-top: 8px;
  color: var(--text);
}

/* Inline SVG replacement styling */
.section-title .section-line-svg {
  display: block;
  margin: auto auto 0;
  width: var(--section-line-width, 200px);
  height: var(--section-line-height, auto);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  position: var(--section-line-position, static);
  left: var(--section-line-left, auto);
  right: var(--section-line-right, auto);
  top: var(--section-line-top, auto);
  bottom: var(--section-line-bottom, auto);
}

.section-title .section-line-svg path {
  fill: var(--section-line-fill, #009147);
}

.section-title:hover .section-line-svg {
  opacity: 1;
}

/* We Offer cards */
.offer-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offer-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  border-top: 4px solid var(--brand);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
}

.offer-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  opacity: .85;
  box-shadow: 0 0 0 6px rgba(230, 57, 70, .10);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(8, 156, 68, .18), 0 6px 18px rgba(230, 57, 70, .10);
  border-top-color: var(--red);
}

.offer-card h3 {
  margin: 8px 0 10px;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: .96rem;
}

.offer-card--highlight {
  border-top-color: var(--brand);
}

/* About split */
.about {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: flex-start;
  margin: 40px auto 0;
  max-width: 1000px;
  width: 100%;
}

.about-content {
  padding-right: 20px;
}

/* About section specific styles */
#about .container {
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
}

#about .section-title {
  text-align: center;
  margin-bottom: 30px;
}

#about .section-heading {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 100%;
  width: 100%;
}

.about-media {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-quote {
  text-align: center;
  width: 100%;
}

.quote {
  margin: 0;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  padding: 15px;
  background: #f9f9f9;
  border-left: 3px solid var(--brand);
  border-radius: 0 4px 4px 0;
  position: relative;
}

.author {
  margin-top: 15px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-media {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Banner Section with Background Image */
.banner-section {
  position: relative;
  height: 400px;
  background-image: url('../../images/backimage1.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Distinct images per banner instance */
.banner-section.banner-1 {
  background-image: url('../../images/backimage1.png');
}

.banner-section.banner-2 {
  background-image: url('../../images/backimage2.png');
}

.banner-section.banner-3 {
  background-image: url('../../images/backimage3.png');
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .banner-section {
    background-attachment: scroll;
    /* Remove parallax effect on mobile */
    background-size: 120%;
    /* Ensure full coverage */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    /* Fallback background color */
    height: 300px;
    /* Proper height for mobile */
    position: sticky;
    /* Make section sticky */
    top: 0;
    /* Stick to top when scrolling */
    z-index: 10;
    /* Ensure it stays above content */
  }

  /* Ensure images maintain aspect ratio and are fully visible */
  .banner-section.banner-1,
  .banner-section.banner-2,
  .banner-section.banner-3 {
    background-size: 120%;
    /* Ensure full coverage */
    background-position: center center;
    background-attachment: scroll;
    /* Remove parallax effect */
  }
}

/* JS fallback toggles this to avoid jank on iOS/mobile */
.banner-section.parallax-fallback {
  background-attachment: scroll;
}

/* Stats Section - Modern Graph Design */
.stats-section {
  background: #ffffff;
  padding: 80px 0;
  width: 100%;
  overflow: hidden;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.stats-graph-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .stats-graph-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 25px;
  }

  .chart-wrapper {
    height: 250px;
    max-width: 95%;
    margin: 0 auto;
  }

  .bar-chart {
    height: 200px;
    grid-template-columns: 25px 1fr;
    gap: 5px;
  }

  /* Mobile-specific worm graph adjustments */
  .worm-graph {
    viewBox: 0 0 520 200 !important;
    /* Adjust viewBox for mobile height */
  }

  /* Adjust data label positions for mobile to match SVG data points */
  .data-label:nth-child(1) {
    bottom: 0% !important;
  }

  /* 2000: 0 projects - matches point at cy="320" */
  .data-label:nth-child(2) {
    bottom: 42% !important;
  }

  /* 2005: 1.4K+ - matches point at cy="187" */
  .data-label:nth-child(3) {
    bottom: 58% !important;
  }

  /* 2010: 1.8K+ - matches point at cy="135" */
  .data-label:nth-child(4) {
    bottom: 71% !important;
  }

  /* 2015: 2.2K+ - matches point at cy="93" */
  .data-label:nth-child(5) {
    bottom: 89% !important;
  }

  /* 2020: 2.7K+ - matches point at cy="36" */
  .data-label:nth-child(6) {
    bottom: 100% !important;
  }

  /* 2025: 3K+ - matches point at cy="0" */

  .y-axis {
    padding-right: 3px;
  }

  .y-axis-values {
    font-size: 9px;
  }

  .data-label .value {
    font-size: 9px;
    padding: 3px 6px;
  }

  .data-label .year {
    font-size: 8px;
  }

  .chart-title {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .graph-section {
    padding: 15px 8px;
  }

  .worm-graph-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .stats-graph-container {
    gap: 20px;
    margin-top: 15px;
  }

  .chart-wrapper {
    height: 200px;
    max-width: 100%;
    margin: 0 auto;
  }

  .bar-chart {
    height: 160px;
    grid-template-columns: 20px 1fr;
    gap: 3px;
  }

  /* 480px-specific worm graph adjustments */
  .worm-graph {
    viewBox: 0 0 520 160 !important;
  }

  /* Adjust data label positions for 480px to match SVG data points */
  .data-label:nth-child(1) {
    bottom: 0% !important;
  }

  /* 2000: 0 projects */
  .data-label:nth-child(2) {
    bottom: 42% !important;
  }

  /* 2005: 1.4K+ */
  .data-label:nth-child(3) {
    bottom: 58% !important;
  }

  /* 2010: 1.8K+ */
  .data-label:nth-child(4) {
    bottom: 71% !important;
  }

  /* 2015: 2.2K+ */
  .data-label:nth-child(5) {
    bottom: 89% !important;
  }

  /* 2020: 2.7K+ */
  .data-label:nth-child(6) {
    bottom: 100% !important;
  }

  /* 2025: 3K+ */

  .y-axis {
    padding-right: 2px;
  }

  .y-axis-values {
    font-size: 8px;
  }

  .data-label .value {
    font-size: 8px;
    padding: 2px 4px;
  }

  .data-label .year {
    font-size: 7px;
  }

  .chart-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .worm-path {
    stroke-width: 2;
  }

  .graph-section {
    padding: 10px 5px;
  }

  .worm-graph-container {
    padding: 5px;
  }
}

@media (max-width: 360px) {
  .chart-wrapper {
    height: 180px;
    max-width: 100%;
  }

  .bar-chart {
    height: 140px;
    grid-template-columns: 18px 1fr;
    gap: 2px;
  }

  /* 360px-specific worm graph adjustments */
  .worm-graph {
    viewBox: 0 0 520 140 !important;
  }

  /* Adjust data label positions for 360px to match SVG data points */
  .data-label:nth-child(1) {
    bottom: 0% !important;
  }

  /* 2000: 0 projects */
  .data-label:nth-child(2) {
    bottom: 42% !important;
  }

  /* 2005: 1.4K+ */
  .data-label:nth-child(3) {
    bottom: 58% !important;
  }

  /* 2010: 1.8K+ */
  .data-label:nth-child(4) {
    bottom: 71% !important;
  }

  /* 2015: 2.2K+ */
  .data-label:nth-child(5) {
    bottom: 89% !important;
  }

  /* 2020: 2.7K+ */
  .data-label:nth-child(6) {
    bottom: 100% !important;
  }

  /* 2025: 3K+ */

  .y-axis-values {
    font-size: 7px;
  }

  .data-label .value {
    font-size: 7px;
    padding: 2px 3px;
  }

  .data-label .year {
    font-size: 6px;
  }

  .chart-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .graph-section {
    padding: 8px 3px;
  }

  .worm-graph-container {
    padding: 3px;
  }
}

/* Bar Chart Section */
.graph-section {
  background: transparent;
  border-radius: 16px;
  padding: 40px;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.graph-section::before {
  display: none;
}

.graph-section:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.chart-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 400px;
}

.chart-title {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bar-chart {
  position: relative;
  width: 100%;
  height: 320px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
}

/* Y-axis */
.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 10px;
  height: 100%;
}

.y-axis-values {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-size: 11px;
  color: #2c3e50;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Chart Content */
.chart-content {
  position: relative;
  background: transparent;
  border-radius: 8px;
  border: none;
  height: 100%;
}

/* Grid Lines */
.grid-lines {
  position: absolute;
  inset: 0;
}

.grid-line {
  position: absolute;
  background: rgba(44, 62, 80, 0.2);
}

.grid-line.horizontal {
  width: 100%;
  height: 1px;
  left: 0;
}

/* Worm Graph Container */
.worm-graph-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}

.worm-graph {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.worm-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  stroke-width: 3;
  opacity: 1;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Data labels layer */
.data-labels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.data-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  /* Center the whole label group on the dot:
     translateX(-50%) centers horizontally,
     translateY(50%) moves it up so the dot sits between value and year */
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.data-label .value {
  background: rgba(20, 20, 20, 0.88);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.data-label .year {
  color: #2c3e50;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* Keyframes for points and labels */
@keyframes fadeInPoint {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLabel {
  from {
    opacity: 0;
    transform: translate(-50%, 60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 50%);
  }
}

/* Animate only when section is in view */
.stats-section.in-view .worm-path {
  animation: drawPath 2.4s ease-in-out forwards;
}

.stats-section.in-view .data-point.point-0 {
  animation: fadeInPoint .6s ease-out forwards;
  animation-delay: .1s;
}

.stats-section.in-view .data-point.point-1 {
  animation: fadeInPoint .6s ease-out forwards;
  animation-delay: .4s;
}

.stats-section.in-view .data-point.point-2 {
  animation: fadeInPoint .6s ease-out forwards;
  animation-delay: .7s;
}

.stats-section.in-view .data-point.point-3 {
  animation: fadeInPoint .6s ease-out forwards;
  animation-delay: 1.0s;
}

.stats-section.in-view .data-point.point-4 {
  animation: fadeInPoint .6s ease-out forwards;
  animation-delay: 1.3s;
}

.stats-section.in-view .data-point.point-5 {
  animation: fadeInPoint .6s ease-out forwards;
  animation-delay: 1.6s;
}

.stats-section.in-view .data-label {
  animation: fadeInLabel .6s ease-out forwards;
  animation-delay: 2.4s;
}

.data-point {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  z-index: 10;
  text-align: center;
}

.x-axis-label {
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.chart-subtitle {
  color: #34495e;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Bar Animation */
@keyframes barGrow {
  from {
    height: 0;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bar.animate {
  animation: barGrow 1s ease-out forwards;
}

/* Professionals Card */
.professionals-card {
  background: linear-gradient(135deg, var(--brand) 0%, #067a35 100%);
  border-radius: 16px;
  padding: 25px 20px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 30px rgba(8, 156, 68, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.professionals-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.professionals-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(8, 156, 68, 0.3);
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  opacity: 1;
}

.card-info {
  flex: 1;
}

.professionals-card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.4);
}

.card-number {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
  .stats-graph-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .graph-wrapper {
    height: 350px;
  }

  .graph-section {
    padding: 30px 20px;
  }

  .professionals-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-section .container {
    padding: 0 20px;
  }

  .graph-wrapper {
    height: 300px;
  }

  .graph-area {
    grid-template-columns: 50px 1fr;
    grid-template-rows: 25px 1fr 35px 25px;
  }

  .y-axis-label,
  .x-axis-label {
    font-size: 12px;
  }

  .y-axis-values span,
  .x-axis-values span {
    font-size: 11px;
  }

  .card-number {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-subtitle {
    font-size: 0.9rem;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .overview-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* About Us Section */
.about-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.about-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 2px solid rgb(8, 156, 67);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 10px rgba(8, 156, 67, 0.541);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(8, 156, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #089c44;
  font-size: 28px;
  transition: all 0.3s ease;
}

.about-card:hover .card-icon {
  background: #089c44;
  color: #fff;
  transform: scale(1.1);
}

.about-card h3 {
  color: #2c3e50;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 700;
}

.about-card p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
}

.about-quote {
  margin-top: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-quote .quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-quote .author {
  color: #089c44;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive styles for About Cards */
@media (max-width: 992px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card:last-child {
    grid-column: 1 / -1;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
    max-width: 95%;
    width: 95%;
    margin: 20px auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .about-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 25px 0 !important;
    padding: 30px !important;
    box-sizing: border-box;
  }

  .about-quote {
    margin-top: 40px;
  }

  .about-quote .quote {
    font-size: 1.2rem;
  }
}

/* We Offer Section */
.we-offer-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  width: 100%;
  overflow: hidden;
}

.we-offer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* How We Help: vertical timeline */
.help-timeline {
  margin: 36px auto 0;
  width: 100%;
  max-width: 1100px;
  display: grid;
  gap: 28px;
}

.help-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  /* left card | timeline | right card */
  align-items: center;
  position: relative;
}

/* Center vertical bar */
.help-row .timeline-cell {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}

.help-row .timeline-cell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  width: 6px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(8, 156, 68, 0.18), rgba(8, 156, 68, 0.4));
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(8, 156, 68, 0.25);
}

/* Circular nodes that hold the icons */
/* Timeline Node - Initial State */
.timeline-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(8, 156, 68, 0.15);
  color: var(--brand);
  opacity: 0;
  transform: scale(0.5);
  will-change: transform, opacity;
  backface-visibility: hidden;
  /* Smooth transition for all properties */
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: transform, opacity;
  transition-delay: 0.2s;
}

/* Timeline Node - Animated State */
.help-row.visible .timeline-node {
  opacity: 1;
  transform: scale(1);
  /* Match node colors with card themes */
}

/* Timeline Node Colors */
.help-row:nth-child(1) .timeline-node {
  background: #089c44;
  color: white;
  box-shadow: 0 4px 20px rgba(8, 156, 68, 0.3);
}

.help-row:nth-child(2) .timeline-node {
  background: #3498db;
  color: white;
  box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.help-row:nth-child(3) .timeline-node {
  background: #9b59b6;
  color: white;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.3);
}

.help-row:nth-child(4) .timeline-node {
  background: #f1c40f;
  color: #2c3e50;
  box-shadow: 0 4px 20px rgba(241, 196, 15, 0.3);
}

.help-row:nth-child(5) .timeline-node {
  background: #2ecc71;
  color: white;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

/* Ensure the row has proper stacking context */
.help-row {
  position: relative;
  z-index: 1;
}

.timeline-node svg {
  width: 28px;
  height: 28px;
  color: currentColor;
}

/* Cards - Initial State (Hidden) */
.help-card {
  background: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(8, 156, 68, 0.12);
  padding: 22px;
  max-width: 460px;
  justify-self: end;
  /* default for left cards */
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  transform: translateX(80px);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition-property: transform, opacity, box-shadow, border-color, background;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Add a subtle shine effect on hover */
.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.help-card:hover::before {
  opacity: 1;
}

/* Professional Team Card */
.help-row:nth-child(1) .help-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ef 100%);
  border-left: 4px solid #089c44;
}

/* Innovative Solutions Card */
.help-row:nth-child(2) .help-card {
  background: linear-gradient(135deg, #f0f7fb 0%, #e1eff8 100%);
  border-left: 4px solid #3498db;
}

/* Execution Excellence Card */
.help-row:nth-child(3) .help-card {
  background: linear-gradient(135deg, #f9f5ff 0%, #f0e6ff 100%);
  border-left: 4px solid #9b59b6;
}

/* Growth & Impact Card */
.help-row:nth-child(4) .help-card {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-left: 4px solid #f1c40f;
}

/* Long-term Partnerships Card */
.help-row:nth-child(5) .help-card {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 4px solid #2ecc71;
}

/* Right-aligned cards start from the left */
.help-card.right {
  justify-self: start;
  transform: translateX(-80px);
}

/* Animated State */
.help-row.visible .help-card {
  opacity: 1;
  transform: translateX(0) translateY(0) !important;
}

/* Hover State */
.help-card:hover {
  transform: translateY(-4px) translateX(0) !important;
  box-shadow: 0 16px 36px rgba(8, 156, 68, 0.18);
  border-color: rgba(8, 156, 68, 0.25);
  z-index: 2;
}

/* Staggered animation delays */
.help-row:nth-child(1) .help-card {
  transition-delay: 0.1s;
}

.help-row:nth-child(2) .help-card {
  transition-delay: 0.2s;
}

.help-row:nth-child(3) .help-card {
  transition-delay: 0.3s;
}

.help-row:nth-child(4) .help-card {
  transition-delay: 0.4s;
}

.help-row:nth-child(5) .help-card {
  transition-delay: 0.5s;
}

.help-card h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.help-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Empty grid cell used for spacing on alternating rows */
.help-row .spacer {
  height: 100%;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .help-row {
    grid-template-columns: 1fr 90px 1fr;
  }

  .timeline-node {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .help-timeline {
    gap: 22px;
  }

  .help-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .help-row .timeline-cell {
    height: auto;
    order: -1;
    padding: 10px 0 0;
  }

  .help-row .timeline-cell::before {
    display: none;
  }

  .timeline-node {
    width: 52px;
    height: 52px;
  }

  .help-card,
  .help-card.right {
    justify-self: stretch;
    max-width: 100%;
  }
}

.we-offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 30px auto 0;
  max-width: 1000px;
}

.we-offer-card {
  background: #fff;
  border-radius: 15px;
  aspect-ratio: 1/1;
  padding: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 156, 68, 0.1);
  border-top: 4px solid var(--brand);
  margin: 0 auto;
}

.we-offer-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.we-offer-card:nth-child(1) .we-offer-icon {
  background: #4e73df;
}

.we-offer-card:nth-child(2) .we-offer-icon {
  background: #1cc88a;
}

.we-offer-card:nth-child(3) .we-offer-icon {
  background: #f6c23e;
}

.we-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.we-offer-card:hover .we-offer-icon {
  transform: scale(1.1);
}

.we-offer-card h3 {
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.we-offer-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Monochrome SVG treatment for We Offer icons (strict black & white) */
.we-offer-icon {
  color: #111 !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.we-offer-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .we-offer-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 20px;
  }

  .we-offer-card {
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .we-offer-section {
    padding: 40px 0;
  }

  .we-offer-section .container {
    padding: 0 20px;
  }
}

/* What We Offer intro */
.what-offer-intro {
  padding-bottom: 10px;
}

.section-wrap .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #7f8c8d;
  max-width: 800px;
  margin: 15px auto 0;
  text-align: center;
  padding: 0 20px 10px;
}

.section-wrap .office-card {
  background: #2c3e50;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  max-width: 800px;
  margin: 30px auto 0;
}

/* What We Offer bullet list */
.what-offer-list {
  margin-top: 0;
  padding-top: 0;
}

.what-offer-list .container {
  margin-top: 0;
  padding-top: 0;
}

.what-offer-list .offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  max-width: 720px;
  margin: 0 auto;
  padding-top: 0;
}

.what-offer-list .offerings {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-offer-list .offerings li {
  position: relative;
  padding-left: 26px;
  margin: 6px 0;
  color: var(--text);
  font-weight: 600;
}

.what-offer-list .offerings li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 47%;
  transform: translateY(-47%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 2px rgba(8, 156, 68, .10);
}

.what-offer-list .offerings li:hover::before {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, .15);
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.86)), #111;
  color: #fff;
  padding: 48px 0;
}

.cta-inner h3 {
  font-weight: 700;
  margin-bottom: 16px;
}

.apply-now-btn {
  background: #089c44;
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(25, 184, 122, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.apply-now-btn .chev {
  font-weight: 900;
  font-size: 1.4em;
  line-height: 1;
  /* ensure proper vertical alignment */
  display: inline-flex;
  /* align icon within button */
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -3px;
  /* nudge up slightly to align optically with text */
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.apply-now-btn:hover {
  transform: translateY(-2px);
  background: #14a668;
  box-shadow: 0 10px 24px rgba(25, 184, 122, 0.45);
}

.apply-now-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(25, 184, 122, 0.35);
}

.apply-now-btn:hover .chev {
  transform: translateX(4px);
}

.apply-now-btn:active {
  transform: translateY(0);
}

/* Save Button */
.apply-save-btn {
  background: linear-gradient(135deg, #089c44, #067a35);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.apply-save-btn:hover {
  background: linear-gradient(135deg, #067a35, #055a28);
}

.apply-save-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(25%);
}

/* Apply Modal Styles */
.apply-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.apply-modal.open {
  display: flex;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.apply-modal-dialog {
  position: relative;
  width: min(92vw, 640px);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  max-height: 90vh;
  overflow-y: auto;
}

.apply-modal.open .apply-modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.apply-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eef2f4;
}

.apply-modal-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
}

.apply-modal-close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #7f8c8d;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.apply-modal-close:hover {
  color: #2c3e50;
}

.apply-modal-body {
  padding: 20px;
}

.apply-form .form-row {
  margin-bottom: 16px;
}

.apply-form .form-row:last-child {
  margin-bottom: 0;
}

.apply-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #fff;
}

.apply-input:focus {
  border-color: #089c44;
  box-shadow: 0 0 0 3px rgba(8, 156, 68, 0.12);
  outline: none;
}

.apply-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid #eef2f4;
}

.apply-save-btn {
  padding: 12px 24px;
  background: #089c44;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-save-btn:hover {
  background: #067a35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 156, 68, 0.3);
}

.apply-save-btn:active {
  transform: translateY(0);
}

.apply-save-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .apply-cta {
    padding: 50px 20px;
  }

  .apply-cta-title {
    font-size: 1.4rem;
  }

  .apply-now-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .apply-modal-dialog {
    padding: 30px 20px;
    margin: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .apply-cta-title {
    font-size: 1.25rem;
  }

  .apply-now-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .apply-modal-header h4 {
    font-size: 1.3rem;
  }

  .apply-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .apply-save-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Map Section */
.map-section {
  background: #f8f9fa;
  padding: 30px 0 60px;
}

.container.wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.map-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin: 0 0 22px 0;
}

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* When using a static image instead of a map */
.map-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.site-footer {
  background: #f8f9fa;
  margin-top: 0;
}

.office-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  border-bottom: 4px solid var(--brand);
  margin-top: 30px;
}

.office-title {
  color: var(--text);
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.office-address,
.office-phone {
  color: var(--muted);
  margin: 6px 0;
}

.contact-bar {
  background: var(--brand);
  color: #fff;
  margin-top: 16px;
}

.contact-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-weight: 700;
}

.contact-mail {
  color: #fff;
}

.footer-bottom {
  background: #d8efe3;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}

.footer-bottom .socials a {
  color: #2c3e50;
  margin-right: 14px;
  text-decoration: none;
}

.footer-bottom .socials a:hover {
  color: var(--brand);
}

.footer-bottom .copyright {
  color: #2c3e50;
  font-size: .9rem;
}

/* Ensure the new classic footer design shows correctly on home page */
.site-footer.footer-classic {
  background: #070707 !important;
  color: #ffffff;
}

.site-footer.footer-classic a {
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 769px) {
  .site-footer.footer-classic .container {
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
  }
}

.site-footer.footer-classic .footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.site-footer.footer-classic .footer-bottom {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

/* Footer address card styling (right column) */
.site-footer.footer-classic .footer-right .footer-address {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.site-footer.footer-classic .footer-right .footer-address strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #fff;
}

.site-footer.footer-classic .footer-right .footer-address a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8f5ee;
}

.site-footer.footer-classic .footer-right .footer-address a[href^="tel:"]:before {
  content: "\f095";
  /* fa-phone unicode */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
  opacity: 0.9;
}

.site-footer.footer-classic .footer-right .footer-address a[href^="tel:"]:hover {
  color: #19b87a;
  text-decoration: none;
}

@media (max-width: 992px) {
  .site-footer.footer-classic .footer-right .footer-address {
    margin-top: 8px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .section-wrap {
    padding: 56px 18px;
  }

  .section-heading {
    font-size: 1.7rem;
  }

  .hero {
    height: 64vh;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  /* Make layout fluid on tablet */
  .container {
    max-width: 100%;
  }

  .hero-inner {
    max-width: 92%;
  }

  .hero-nav.prev {
    left: -10px;
  }

  .hero-nav.next {
    right: -10px;
  }

  .hero-partition .col-title {
    font-size: clamp(11px, 1.6vw, 14px);
  }
}

@media (max-width: 640px) {

  /* Use dynamic viewport height to cover full screen including browser UI */
  .hero {
    height: 100dvh;
    min-height: 100dvh;
    box-sizing: border-box;
    padding-bottom: 0;
  }

  /* Mobile fallback: fixed attachment can jank on some devices */
  .hero {
    background-attachment: scroll;
  }

  /* Hide decorative partition lines; headings are rendered per slide */
  .hero-partition {
    display: none;
  }

  /* Keep center logo and city columns visible on mobile */
  .hero .sticky-card {
    display: none !important;
  }

  /* Full-screen horizontal slides for Central / Maharashtra / Others */
  .hero .hero-alt {
    display: grid;
    position: absolute;
    inset: 0;
    /* full hero */
    padding: calc(var(--nav-h) + 6px) 10px 10px;
    /* respect navbar height */
    box-sizing: border-box;
    overflow: hidden;
    white-space: normal;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    row-gap: 6px;
  }

  /* Stack three rows: Central, Maharashtra, Others */
  .hero .hero-alt .alt-col {
    display: grid;
    grid-template-columns: minmax(100px, 40%) 1fr;
    grid-template-areas: "title title" "map links";
    align-items: start;
    justify-items: start;
    width: 95%;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 0px 10px 0px;
    gap: 0px 2px;
    background: transparent;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
  }

  .hero .hero-alt .alt-col .col-title {
    grid-area: title;
    margin: 0;
    letter-spacing: 1.2px;
  }

  .hero .hero-alt .alt-map {
    grid-area: map;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .hero .hero-alt .map-img {
    width: 100%;
    height: auto;
    max-width: clamp(92px, 30vw, 130px);
    max-height: clamp(70px, 22vh, 110px);
    object-fit: contain;
  }

  .hero .hero-alt .alt-links {
    grid-area: links;
    width: 100%;
    max-width: clamp(200px, 52vw, 300px);
    overflow: hidden;
    justify-self: end;
    align-self: start;
    display: grid;
    gap: 0px;
  }

  .hero .hero-alt .alt-links .alt-link {
    display: block;
    margin: 0px 0;
  }

  .hero .hero-alt .state-list {
    grid-area: links;
    width: 100%;
    padding-left: 0;
    display: grid;
    gap: 6px;
  }

  .hero .hero-alt .state-list li {
    margin: 0;
    list-style: none;
  }

  /* Right column: subtle divider and padding */
  .hero .hero-alt .alt-links,
  .hero .hero-alt .state-list {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    padding-left: 12px;
  }

  /* Make pill links fill the column width */
  .alt-links a {
    width: 110%;
    box-sizing: border-box;
    word-break: break-word;
    padding: 6px 10px;
    font-size: clamp(11px, 3.2vw, 13px);
  }

  .state-list a {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 10px;
    font-size: clamp(11px, 3.2vw, 13px);
  }

  /* Mobile: transparent appearance for policy and state items */
  .hero .hero-alt .alt-links a,
  .hero .hero-alt .state-list a {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  /* States: two-column grid to fit all items without scrolling */
  .hero .hero-alt .state-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 6px 8px;
    justify-items: start;
  }

  .hero .hero-alt .state-list a {
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.2;
    padding: 6px 8px;
  }

  /* Reclaim width on states column (no divider for states) */
  .hero .hero-alt .state-list {
    border-left: 0 !important;
    padding-left: 0 !important;
  }

  /* Add labels as a dedicated full-width row */
  .hero .hero-alt .alt-col::before {
    grid-area: title;
    display: block;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #fff;
    opacity: .95;
    margin-bottom: 2px;
    font-size: clamp(12px, 2.8vw, 14px);
  }

  .hero .hero-alt .alt-col.left::before {
    content: "CENTRAL";
  }

  .hero .hero-alt .alt-col.center {
    display: none !important;
  }

  .hero .hero-alt .alt-col.right::before {
    content: "MAHARASHTRA";
  }

  /* no horizontal scrollbar in stacked mobile layout */
  .hero .hero-alt {
    scrollbar-width: thin;
  }

  .hero .hero-alt::-webkit-scrollbar {
    width: 6px;
  }

  .hero .hero-alt::-webkit-scrollbar-thumb {
    background: rgba(25, 184, 122, 0.85);
    border-radius: 4px;
  }

  /* Remove desktop offsets for policy lists on mobile */
  .hero .hero-alt .alt-col.left .alt-links,
  .hero .hero-alt .alt-col.center .alt-links {
    margin-left: 0 !important;
  }

  /* Align state list to the right column start */
  .hero .hero-alt .state-list {
    grid-area: links;
    width: 100%;
    max-width: clamp(200px, 52vw, 320px);
    justify-self: end;
    align-self: start;
  }

  /* Hide background image navigator on phones to avoid overlap */
  .hero .hero-bg-thumbs,
  .hero .hero-bg-hotspot {
    display: none !important;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .section-wrap {
    padding: 36px 16px;
  }

  .section-title {
    font-size: 0.95rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-dots {
    bottom: 12px;
  }

  .stat {
    padding: 16px;
  }

  .stat .num {
    font-size: 1.2rem;
  }

  .stat .label {
    font-size: 0.86rem;
  }

  /* Make layout fully fluid on phones */
  .container {
    max-width: 100%;
  }

  .hero-inner {
    max-width: 100%;
  }

  .what-offer-list .offerings-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
  }
}

/* Very small devices */
@media (max-width: 380px) {
  .hero {
    height: 52vh;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-dots {
    display: none;
  }
}

/* Final home footer mobile overrides to match global styles */
@media (max-width: 768px) {
  .site-footer.footer-classic .footer-top {
    grid-template-columns: 1fr;
    row-gap: 24px;
    align-items: start;
  }

  .site-footer.footer-classic .footer-left {
    grid-row: 1;
  }

  .site-footer.footer-classic .footer-center {
    grid-row: 2;
    padding: 0;
  }

  .site-footer.footer-classic .footer-right {
    grid-row: 3;
  }

  .site-footer.footer-classic .footer-top>* {
    justify-self: stretch;
  }

  .site-footer.footer-classic .footer-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .site-footer.footer-classic .footer-nav a {
    letter-spacing: 1px;
  }

  .site-footer.footer-classic .footer-logo.monochrome {
    margin: 0 auto;
  }

  .site-footer.footer-classic .footer-tagline {
    text-align: center;
    max-width: 520px;
    margin: 8px auto 0;
    line-height: 1.4;
    font-size: 1rem;
  }

  .site-footer.footer-classic .container,
  .footer-classic .footer-bottom .container {
    padding: 0 16px;
  }

  .site-footer.footer-classic {
    padding-bottom: 10px;
  }

  .site-footer.footer-classic .footer-right .footer-address {
    padding-right: 84px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .site-footer.footer-classic .footer-right .footer-address {
    padding-right: 104px;
  }
}

/* =============================
   Hero: centered two-column city list under logo
   ============================= */
.hero-city-columns {
  position: relative;
  z-index: 98;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  width: clamp(420px, 62vw, 640px);
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}

.hero-city-columns .city-col {
  display: grid;
  gap: 10px;
}

.hero-city-columns .city-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.1px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.hero-city-columns .city-chip:hover,
.hero-city-columns .city-chip:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24), 0 0 0 2px rgba(25, 184, 122, 0.25);
  outline: none;
}

.hero-city-columns .city-chip i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(8, 156, 68, 0.18);
  color: #19b87a;
}

/* Hide side stacks when center city columns are present to prevent duplication */
.hero .sticky-cards.in-hero {
  display: flex;
}

/* Override: hide centered city list so only left/right stacks show */
.hero-city-columns {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-city-columns {
    width: 92%;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }
}

@media (max-width: 560px) {

  /* Keep two columns even on small phones per request */
  .hero-city-columns {
    grid-template-columns: 1fr 1fr;
    width: 92%;
  }
}

/* Hide the city columns when Central/Maharashtra/Others view shows */
.hero.show-alt .hero-city-columns {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Enlarge Maharashtra map (center column) */
.hero-alt .alt-col.center .alt-map {
  width: clamp(220px, 48%, 320px);
}

.hero-alt .alt-col.center .alt-map .map-img {
  width: 100%;
}

@media (max-width: 992px) {
  .hero-alt .alt-col.center .alt-map {
    width: min(80%, 320px);
  }
}

/* About section: full-width 5-column row */
#about.section-wrap {
  padding-left: 0;
  padding-right: 0;
}

#about .container {
  max-width: none;
  width: 100%;
}

#about .about-cards {
  width: 100%;
}

/* We Offer: full-width 5-column row */
.we-offer-section.section-wrap {
  padding-left: 0;
  padding-right: 0;
}

.we-offer-section .container {
  max-width: none;
  width: 90%;
  padding-left: 0;
  padding-right: 0;
}

.we-offer-section .we-offer-grid {
  max-width: none;
  width: 100%;
}

/* Mobile hero: default shows logo + cities; when .show-alt, reveal stacked alt and hide logo/cities */
@media (max-width: 640px) {
  .hero .hero-alt {
    display: none;
  }

  .hero.show-alt .hero-alt {
    display: block !important;
  }

  .hero.show-alt .hero-city-columns {
    opacity: 0 !important;
    transform: translateY(-6px) scale(.98) !important;
    pointer-events: none !important;
  }
}

/* Desktop override: never replace logo/cards with maps automatically */
@media (min-width: 993px) {
  .hero .hero-alt {
    display: none !important;
  }

  .hero.show-alt .hero-alt {
    display: none !important;
  }

  .hero.show-alt .sticky-cards.in-hero,
  .hero.show-alt .hero-center-logo {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* Hide side sticky stacks on mobile to keep center unobstructed */
@media (max-width: 640px) {
  .hero .sticky-cards.in-hero {
    display: none !important;
  }
}

/* Home hero desktop hover behaviors (moved from inline) */
@media (min-width: 993px) {
  body.home .navbar {
    z-index: 2000;
  }

  .hero-partition {
    z-index: 92;
    pointer-events: auto;
  }

  .hero-partition .col-title {
    /* Hidden until hovered over respective section */
    opacity: 0;
    transform: translateY(-6px);
    cursor: default;
    position: relative;
    transition: opacity .35s ease, transform .45s ease, text-shadow .25s ease;
    pointer-events: none;
    /* let hover-zones capture interactions */
    animation: none;
  }

  /* Soft halo behind labels to suggest hover */
  .hero-partition .col-title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translateX(-50%);
    width: clamp(100px, 24vw, 240px);
    height: 36px;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(8, 156, 68, 0.28), rgba(8, 156, 68, 0) 60%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity .22s ease, transform .22s ease;
    height: 200px;
    /* increase to extend area below the label */
    top: -2px;
    /* adjust so the halo sits just under/around the label */
  }

  .hero-partition .col-title:hover {
    text-shadow: 0 0 10px rgba(8, 156, 68, 0.8), 0 0 22px rgba(8, 156, 68, 0.55);
  }

  .hero-partition .col-title:hover::after {
    opacity: .85;
    transform: translateX(-50%) scale(1.06);
  }

  /* Reveal titles when hovering corresponding section or panel, or via JS stable classes */
  .hero:has(.hero-partition .hover-zone.left:hover) .hero-partition .col-title.left,
  .hero:has(.hero-alt .alt-col.left:hover) .hero-partition .col-title.left,
  .hero.hover-left .hero-partition .col-title.left {
    opacity: 1;
    transform: translateY(0);
  }

  .hero:has(.hero-partition .hover-zone.center:hover) .hero-partition .col-title.center,
  .hero:has(.hero-alt .alt-col.center:hover) .hero-partition .col-title.center,
  .hero.hover-center .hero-partition .col-title.center {
    opacity: 1;
    transform: translateY(0);
  }

  .hero:has(.hero-partition .hover-zone.right:hover) .hero-partition .col-title.right,
  .hero:has(.hero-alt .alt-col.right:hover) .hero-partition .col-title.right,
  .hero.hover-right .hero-partition .col-title.right {
    opacity: 1;
    transform: translateY(0);
  }

  /* Halo appears with title when active */
  .hero:has(.hero-partition .hover-zone.left:hover) .hero-partition .col-title.left::after,
  .hero:has(.hero-alt .alt-col.left:hover) .hero-partition .col-title.left::after,
  .hero.hover-left .hero-partition .col-title.left::after,
  .hero:has(.hero-partition .hover-zone.center:hover) .hero-partition .col-title.center::after,
  .hero:has(.hero-alt .alt-col.center:hover) .hero-partition .col-title.center::after,
  .hero.hover-center .hero-partition .col-title.center::after,
  .hero:has(.hero-partition .hover-zone.right:hover) .hero-partition .col-title.right::after,
  .hero:has(.hero-alt .alt-col.right:hover) .hero-partition .col-title.right::after,
  .hero.hover-right .hero-partition .col-title.right::after {
    opacity: .85;
    transform: translateX(-50%) scale(1.06);
  }

  @keyframes labelGlow {
    0% {
      text-shadow: 0 0 0 rgba(8, 156, 68, 0.0);
    }

    50% {
      text-shadow: 0 0 8px rgba(8, 156, 68, 0.35), 0 0 16px rgba(8, 156, 68, 0.20);
    }

    100% {
      text-shadow: 0 0 0 rgba(8, 156, 68, 0.0);
    }
  }

  .hero-partition .v-divider {
    display: none !important;
  }

  .hero-partition .hover-zone {
    position: absolute;
    top: var(--nav-h, 72px);
    bottom: 0;
    pointer-events: auto;
    /* enable zone triggers across the whole section */
  }

  /* Make zones narrower with small gaps so there is a non-hover area inside hero */
  .hero-partition .hover-zone.left {
    left: 0;
    width: 33.3334%;
    display: block;
  }

  .hero-partition .hover-zone.center {
    left: 33.3334%;
    width: 33.3334%;
    display: block;
  }

  .hero-partition .hover-zone.right {
    left: 66.6668%;
    width: 33.3332%;
    display: block;
  }

  .hero {
    position: relative;
  }

  .hero::before {
    transition: background 420ms ease, opacity 420ms ease;
  }

  .hero:has(.hero-partition .col-title:hover)::before,
  .hero:has(.hero-partition .hover-zone:hover)::before {
    background: rgba(0, 0, 0, 0.35);
  }

  /* Keep open when hovering the panel itself */
  .hero:has(.hero-alt:hover)::before {
    background: rgba(0, 0, 0, 0.35);
  }

  .hero:has(.hero-alt:hover) .hero-alt {
    opacity: 1;
    pointer-events: auto;
  }

  /* Fallback: reveal panel when hovering a specific label (near the title) */
  .hero:has(.hero-partition .col-title.left:hover) .hero-alt,
  .hero:has(.hero-partition .col-title.center:hover) .hero-alt,
  .hero:has(.hero-partition .col-title.right:hover) .hero-alt,
  .hero:has(.hero-partition .hover-zone.left:hover) .hero-alt,
  .hero:has(.hero-partition .hover-zone.center:hover) .hero-alt,
  .hero:has(.hero-partition .hover-zone.right:hover) .hero-alt {
    opacity: 1;
    pointer-events: auto;
  }

  /* Also reveal the matching column when its label is hovered */
  .hero:has(.hero-partition .col-title.left:hover) .hero-alt .alt-col.left,
  .hero:has(.hero-partition .hover-zone.left:hover) .hero-alt .alt-col.left {
    opacity: 1;
    pointer-events: auto;
  }

  .hero:has(.hero-partition .col-title.center:hover) .hero-alt .alt-col.center,
  .hero:has(.hero-partition .hover-zone.center:hover) .hero-alt .alt-col.center {
    opacity: 1;
    pointer-events: auto;
  }

  .hero:has(.hero-partition .col-title.right:hover) .hero-alt .alt-col.right,
  .hero:has(.hero-partition .hover-zone.right:hover) .hero-alt .alt-col.right {
    opacity: 1;
    pointer-events: auto;
  }

  /* Reveal the specific column when hovering it as well */
  .hero:has(.hero-alt .alt-col.left:hover) .hero-alt .alt-col.left {
    opacity: 1;
    pointer-events: auto;
  }

  .hero:has(.hero-alt .alt-col.center:hover) .hero-alt .alt-col.center {
    opacity: 1;
    pointer-events: auto;
  }

  .hero:has(.hero-alt .alt-col.right:hover) .hero-alt .alt-col.right {
    opacity: 1;
    pointer-events: auto;
  }

  /* JS-assisted stable hover classes (fallback for gaps between zones and panel) */
  .hero.hovering::before {
    background: rgba(0, 0, 0, 0.35);
  }

  .hero.hovering .hero-alt {
    opacity: 1;
    pointer-events: auto;
  }

  .hero.hover-left .hero-alt .alt-col.left {
    opacity: 1;
    pointer-events: auto;
  }

  .hero.hover-center .hero-alt .alt-col.center {
    opacity: 1;
    pointer-events: auto;
  }

  .hero.hover-right .hero-alt .alt-col.right {
    opacity: 1;
    pointer-events: auto;
  }

  body.home .hero .hero-alt {
    display: grid !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 420ms ease, transform 420ms ease;
    z-index: 103;
    /* above .hero-partition (z:102) so links are clickable */
  }

  body.home .hero .hero-alt .alt-col {
    opacity: 0;
    pointer-events: none;
    transition: opacity 420ms ease;
  }

  /* Reveal is controlled by .hero.hovering (set by JS). Zone hover alone won't keep it open. */
  /* .hero:has(.hover-zone:hover) .hero-alt { opacity: 1; }  -- removed on purpose */

  /* Column reveal also controlled by .hero.hover-left|center|right */

  .hero .address-cards.in-hero,
  .hero .hero-center-logo {
    transition: opacity 420ms ease, transform 420ms ease;
  }

  .hero:has(.hero-partition .col-title.left:hover) .address-cards.in-hero.left-side,
  .hero:has(.hero-partition .hover-zone.left:hover) .address-cards.in-hero.left-side {
    opacity: 0;
    pointer-events: none;
  }



  .hero:has(.hero-partition .col-title.right:hover) .address-cards.in-hero.right-side,
  .hero:has(.hero-partition .hover-zone.right:hover) .address-cards.in-hero.right-side {
    opacity: 0;
    pointer-events: none;
  }

  /* JS class fallback to keep correct elements hidden while hovering the panel */
  .hero.hover-left .address-cards.in-hero.left-side {
    opacity: 0;
    pointer-events: none;
  }



  .hero.hover-right .address-cards.in-hero.right-side {
    opacity: 0;
    pointer-events: none;
  }
}

/* Click priority: ensure in-hero stacks sit above overlay so visible cards are clickable */
.hero .sticky-cards.in-hero,
.hero .address-cards.in-hero,
.hero .policy-cards.in-hero {
  z-index: 110 !important;
}

/* Disable interactivity for address cards (no click, no hover) */
.address-cards .sticky-card {
  pointer-events: none !important;
  cursor: default !important;
}

/* Eurostile Bold Extended for home navbar */
.navbar .logo-text,
.navbar .logo-text2 {
  font-family: 'Eurostile Bold Extended', 'Eurostile', 'Microgramma D Extended', 'Microgramma', 'Square 721 BT', 'Bank Gothic', 'Montserrat', Arial, sans-serif !important;
}

/* =============================
   Our Clients Section
   ============================= */
.clients-section {
  background: #f8f9fa;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.clients-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.clients-section .section-title {
  font-size: 0.95rem;
  font-weight: 750;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.clients-section .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Policy Navigation Bar */
.policy-nav-container {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.policy-nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(8, 156, 68, 0.1);
  position: relative;
}

/* Sliding background indicator */
.policy-nav-bar::before {
  content: '';
  position: absolute;
  background: #089c44;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(8, 156, 68, 0.25);
}

.policy-nav-btn {
  background: transparent;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.policy-nav-btn:hover {
  color: #089c44;
  transform: translateY(-1px);
}

.policy-nav-btn.active {
  color: #ffffff;
  background: transparent;
}

.policy-nav-btn.active:hover {
  color: #ffffff;
}

/* Scrolling container */
.clients-scroll-container {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: transparent;
  padding: 20px 0;
  transition: height 0.3s ease, padding 0.3s ease;
}

.clients-scroll-container.hidden {
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* Navigation arrows */
.clients-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.clients-nav-arrow:hover {
  background: #089c44;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 156, 68, 0.3);
}

.clients-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.clients-nav-arrow.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.clients-nav-left {
  left: 10px;
}

.clients-nav-right {
  right: 10px;
}

.clients-nav-arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.clients-scroll-container::before,
.clients-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 0%, rgba(248, 249, 250, 0.8) 50%, transparent 100%);
}

.clients-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa 0%, rgba(248, 249, 250, 0.8) 50%, transparent 100%);
}

/* Scrolling track */
.clients-track {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.clients-track.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo sets */
.logo-set {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-left 80s linear infinite;
  width: fit-content;
  padding: 0;
  /* remove outer padding to avoid seam gap */
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.logo-set.active {
  opacity: 1;
  visibility: visible;
}

/* Individual client logo */
.client-logo {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 15px;
  border: 2px solid transparent;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(8, 156, 68, 0.15);
  border-color: rgba(8, 156, 68, 0.2);
}

.client-logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo:hover svg {
  transform: scale(1.05);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.05);
}

/* View More Button Styles */
.view-more-container {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 100;
}

.view-more-container.hidden {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.view-less-container {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
}

.view-more-btn {
  background: linear-gradient(135deg, #089c44 0%, #0a7a35 100%);
  color: white !important;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(8, 156, 68, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 101;
}

.view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 156, 68, 0.4);
  background: linear-gradient(135deg, #0a7a35 0%, #089c44 100%);
}

.view-more-btn:active {
  transform: translateY(0);
}

.view-more-icon {
  transition: transform 0.3s ease;
}

.view-more-btn.expanded .view-more-icon {
  transform: rotate(180deg);
}

/* Expanded Clients Container */
.expanded-clients-container {
  overflow: hidden;
  padding: 0 20px;
  display: none;
}

.expanded-clients-container.active {
  max-height: none;
  padding: 40px 20px;
  display: block;
}

.expanded-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-items: center;
}

.expanded-client-logo {
  width: 100%;
  height: 110px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 16px;
}

.expanded-client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expanded-client-logo svg,
.expanded-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive adjustments for expanded view */
@media (max-width: 900px) {
  .expanded-clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .expanded-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .expanded-client-logo {
    height: 80px;
    padding: 12px;
  }

  .view-more-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.clients-scroll-container:hover .clients-track {
  animation-play-state: paused;
}

/* Responsive design */
@media (max-width: 992px) {
  .clients-section {
    padding: 60px 0;
  }

  .clients-section .container {
    padding: 0 20px;
  }

  .clients-section .section-title {
    font-size: 0.95rem;
  }

  .policy-nav-bar {
    padding: 6px;
    gap: 6px;
  }

  .policy-nav-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .client-logo {
    width: 120px;
    height: 70px;
  }

  .clients-track {
    gap: 40px;
    animation-duration: 70s;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 50px 0;
  }

  .clients-section .section-title {
    font-size: 0.95rem;
  }

  .clients-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .policy-nav-container {
    margin: 30px 0;
  }

  .policy-nav-bar {
    padding: 4px;
    gap: 4px;
    border-radius: 25px;
  }

  .policy-nav-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
  }

  .clients-nav-arrow {
    width: 40px;
    height: 40px;
  }

  .clients-nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .clients-nav-left {
    left: 10px;
  }

  .clients-nav-right {
    right: 10px;
  }

  .client-logo {
    width: 100px;
    height: 60px;
    padding: 10px;
  }

  .clients-track {
    gap: 30px;
    animation-duration: 60s;
  }

  .clients-scroll-container::before,
  .clients-scroll-container::after {
    width: 50px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }

  .clients-scroll-container {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .clients-track {
    justify-content: flex-start;
  }
}