/* ── Design Tokens ── */
:root {
  --color-primary: #003527;
  --color-secondary: #39b54a;
  --color-on-surface-variant: #343c37;
  --color-primary-fixed-dim: #95d3ba;
  --color-on-primary-container: #80bea6;
  --color-tertiary: #4a2400;
  --color-tertiary-fixed: #ffdcc3;
  --color-surface-container-lowest: #ffffff;
  --color-primary-container: #064e3b;
  --color-outline: #707974;
  --color-outline-variant: #bfc9c3;
  --color-on-background: #151c27;
  --color-secondary-fixed: #6ffbbe;
  --color-surface-container-low: #f0f3ff;
  --color-background: #f9f9ff;
  --color-footer: #011a48;
  --color-blue: #154a8f;
  --color-yellow: #f09b20;
  --color-green: #39b54a;

  --primary-light: #95d3ba;
  --primary-mid: #006c49;
  --accent: #6ffbbe;
  --tertiary: #4a2400;
  --tertiary-light: #ffdcc3;
  --surface: #f9f9ff;
  --surface-low: #f0f3ff;
  --outline: #bfc9c3;
  --text-main: #151c27;
  --text-muted: #404944;
}

*::selection {
  background-color: #d3e2f6;
}
/* ── Base ── */
body {
  background-color: var(--color-background);
  color: var(--color-on-background);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
a{
  text-decoration:none!important;
}

@media (max-width: 1300px) {
  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: translateX(0) !important;
  }
}

/* ── Used Typography Classes ── */
.text-headline-md {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.text-body-lg {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.text-body-md {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/* ── Used Color Utilities ── */
.text-primary-color {
  color: var(--color-footer) !important;
}
.text-secondary-color {
  color: var(--color-secondary) !important;
}
.text-on-surface-variant {
  color: var(--color-on-surface-variant) !important;
}
.text-primary-fixed-dim {
  color: var(--color-primary-fixed-dim) !important;
}
.text-secondary-fixed {
  color: var(--color-secondary-fixed) !important;
}
.text-on-surface-variant-80 {
  color: rgba(64, 73, 68, 0.8) !important;
}

.bg-surface-container-lowest {
  background-color: var(--color-surface-container-lowest) !important;
}
.bg-surface-container-low {
  background-color: var(--color-surface-container-low) !important;
}
.bg-primary-container {
  background-color: var(--color-primary-container) !important;
}
.bg-tertiary-fixed {
  background-color: var(--color-tertiary-fixed) !important;
}

/* ── Glass Card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.05);
}
.section-heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.site-tagline {
  background-color: var(--color-footer);
  color: #fff;
  padding: 6px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1051; /* above the nav */
  text-align: center;
}
/* ══════════════════════════════
     NAVBAR
  ══════════════════════════════ */
.site-nav {
  position: fixed;
  top: 27px;
  width: 100%;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.05);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 991.98px) {
  .nav-inner {
    padding: 12px 20px;
  }
}
.logo-img {
  height: 103px;
  width: auto;
  padding: 7px;
}

@media (max-width: 991.98px) {
 .logo-img {
  height: 80px;
}
}

/* Nav links */
.nav-link-custom {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link-custom:hover {
  color: var(--color-blue);
}
.nav-link-custom.active {
  color: var(--color-blue);
  font-weight: 700;
  border-bottom: 2px solid var(--color-blue);
}

/* Collapsible nav area */
.nav-collapse {
  display: none;
  width: 100%;
}
.nav-collapse.open {
  display: block;
}
@media (min-width: 992px) {
  .nav-collapse {
    display: flex !important;
    align-items: center;
    gap: 28px;
    width: auto;
  }
}

/* Mobile stacked links */
@media (max-width: 991.98px) {
  .nav-collapse.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
    border-top: 1px solid rgba(0, 53, 39, 0.06);
    margin-top: 8px;
  }
  .nav-collapse.open .nav-link-custom {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(0, 53, 39, 0.05);
    width: 100%;
    display: block;
  }
  .nav-collapse.open .nav-link-custom.active {
    border-bottom-color: var(--color-blue);
  }
}
/* ── Mobile nav: scrollable when dropdown is open ── */
@media (max-width: 991.98px) {
  .nav-collapse.open {
    max-height: calc(100vh - 80px); /* 80px = navbar height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    padding-bottom: 80px; /* clears the last button */
  }
}

/* Hamburger button */
.navbar-toggler-custom {
  background: none;
  border: 1px solid rgba(0, 53, 39, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--color-primary);
  line-height: 1;
}
.navbar-toggler-custom .material-symbols-outlined {
  font-size: 22px;
  display: block;
}

/* Request Demo button */
.btn-request-demo {
  background-color: var(--color-yellow);
  color: white;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 108, 73, 0.2);
  transition:
    background-color 0.2s,
    transform 0.1s;
  white-space: nowrap;
}
.btn-request-demo:hover {
  background-color: var(--color-primary);
  color: white;
}
.btn-request-demo:active {
  transform: scale(0.95);
}

/* ── Products Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-link-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger {
  background: transparent;
  border: none;
  color: var(--color-on-surface-variant);
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-link-page {
  width: auto;
}

/* Desktop dropdown */
@media (min-width: 992px) {
  .nav-dropdown-trigger {
    display: none !important;
  }

  .desktop-arrow {
    display: inline-flex;
  }

  .mobile-arrow {
    display: none !important;
  }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(138, 173, 240, 0.08);
    box-shadow: 0 16px 48px rgba(119, 141, 230, 0.14);
    border-radius: 12px;
    padding: 8px;
    z-index: 1060;
  }
  .nav-dropdown-menu.show {
    display: block;
  }
}

/* Mobile dropdown — inline accordion */
@media (max-width: 991.98px) {
  .nav-dropdown-link-wrap {
    width: 100%;
  }

  .desktop-arrow {
    display: none !important;
  }

  .nav-dropdown-trigger {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-link-page {
    flex: 1;
  }

  .nav-dropdown-menu {
    display: none;
    background: hwb(214deg 8% 44% / 8%);
    border-left: 3px solid var(--color-blue);
    border-radius: 0 8px 8px 0;
    margin: 2px 0 2px 8px;
    padding: 4px;
  }
  .nav-dropdown-menu.show {
    display: block;
  }
  .desktop-only-item {
    display: none !important;
  }
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(180, 176, 245, 0.08);
  color: var(--color-blue);
}
.nav-dropdown-menu a .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-secondary);
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(0, 53, 39, 0.06);
  margin: 4px 8px;
}

/* Arrow icon */
.dropdown-arrow {
  font-size: 16px !important;
  transition: transform 0.2s;
  vertical-align: middle;
}
.nav-dropdown.open .dropdown-arrow,
.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

/* Mobile Request Demo */
.btn-request-demo-mobile {
  padding: 10px 8px 0;
}
.btn-request-demo-mobile .btn-request-demo {
  width: 100%;
  border-radius: 8px;
}

/* breadcrumb */
.breadcrumb-wrap {
  padding-top: 130px; /* 80px navbar + 20px breathing room */
  padding-bottom: 0;
  background: var(--color-surface-container-low);
}
.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.5rem 0;
}

.breadcrumb-trail a,
.breadcrumb-trail span {
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50rem;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.breadcrumb-trail a {
  color: #4a7ec0;
  background: #eaf1fa;
  border: 1px solid #c8ddf2;
}

.breadcrumb-trail a:hover {
  background: #d4e6f5;
  color: #154a8f;
}

.breadcrumb-trail .bc-sep {
  color: #8aafd8;
  font-size: 12px;
  padding: 0;
  background: none;
  border: none;
  pointer-events: none;
}

.breadcrumb-trail .bc-current {
  color: #154a8f;
  background: #d4e6f5;
  border: 1px solid #a8c8e8;
  font-weight: 600;
  cursor: default;
}
/* Mobile tightening */
@media (max-width: 576px) {
  .breadcrumb-wrap {
    padding-top: 140px; /* adjust to match your mobile navbar height */
  }
  .breadcrumb-trail {
    padding: 1rem 0;
    gap: 8px;
    /* fade edges so users know it's scrollable */
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
  }
  .breadcrumb-trail a,
  .breadcrumb-trail span {
    font-size: 12px;
    padding: 4px 12px;
  }
}
/* End of breadcrumb */

/* ══════════════════════════════
     HERO
  ══════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 131px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("./images/home2.webp");
  background-size: cover;
  background-position: center;
}
/* Mobile */
@media (max-width: 767.98px) {
    .hero-bg {
        background-image: url("./images/mobile-hero.webp");
        background-position: center;
        background-size: cover;
    }
    @media (max-width:767px){
    .hero-bg-overlay{
        background: linear-gradient(
            to bottom,
            rgba(255,255,255,.90),
            rgba(255,255,255,.55),
            rgba(255,255,255,.15)
        );
    }
}
}
/* .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.4), transparent);
  } */
.hero-content-wrap {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 108, 73, 0.1);
  color: var(--color-blue);
  border-radius: 9999px;
  border: 1px solid rgba(0, 108, 73, 0.2);
  backdrop-filter: blur(4px);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge .material-symbols-outlined {
  font-size: 14px;
}
.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 29px;
  line-height: 35px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 45px;
    line-height: 56px;
  }
}
@media (max-width:768px) {
   .hero-title{
    width: 250px;
   }
    .hero-description {
        display: none;
    }
}
.hero-title span {
  color: var(--color-blue);
}
.hero-cta-primary {
  background-color: var(--color-yellow);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.2s;
}
.hero-cta-primary:hover {
  box-shadow: 0 24px 48px rgba(0, 53, 39, 0.3);
  color: white;
}
.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 53, 39, 0.1);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.hero-cta-secondary:hover {
  background: white;
  color: var(--color-primary);
}
.hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 53, 39, 0.05);
}
@media (min-width: 768px) {
  .hero-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-feature-item .material-symbols-outlined {
  color: var(--color-background);
  font-variation-settings: "FILL" 1;
  font-size: 30px;
}
.hero-feature-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-background);
}

/* TRUST BAR */
.trust-bar {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 108, 73, 0.06) 0%,
      rgba(0, 108, 73, 0) 60%
    ),
    #fff;
}

/* side fade effect */
.trust-bar::before,
.trust-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 30px;
}

/* MARQUEE WRAPPER & BUTTONS */
.marquee-wrapper {
  padding: 0 55px;
  /* room for the buttons so they don't cover logos */
}

.marquee-wrapper + .marquee-label,
.marquee-wrapper + p {
  margin-top: 40px;
}

.marquee-btn {
  width: 42px;
  height: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #006c49;
  font-size: 16px;
}

.marquee-btn:hover {
  background-color: #006c49 !important;
  color: #fff;
}

.marquee-row {
  overflow: hidden;
  position: relative;
}

.marquee-wrapper + .marquee-wrapper {
  margin-top: 28px;
}

.marquee-content {
  display: flex;
  width: max-content;
  align-items: center;
  /* transform is driven by JS now, so no CSS animation here */
}

/* LOGO CARD */
.marquee-item {
  flex-shrink: 0;
  padding: 0 14px;
}

.logo-card {
  width: 180px;
  height: 95px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(133, 181, 233, 0.15);
}

.logo-card img {
  max-width: 130px;
  max-height: 150px;
  object-fit: contain;
  transition: 0.35s ease;
  mix-blend-mode: multiply;
}

.logo-card:hover img {
  filter: none;
  opacity: 1;
}

/* FIRST ROW BIGGER */
.row-primary .logo-card {
  width: 225px;
  height: 140px;
}

/* SECOND ROW SMALLER */
.row-secondary .logo-card {
  width: 230px;
  height: 120px;
}

@media (max-width: 768px) {
  .marquee-wrapper {
    padding: 0 40px;
  }

  .marquee-btn {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .logo-card {
    width: 140px;
    height: 75px;
  }

  .row-primary .logo-card {
    width: 150px;
    height: 80px;
  }

  .row-secondary .logo-card {
    width: 130px;
    height: 70px;
  }

  .logo-card img {
    max-width: 90px;
    max-height: 90px;
  }

  .trust-bar::before,
  .trust-bar::after {
    width: 60px;
  }
}
/* about section */
/* ── About Section ── */
.about-section {
  position: relative;
  padding: 100px 0 80px;
  background-color: #f2f2f0;
  overflow: hidden;
}

/* Sketch watermark background */
.about-sketch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0.07;
}
.about-sketch-bg svg {
  width: 55%;
  height: auto;
}

/* Who We Are pill */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 9999px;
  padding: 5px 14px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.about-eyebrow::before {
  content: "+";
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
}

/* Vertical rule */
.about-top-rule {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
}

/* Headline */
.about-headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.about-headline .accent {
  color: var(--color-blue);
}

/* Sub text */
.about-subtext {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #555;
  max-width: 480px;
}

/* Cards row */
.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.about-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Icon top-right */
.about-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  opacity: 0.85;
}
.about-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 1.4;
}

/* Card title */
.about-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  max-width: 140px;
  margin-bottom: 0;
}

/* Divider */
.about-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 24px 0 20px;
}

/* Card body */
.about-card-body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  flex: 1;
}

/* Read More */
.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
  border: 1.5px solid var(--color-blue);
  padding: 10px 24px;
  border-radius: 9999px;
  transition:
    background 0.2s,
    color 0.2s;
}
.about-read-more:hover {
  background: var(--color-blue);
  color: white;
}
/* about section end */
/* ── Section Shared ── */
.section-max {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Validations ── */
.validation-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.validation-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--color-blue);
}
.validation-card .bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px;
  opacity: 0.05;
  transition: opacity 0.2s;
  font-size: 63px;
}
.validation-card:hover .bg-icon {
  opacity: 0.1;
}
.validation-card .bg-icon .material-symbols-outlined {
  font-size: 96px;
}
.validation-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 8px;
}
.validation-card .role-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-on-surface-variant);
  margin-bottom: 16px;
}
.validation-card blockquote {
  font-size: 16px;
  color: rgba(64, 73, 68, 0.7);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}
.btn-view-validations {
  background-color: var(--color-yellow);
  color: var(--color-background);
  padding: 16px 40px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.btn-view-validations:hover {
  background-color: var(--color-primary);
  color: white;
}

/* ── Impact ── */

.impact-section {
  padding: 96px 0 88px;
  background-color: var(--color-footer);
  color: white;
  position: relative;
  overflow: hidden;
}

/* faint ambient line-art, same family as About sketch */
.impact-sketch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: var(--color-secondary-fixed);
  opacity: 0.08;
  pointer-events: none;
}
.impact-sketch-bg svg {
  width: 100%;
  height: 100%;
}

.impact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.impact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
}
.impact-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary-fixed);
  box-shadow: 0 0 0 4px rgba(111, 251, 190, 0.15);
}
.impact-headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* ── Stats strip ── */
.impact-stats-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.impact-stat-item {
  position: relative;
  padding: 36px 12px;
  text-align: center;
  transition: background 0.25s;
}
.impact-stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.impact-stat-item::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.impact-stat-item:last-child::after {
  display: none;
}

.impact-count-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 700;
  color: var(--color-yellow);
  margin: 0 0 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.impact-count-number--text {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}
.impact-suffix {
  color: var(--color-yellow);
  font-weight: 600;
}

.impact-count-label {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin: 0;
}

/* ── Tablet ── */
@media (max-width: 991.98px) {
  .impact-stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .impact-stat-item:nth-child(3n)::after {
    display: none;
  }
  .impact-stat-item:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ── Mobile ── */
@media (max-width: 575.98px) {
  .impact-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-stat-item:nth-child(3n)::after {
    display: block;
  }
  .impact-stat-item:nth-child(2n)::after {
    display: none;
  }
  .impact-stat-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .impact-stat-item {
    padding: 28px 8px;
  }
}
/* ── Solutions ── */
.solutions-section {
  padding: 96px 0;
  background-color: var(--color-surface-container-low);
}
.solution-card {
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s;
}
.solution-card:hover {
  transform: translateY(-8px);
}
.solution-card .img-wrap {
  height: 256px;
  aspect-ratio: 1;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(to bottom right, white, rgba(0, 108, 73, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-card .img-wrap img {
  height: 192px;
  object-fit: contain;
  transition: transform 0.5s;
}
.solution-card:hover .img-wrap img {
  transform: scale(1.1);
}
.solution-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 8px;
}
.btn-view-product {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-weight: 700;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: gap 0.2s;
  text-decoration:none;
}
.btn-view-product:hover {
  gap: 16px;
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.solutions-title {
  font-family: "Outfit", sans-serif;
  font-size: 52px;
  line-height: 1.1;
  max-width: 700px;
  color: #111827;
}

.solutions-title span {
  color: #0b7b67;
}

.slider-nav {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #0b7b67;
  color: #fff;
}

.carousel-indicators button {
  width: 30px !important;
  height: 6px !important;
  border-radius: 10px !important;
  background: #0b7b67 !important;
}

@media (max-width: 768px) {
  .solutions-header {
    flex-direction: column;
    gap: 20px;
  }

  .solutions-title {
    font-size: 34px;
  }
}
.swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 20px;
  background: var(--color-blue);
}

/* ── Case Studies ── */
.case-studies-section {
  padding: 100px 0;
  background: white;
  overflow: hidden;
}
.card-title {
  color: var(--color-blue);
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
}
.case-card .img-side {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .case-card .img-side {
    width: 50%;
  }
}
.case-card .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.case-card:hover .img-side img {
  transform: scale(1.05);
}
.case-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-green);
  color: white;
  padding: 4px 12px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.case-card .content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .case-card .content-side {
    width: 50%;
  }
}
.case-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 0;
}
.btn-read-story {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* ── Awards ── */
.awards-section {
  padding: 96px 0;
  background-color: var(--color-surface-container-lowest);
  position: relative;
}
.award-card {
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  width: 256px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.award-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}
.award-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: hsl(35deg 87% 53% / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-icon-wrap .material-symbols-outlined {
  font-size: 32px;
  color: var(--color-tertiary);
  font-variation-settings: "FILL" 1;
}
.award-card h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
}
.award-card p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
  margin: 0;
}

/* ── CTA ── */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: url("./images/back.webp") center center/cover no-repeat;
}

/* Color overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 242, 240, 0.55);
  /* Current #f2f2f0 with transparency */
}
.cta-inner {
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .cta-inner {
    padding: 48px 24px;
  }
}
.cta-inner h2 {
  font-family: "Outfit", sans-serif;
  color: var(--color-footer);
  font-weight: 700;
}
.btn-cta-contact {
  background-color: var(--color-green);
  color: white;
  padding: 20px 40px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.btn-cta-contact .material-symbols-outlined {
  transition: transform 0.2s;
}
.btn-cta-contact:hover {
  background: white;
  color: var(--color-primary);
}
.btn-cta-contact:hover .material-symbols-outlined {
  transform: rotate(12deg);
}
.btn-cta-whatsapp {
  background: hsl(35deg 87% 53% / 10%);
  color: hsl(35deg 87% 53% / 100%);
  border: 1px solid hsl(35deg 87% 53% / 10%);
  backdrop-filter: blur(12px);
  padding: 20px 40px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
/* .btn-cta-whatsapp:hover { background: rgba(255,255,255,0.2); color: white; } */

/* certifications */
.certifications {
  padding: 100px 0;
}
.cert-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(63, 60, 60, 0.12) !important;
}
/* certifications end */

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background-color: var(--color-footer);
  padding: 72px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: hidden; /* prevents the mobile swiper from causing horizontal page scroll */
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  width: 140px;
  height: auto;
  max-width: 100%;
}
.footer-tagline {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer-desc {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  max-width: 360px;
  margin: 0;
}

/* Social buttons */
.footer-social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
}

/* Nav list columns */
.footer-heading {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 12px;
}
.footer-nav-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: inline-block;
}
.footer-nav-list a:hover {
  color: var(--color-primary-fixed-dim);
  padding-left: 6px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 108, 73, 0.25);
  border: 1px solid rgba(0, 108, 73, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-primary-fixed-dim);
}
.footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 3px;
}
.footer-contact-list a,
.footer-contact-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-contact-list a:hover {
  color: var(--color-primary-fixed-dim);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.footer-heart {
  color: #e05252;
}

/* =====================================================================
   MOBILE FOOTER SLIDER (Quick Links / Company / Contact Us)
   Swiper handles the swipe mechanics; this just styles the slides
   to look like the original columns instead of a "carousel widget".
===================================================================== */
.footer-columns-mobile {
  margin-top: 8px;
}
.footer-swiper {
  padding-bottom: 8px;
  /* fade the right edge slightly so the next slide peeking in reads as intentional */
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
}
.footer-swiper .swiper-slide {
  height: auto;
}
.footer-swiper .swiper-pagination {
  position: static;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.footer-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  margin: 0 !important;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.footer-swiper .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 4px;
  background: var(--color-primary-fixed-dim, #f09b20);
}

/* =====================================================================
   RESPONSIVE FIXES
===================================================================== */
@media (max-width: 991.98px) {
  .footer-heading {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 48px 20px 0;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-social-btn {
    width: 48px;
    height: 48px;
  }
  .footer-contact-list {
    gap: 16px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    margin-top: 40px;
  }
  .footer-bottom p {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .footer-social-btn {
    width: 44px;
    height: 44px;
  }
}

/* ══════════════════════════════
   FAB GROUP (WhatsApp + Scroll Ring)
══════════════════════════════ */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 900;
}

/* WhatsApp */
.fab-whatsapp {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  color: white;
}

/* Scroll ring wrapper */
.scroll-progress-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* invisible until user has scrolled a bit */
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s,
    transform 0.35s;
  pointer-events: none;
}
.scroll-progress-wrap.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

@media (max-width: 767.98px) {
  .fab-group {
    bottom: 18px;
    right: 16px;
    gap: 10px;
  }
  .fab-whatsapp {
    width: 46px;
    height: 46px;
  }
  .scroll-progress-wrap {
    width: 44px;
    height: 44px;
  }
}
/* SVG ring */
.scroll-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scroll-ring-track {
  fill: none;
  stroke: rgba(0, 53, 39, 0.12);
  stroke-width: 3;
}
.scroll-ring-fill {
  fill: none;
  stroke: var(--color-yellow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
  transition:
    stroke-dashoffset 0.15s linear,
    stroke 0.4s ease;
}

/* At 95%+: ring stroke turns primary green to signal mode change */
.scroll-progress-wrap.top-mode .scroll-ring-fill {
  stroke: var(--color-yellow);
}

/* Inner white disc (shared container for % and arrow) */
.scroll-percent,
.scroll-arrow {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Percentage text */
.scroll-percent {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 1;
  opacity: 1;
  transform: scale(1);
}

/* Arrow icon */
.scroll-arrow {
  font-size: 20px;
  color: var(--color-yellow);
  opacity: 0;
  transform: scale(0.5) translateY(6px);
}

/* When top-mode: swap visibility with a scale+fade */
.scroll-progress-wrap.top-mode .scroll-percent {
  opacity: 0;
  transform: scale(0.5) translateY(6px);
}
.scroll-progress-wrap.top-mode .scroll-arrow {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* button */

.btn-product-primary {
    background-color: var(--color-yellow);
    color: #fff;
    border: 2px solid var(--color-yellow);
    border-radius: .75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, box-shadow .2s;
  }

  .btn-product-primary:hover {
    background-color: #d4860f;
    border-color: #d4860f;
    color: #fff;
    box-shadow: 0 16px 40px rgba(240, 155, 32, .3);
  }
