/* ===== THEME ===== */
:root {
  --ink: #e9eceb;
  --ink-strong: #fff;
  --muted: #d1d7d4;
  --btn: #a3d3b5;
  --btn-2: #a3d3b5;
  --divider: #a3d3b5;
  --max: 1200px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background: #f0e6e2;
  color: var(--ink)
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(92vw, var(--max));
  margin-inline: auto
}

/* ===== NAV (overlay) ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: #fff
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #a8e063, #56ab2f);
  box-shadow: inset 0 0 0 2px #ffffff33
}

.muted {
  opacity: .75
}

.menu {
  background: transparent;
  border: 0;
  display: grid;
  gap: 4px;
  cursor: pointer
}

menu span {
  width: 24px;
  height: 3px !important;
  background: #333 !important;
  /* Dark visible color */
  border-radius: 2px;
  display: block;
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  min-height: 100vh
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 0
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1)
}

/* readability overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .30));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.6rem, 4vw, 3rem) 0
}

.hero-head {
  max-width: 980px;
  margin-inline: auto
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .28);
  letter-spacing: .4px;
  font-weight: 700;
  font-size: .85rem;
  color: #ecf3ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 6px 18px rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px);
}

.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7c15a, #f07c24);
  box-shadow: 0 0 0 2px #ffffff20
}

h1 {
  margin: .6rem 0 1rem
}

.line-1 {
  display: block;
  font-size: clamp(26px, 3.6vw + 10px, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .2px
}

.line-2 {
  display: block;
  font-size: clamp(22px, 3vw + 8px, 48px);
  font-weight: 700;
  color: #e9e2d6;
  letter-spacing: .15px
}

.subtitle {
  max-width: 980px;
  margin: 0 auto;
  color: #f2f6f4;
  opacity: .92;
  font-size: clamp(15px, 1.05vw + 10px, 20px)
}

.cta-row {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, filter .2s ease, background .2s ease
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--btn), var(--btn-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 60, 40, .38), inset 0 1px 0 rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .08)
}

.btn-primary:hover {
  filter: brightness(1.06)
}

.btn-outline {
  border-color: rgba(255, 255, 255, .32);
  color: #e7efe9;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12)
}

.play {
  width: 18px;
  height: 18px;
  fill: #e7efe9
}

.dots {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin: 1.1rem 0 .8rem
}

.dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff40;
  border: 0;
  cursor: pointer
}

.dots button.active {
  background: #fff
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff40 20% 80%, transparent);
  width: min(980px, 92%);
  margin: 1rem auto 1.2rem
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: center
}

.m-item .m-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff
}

.m-item .m-sub {
  display: block;
  font-size: .8rem;
  letter-spacing: .18em;
  opacity: .85
}

/* responsive */
@media (max-width:900px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr)
  }
}


/* ---- Dancing/Wave text for "Smarter Farming." ---- */
.line-2.wave .char {
  display: inline-block;
  will-change: transform, text-shadow;
  animation: dance 2.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 70ms);
  /* stagger per letter */
}

@keyframes dance {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  30% {
    transform: translateY(-6px) rotate(-1.5deg);
    text-shadow: 0 10px 20px rgba(0, 0, 0, .35);
  }

  60% {
    transform: translateY(3px) rotate(1deg);
  }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .line-2.wave .char {
    animation: none;
  }
}


/* A11y helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

/* Dim background */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s ease;
}

.menu-overlay.show {
  opacity: 1
}

/* Panel container */
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
}

.menu-panel[hidden] {
  display: none
}

/* The sheet */
.menu-sheet {
  width: min(880px, 92vw);
  background: #fff;
  color: #1c2b23;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
  border: 1px solid #e8efe9;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .26s ease, opacity .26s ease;
  position: relative;
  padding: clamp(18px, 3vw, 28px);
}

/* animate in when overlay shown */
.menu-panel.show .menu-sheet {
  transform: translateY(0) scale(1);
  opacity: 1
}

/* Close button */
.menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #dde7e0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* Links */
.menu-links {
  display: grid;
  gap: 18px;
  padding: 10px 6px 20px
}

.menu-links a {
  font-size: 20px;
  color: #21352b;
  padding: 8px 6px;
  border-radius: 10px;
}

.menu-links a:hover {
  background: #f1f6f3
}

/* Full-width quote button */
.btn-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.05rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--btn), var(--btn-2));
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 14px 28px rgba(20, 60, 40, .25);
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden
}


/* Metrics: make room for center mouse icon (5 columns) */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto repeat(2, 1fr);
  /* 2 | mouse | 2 */
  align-items: center;
  gap: .8rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* Center slot */
.m-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem 0;
}

/* Mouse SVG styling */
.scroll-mouse {
  overflow: visible;
}

.mouse-body {
  fill: transparent;
  stroke: #ffffffaa;
  /* soft white outline */
  stroke-width: 2.2;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

.mouse-wheel {
  fill: #ffffffcc;
  animation: wheel 1.8s ease-in-out infinite;
  transform-origin: 20px 18px;
  /* near wheel center */
}

/* gentle wheel slide */
@keyframes wheel {

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

  60% {
    transform: translateY(8px);
    opacity: .65;
  }
}

/* Mobile: keep 2x2 stats; hide mouse for compact view */
@media (max-width: 900px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }

  .m-mid {
    display: none;
  }
}


/* ===== The Forest Legacy ===== */
.section-legacy {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0;
  background:
    /* very subtle agriculture/leaf pattern */
    radial-gradient(18px 18px at 20% 30%, rgba(64, 115, 77, .06) 15%, transparent 45%) repeat,
    radial-gradient(18px 18px at 70% 60%, rgba(64, 115, 77, .05) 15%, transparent 45%) repeat,
    linear-gradient(180deg, #f5faf6 0%, #eef6f0 100%);
  background-size: 160px 160px, 180px 180px, auto;
  border-top: 1px solid #e3efe8;
}

.legacy-inner {
  text-align: center;
  max-width: 980px;
}

.badge-legacy {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: #e6f3eb;
  color: #205b35;
  font-weight: 800;
  letter-spacing: .35px;
  border: 1px solid #cfe7da;
  box-shadow: 0 2px 0 #ffffff, inset 0 1px 0 rgba(255, 255, 255, .65);
}

.badge-legacy .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a8e063, #56ab2f);
  box-shadow: 0 0 0 2px #ffffffaa;
}

.legacy-title {
  margin: 16px 0 8px;
  font-size: clamp(26px, 2.6vw + 18px, 40px);
  line-height: 1.18;
  color: #21352b;
  font-weight: 800;
}

.legacy-title span {
  color: #2b7a43;
}

.legacy-lead {
  color: #385a47;
  opacity: .9;
  font-size: clamp(15px, .7vw + 12px, 18px);
  max-width: 820px;
  margin: 10px auto 26px;
}

/* optional highlights */
.legacy-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.lg-card {
  background: #ffffff;
  border: 1px solid #e3efe8;
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
  text-align: left;
}

.lg-card h3 {
  margin: 2px 0 6px;
  font-size: 1.05rem;
  color: #1f3a2d;
}

.lg-card p {
  margin: 0;
  color: #496a58;
  font-size: .95rem;
}

/* responsive */
@media (max-width: 900px) {
  .legacy-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== PROCESS CARDS ===== */
.section-process {
  padding: clamp(48px, 7vw, 80px) 0;
  background: linear-gradient(180deg, #f8faf9 0%, #f3f8f5 100%);
}

.process-inner {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.p-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3efe8;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.p-icon img {
  width: 38px;
  height: 38px
}

.p-body {
  flex: 1
}

.p-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #1f3a2d;
  font-weight: 700
}

.p-body p {
  margin: 0;
  font-size: .95rem;
  color: #445b4e
}

.p-meta {
  text-align: right;
  min-width: 70px
}

.p-meta .p-value {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: #20693d
}

.p-meta .p-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777
}

/* responsive */
@media (max-width:768px) {
  .p-card {
    flex-direction: column;
    align-items: flex-start
  }

  .p-meta {
    text-align: left;
    margin-top: 6px
  }
}


/* Icon box sizing */
.p-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 16px;
  /* svg already has tile; keep layout consistent */
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .06));
}

.p-icon .icon-svg {
  width: 64px;
  height: 64px;
}

/* Subtle bob animation like figma */
.p-icon {
  animation: bob 2.8s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

/* Card shadow + hover arrow */
.p-card {
  position: relative;
  overflow: hidden;
  /* for shine */
  transition: transform .2s ease, box-shadow .2s ease;
}

.p-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}

/* right-bottom arrow */
.p-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  border-right: 2px solid #2b7a43;
  border-bottom: 2px solid #2b7a43;
  transform: rotate(-45deg) translateX(-2px);
  opacity: .7;
  transition: transform .25s ease, opacity .25s ease;
}

.p-card:hover::after {
  transform: rotate(-45deg) translateX(2px);
  opacity: 1;
}

/* Optional: reveal on scroll */
.p-card {
  opacity: 0;
  transform: translateY(10px);
}

.p-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: .5s ease;
}

/* === Interactive parallax for process cards === */
.section-process {
  perspective: 900px;
}

.p-card {
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
}

.p-card.is-hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.p-icon {
  will-change: transform, filter;
  transition: transform .18s ease, filter .18s ease;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {

  .p-card,
  .p-icon {
    transition: none !important
  }
}


/* ===== Our Forest Heritage ===== */
.section-heritage {
  position: relative;
  padding: clamp(54px, 8vw, 96px) 0;
  background:
    radial-gradient(18px 18px at 22% 24%, rgba(64, 115, 77, .05) 16%, transparent 48%) repeat,
    radial-gradient(18px 18px at 72% 64%, rgba(64, 115, 77, .045) 16%, transparent 48%) repeat,
    linear-gradient(180deg, #faf7f2 0%, #f7f3ed 100%);
  /* soft beige like figma */
  background-size: 170px 170px, 190px 190px, auto;
  border-top: 1px solid #efe7da;
}

.heritage-inner {
  max-width: 980px;
  text-align: left;
}

.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .48rem .9rem;
  border-radius: 999px;
  background: #efe3d5;
  color: #7b5330;
  font-weight: 800;
  letter-spacing: .35px;
  border: 1px solid #e7d7c4;
  box-shadow: 0 2px 0 #fff, inset 0 1px 0 rgba(255, 255, 255, .6);
}

.heritage-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f7c15a, #e08a3a);
  box-shadow: 0 0 0 2px #ffffffaa;
}

.heritage-title {
  margin: 16px 0 6px;
  line-height: 1.2
}

.heritage-title .h-1 {
  font-size: clamp(22px, 2.2vw + 16px, 34px);
  font-weight: 800;
  color: #3a2c1f;
}

.heritage-title .h-2 {
  font-size: clamp(22px, 2.2vw + 16px, 34px);
  font-weight: 800;
  color: #2b7a43;
  /* green emphasis */
}

.heritage-copy {
  max-width: 980px;
}

.heritage-copy p {
  margin: 12px 0;
  color: #574b3e;
  opacity: .95;
  font-size: clamp(15px, .7vw + 12px, 18px);
  line-height: 1.8;
}

/* ===== Forest Legacy Photo ===== */
.section-legacy-photo {
  padding: clamp(40px, 7vw, 80px) 0;
  background:
    radial-gradient(18px 18px at 18% 40%, rgba(64, 115, 77, .06) 16%, transparent 48%) repeat,
    radial-gradient(18px 18px at 84% 70%, rgba(64, 115, 77, .05) 16%, transparent 48%) repeat,
    linear-gradient(180deg, #f2f8f4 0%, #edf6f0 100%);
  background-size: 180px 180px, 180px 180px, auto;
  border-top: 1px solid #e3efe8;
}

.legacy-photo-inner {
  max-width: 1100px;
}

/* small pill CTA */
.chip-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  margin-bottom: 14px;
  background: #e8f3ec;
  color: #205b35;
  font-weight: 700;
  border: 1px solid #cfe7da;
}

.chip-cta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a8e063, #56ab2f)
}

/* image card */
.photo-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 2px 0 #ffffff;
  background: #111;
  isolation: isolate;
}

.photo-card .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03) saturate(1.02)
}

/* ribbon (top right) */
.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.1rem;
  border-radius: 16px;
  background: #8b5a3a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.ribbon .y {
  font: 800 18px/1 Inter, system-ui;
  letter-spacing: .02em
}

.ribbon .s {
  font: 700 11px/1 Inter, system-ui;
  opacity: .9;
  letter-spacing: .12em
}

/* stat chip (bottom-left) */
.stat-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e3efe8;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  animation: chipFloat 3.4s ease-in-out infinite;
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.stat-chip .tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .08)
}

.stat-chip .tile img {
  width: 44px;
  height: 44px
}

.stat-copy .v {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1f3a2d
}

.stat-copy .l {
  font-size: .82rem;
  color: #4a5f52
}

/* entry reveal */
.photo-card {
  opacity: 0;
  transform: translateY(10px);
  transition: .6s ease
}

.photo-card.show {
  opacity: 1;
  transform: translateY(0)
}

/* responsive */
@media (max-width:900px) {
  .photo-card {
    aspect-ratio: 16/10
  }

  .ribbon {
    padding: .55rem .9rem
  }

  .ribbon .y {
    font-size: 16px
  }
}

/* fix container */
.legacy-photo-inner {
  max-width: 980px;
  margin: 0 auto;
}

/* wrap centers the photo card */
.photo-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* card itself */
.photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 920px;
  /* prevents stretching */
  aspect-ratio: 16/9;
  background: #111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.photo-card .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ribbon top-right */
.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #8b5a3a;
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.ribbon .y {
  font-weight: 700;
  font-size: 1rem;
}

.ribbon .s {
  font-size: .7rem;
  letter-spacing: .1em;
}

/* stat chip bottom-left */
.stat-chip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.stat-chip .tile {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.stat-chip .tile img {
  width: 28px;
  height: 28px;
}

.stat-copy .v {
  font-weight: 800;
  font-size: 1.05rem;
}

.stat-copy .l {
  font-size: .8rem;
  color: #666;
}


/* ===== Forest Way Section ===== */
.section-forest-way {
  padding: clamp(60px, 8vw, 100px) 20px;
  text-align: center;
  background:
    linear-gradient(180deg, #fafaf8 0%, #f7f5f2 100%);
}

.section-forest-way .tag {
  display: inline-block;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 18px;
}

.section-forest-way .tag.brown {
  background: #e8ddd5;
  color: #6c3b20;
}

.fw-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: #1c2b24;
}

.fw-title .highlight {
  display: block;
  color: #b55b2a;
  /* brown highlight */
  font-weight: 600;
  margin-top: 6px;
}

.fw-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}


/* --- Steps wrap --- */
.steps-wrap {
  max-width: 980px;
  display: grid;
  gap: 18px;
  margin: 0 auto;
}

/* --- Each card --- */
.step-card {
  --ring: rgba(39, 117, 68, .18);
  position: relative;
  border-radius: 18px;
  border: 1px solid #e3efe8;
  background: radial-gradient(60% 100% at 0% 0%, #ffffff 0%, #f7fbf8 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
  padding: 18px 54px 18px 18px;

  /* GRID that never crushes content */
  display: grid;
  grid-template-columns: 72px 1fr;
  /* icon | content */
  column-gap: 14px;
  align-items: start;

  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

/* green ring */
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 2px var(--ring), 0 1px 0 #fff;
  pointer-events: none;
  transition: box-shadow .2s ease;
}

/* --- Icon tile --- */
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .06));
  will-change: transform;
  transition: transform .18s ease;
}

.step-icon img {
  width: 72px;
  height: 72px
}

/* --- Head & body in column 2 --- */
/* CRITICAL: allow shrinking so words don't break per line */
.step-head,
.step-copy {
  grid-column: 2 / 3;
  min-width: 0;
}

.step-head h3 {
  margin: 0 0 2px;
  font-weight: 800;
  color: #1f3a2d;
  font-size: 1.06rem
}

.step-no {
  display: block;
  color: #5a705f;
  font-weight: 700;
  margin-top: 2px
}

.step-copy {
  margin-top: 6px
}

.step-copy p {
  margin: 6px 0;
  color: #425a4b;
  line-height: 1.65
}

.step-copy .muted {
  color: #5b6f63;
  opacity: .95;
  border-left: 3px solid #cfe7da;
  padding-left: 10px
}

/* right arrow */
.step-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid #2b7a43;
  border-bottom: 2px solid #2b7a43;
  transform: rotate(-45deg);
  opacity: .65;
  transition: transform .22s ease, opacity .22s ease;
}

/* Hover */
.step-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.step-card:hover::before {
  box-shadow: inset 0 0 0 2px #2b7a43, 0 1px 0 #fff;
}

.step-card:hover .step-icon {
  transform: translateZ(24px) scale(1.04);
}

.step-card:hover .step-arrow {
  transform: translateX(4px) rotate(-45deg);
  opacity: 1;
}

/* Reveal */
.step-card {
  opacity: 0;
  translate: 0 10px;
}

.step-card.reveal {
  opacity: 1;
  translate: 0 0;
  transition: opacity .5s ease, translate .5s ease;
}

/* Mobile */
@media (max-width: 720px) {
  .step-card {
    grid-template-columns: 60px 1fr;
    padding-right: 46px
  }

  .step-icon {
    width: 60px;
    height: 60px
  }

  .step-icon img {
    width: 60px;
    height: 60px
  }
}


.process-section {
  padding: 80px 20px;
  background: #f8fdf8 url('bg-pattern.png') repeat;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  background: #f3eadd;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
  color: #6a422e;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #444;
}

.process-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 2px solid #d0e5d0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.process-card.show {
  opacity: 1;
  transform: translateY(0);
}

.process-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.process-card .icon img {
  width: 40px;
  height: 40px;
}

.process-card .content {
  flex: 1;
  margin: 0 20px;
  text-align: left;
}

.process-card .content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-card .content h4 span {
  color: green;
  font-size: 14px;
  margin-left: 8px;
}

.process-card .highlight {
  border-left: 3px solid green;
  padding-left: 10px;
  margin-top: 10px;
  color: #2d5a2d;
}

.process-card .arrow {
  font-size: 22px;
  color: green;
  transition: transform 0.3s;
}

.process-card:hover .arrow {
  transform: translateX(5px);
}



.forest-process {
  background: #f9fff9;
  padding: 60px 20px;
}

.process-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-box img {
  width: 48px;
  height: 48px;
}

.content-box {
  flex: 1;
  padding: 0 20px;
}

.content-box h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #1b3d1b;
}

.content-box .step {
  font-weight: bold;
  color: green;
  margin-left: 8px;
}

.arrow-box {
  font-size: 24px;
  color: green;
}

#forest-process .process-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#forest-process .process-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* --- better readability for desc --- */
#forest-process .process-card .desc {
  color: #496b59;
  /* darker greenish */
  opacity: .98;
  /* was too faint */
  letter-spacing: .01em;
}

/* icon looks clickable */
.icon-box .icon-btn {
  all: unset;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.icon-box .icon-btn:focus-visible {
  outline: 2px solid #2b7a43;
  outline-offset: 3px;
}

/* bring-to-front “active” card like figma */
#forest-process .process-card {
  position: relative;
  z-index: 0;
}

#forest-process .process-card.active {
  z-index: 5;
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .18);
}

#forest-process .process-card.active::before {
  box-shadow: inset 0 0 0 2px #2b7a43;
}

#forest-process .process-card.active {
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(43, 122, 67, .06), transparent 60%),
    #ffffff;
}

/* when active, make desc a bit stronger and highlight brighter */
#forest-process .process-card.active .desc {
  color: #2e4b3e;
  opacity: 1;
}

#forest-process .process-card.active .highlight {
  border-left-color: #2b7a43;
  color: #2c5b48;
}

/* small nudge for arrow when active */
#forest-process .process-card.active .arrow-box {
  transform: translateX(6px);
  opacity: 1;
}


/* --- Forest Section Header --- */
.forest-header {
  text-align: center;
  margin-bottom: 2rem;
}

.forest-header .tag {
  display: inline-block;
  background: #f4f4f4;
  color: #2d6a4f;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.forest-header .title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b4332;
  /* Dark green (visible) */
  margin-bottom: 10px;
  opacity: 1;
  /* Ensure visible */
}

.forest-header .subtitle {
  font-size: 1rem;
  color: #333;
  /* Dark text instead of light */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 1;
}

/* --- Forest Section Header --- */
.forest-header {
  text-align: center;
  margin-bottom: 2rem;
}

.forest-header .tag {
  display: inline-block;
  background: #f4f4f4;
  color: #2d6a4f;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.forest-header .title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b4332;
  /* Dark green (visible) */
  margin-bottom: 10px;
  opacity: 1;
  /* Ensure visible */
}

.forest-header .subtitle {
  font-size: 1rem;
  color: #333;
  /* Dark text instead of light */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 1;
}





/* Slides layer sits behind the hero content */
.slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .6s ease, transform 6s ease
}

.slide.active {
  opacity: 1;
  transform: scale(1)
}

.slide-bg {
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15))
}

.is-video .slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* dots */
.hero__dots {
  display: flex;
  gap: .6rem;
  justify-content: center;
  margin-top: 16px
}

.hero__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  cursor: pointer
}

.hero__dots .dot.is-active {
  background: #b1ffca
}


/* Wave/Dancing for the second line */
.wave {
  display: inline-block;
  white-space: nowrap;
}

.wave span {
  display: inline-block;
  transform-origin: 50% 80%;
  animation: wave-bounce 1.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 60ms);
  /* stagger */
}

@keyframes wave-bounce {

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

  50% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}

/* Light glow in the middle for a soft “pop” */
.wave span::selection {
  background: rgba(255, 255, 255, .15);
}

.wave span {
  text-shadow: 0 0 0 transparent;
}

@keyframes wave-bounce {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    text-shadow: 0 0 0 transparent;
  }

  50% {
    transform: translateY(-6px) rotate(-1.5deg);
    text-shadow: 0 4px 16px rgba(255, 255, 255, .12);
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wave span {
    animation: none;
  }
}



/* --- Hero footer layout (bottom of hero) --- */
.hero {
  position: relative;
}

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  z-index: 3;
}

/* Keep dots centered; disable any absolute positioning you had */
.hero-footer .hero__dots {
  position: static;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Thin divider */
.hero-divider {
  width: min(740px, 80vw);
  height: 1px;
  background: rgba(255, 255, 255, .28);
}

/* Small uppercase label */
.hero-tag {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(18px, 5vw, 48px);
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats .stat {
  min-width: 130px;
}

.hero-stats .stat h4 {
  margin: 0 0 2px;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 26px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.hero-stats .stat span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: .9;
}

/* Center mouse indicator */
.stat.mouse {
  min-width: 70px;
}

.mouse-icon {
  width: 26px;
  height: 44px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, .75);
  display: inline-block;
  position: relative;
  opacity: .9;
}

.mouse-icon::after {
  content: "";
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .9);
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    transform: translate(-50%, 0);
    opacity: .9;
  }

  60% {
    transform: translate(-50%, 8px);
    opacity: .2;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: .9;
  }
}

/* Touch friendliness + responsiveness */
@media (max-width: 720px) {
  .hero-divider {
    width: 88vw;
  }

  .hero-stats .stat {
    min-width: 42%;
  }
}

@media (max-width: 420px) {
  .hero-stats .stat {
    min-width: 48%;
  }

  .stat.mouse {
    order: 5;
    width: 100%;
  }
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar .logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Overlay Menu */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 2000;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
}

.overlay-content ul {
  list-style: none;
  padding: 0;
}

.overlay-content ul li {
  margin: 20px 0;
}

.overlay-content ul li a {
  font-size: 22px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.overlay-content ul li a:hover {
  color: #2e7d32;
  font-weight: bold;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  cursor: pointer;
  color: #333;
}

.quote-btn {
  margin-top: 40px;
  padding: 12px 25px;
  font-size: 18px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #1b5e20;
}


/* ===== Sheet: overlay + panel ===== */
:root {
  --sheet-w: clamp(330px, 92vw, 520px);
  --sheet-bg: black;
  --sheet-accent: #14532d;
  /* deep green */
  --sheet-accent-2: #1f7a3d;
  /* lighter green */
  --sheet-border: #e7ecea;
  --sheet-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .28s ease;
}

.sheet-overlay[hidden] {
  display: none;
}

.sheet-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1020;
  width: var(--sheet-w);
  height: 100%;
  background: var(--sheet-bg);
  box-shadow: var(--sheet-shadow);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .2s;
  opacity: .98;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--sheet-border);
}

.sheet-panel[hidden] {
  display: none;
}



.sheet-panel.is-open {
  transform: translateX(0);
}

/* header */
.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--sheet-border);
}

.sheet-head h2 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.sheet-close {
  border: none;
  background: #f3f6f4;
  color: #0f172a;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
}

.sheet-close:hover {
  background: #e9f2ec;
}

/* body */
.sheet-body {
  padding: 16px 20px 22px;
  overflow: auto;
}

/* links */
.sheet-links {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.sheet-link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--sheet-border);
  color: #0b1220;
  text-decoration: none;
  font-weight: 600;
}

.sheet-link:hover {
  border-color: #cfe5d9;
  background: #f7fbf8;
}

/* divider */
.sheet-divider {
  height: 1px;
  background: var(--sheet-border);
  border: 0;
  margin: 14px 0 18px;
}

/* form */
.quote-form {
  display: block;
}

.form-title {
  margin: 0 0 12px;
  font-size: 17px;
  color: #0f172a;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row label {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: #fbfdfc;
  color: #0b1220;
  border: 1px solid var(--sheet-border);
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-size: 14px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #b8e1c9;
  box-shadow: 0 0 0 3px #e6f6ee;
  background: #ffffff;
}

.err {
  min-height: 16px;
  color: #b42318;
  font-size: 12px;
  margin: 0;
}

.btn-quote {
  width: 100%;
  padding: 12px 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--sheet-accent), var(--sheet-accent-2));
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  margin-top: 4px;
  box-shadow: 0 8px 18px rgba(20, 83, 45, .25);
}

.btn-quote:hover {
  filter: brightness(1.05);
}

.form-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #556169;
}

/* Small screens */
@media (max-width:520px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

/* Body scroll lock when sheet open */
body.sheet-open {
  overflow: hidden;
}


/* if you put the colored logo on a dark navbar and need white */
.navbar .brand-logo-white {
  filter: brightness(0) invert(1);
}


/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  /* space between image and text */
  text-decoration: none;
}

.logo img {
  height: 40px;
  /* adjust size */
  width: auto;
  display: block;
}

.logo span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  /* header background black என்றால் white better */
  white-space: nowrap;
  /* line break ஆகாமல் prevent செய்யும் */
}


/* Header */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(6px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #E9F4EA;
}

.brand-icon {
  width: 80px;
  height: 800px;
  display: block;
}

.brand-text .muted {
  opacity: .7;
  font-weight: 500;
}

/* Hamburger */
.menu {
  width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 5px;
  cursor: pointer;
}

.menu span {
  display: block;
  height: 3px;
  background: #E9F4EA;
  border-radius: 2px;
}

/* Overlay sheet */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.menu-panel {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
}

.menu-sheet {
  width: min(640px, 90vw);
  max-height: min(80vh, 620px);
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.menu-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: #0f2d1f;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
}

.menu-links {
  display: grid;
  gap: 14px;
  padding: 10px 6px 18px;
}

.menu-links a {
  font-size: 18px;
  color: #0b2017;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
}

.menu-links a:hover {
  background: #eef6ef;
}

/* CTA in sheet */
.get-quote {
  display: block;
  margin-top: 12px;
  background: #165a2a;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  text-decoration: none;
}

/* Hero dots */
.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 10px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #c9dccd;
  opacity: .7;
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: #5fe393;
  opacity: 1;
  transition: all .25s ease;
}

/* Small helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text strong {
  font-weight: 800;
}

.brand-text .muted {
  opacity: .7;
}

/* Mobile: text hide ok */
@media (max-width:520px) {
  .brand-text {
    display: none;
  }
}


.sheet-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(320px, 90vw, 480px);
  background: #fff;
  box-shadow: -2px 0 20px rgba(0, 0, 0, .25);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 2000;
}

.sheet-panel.is-open {
  transform: translateX(0);
}

.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(2px);
  z-index: 1999;
}

/* === Brand / Logo size fix === */
header.nav .brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* logo box size */
header.nav .brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

/* Desktop-ல் கொஞ்சம் பெரியது */
@media (min-width: 992px) {
  header.nav .brand-icon {
    width: 56px;
    height: 56px;
  }
}

/* logo image full-box fill + எந்த max-height rules-ம் override */
header.nav .brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: none !important;
  /* override global img caps */
}

/* brand text குறுக்கு align */
header.nav .brand-text strong {
  line-height: 1;
}


/* Bigger logo without distortion */
.navbar-brand img,
.header .brand img,
.site-logo img {
  height: 56px !important;
  /* desktop size */
  width: auto !important;
}

/* keep header tall enough and vertically centered */
.navbar,
.header {
  min-height: 70px;
}

.navbar .navbar-brand,
.header .brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* mobile size slightly smaller */
@media (max-width: 767px) {

  .navbar-brand img,
  .header .brand img,
  .site-logo img {
    height: 44px !important;
  }
}

/* default state (dark bg top) */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #ffffff;
  /* white text by default */
  text-decoration: none;
}

.site-header .logo img {
  height: 56px;
  /* adjust size */
  width: auto;
}

.site-header .brand-text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  /* default white */
  transition: color 0.3s ease;
}

/* when scroll down */
.site-header.scrolled {
  background: #ffffff;
  /* light background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .brand-text {
  color: #1a1a1a;
  /* dark text when light bg */
}


/* Layout helpers */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Section wrapper */
.process-section {
  background:
    radial-gradient(40px 40px at 20% 30%, rgba(0, 0, 0, 0.02) 0 40%, transparent 41%) repeat,
    radial-gradient(32px 32px at 70% 60%, rgba(0, 0, 0, 0.018) 0 40%, transparent 41%) repeat,
    linear-gradient(180deg, #f7f3e9 0%, #f3efe6 100%);
  /* warm light */
  background-size: 220px 220px, 260px 260px, auto;
  padding-bottom: 64px;
}

/* Top metrics (thin dark strip like Figma) */
.metrics-bar {
  background:
    linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
    url("assets/img/forest-strip.jpg");
  /* optional; replace with your image */
  background-size: cover;
  background-position: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 16px 0;
  color: #fff;
  text-align: center;
}

.metric-value {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: .5px;
}

.metric-label {
  font-size: 12px;
  opacity: .9;
  letter-spacing: .08em;
}

/* Content */
.process {
  padding: 56px 0 32px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dfe9db;
  color: #2b5c2b;
  font-weight: 700;
  font-size: 13px;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e8b57;
}

/* Titles */
.title {
  margin: 29px 0 10px;
  font-size: clamp(28px, 4vw, 35px);
  line-height: 1.2;
  color: #1d2a1d;
  font-weight: 800;
}

.title .accent {
  color: #1c7c3b;
}

/* Paragraph */
.lead {
  color: #2a2a2a;
  opacity: .8;
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 900px;
  margin: 14px auto 0;
  line-height: 1.8;
}

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

@media (max-width: 520px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}


/* wrapper */
.cards-section {
  padding: 40px 0 80px;
  background:
    radial-gradient(40px 40px at 20% 30%, rgba(0, 0, 0, 0.02) 0 40%, transparent 41%) repeat,
    radial-gradient(32px 32px at 70% 60%, rgba(0, 0, 0, 0.018) 0 40%, transparent 41%) repeat,
    linear-gradient(180deg, #f7f3e9 0%, #f3efe6 100%);
  background-size: 220px 220px, 260px 260px, auto;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.cards-wrap {
  display: grid;
  gap: 28px;
}

/* card */
.feature-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.86));
  box-shadow: 0 18px 30px rgba(20, 40, 20, 0.08), 0 3px 6px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(20, 40, 20, 0.12), 0 6px 10px rgba(0, 0, 0, 0.06);
}

/* tiny green dot at top-right */
.corner-dot {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8BC34A33;
  outline: 2px solid #8BC34A55;
}

/* left cluster */
.card-left {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1 1 auto;
}

.icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef3ea, #f7faf3);
  color: #2b7a3d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 6px 12px rgba(0, 0, 0, .06);
}

.icon {
  width: 28px;
  height: 28px;
}

.card-body h3 {
  margin: 8px 0 6px;
  font-size: clamp(16px, 1.9vw, 20px);
  color: #1e2a1e;
  font-weight: 700;
}

.card-body p {
  margin: 0;
  color: #222;
  opacity: .78;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.8;
  max-width: 720px;
}

/* right cluster */
.card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  min-width: 140px;
}

.metric {
  text-align: right;
}

.metric-value {
  color: #1d7a3a;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(18px, 2.4vw, 28px);
}

.metric-label {
  color: #1d7a3a;
  opacity: .65;
  letter-spacing: .12em;
  font-size: 11px;
}

.arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #1d7a3a;
  background: #E8F3EA;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.arrow:hover {
  transform: translateX(3px);
  background: #DBECDE;
}

/* responsive */
@media (max-width: 900px) {
  .feature-card {
    flex-direction: column;
  }

  .card-right {
    align-items: flex-start;
  }
}

/* --- Click animations --- */
.icon-tile {
  position: relative;
  overflow: hidden;
}

.icon-tile .icon {
  transition: transform .25s cubic-bezier(.2, .9, .3, 1.3);
}

/* Ripple from center */
.icon-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.icon-tile.clicked::after {
  animation: ripple .6s ease-out forwards;
}

@keyframes ripple {
  0% {
    opacity: .35;
    transform: scale(0);
  }

  80% {
    opacity: .18;
    transform: scale(6);
  }

  100% {
    opacity: 0;
    transform: scale(7.5);
  }
}

/* Icon bounce */
.icon-tile.clicked .icon {
  animation: pop .34s cubic-bezier(.2, .9, .3, 1.4);
}

@keyframes pop {
  0% {
    transform: scale(1)
  }

  40% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1)
  }
}

/* Stroke draw effect (for line icons only) */
.stroke-draw {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

.icon-tile.clicked .stroke-draw {
  animation: draw 700ms ease forwards 80ms;
}

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

/* Right arrow nudge */
.arrow {
  position: relative;
  overflow: visible;
}

.arrow.clicked {
  animation: bump .32s ease;
}

@keyframes bump {
  0% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(6px)
  }

  100% {
    transform: translateX(0)
  }
}

.arrow svg {
  transition: transform .2s ease;
}

.arrow.clicked svg {
  transform: translateX(2px);
}

/* Card “active” micro-elevation + corner ping */
.feature-card.active {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(20, 40, 20, .12), 0 6px 12px rgba(0, 0, 0, .08);
}

.feature-card .corner-dot {
  will-change: box-shadow;
}

.feature-card.active .corner-dot {
  animation: ping 1s ease-out;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(97, 194, 107, .5)
  }

  100% {
    box-shadow: 0 0 0 14px rgba(97, 194, 107, 0)
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .icon-tile .icon,
  .arrow svg {
    transition: none
  }

  .icon-tile::after,
  .stroke-draw,
  .arrow,
  .feature-card {
    animation: none !important
  }
}


/* container helper (if not already) */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* section bg matches earlier light agri pattern */
.forest-year-section {
  padding: 28px 0 64px;
  background:
    radial-gradient(40px 40px at 20% 30%, rgba(0, 0, 0, 0.02) 0 40%, transparent 41%) repeat,
    radial-gradient(32px 32px at 70% 60%, rgba(0, 0, 0, 0.018) 0 40%, transparent 41%) repeat,
    linear-gradient(180deg, #f7f3e9 0%, #f3efe6 100%);
  background-size: 220px 220px, 260px 260px, auto;
}

/* CTA button (ghost style) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #2a7a42;
  color: #2a7a42;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-ghost:hover {
  background: #eaf5ee;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(30, 80, 40, .12);
}

.btn-ghost .arr {
  width: 18px;
  height: 18px;
}

/* media card */
.media-card {
  position: relative;
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 32px rgba(20, 40, 20, .14), 0 4px 10px rgba(0, 0, 0, .08);
  background: #000;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* top-right badge */
.year-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 64px;
  padding: 8px 14px;
  gap: 2px;
  background: linear-gradient(180deg, #a2613e, #8d4f30);
  /* warm brown */
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(90, 40, 10, .25);
}

.year-badge strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: .5px;
}

.year-badge span {
  font-size: 11px;
  opacity: .9;
  letter-spacing: .12em;
}

/* decorative dot on right */
.side-dot {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7fbf85;
  opacity: .45;
}

/* optional bottom bubble for Figma feel */
.bottom-bubble {
  position: absolute;
  left: 18px;
  bottom: -16px;
  width: 320px;
  height: 56px;
  border-radius: 18px;
  background: #fff;
  opacity: .9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

/* subtle reveal on scroll (optional) */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.media-card {
  animation: revealUp .5s ease both;
}

/* responsive */
@media (max-width:700px) {
  .year-badge {
    min-width: 102px;
    height: 56px;
    border-radius: 16px;
  }

  .year-badge strong {
    font-size: 20px;
  }

  .bottom-bubble {
    width: 220px;
    height: 46px;
  }
}

/* Small overlay card */
.mini-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  min-width: 220px;
  animation: riseIn .5s ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e7f4e9, #d9eddd);
  color: #2a7a42;
}

.mini-icon .icon {
  width: 26px;
  height: 26px;
}

.mini-text .mini-value {
  font-size: 20px;
  font-weight: 700;
  color: #1a2b1a;
}

.mini-text .mini-label {
  font-size: 13px;
  color: #333;
  opacity: .7;
}

/* Responsive */
@media(max-width:600px) {
  .mini-card {
    min-width: 180px;
    padding: 12px 14px;
  }

  .mini-icon {
    width: 40px;
    height: 40px;
  }

  .mini-text .mini-value {
    font-size: 18px;
  }
}

/* ========== Forest Legacy (Figma-size image card) ========== */
:root {
  /* tweak pannuna intha 2 values mattum maathi podunga */
  --fl-max-width: 1120px;
  /* card total width (desktop) */
  --fl-radius: 22px;
  /* rounded corner */
  --fl-aspect-desktop: 21 / 9;
  /* desktop crop ratio (Figma feel) */
  --fl-aspect-tablet: 16 / 9;
  --fl-aspect-mobile: 4 / 3;
}

/* wrapper */
.forest-legacy {
  padding: 36px 0 72px;
  background:
    radial-gradient(40px 40px at 20% 30%, rgba(0, 0, 0, 0.02) 0 40%, transparent 41%) repeat,
    radial-gradient(32px 32px at 70% 60%, rgba(0, 0, 0, 0.018) 0 40%, transparent 41%) repeat,
    linear-gradient(180deg, #f7f3e9 0%, #f3efe6 100%);
  background-size: 220px 220px, 260px 260px, auto;
}

.fl-container {
  width: min(var(--fl-max-width), 92%);
  margin-inline: auto;
}

/* FIGMA-SIZE CARD */
.fl-card {
  position: relative;
  width: 100%;
  aspect-ratio: var(--fl-aspect-desktop);
  /* exact size controller */
  border-radius: var(--fl-radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 32px rgba(20, 40, 20, .14), 0 4px 10px rgba(0, 0, 0, .08);
}

/* image fills fully; extra area crop aagum => same Figma look */
.fl-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  /* focus top-side leaves; tweak 35–55% */
}

/* ------- optional badge ------- */
.fl-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 120px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(180deg, #a2613e, #8d4f30);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(90, 40, 10, .25);
}

.fl-badge strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: .3px;
}

.fl-badge span {
  font-size: 11px;
  opacity: .9;
  letter-spacing: .12em;
}

/* ------- optional mini card ------- */
.fl-mini {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.fl-mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e7f4e9, #d9eddd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.fl-mini-value {
  font-weight: 700;
  font-size: 20px;
  color: #1d2a1d;
}

.fl-mini-label {
  font-size: 13px;
  color: #333;
  opacity: .75;
}

/* responsive aspect ratios */
@media (max-width: 1200px) {
  .fl-card {
    aspect-ratio: var(--fl-aspect-tablet);
  }
}

@media (max-width: 640px) {
  .fl-card {
    aspect-ratio: var(--fl-aspect-mobile);
  }

  .fl-badge {
    transform: scale(.92);
    transform-origin: top right;
  }

  .fl-mini {
    transform: scale(.96);
    transform-origin: bottom left;
  }
}

/* button container above image */
.fl-cta {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* above img */
}

/* button same style */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.8px solid #2a7a42;
  color: #2a7a42;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-ghost:hover {
  background: #eaf5ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(30, 80, 40, .12);
}

.btn-ghost .arr {
  width: 18px;
  height: 18px;
}

/* section wrapper */
.forest-legacy {
  padding: 40px 0 80px;
  background:
    radial-gradient(40px 40px at 20% 30%, rgba(0, 0, 0, 0.02) 0 40%, transparent 41%) repeat,
    radial-gradient(32px 32px at 70% 60%, rgba(0, 0, 0, 0.018) 0 40%, transparent 41%) repeat,
    linear-gradient(180deg, #f7f3e9 0%, #f3efe6 100%);
  background-size: 220px 220px, 260px 260px, auto;
}

.fl-container {
  width: min(1120px, 92%);
  margin: auto;
}

/* top row button */
.fl-cta-row {
  text-align: center;
  margin-bottom: 24px;
  /* gap between button and image */
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.8px solid #2a7a42;
  color: #2a7a42;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-ghost:hover {
  background: #eaf5ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(30, 80, 40, .12);
}

.btn-ghost .arr {
  width: 18px;
  height: 18px;
}

/* image card */
.fl-card {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 32px rgba(20, 40, 20, .14), 0 4px 10px rgba(0, 0, 0, .08);
}

.fl-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* badge */
.fl-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  min-width: 120px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #a2613e, #8d4f30);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(90, 40, 10, .25);
}

.fl-badge strong {
  font-size: 22px;
  line-height: 1;
}

.fl-badge span {
  font-size: 11px;
  opacity: .9;
}

/* mini card */
.fl-mini {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.fl-mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e7f4e9, #d9eddd);
}

.fl-mini-value {
  font-weight: 700;
  font-size: 20px;
}

.fl-mini-label {
  font-size: 13px;
  opacity: .75;
}

/* responsive aspect ratio */
@media(max-width:1200px) {
  .fl-card {
    aspect-ratio: 16/9;
  }
}

@media(max-width:640px) {
  .fl-card {
    aspect-ratio: 4/3;
  }
}

/* Section */
.process-cards {
  padding: 28px 0 80px;
  background:
    radial-gradient(40px 40px at 20% 30%, rgba(0, 0, 0, 0.02) 0 40%, transparent 41%) repeat,
    radial-gradient(32px 32px at 70% 60%, rgba(0, 0, 0, 0.018) 0 40%, transparent 41%) repeat,
    linear-gradient(180deg, #f7f3e9 0%, #f3efe6 100%);
  background-size: 220px 220px, 260px 260px, auto;
}

.pc-container {
  width: min(1100px, 92%);
  margin: auto;
  display: grid;
  gap: 18px;
}

/* Card */
.pc-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffffE6;
  backdrop-filter: blur(2px);
  box-shadow: 0 12px 26px rgba(20, 40, 20, .08), 0 2px 6px rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .06);
  opacity: 0;
  transform: translateY(16px);
  transition: transform .35s ease, box-shadow .25s ease, opacity .35s ease, border-color .25s ease;
}

.pc-card.is-in {
  opacity: 1;
  transform: translateY(0);
}

.pc-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 auto;
}

.pc-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Step number (left edge) */
.pc-card::before {
  content: attr(data-step);
  position: absolute;
  left: 18px;
  bottom: 18px;
  font: 700 12px/1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  letter-spacing: .14em;
  color: #647a64;
  opacity: .6;
}

/* Icon tile */
.pc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef3ea, #f7faf3);
  color: #2b7a3d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 6px 12px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
}

.pc-icon.pc-accent {
  background: #2f7f45;
  color: #fff;
}

.pc-svg {
  width: 28px;
  height: 28px;
}

/* stroke-draw setup */
.pc-stroke {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

/* Text */
.pc-text h3 {
  margin: 6px 0 6px;
  font-weight: 700;
  color: #1f2a1f;
  font-size: 18px;
}

.pc-text p {
  margin: 0;
  color: #212121;
  opacity: .78;
  line-height: 1.8;
}

/* Arrow */
.pc-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #1d7a3a;
  background: #E8F3EA;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.pc-arrow:hover {
  transform: translateX(3px);
  background: #DBECDE;
}

/* Active state (green outline like Figma) */
.pc-active {
  border: 2px solid #2e8b57;
  box-shadow: 0 18px 30px rgba(20, 40, 20, .10), 0 3px 8px rgba(0, 0, 0, .06);
}

/* Click effects */
.pc-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.pc-icon.clicked::after {
  animation: pc-ripple .6s ease-out forwards;
}

@keyframes pc-ripple {
  0% {
    opacity: .35;
    transform: scale(0);
  }

  80% {
    opacity: .18;
    transform: scale(6);
  }

  100% {
    opacity: 0;
    transform: scale(7.5);
  }
}

.pc-icon.clicked .pc-svg {
  animation: pc-pop .34s cubic-bezier(.2, .9, .3, 1.4);
}

@keyframes pc-pop {
  0% {
    transform: scale(1)
  }

  40% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1)
  }
}

.pc-arrow.clicked {
  animation: pc-bump .32s ease;
}

@keyframes pc-bump {
  0% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(6px)
  }

  100% {
    transform: translateX(0)
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .pc-card,
  .pc-arrow {
    transition: none
  }

  .pc-card,
  .pc-icon::after,
  .pc-svg,
  .pc-arrow {
    animation: none !important
  }
}

/* Responsive */
@media (max-width: 760px) {
  .pc-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-card::before {
    left: 16px;
    bottom: 14px;
  }
}


.forest-lab {
  padding: 60px 0;
  background: #faf9f5;
}

.flab-container {
  width: min(1100px, 92%);
  margin: auto;
}

.flab-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}

.flab-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* caption */
.flab-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .1) 50%, transparent);
}

.flab-caption small {
  font-size: 13px;
  letter-spacing: .12em;
  opacity: .85;
}

.flab-caption h3 {
  margin: 6px 0;
  font-size: 22px;
  font-weight: 700;
}

.flab-caption p {
  margin: 0;
  font-size: 15px;
  opacity: .92;
}

/* badges */
.flab-badge {
  position: absolute;
  padding: 14px 20px;
  border-radius: 14px;
  background: #fff;
  color: #222;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

.flab-badge strong {
  font-size: 20px;
  font-weight: 800;
  color: #2a7a42;
}

.flab-top {
  top: 20px;
  right: 20px;
}

.flab-bottom {
  bottom: 20px;
  left: 20px;
  background: #8b4525;
  color: #fff;
}

.flab-bottom strong {
  color: #fff;
}

/* progress */
.flab-progress {
  margin-top: 20px;
  height: 16px;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
}

.flab-bar {
  width: 75%;
  height: 100%;
  background: #2a7a42;
  border-radius: 999px;
  animation: fillBar 2.5s ease forwards;
}

@keyframes fillBar {
  from {
    width: 0
  }

  to {
    width: 75%
  }
}


/* wrapper */
.forest-lab-carousel {
  padding: 60px 0;
  background: #faf9f5;
}

.flc-container {
  width: min(1100px, 92%);
  margin: auto;
  position: relative;
}

.flc-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
  background: #000;
  aspect-ratio: 21/9;
}

.flc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* caption */
.flc-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .08) 60%, transparent);
}

.flc-caption small {
  font-size: 13px;
  letter-spacing: .12em;
  opacity: .85;
}

.flc-caption h3 {
  margin: 6px 0;
  font-size: 22px;
  font-weight: 700;
}

.flc-caption p {
  margin: 0;
  font-size: 15px;
  opacity: .92;
}

/* badges */
.flc-badge {
  position: absolute;
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
  backdrop-filter: blur(2px);
}

.flc-top {
  right: 20px;
  top: 20px;
  background: #fff;
  color: #222;
}

.flc-bottom {
  left: 20px;
  bottom: 20px;
  background: #8b4525;
  color: #fff;
}

.flc-badge strong {
  font-size: 22px;
  font-weight: 800;
  color: #2a7a42;
}

.flc-bottom strong {
  color: #fff;
}

.flc-badge span {
  font-size: 12px;
  opacity: .9;
}

/* progress with 3 segments */
.flc-progress {
  margin-top: 16px;
  height: 16px;
  background: #e9eee9;
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 3px 12px;
}

.flc-progress .seg {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #cfd8cf;
  position: relative;
  overflow: hidden;
}

.flc-progress .seg.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #2a7a42;
  animation: fill 3.5s linear forwards;
}

@keyframes fill {
  from {
    transform: scaleX(0);
    transform-origin: left
  }

  to {
    transform: scaleX(1);
    transform-origin: left
  }
}

/* nav buttons */
.flc-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.flc-btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #ffffffbb;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .12);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform .2s, background .2s;
}

.flc-btn:hover {
  transform: scale(1.05);
  background: #fff;
}

/* responsive */
@media (max-width: 960px) {
  .flc-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 560px) {
  .flc-card {
    aspect-ratio: 4/3;
  }

  .flc-badge {
    transform: scale(.92);
  }
}


/* ===== Metrics Section (Figma-like) ===== */
:root {
  --fm-max: 1100px;
  --fm-radius: 18px;
  --fm-shadow: 0 10px 24px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .05);
  --green: #1e7a43;
  --amber: #b35a12;
  --teal: #0c8a67;
  --brown: #7a4a2f;
}

.forest-metrics {
  padding: 36px 0 80px;
  /* subtle agri/triangle patterned bg like Figma */
  --p1: radial-gradient(18px 18px at 22% 28%, rgba(0, 0, 0, .025) 0 40%, transparent 41%);
  --p2: radial-gradient(16px 16px at 70% 64%, rgba(0, 0, 0, .02) 0 40%, transparent 41%);
  background: var(--p1), var(--p2), linear-gradient(180deg, #faf7ef 0%, #f4efe5 100%);
  background-size: 220px 220px, 260px 260px, auto;
}

.fm-wrap {
  width: min(var(--fm-max), 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card base */
.fm-card {
  display: grid;
  place-items: center;
  padding: 22px 18px;
  text-align: center;
  background: #fff;
  border-radius: var(--fm-radius);
  box-shadow: var(--fm-shadow);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.fm-card::after {
  /* soft inner highlight */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% -10%, rgba(255, 255, 255, .9), transparent 60%);
  pointer-events: none;
}

.fm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

/* Number + labels */
.fm-num {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .5px;
}

.fm-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: .14em;
  opacity: .85;
}

.fm-sub {
  margin: 2px 0 0;
  font-size: 13px;
  letter-spacing: .14em;
  opacity: .75;
}

/* Accents per card (number color + tiny top bar) */
.fm-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 10px;
  height: 4px;
  border-radius: 999px;
  opacity: .22;
}

.accent-green .fm-num {
  color: var(--green);
}

.accent-green::before {
  background: var(--green);
}

.accent-amber .fm-num {
  color: var(--amber);
}

.accent-amber::before {
  background: var(--amber);
}

.accent-teal .fm-num {
  color: var(--teal);
}

.accent-teal::before {
  background: var(--teal);
}

.accent-brown .fm-num {
  color: var(--brown);
}

.accent-brown::before {
  background: var(--brown);
}

/* Responsive: 2x2 grid on tablet, 1x4 on mobile */
@media (max-width: 980px) {
  .fm-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .fm-wrap {
    grid-template-columns: 1fr;
  }

  .fm-card {
    padding: 18px 16px;
  }

  .fm-num {
    font-size: 32px;
  }
}


/* Stats Section */
.stats-section

/* அந்த sectionக்கு background நிறம் நீக்க */
.impact-section {
  background: transparent !important;
  background-color: transparent !important;
}



.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2e7d32;
  /* green for eco vibe */
}

.stat-card:nth-child(2) h2 {
  color: #b45f06;
  /* brown for natural */
}

.stat-card:nth-child(3) h2 {
  color: #1b5e20;
  /* dark green */
}

.stat-card:nth-child(4) h2 {
  color: #8b4513;
  /* earthy brown */
}

.stat-card p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}


/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: #fdfcf8;
  /* light cream/beige */
  background-image: url('bg-pattern.png');
  /* optional Figma style triangles */
  background-repeat: repeat;
  background-size: 200px auto;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-card h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2e7d32;
  /* default green */
}

.stat-card:nth-child(2) h2 {
  color: #b45f06;
}

.stat-card:nth-child(3) h2 {
  color: #1b5e20;
}

.stat-card:nth-child(4) h2 {
  color: #8b4513;
}

.stat-card p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}


/* ===== Forest Stats (final, merged) ===== */
.stats-section {
  padding: 60px 0;
  background: #fbf7ec;
  /* light cream */
}

.stats-container {
  width: min(1100px, 92%);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  /* tighter */
  flex-wrap: wrap;
}

.stat-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 240px;
  padding: 30px 20px;
  text-align: center;

  background: #fff;
  border-radius: 16px;

  /* clearer edge + elevation */
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow:
    0 14px 28px rgba(24, 35, 20, .08),
    0 2px 6px rgba(0, 0, 0, .06);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 34px rgba(24, 35, 20, .12),
    0 3px 8px rgba(0, 0, 0, .08);
  border-color: rgba(0, 0, 0, .12);
}

/* subtle top accent bar per card */
.stat-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 4px;
  border-radius: 999px;
  background: #dfe7df;
  opacity: .25;
}

.stats-container .stat-card:nth-child(1)::before {
  background: #2e7d32;
}

/* 50K+ */
.stats-container .stat-card:nth-child(2)::before {
  background: #b45f06;
}

/* 100% */
.stats-container .stat-card:nth-child(3)::before {
  background: #145a32;
}

/* 24/7 */
.stats-container .stat-card:nth-child(4)::before {
  background: #7a4a2f;
}

/* ISO */

/* inside glow for clarity */
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% -10%, rgba(255, 255, 255, .9), transparent 60%);
  pointer-events: none;
}

/* optional text tweaks (keep your existing colors if set) */
.stat-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-shadow: 0 1px 0 #fff;
  /* tiny lift */
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* responsive */
@media (max-width:980px) {
  .stats-container {
    gap: 22px;
  }
}

@media (max-width:560px) {
  .stat-card {
    min-width: 100%;
  }
}


/* ===== Forest Innovation Section ===== */
.innovation-section {
  padding: 80px 20px;
  text-align: center;
  background: #faf9f5;
  /* subtle bg */
}

.innovation-container {
  width: min(1000px, 90%);
  margin: auto;
}

.innovation-badge {
  display: inline-block;
  padding: 8px 22px;
  font-size: .9rem;
  font-weight: 600;
  background: #e6f4e6;
  color: #1b5e20;
  border-radius: 999px;
  margin-bottom: 25px;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.innovation-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin-bottom: 18px;
}

.innovation-title span {
  color: #1b5e20;
  /* highlight green */
}

.innovation-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 680px;
  margin: auto;
}

/* ===== Products / Gallery ===== */
.products-section {
  padding: 72px 0;
  background: #f7f3e9;
  /* light triangle pattern like figma */
  --p1: radial-gradient(18px 18px at 22% 28%, rgba(0, 0, 0, .03) 0 40%, transparent 41%);
  --p2: radial-gradient(16px 16px at 70% 64%, rgba(0, 0, 0, .025) 0 40%, transparent 41%);
  background-image: var(--p1), var(--p2);
  background-size: 220px 220px, 260px 260px;
}

.prod-wrap {
  width: min(1100px, 92%);
  margin: auto;
}

.prod-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 22px;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Tabs */
.prod-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 28px;
}

.prod-tab {
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #2b2b2b;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
  transition: background .2s, transform .15s;
}

.prod-tab:hover {
  transform: translateY(-2px);
}

.prod-tab.is-active {
  background: #1d7a44;
  color: #fff;
  box-shadow: 0 6px 16px rgba(29, 122, 68, .25);
}

/* Grid + cards */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

.prod-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, opacity .2s ease;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
}

.prod-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.prod-info {
  padding: 16px 18px 20px;
}

.prod-info h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: #243b2a;
}

.prod-info p {
  margin: 0;
  color: #666;
  line-height: 1.55;
}

/* pill badge on image */
.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #8b4525;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

/* hide/show via filter */
.prod-card.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(.98);
}

/* filter animation */
.prod-card {
  transition: opacity .22s ease, transform .22s ease;
}

.prod-card._fadeOut {
  opacity: 0;
  transform: scale(.98) translateY(6px);
}

.prod-card._hidden {
  display: none !important;
}

/* CTA Section */
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f8f8f2;
}

.cta-box {
  max-width: 900px;
  background: rgba(0, 100, 0, 0.05);
  /* light green tint */
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2c3e2c;
}

.cta-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #2d6a4f;
  color: white;
}

.btn-primary:hover {
  background: #1b4332;
}

.btn-outline {
  border: 2px solid #2d6a4f;
  color: #2d6a4f;
  background: transparent;
}

.btn-outline:hover {
  background: #2d6a4f;
  color: white;
}

/* Sustainability Section */
.sustain-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #f9faf6;
}

.sustain-box {
  max-width: 800px;
  text-align: center;
}

.sustain-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #e8f5e9;
  color: #2d6a4f;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.sustain-box h2 {
  font-size: 1.8rem;
  color: #2c3e2c;
  margin-bottom: 15px;
  line-height: 1.4;
}

.sustain-box h2 .highlight {
  color: #2d6a4f;
  /* green highlight */
}

.sustain-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


.sustainability-impact {
  padding: 80px 20px;
  background: #fdfdfb;
  text-align: center;
}

.impact-title {
  color: #2f6b3d;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e8f5e9;
}

.impact-subtitle {
  font-size: 20px;
  color: #333;
  margin: 15px 0 40px;
}

.impact-subtitle span {
  color: #2f6b3d;
  font-weight: 600;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.impact-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.impact-card .icon {
  font-size: 32px;
  color: #2f6b3d;
  margin-bottom: 15px;
}

.impact-card .icon.water {
  color: #2196f3;
}

.impact-card .icon.recycle {
  color: #ff9800;
}

.impact-card .icon.family {
  color: #795548;
}

.impact-card h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 5px 0;
  color: #222;
}

.impact-card h4 {
  font-size: 14px;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 14px;
  color: #555;
}

/* -- Layout container */
.impact-stats {
  padding: clamp(32px, 5vw, 56px) 0;
}

.impact-stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .impact-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .impact-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* -- Card */
.stat-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(7, 47, 31, 0.08);
  padding: 28px 22px;
  text-align: center;
  min-height: 320px;
  /* consistent height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Icon size (fixed, larger) */
.icon-wrap {
  width: 72px;
  /* << make icon big */
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #1b7a3a;
  /* svg color */
  background: #eef7f0;
  /* soft tone behind the icon */
}

.icon-wrap svg {
  width: 34px;
  height: 34px;
}

/* Optional color accents per icon */
.icon-water {
  color: #1976d2;
  background: #e9f2fd;
}

.icon-recycle {
  color: #b35a00;
  background: #fff4e8;
}

.icon-people {
  color: #0f5132;
  background: #e9f7f1;
}

.stat-value {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 2px;
  color: #0c3b23;
}

.stat-label {
  margin-top: 4px;
  letter-spacing: .08em;
  font-size: 12px;
  color: #6a7b72;
}

.stat-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #163d2a;
}

.stat-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #4f5b56;
}

.stat-extra {
  /* the extra paragraph you asked for */
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #5b6a64;
}


/* Section background spacing */
.s-impact {
  padding: 40px 0 60px;
}

/* 2×2 grid – always two columns on desktop */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Card */
.impact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(14, 35, 24, .10);
  padding: 28px 26px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Icon pill */
.impact-icon {
  width: 56px;
  /* smaller icon (Figma scale) */
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: #EDF6EE;
  /* default soft green */
}

.impact-icon svg {
  width: 28px;
  height: 28px;
  color: #246B3D;
  /* icon color */
}

/* Optional different tints per card */
.impact-icon.water {
  background: #EDF5FF;
}

.impact-icon.recycle {
  background: #FFF3E6;
}

.impact-icon.families {
  background: #EEF5EE;
}

/* Numbers & text */
.impact-value {
  font: 800 40px/1.05 'Inter', system-ui, -apple-system, sans-serif;
  color: #0E3320;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

.impact-label {
  font-weight: 700;
  color: #1E3E2A;
  margin-bottom: 8px;
}

.impact-desc {
  color: #51635A;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Keep exactly 2×2 on large screens, stack on small screens */
@media (max-width: 980px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  /* 1 column on mobile */
  .impact-card {
    padding: 22px 20px;
  }

  .impact-value {
    font-size: 34px;
  }

  .impact-icon {
    width: 52px;
    height: 52px;
  }
}

/* ===== Sustainability 2×2 cards – tweaks ===== */

/* 1) Make the icons bigger */
.impact-card .impact-icon {
  width: 72px;
  /* was 56px */
  height: 72px;
  border-radius: 16px;
  /* slightly sharper */
  margin-bottom: 16px;
}

.impact-card .impact-icon svg {
  width: 36px;
  /* was 28px */
  height: 36px;
}

/* Optional: make the number a touch bigger too */
.impact-card .impact-value {
  font-size: 44px;
  /* was 40px */
}

/* 2) Lighten the dark green background behind the cards */
.s-impact {
  /* choose ONE of these: either a flat color OR a soft gradient */
  /* Flat, lighter forest green */
  background-color: #174231;
  /* lighter than #0E3320 */

  /* Or comment the above and use this gradient for subtle depth */
  /* background: linear-gradient(180deg, #184a35 0%, #123c2a 100%); */
}

/* If your page had a darker wrapper around this section, lighten that too */
#forest-impact {
  background-color: transparent;
  /* keep only the light section color */
}

/* ===== FORCE OVERRIDES (icons bigger + lighter green) ===== */

/* Make the dark green section lighter (match any “impact” section) */
section[id*="impact"],
section[class*="impact"],
.forest-impact,
.s-impact {
  background-color: #174231 !important;
  /* lighter than #0E3320 */
  /* Or try even lighter: #1b503a */
}

/* Icon wrapper bigger */
.impact-card .impact-icon,
.s-impact .impact-icon,
.impact .impact-icon,
.card-impact .impact-icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 16px !important;
  margin-bottom: 16px !important;
}

/* SVG inside icon bigger */
.impact-card .impact-icon svg,
.s-impact .impact-icon svg,
.impact .impact-icon svg,
.card-impact .impact-icon svg {
  width: 80px !important;
  height: 80px !important;
}

/* Value a touch larger */
.impact-card .impact-value,
.s-impact .impact-value,
.impact .impact-value {
  font-size: 44px !important;
  line-height: 1.1 !important;
}


/* Card Container */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 20px;
  background: #f9faf7;
  /* Light greenish cream */
}

/* Individual Card */
.impact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* SVG / Icon */
.impact-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  fill: #2e7d32;
  /* forest green */
}

/* Highlight number */
.impact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
  color: #1b5e20;
  /* Dark green */
}

/* Title */
.impact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

/* Description */
.impact-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

:root {
  --bg-cream: #F6F9F3;
  /* Figma style subtle bg */
  --card-bg: #FFFFFF;
  --shadow: 0 8px 24px rgba(20, 37, 23, .08);
  --radius: 22px;
  --text: #233326;
  --muted: #5a6a5f;
  --forest: #1E6D3C;
  --water: #2A7BC4;
  --recycle: #A4612A;
  --people: #2C8A5B;
}

/* section bg like figma (very light green pattern feel) */
.impact-figma {
  background: var(--bg-cream);
  padding: 48px 18px;
}

/* 2-up grid like Figma (desktop), stacks on mobile */
.impact-wrap {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Card */
.impact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 37, 23, .12);
}

/* Icon badge (bigger like Figma) */
.impact-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #ECF3EA;
  /* default soft green bg */
}

.impact-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--forest);
}

/* Color accents for each icon */
.impact-icon.water {
  background: #EAF2FB;
}

.impact-icon.water svg {
  fill: var(--water);
}

.impact-icon.recycle {
  background: #F8EFE8;
}

.impact-icon.recycle svg {
  fill: var(--recycle);
}

.impact-icon.people {
  background: #EAF6F0;
}

.impact-icon.people svg {
  fill: var(--people);
}

/* Number + text */
.impact-number {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  margin: 6px 0 6px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .4px;
}

.impact-title {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  font-weight: 700;
  margin: 4px 0 10px;
}

.impact-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive (mob) */
@media (max-width: 820px) {
  .impact-wrap {
    grid-template-columns: 1fr;
  }
}


/* Remove bg for the Impact section */
.impact-figma {
  background: transparent !important;
}

.impact-card {
  background: #fff;
  /* or transparent */
  box-shadow: 0 8px 24px rgba(20, 37, 23, .08);
  /* வைத்துக்கொள்ளலாம் */
}


/* impact-figma section background remove */
.impact-figma {
  background: transparent !important;
  background-color: transparent !important;
}

section.impact-figma {
  background: transparent !important;
  background-color: transparent !important;
}

/* Section background transparent */
.impact-figma {
  background: transparent !important;
  background-color: transparent !important;
  padding: 60px 20px;
}

/* Grid container */
.impact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card design */
.impact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.impact-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

/* Headings */
.impact-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #174231;
  margin: 0;
}

.impact-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.impact-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

section.impact-figma {
  background-color: transparent !important;
  background: none !important;
}

.impact-figma {
  background: #fff !important;
  /* white background ku */
}

/* ==== Figma Impact Cards ==== */
:root {
  --card-bg: #ffffff;
  --card-pill: #eff7ef;
  /* light green pill */
  --icon-bg: #f1f5f9;
  /* light neutral behind icon */
  --shadow: 0 10px 24px rgba(16, 24, 40, .08);
  --radius: 18px;

  --brand-brown: #b26d3d;
  --brand-blue: #1c78d0;
}

/* wipe any old bg from previous rules */
section#impact-figma,
section.impact-figma {
  background: transparent !important;
  padding: clamp(24px, 4vw, 40px) 0;
  position: relative;
}

/* optional faint motif like figma (remove if not needed) */
section#impact-figma::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27, 107, 58, .06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .4;
  pointer-events: none;
}

/* grid */
.impact-grid {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
}

@media (max-width: 820px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* card */
.impact-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3.2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, .12);
}

/* icon badge */
.impact-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  margin-bottom: 14px;
  color: var(--brand-green);
}

.impact-icon svg {
  width: 40px;
  height: 40px;
}

/* icon theme accents */
.impact-icon.water {
  color: var(--brand-blue);
}

.impact-icon.recycle {
  color: var(--brand-brown);
}

.impact-icon.people {
  color: #2e7d32;
}

/* number */
.impact-metric {
  font-size: clamp(28px, 4.2vw, 36px);
  font-weight: 800;
  letter-spacing: .3px;
  color: #0f1728;
  margin: 6px 0 8px;
}

/* pill title */
.impact-title {
  background: var(--card-pill);
  color: #0f3e1f;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 12px;
}

/* description */
.impact-desc {
  color: #475466;
  font-size: clamp(14px, 2.1vw, 15.5px);
  line-height: 1.6;
  max-width: 46ch;
  margin: 4px auto 0;
}

/* make icons a bit bigger on large screens */
@media (min-width:1200px) {
  .impact-icon {
    width: 78px;
    height: 78px;
  }

  .impact-icon svg {
    width: 44px;
    height: 44px;
  }
}


/* == Impact cards section: remove dark green == */
section[id*="impact"],
section[class*="impact"],
.forest-impact,
.s-impact {
  background: transparent !important;
  /* kill any forced greens */
}

/* Give this section its own light background like Figma */
section.impact-figma {
  background: #f7fbf8 !important;
  /* pale, non-green */
}

/* in case inner container had a tint/pattern, clear it */
section.impact-figma .container {
  background: transparent !important;
}

/* == Remove dark green for card section too == */
.card-section,
section.cards,
section.impact-cards {
  background: #f7fbf8 !important;
  /* Figma la irukara pale bg */
}


/* ===== Force the impact/cards area to use light bg (override all) ===== */

/* The usual culprits */
#impact,
[id*="impact"],
.forest-impact,
.s-impact {
  background: #f7fbf8 !important;
  /* same pale bg as figma */
  background-color: #f7fbf8 !important;
}

/* In case there are overlays */
#impact::before,
#impact::after,
.forest-impact::before,
.forest-impact::after,
.s-impact::before,
.s-impact::after {
  background: none !important;
  box-shadow: none !important;
}

/* Your wrapper class (keep this too) */
.card-section,
.card-section::before,
.impact-cards,
.impact-cards::before {
  background: #f7fbf8 !important;
  background-color: #f7fbf8 !important;
  box-shadow: none !important;
}

/* Force light background for product & card sections */
.products-section,
.cards-section,
.process-section,
.stats-section,
.innovation-section {
  background: #f7fbf8 !important;
  /* pale white-green bg */
  color: #1c2b24;
  /* dark readable text */
}

/* Also remove any overlay pseudo elements */
.products-section::before,
.cards-section::before,
.process-section::before,
.stats-section::before,
.innovation-section::before {
  background: none !important;
}

/* Forest Global Impact */
.impact-metrics {
  --pill-h: 46px;
  --pill-bg: #edf6ef;
  --pill-fg: #174a2f;
  --pill-active: #1f7a4a;
  --card-bg: #ffffff;
  --card-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: 64px 0 80px;
  background: #f7fbf8;
  /* light like figma */
}

.impact-mrics,
.impact-metrics .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.im-head {
  text-align: center;
  margin-bottom: 18px
}

.im-kicker {
  display: inline-block;
  background: #eaf3ea;
  color: #1e5b3b;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .3px
}

.im-title {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.2;
  color: #163526;
  font-weight: 800
}

.im-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto 28px
}

.im-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--pill-h);
  padding: 0 16px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-fg);
  border: 1px solid rgba(23, 74, 47, .08);
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transition: .25s ease;
  cursor: pointer;
}

.im-pill:hover {
  transform: translateY(-1px)
}

.im-pill.is-active {
  background: var(--pill-active);
  color: #fff;
  box-shadow: 0 6px 18px rgba(31, 122, 74, .3)
}

.im-panels {
  margin-top: 8px
}

.im-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease
}

.im-panel.is-active {
  display: block;
  opacity: 1;
  transform: none
}

.im-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:990px) {
  .im-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .im-grid {
    grid-template-columns: 1fr
  }
}

.im-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(22, 53, 38, .06);
}

.im-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #eff5f1;
  color: #1e5b3b;
}

.im-icon.im-blue {
  background: #eef4ff;
  color: #2563eb
}

.im-icon.im-amber {
  background: #fff5e8;
  color: #ef7e18
}

.im-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 6px 0 6px;
  color: #153728;
  font-weight: 800
}

.im-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4d5e55;
  margin: 0
}


/* --- Impact Stats Cards (3-up) --- */
.impact-stats {
  --card-bg: #ffffff;
  --card-border: rgba(16, 44, 32, 0.08);
  --shadow: 0 10px 24px rgba(10, 34, 23, 0.08);
  --text: #193a2a;
  --muted: #6f8a7e;
  --green: #1f7a3a;
  /* left */
  --brown: #9a4f2d;
  /* middle */
  --deep: #0c5d34;
  /* right */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px auto 16px;
  max-width: 1000px;
  padding: 0 16px;
}

.impact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px 26px 24px;
  text-align: center;
}

.impact-card .impact-stat {
  line-height: 1;
  margin-bottom: 10px;
}

.impact-card .value {
  display: inline-block;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--green);
}

.impact-card .value.mid {
  color: var(--brown);
}

.impact-card .value.alt {
  color: var(--deep);
}

.impact-card .unit {
  display: block;
  margin-top: 6px;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--text);
}

.impact-card .label {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* subtle dotted bg like figma container (optional) */
.impact-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(25, 58, 42, .06) 1px, transparent 0) 0 0/18px 18px;
  border-radius: 26px;
  z-index: -1;
}

.impact-stats {
  position: relative;
}

/* Responsive */
@media (max-width: 980px) {
  .impact-stats {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

/* ---------- Simple Forest Promise ---------- */
.promise-simple {
  padding: 40px clamp(16px, 5vw, 80px);
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

/* pill */
.promise-simple .promise-pill {
  display: inline-block;
  background: #efdfd3;
  color: #8a5c3d;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .4px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* headings */
.promise-simple .promise-eyebrow {
  margin: 0 0 6px;
  color: #3a5a49;
  font-size: 16px;
  font-weight: 700;
}

.promise-simple .promise-title {
  margin: 0 0 16px;
  color: #183a2a;
  font-size: clamp(22px, 3.4vw, 28px);
  line-height: 1.25;
  font-weight: 800;
}

/* paragraph */
.promise-simple .promise-text {
  color: #6f8a7e;
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0 0;
}

@media(max-width:640px) {
  .promise-simple {
    padding: 30px 18px;
  }

  .promise-simple .promise-text {
    font-size: 15px;
  }
}


/* -------- 2030 Forest Goals -------- */
.goals-wrap {
  margin: 18px auto 36px;
  max-width: 960px;
  padding: 0 clamp(16px, 5vw, 24px);
}

.goals-card {
  background: rgba(245, 242, 236, 0.75);
  /* soft beige like figma */
  border: 1px solid rgba(24, 58, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(24, 58, 42, .06);
  padding: clamp(18px, 3.6vw, 28px);
}

.goals-title {
  margin: 0 0 14px;
  color: #3a5a49;
  font-weight: 800;
  font-size: clamp(16px, 2.6vw, 20px);
}

.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.goals-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: #46695a;
  line-height: 1.65;
  font-size: 15.5px;
}

.g-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: #e8f3ea;
  border: 1px solid #d2e6d6;
  border-radius: 999px;
}

/* CTA button below card */
.btn-forest-ghost {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 12px 18px;
  border: 1.8px solid #2e6e49;
  color: #2e6e49;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}

.btn-forest-ghost:hover {
  background: #2e6e49;
  color: #fff;
  transform: translateY(-1px);
}

.btn-forest-ghost .arrow {
  transition: transform .15s ease;
}

.btn-forest-ghost:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .goals-list {
    gap: 8px;
  }

  .goals-list li {
    font-size: 15px;
  }
}

/* Vision Section */
.vision-section {
  padding: 60px 10%;
  background: #fdfdfb;
  /* light bg like figma */
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vision-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  min-height: 250px;
}

.vision-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #a85634;
  /* figma brown badge */
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

.placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-size: 24px;
  background: #eee;
}

.placeholder-icon {
  opacity: 0.6;
}

/* Forest Vision – 2 image layout */
.forest-vision {
  padding: 48px 0;
}

.fv-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  /* left big, right small */
  gap: 28px;
  align-items: start;
}

.fv-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f5f3ee;
  box-shadow: 0 10px 25px rgba(25, 35, 20, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.fv-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  /* keeps same height ratio as figma */
}

/* soft vignette like figma */
.fv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 10%, rgba(0, 0, 0, .0) 40%, rgba(0, 0, 0, .12) 100%);
  pointer-events: none;
}

/* subtle hover lift */
@media (hover:hover) {
  .fv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(25, 35, 20, .18);
  }
}

/* 2030 pill badge on top-right of the grid (over the right image) */
.fv-badge {
  position: absolute;
  top: -16px;
  right: 36px;
  background: #A8643D;
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 16px rgba(168, 100, 61, .35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fv-badge strong {
  font-size: 20px;
  line-height: 1;
}

.fv-badge span {
  font-size: 11px;
  opacity: .95;
}

/* Responsive – stack images on mobile */
@media (max-width: 900px) {
  .fv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fv-badge {
    position: absolute;
    top: 8px;
    right: 16px;
  }
}

.vision-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vision-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.vision-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Top-right badge (2030 Vision) */
.vision-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #A0522D;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

/* Bottom badge (Certified …) */
.vision-badge-bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.vision-badge-bottom img {
  width: 28px;
  height: 28px;
}

.certified {
  color: #666;
  font-size: 12px;
}

.forest-vision {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px auto;
  flex-wrap: wrap;
}

.vision-card {
  position: relative;
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.vision-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.certified-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.certified-tag small {
  display: block;
  font-size: 12px;
  color: #777;
}

.certified-tag strong {
  font-size: 14px;
  color: #2c3e50;
}

.vision-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #a8562a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.vision-section {
  padding: 60px 0;
  background: #f9f9f6;
  /* light bg like figma */
}

.vision-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.vision-small {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vision-large {
  flex: 2;
  /* bigger size */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vision-small img,
.vision-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-label {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vision-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #a4532a;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}


/* === Forest Vision Section === */
.forest-vision {
  padding: 80px 0;
  background: #fafafa;
  position: relative;
}

.forest-vision .section-header {
  text-align: right;
  margin-bottom: 30px;
}

.forest-vision .badge {
  background: #a9472f;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-transform: uppercase;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.vision-card {
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  position: relative;
}

.vision-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-card.large {
  grid-row: span 2;
}

.vision-card.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaeaea;
}

.vision-card.empty .placeholder {
  font-size: 2rem;
  color: #888;
}

.vision-footer {
  margin-top: 30px;
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
}

.vision-badge img {
  width: 36px;
  height: 36px;
}

/* ---------- Forest Vision ---------- */

.forest-vision {
  --bg: #fafaf7;
  --card: #ece9e4;
  --ring: #e7e2db;
  --badge-bg: #a4512f;
  --badge-fg: #fff;
  --shadow: 0 12px 36px rgba(0, 0, 0, .12);
  --radius: 18px;
  padding: 72px 0;
  position: relative;
  background:
    radial-gradient(12px 12px at 20px 20px, rgba(17, 97, 41, .06) 20%, transparent 21%) 0 0/48px 48px,
    var(--bg);
}

.fv-container {
  width: min(1150px, 92%);
  margin: 0 auto;
  position: relative;
}

/* badge */
.fv-badge {
  position: absolute;
  top: -18px;
  /* pulls into the section */
  right: 0;
  background: var(--badge-bg);
  color: var(--badge-fg);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.fv-badge .yr {
  font-weight: 800;
  letter-spacing: .2px;
}

.fv-badge .lbl {
  font-size: .86rem;
  opacity: .95;
}

/* grid */
.fv-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.fv-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 190px;
  position: relative;
  box-shadow: 0 1px 0 var(--ring), var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.fv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 var(--ring), 0 18px 48px rgba(0, 0, 0, .18);
}

.fv-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fv-card--lg {
  grid-row: span 2;
  aspect-ratio: 16/11;
  /* tall feel; adjust if needed */
  min-height: 350px;
}

.fv-card--empty {
  background: #ebe6e1;
  display: grid;
  place-items: center;
  color: #9b9389;
}

.fv-empty {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: #f2eeea;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px #ddd5cc;
}

/* bottom sticker */
.fv-sticker {
  position: sticky;
  /* sits near bottom as in figma */
  bottom: 22px;
  left: 18px;
  width: fit-content;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}

.fv-leaf {
  width: 28px;
  height: 28px
}

.fv-st-text .dim {
  display: block;
  font-size: .85rem;
  color: #6c746c
}

.fv-st-text strong {
  font-size: .98rem
}

/* responsive */
@media (max-width: 980px) {
  .fv-grid {
    grid-template-columns: 1fr;
  }

  .fv-card--lg {
    min-height: 280px;
    aspect-ratio: 16/10;
    grid-row: auto;
  }

  .fv-badge {
    position: static;
    margin: -8px 0 16px auto;
  }

  .fv-sticker {
    position: static;
    margin-top: 16px;
  }
}


/* ============ Forest Vision ============ */
.forest-vision {
  --bg: #fbfaf6;
  --card: #eee9e2;
  --ring: #e7e1d9;
  --shadow: 0 10px 36px rgba(0, 0, 0, .12);
  --radius: 22px;
  --accent: #a35333;
  /* cocoa-brown corner accent */
  --sticker: #fff;

  padding: 72px 0 64px;
  background:
    radial-gradient(12px 12px at 22px 22px, rgba(17, 97, 41, .06) 20%, transparent 21%) 0 0/48px 48px,
    var(--bg);
}

.fv-wrap {
  width: min(1160px, 93%);
  margin: 0 auto;
  position: relative;
}

/* badge */
.fv-badge {
  position: absolute;
  top: -14px;
  right: 0;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.fv-badge .yr {
  font-weight: 800;
  letter-spacing: .2px
}

.fv-badge .lbl {
  font-size: .86rem;
  opacity: .95
}

/* grid */
.fv-grid {
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  gap: 26px;
  align-items: start;
}

/* cards */
.fv-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 190px;
  position: relative;
  box-shadow: 0 1px 0 var(--ring), var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.fv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 var(--ring), 0 18px 48px rgba(0, 0, 0, .18)
}

.fv-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

/* big left */
.fv-card--lg {
  grid-row: span 2;
  aspect-ratio: 16/10;
  /* similar to figma proportion */
  min-height: 360px;
}

/* small right (top) */
.fv-card--sm {
  aspect-ratio: 16/9;
  min-height: 220px;
}

.fv-accent {
  position: absolute;
  content: "";
  right: -14px;
  top: -16px;
  width: 160px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  z-index: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .12));
}

.fv-card--sm img {
  position: relative;
  z-index: 1
}

/* placeholder */
.fv-card--empty {
  background: #eee7e0;
  display: grid;
  place-items: center;
  color: #9a9187;
}

.fv-empty-panel {
  width: 140px;
  height: 120px;
  border-radius: 18px;
  background: #f3efe9;
  box-shadow: inset 0 0 0 1px #ddd4ca;
  display: grid;
  place-items: center;
}

/* sticker inside big image */
.fv-sticker {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--sticker);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}

.fv-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2e7d32;
  box-shadow: inset 0 0 0 3px #d9f0de;
}

.fv-st-text .dim {
  display: block;
  font-size: .84rem;
  color: #6b746b;
  line-height: 1
}

.fv-st-text strong {
  font-size: .98rem;
  font-weight: 700;
  color: #1f2b1f
}

/* responsive */
@media (max-width: 980px) {
  .fv-grid {
    grid-template-columns: 1fr
  }

  .fv-card--lg {
    min-height: 280px;
    aspect-ratio: 16/10;
    grid-row: auto
  }

  .fv-badge {
    position: static;
    margin: -8px 0 16px auto
  }
}

/* Process section */
.process {
  margin-top: 70px;
  text-align: center;
  padding: 20px;
}

.process-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-sub {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.p-step {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 20px;
  transition: .3s;
}

.p-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.p-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.p-step h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.p-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

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

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


/* ---------- Voices heading block (matches Figma) ---------- */
.voices {
  text-align: center;
  margin: 8px auto 22px;
}

.voices-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #e7f0e6;
  color: #2e7d32;
  font: 700 12px/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .6px;
  box-shadow: 0 2px 6px rgba(46, 125, 50, .12);
}

.voices-title {
  margin: 12px 0 8px;
  font: 800 24px/1.3 system-ui, sans-serif;
  color: #233026;
}

.voices-sub {
  margin: 0 auto;
  max-width: 760px;
  color: #6b7a6f;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ---------- Testimonial cards grid ---------- */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin: 18px auto 40px;
  max-width: 1100px;
}

@media (max-width: 980px) {
  .t-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.t-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  padding: 26px 22px 20px;
  min-height: 340px;
}

/* tiny corner dots (top-right) */
.t-corner-dots {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: #dfe9d9;
  border-radius: 50%;
  box-shadow: 12px 0 0 #dfe9d9, -12px 0 0 #dfe9d9;
}

/* green quote glyph (top-left) like Figma) */
.t-quote {
  font-size: 34px;
  line-height: 1;
  color: #7fb188;
  margin-bottom: 10px;
  user-select: none;
}

/* main paragraph */
.t-text {
  color: #2f3831;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 14px;
}

/* star row (exact spacing like Figma) */
.t-stars {
  display: flex;
  gap: 6px;
  margin: 4px 0 16px;
}

.t-stars svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* profile block */
.t-profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.t-person {
  line-height: 1.2;
}

.t-name {
  font-weight: 700;
  color: #233026;
}

.t-role {
  color: #6b7a6f;
  font-size: 13px;
}

.t-company {
  color: #6b7a6f;
  font-size: 12.8px;
}

/* ===== Figma-tight tweaks (paste at end of styles.css) ===== */

/* Section heading spacing/typography */
.voices {
  margin: 12px auto 10px;
}

.voices-title {
  font: 800 28px/1.25 system-ui, sans-serif;
  letter-spacing: .2px;
}

.voices-sub {
  color: #77847b;
  max-width: 760px;
  margin-top: 6px;
}

/* Grid breath & equal heights */
.t-grid {
  gap: 26px;
}

/* Cards: radius, shadow, padding to match mock */
.t-card {
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .10);
  padding: 32px 28px 24px;
  min-height: 360px;
  /* gives the tall Figma look */
}

/* Mint quote mark tone & size */
.t-quote {
  color: #8fba96;
  /* slightly paler mint */
  font-size: 36px;
  margin-bottom: 14px;
}

/* Body copy tone/leading */
.t-text {
  color: #2d3530;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Corner dots: smaller, minty, tighter to top-right */
.t-corner-dots {
  top: 10px;
  right: 16px;
  width: 6px;
  height: 6px;
  background: #cfe3cf;
  box-shadow: 10px 0 0 #cfe3cf, -10px 0 0 #cfe3cf;
  opacity: .95;
  border-radius: 50%;
}

/* Stars (if you show them) – keep compact like Figma */
.t-stars {
  gap: 5px;
  margin: 2px 0 14px;
}

.t-stars svg {
  width: 16px;
  height: 16px;
}

/* Profile row: avatar size, spacing & text weights */
.t-profile {
  gap: 12px;
  margin-top: auto;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8efe8;
  /* avoids transparent PNG edge look */
}

.t-name {
  font-weight: 800;
}

.t-role {
  font-size: 13px;
  color: #7c8a82;
}

.t-company {
  font-size: 13px;
  color: #7c8a82;
}

/* Responsive polish */
@media (max-width: 980px) {
  .t-card {
    min-height: unset;
  }
}


/* hide the top-right dots */
.t-corner-dots {
  display: none !important;
}

/* star row like figma */
.t-stars {
  display: flex;
  gap: 6px;
  color: gold;
  margin: 10px 0 14px;
}

.t-stars svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.t-stars {
  display: flex;
  gap: 6px;
  margin: 10px 0 14px;
}

.t-stars svg {
  width: 20px;
  height: 20px;
  fill: #FFD700;
  /* GOLD COLOR */
}

/* ========= Forest Trusted & Certified ========= */
.certs {
  text-align: center;
  margin: 48px auto 36px;
  padding: 0 12px;
}

.certs-title {
  font: 800 28px/1.25 system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: #233026;
  margin: 0 0 6px;
  letter-spacing: .2px;
}

.certs-sub {
  margin: 0 auto 26px;
  max-width: 720px;
  color: #77847b;
  font-size: 15.5px;
  line-height: 1.7;
}

/* grid of 4 certifications */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

/* each certification */
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* small rounded badge with subtle shadow, like Figma tiles */
.cert-badge {
  width: 104px;
  height: 72px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cert-badge img {
  width: 86px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

/* label */
.cert-label {
  font-size: 13.5px;
  color: #6b7a6f;
  font-weight: 600;
}

/* responsive */
@media (max-width: 900px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Contact / Get In Touch ===== */
.contact {
  max-width: 980px;
  margin: 54px auto;
  padding: 0 16px;
  /* subtle dotted agri pattern like figma */
  background:
    radial-gradient(circle at 50% 50%, rgba(194, 175, 140, .18) 2px, transparent 2.5px) 0 0/28px 36px;
}

.contact-head {
  text-align: center;
  margin-bottom: 22px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e4f1e7;
  color: #2e7d32;
  border-radius: 999px;
  padding: 8px 18px;
  font: 700 12px/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.contact-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2e7d32;
  border-radius: 50%;
}

.contact-title {
  margin: 14px 0 8px;
  font: 800 28px/1.25 system-ui, sans-serif;
  color: #233026;
}

.contact-sub {
  max-width: 820px;
  margin: 0 auto;
  color: #6f7d73;
  line-height: 1.7;
}

/* Card */
.contact-card {
  margin: 26px auto 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
  padding: 26px;
  backdrop-filter: saturate(1.1);
}

/* Grid */
.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.f-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-span2 {
  grid-column: 1 / -1;
}

.f-field label {
  font-size: 13px;
  color: #6f7d73;
  font-weight: 600;
}

.f-field input,
.f-field textarea {
  border: 1px solid #e6ece7;
  background: #fbfcfb;
  border-radius: 14px;
  padding: 14px 14px;
  font-size: 15px;
  color: #233026;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.f-field input::placeholder,
.f-field textarea::placeholder {
  color: #a0ada4;
}

.f-field input:focus,
.f-field textarea:focus {
  border-color: #8fba96;
  box-shadow: 0 0 0 4px rgba(143, 186, 150, .18);
  background: #fff;
}

/* Actions */
.f-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.btn-primary {
  background: #1f6b2e;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(31, 107, 46, .28);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(1px);
}

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


/* ===== Contact Info list + CTA (Figma match) ===== */
.contact-info {
  max-width: 980px;
  margin: 54px auto 60px;
  padding: 0 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(194, 175, 140, .18) 2px, transparent 2.5px) 0 0/28px 36px;
}

.ci-title {
  font: 800 28px/1.25 system-ui, sans-serif;
  color: #233026;
  margin: 0 0 10px;
}

.ci-sub {
  color: #6f7d73;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 0 20px;
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: #2e7d32;
  background: #e4f1e7;
  box-shadow: 0 6px 16px rgba(46, 125, 50, .18);
}

.ci-icon svg {
  width: 22px;
  height: 22px;
}

.ci-head {
  font-weight: 800;
  color: #233026;
  margin-bottom: 4px;
}

.ci-text {
  color: #475247;
  line-height: 1.7;
}

/* CTA banner */
.ci-cta {
  margin: 26px 0 0;
  padding: 20px 22px;
  border-radius: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #204d22 0%, #5a7a2e 45%, #9b5a33 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.ci-cta-leaf {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.ci-cta-leaf svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  opacity: .95;
}

.ci-cta-body {
  padding-left: 66px;
}

.ci-cta-body h3 {
  margin: 4px 0 8px;
  font: 800 22px/1.25 system-ui, sans-serif;
}

.ci-cta-body p {
  margin: 0 0 14px;
  color: #f0f4ef;
  max-width: 760px;
}

.btn-cta {
  background: #de6a2f;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(222, 106, 47, .35);
}

.btn-cta:hover {
  filter: brightness(1.05);
}

.btn-cta:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width:700px) {
  .ci-cta-body {
    padding-left: 0;
  }

  .ci-cta-leaf {
    position: static;
    margin-bottom: 10px;
  }
}

/* ===== Dark Footer (Figma match) ===== */
.forest-footer {
  background: #24211c;
  color: #cfd4cf;
  padding: 48px 0 26px;
  position: relative;
}

.forest-footer::before {
  /* subtle top strip to echo Figma’s backdrop */
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: repeating-linear-gradient(to right,
      rgba(255, 255, 255, .06) 0 2px,
      transparent 2px 18px);
}

.ff-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* top */
.ff-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 28px;
}

/* brand block */
.ff-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3f5f3;
  font-weight: 800;
  margin-bottom: 10px;
}

.ff-logo .leaf {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #2e7d32;
  display: inline-block;
  box-shadow: 0 6px 16px rgba(46, 125, 50, .35);
  position: relative;
}

.ff-logo .leaf::after {
  content: "";
  position: absolute;
  inset: 6px 7px 6px 7px;
  border-radius: 6px;
  background: conic-gradient(from 180deg, #c9e5c6, #7fb188);
  clip-path: polygon(30% 55%, 45% 70%, 75% 35%, 65% 25%, 45% 50%, 35% 40%);
}

.ff-blurb {
  color: #aab2aa;
  line-height: 1.7;
  margin: 0 0 16px;
}

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

.ff-sq {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #2c2823;
  color: #e7efe7;
  transition: .2s;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .3);
}

.ff-sq:hover {
  background: #3a352f;
  transform: translateY(-1px);
}

/* columns */
.ff-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ff-col h4 {
  color: #f1f4f1;
  margin: 0 0 10px;
  font-weight: 800;
}

.ff-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ff-col a {
  color: #cfd4cf;
  text-decoration: none;
}

.ff-col a:hover {
  color: #ffffff;
}

/* subscribe */
.ff-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ff-sub-copy h5 {
  color: #f1f4f1;
  margin: 0 0 6px;
  font-weight: 800;
}

.ff-sub-copy p {
  margin: 0;
  color: #aab2aa;
}

.ff-sub-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

.ff-sub-form .mail-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #2c2823;
  color: #e7efe7;
}

.ff-sub-form .mail-ico svg {
  width: 22px;
  height: 22px;
  stroke: #cfd4cf;
}

#subEmail {
  flex: 1;
  height: 44px;
  border: none;
  border-radius: 12px;
  padding: 0 12px;
  background: #2c2823;
  color: #f1f4f1;
  outline: none;
}

#subEmail::placeholder {
  color: #98a09a;
}

.ff-btn {
  height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: #1f6b2e;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(31, 107, 46, .35);
}

.ff-btn:hover {
  filter: brightness(1.05);
}

/* divider + bottom */
.ff-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 22px 0;
}

.ff-bottom {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: #aab2aa;
  font-size: 13px;
}

.ff-legal {
  display: flex;
  gap: 16px;
}

.ff-legal a {
  color: #cfd4cf;
  text-decoration: none;
}

.ff-legal a:hover {
  color: #fff;
}

/* responsive */
@media (max-width: 900px) {
  .ff-top {
    grid-template-columns: 1fr;
  }

  .ff-subscribe {
    flex-direction: column;
    align-items: stretch;
  }

  .ff-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* image logo in dark footer */
.ff-logo-img {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

.ff-logo-img img {
  height: 34px;
  /* லோகோ height – தேவைக்கு மாற்றிக்கொள்ளலாம் */
  width: auto;
  display: block;
  object-fit: contain;
}

/* mobile center */
@media (max-width:900px) {
  .ff-brand {
    text-align: left;
  }

  /* வேண்டும்னா center ஆக்கலாம் */
  .ff-logo-img {
    margin-bottom: 12px;
  }
}


/* Hero container */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Full screen on mobile */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background media */
.hero video,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop properly on tall screens */
  object-position: center;
  /* adjust focus if needed */
  z-index: 0;
}

/* Dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

/* Content */
.hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
  max-width: 600px;
  color: #fff;
}

/* CTA row */
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 1.2rem;
}

/* Dots / indicators */
.hero .hero-footer {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero .hero-footer .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.hero .hero-footer .dot.active {
  background: #fff;
}

/* ----------------- Mobile specific ----------------- */
@media (max-width: 640px) {
  .hero {
    min-height: 90vh;
    /* avoid content overflow */
    padding-top: 60px;
    /* push text down */
    padding-bottom: 80px;
    /* space for dots */
  }

  .hero .hero-inner h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero .hero-inner p {
    font-size: .9rem;
  }
}

/* 1) Title & subtitle responsive sizes */
.hero .hero-inner h1 {
  /* fluid but capped */
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.1;
  margin: 0.35em 0 0.25em;
}

.hero .hero-inner .subtitle,
.hero .hero-inner p {
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.45;
  margin: 0 0 0.9rem;
  opacity: .95;
}

/* 2) CTA row spacing */
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 1.1rem;
}

/* 3) Stats/badges block sits *below* CTA, not over the H1 */
.hero .hero-footer {
  position: relative;
  /* was absolute → caused overlap */
  z-index: 2;
  margin-top: clamp(12px, 2.5vw, 20px);
  display: grid;
  grid-auto-flow: column;
  gap: clamp(10px, 2vw, 24px);
  justify-content: center;
}

/* If you have individual stat pills */
.hero .hero-footer .stat,
.hero .hero-footer .dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: 12px;
  letter-spacing: .3px;
}

/* 4) Keep background video behind everything */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
}

/* 5) Mobile: reduce sizes + stack stats nicely */
@media (max-width: 640px) {
  .hero {
    min-height: 90vh;
    padding: 56px 0 72px;
  }

  .hero .hero-inner {
    text-align: center;
    padding: 0 16px;
  }

  .hero .hero-footer {
    grid-auto-flow: row;
    /* stack */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10px;
    column-gap: 10px;
  }
}

/* 6) Prevent accidental overlays placed earlier */
.hero .badge,
.hero .label,
.hero .stat {
  z-index: 2;
  /* above overlay, below menus */
}

/* mobile: reduce wave wobble / turn off */
@media (max-width:640px) {
  .wave span {
    animation-duration: 2.2s;
    /* slower */
    animation-timing-function: ease-out;
    text-shadow: none;
    /* glow remove */
    transform: none !important;
    /* stop jitter if needed */
  }

  /* OR fully disable: */
  /* .wave span{ animation: none !important; } */
}

@media (max-width:640px) {
  .cta-row {
    gap: .6rem;
    justify-content: center;
    margin-top: .9rem;
  }

  .cta-row .btn {
    padding: .6rem 1rem;
    font-size: .9rem;
    border-radius: 999px;
  }
}

/* keep footer under CTA, not absolute */
.hero-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.hero-footer .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .85);
  opacity: .9;
}

.hero-footer .dot.active {
  background: #fff;
}

/* mobile: stack if space tight */
@media (max-width:640px) {
  .hero-footer {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 8px;
  }
}

.hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .25) 60%, rgba(0, 0, 0, .15) 100%);
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  text-align: center;
}


/* 0) Global: never allow horizontal overflow */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 1) Hero box should not scroll sideways */
#home.hero,
.hero {
  position: relative;
  overflow: hidden;
}

/* 2) Background media must fully cover */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 40%;
}

/* 3) Inner content stays inside viewport */
.hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  max-width: 100%;
}

/* 4) CTAs and pills can wrap instead of pushing width */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.cta-row>* {
  max-width: 100%;
}

/* 5) Any animated wave letters: kill transforms on mobile (they cause overflow) */
@media (max-width:640px) {
  .wave span {
    animation: none !important;
    transform: none !important;
    text-shadow: none !important;
  }
}

/* 6) Safety net: nothing inside hero can exceed viewport width */
@media (max-width:640px) {

  .hero,
  .hero * {
    max-width: 100vw;
  }
}

/* 7) If you use absolute dots/footer, keep them inside */
.hero-footer {
  position: relative;
  /* not absolute bottom to avoid spill */
  margin-top: 12px;
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  justify-content: center;
}

@media (max-width:640px) {
  .hero-footer {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Remove default margin/padding */
html,
body {
  margin: 0;
  padding: 0;
}

/* Hero section flush from top */
#hero,
section.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* If header/nav is fixed, prevent double space */
header,
.navbar,
.site-header {
  margin: 0;
  padding: 0;
}

/* Mobile: ensure no extra gap above logo */
@media (max-width:640px) {
  #hero.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Remove browser default space */
html,
body {
  margin: 0;
  padding: 0;
}

/* Header flush to top */
header.nav {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Container inside header */
header.nav .container,
header.nav .nav-inner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure logo image not pushing down */
header.nav img {
  display: block;
  margin: 0;
  padding: 0;
}

/* 1) Browser default spacing remove */
html,
body {
  margin: 0;
  padding: 0;
}

/* 2) Header-ஐ hero மேல் overlay ஆக fix பண்ணு (gap வராது) */
header,
.site-header,
.navbar {
  position: absolute;
  /* fixed ஆக வேண்டுமானால் fixed, ஆனால் gap வேண்டாம் என்றால் absolute safe */
  top: 0;
  left: 0;
  right: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  /* அந்த சாம்பல்/வெள்ளை strip நீங்கும் */
  box-shadow: none !important;
}

/* சில theme-களில் top-blur bar / overlay இருக்கும்—நீக்கு */
.header-blur,
.top-blur,
.page-top-blur {
  display: none !important;
}

/* 3) Hero flush from top */
#hero,
section.hero {
  margin-top: 0 !important;
  padding-top: clamp(8px, 1.5vh, 16px);
  /* text க்கு ஒரு சின்ன breathing space மட்டும் */
}

/* 4) Hero media cover (side gap/white band வராதே) */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* 5) Body horizontal scroll safety (any overflow kill) */
@media (max-width: 640px) {

  html,
  body {
    overflow-x: hidden;
  }

  .wave span {
    animation: none !important;
    transform: none !important;
    text-shadow: none !important;
  }
}


/* optional: sticky header without top gap */
.site-header {
  position: fixed;
}

body {
  padding-top: var(--header-h, 64px);
}

/* header height அளவுக்கு கீழே content push */
#hero {
  margin-top: calc(-1 * var(--header-h, 64px));
  padding-top: calc(8px + var(--header-h, 64px));
}

/* remove unwanted grey strip behind header */
header.nav,
header.site-header,
.navbar,
.header-blur {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* make header flush to top */
header.nav {
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  /* keeps it overlaying hero */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* body default margin remove */
html,
body {
  margin: 0;
  padding: 0;
}

/* header totally transparent + no line */
header,
.site-header,
.navbar {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

header *,
.site-header *,
.navbar * {
  box-shadow: none !important;
}

/* hero flush to top */
#hero,
section.hero {
  margin-top: 0 !important;
}

/* safety: prevent horiz scroll + make media cover */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}


/* Brand layout: logo + text in one row */
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  /* space between logo & text */
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  /* keep on one line if possible */
}

.brand-logo {
  width: 40px;
  /* adjust to your design */
  height: auto;
  display: block;
  flex-shrink: 0;
  /* logo never shrinks */
  border-radius: 4px;
  /* optional */
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  width: 242px;
}

.brand-title {
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 18px);
  color: #ffffff;
  /* on dark hero */
}

.brand-sub {
  font-size: clamp(10px, 1.6vw, 12px);
  opacity: .85;
  color: #cfe4cf;
  /* subtle tint; tweak as needed */
  letter-spacing: .2px;
}

/* Very narrow screens: allow wrap or hide subline if space tight */
@media (max-width:360px) {
  .site-header .brand {
    white-space: normal;
  }

  .brand-sub {
    display: none;
  }

  /* remove this line if you prefer wrapping */
}

html,
body {
  margin: 0;
  padding: 0;
}

header {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

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

.brand-logo {
  width: 40px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.brand-sub {
  font-size: 12px;
  color: #cfe4cf;
  opacity: .9;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo {
  width: 40px;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  translate: 0 1px;
}

/* tiny nudge */
.brand-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff
}

.brand-sub {
  font-size: 12px;
  color: #cfe4cf;
  opacity: .9
}

@media (max-width:360px) {
  .brand-sub {
    display: none;
  }
}


html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block
}


/* force header transparent */
header,
.site-header,
header.nav,
.navbar {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* if header-inner / nav-inner block adds bg */
header .container,
header .nav-inner,
header .header-inner {
  background: transparent !important;
}

header.nav {
  background: transparent;
  /* white space remove */
  padding: 0;
  /* unwanted gap remove */
  margin: 0;
  /* top spacing remove */
  position: absolute;
  /* logo+menu overlay hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  /* logo + text spacing */
}

header.nav .brand-logo {
  height: 48px;
  /* adjust logo height */
}

header.nav .brand-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  /* figma போல white text */
}

header.nav {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

/* FINAL OVERRIDE: make the header fully transparent */
header.nav {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

/* solid header after scrolling */
header.nav.nav-solid {
  background: #0e1b14cc !important;
  /* deep green with slight opacity */
  backdrop-filter: saturate(120%) blur(4px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

/* Header: flush to very top, no background */
header.nav {
  position: fixed;
  /* hero மேல் ஒட்ட வைக்க */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  backdrop-filter: none !important;
  border: 0 !important;
  height: 64px;
  /* Figma-style bar height */
  padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
}

/* Inner row: logo left, menu right, vertical-center */
header.nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  padding: 0 16px;
  /* side breathing */
}

/* Brand block: logo + text in a row, no top gap */
header.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  /* any inherited spacing kill */
  line-height: 1;
}

header.nav .brand-logo {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

header.nav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

header.nav .brand-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

header.nav .brand-sub {
  color: #cfe4cf;
  opacity: .95;
  font-size: 12px;
}

/* Menu button right side aligned */
header.nav .menu {
  margin: 0;
  padding: 8px;
  background: transparent;
  border: 0;
  color: lightgoldenrodyellow;
}

/* Make page content start under fixed header, but keep hero flush visually */
:root {
  --header-h: 42px;
}

body {
  padding-top: var(--header-h);
}

/* prevents jump for sections after hero */
#hero {
  margin-top: calc(-1 * var(--header-h));
  /* hero visually goes behind header */
  padding-top: calc(var(--header-h) + 8px);
}

/* tiny breathing over hero text */

/* Mobile tweaks */
@media (max-width: 640px) {
  header.nav {
    height: 56px;
  }

  :root {
    --header-h: 56px;
  }

  header.nav .brand-logo {
    height: 32px;
  }

  header.nav .brand-title {
    font-size: 15px;
  }

  header.nav .brand-sub {
    font-size: 11px;
  }
}

/* Mobile-ல் மட்டும் wave animation OFF */
@media (max-width: 640px) {

  .no-wave-mobile,
  .no-wave-mobile * {
    animation: none !important;
    transform: none !important;
    text-shadow: none !important;
  }
}

/* Accessibility: motion குறைக்க விரும்புபவர்களுக்கு desktop-லும் OFF */
@media (prefers-reduced-motion: reduce) {

  .no-wave-mobile,
  .no-wave-mobile * {
    animation: none !important;
    transform: none !important;
  }
}

header.nav .menu {
  color: #222 !important;
  /* dark grey */
}

/* Default (top hero) */
header.nav .menu {
  color: #fff !important;
  transition: color .3s ease;
}

/* When header solid bg applied (on scroll) */
header.nav.nav-solid .menu {
  color: #222 !important;
}

header.nav .menu {
  color: #222 !important;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 4px;
  padding: 4px;
  background: #1b5e20;
}

/* Default (hero backgroundல் இருக்கும்போது) */
header.nav .logo-text {
  color: #2e7d32 !important;
  /* Green */
  transition: color 0.3s ease;
}

header.nav .logo-sub {
  color: #2e7d32 !important;
  /* tagline (Sustainable Solutions) */
  transition: color 0.3s ease;
}

/* When header gets solid bg on scroll */
header.nav.nav-solid .logo-text,
header.nav.nav-solid .logo-sub {
  color: #fff !important;
  /* White after scroll */
}

/* Default (top / hero) */
header.nav .brand-title,
header.nav .brand-sub {
  color: #2e7d32 !important;
  /* forest green */
  transition: color .25s ease;
}

/* After scroll: header gets solid bg → turn white */
header.nav.nav-solid .brand-title,
header.nav.nav-solid .brand-sub {
  color: #ffffff !important;
}

/* (optional) menu icon color switch too */
header.nav .menu {
  color: #2e7d32 !important;
  transition: color .25s;
}

header.nav.nav-solid .menu {
  color: #ffffff !important;
}

/* Default header background */
header.nav {
  background: #f5f0eb;
  /* light beige */
  transition: background 0.3s ease, color 0.3s ease;
}

/* On scroll */
header.nav.scrolled {
  background: #ffffff;
  /* white */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Make sure logo + text adjust for contrast */
header.nav.scrolled .brand-title,
header.nav.scrolled .brand-sub {
  color: #006400;
  /* dark green for readability */
}

.card {
  width: 250px;
  height: 300px;
  padding: 2rem;
  border-radius: 10px;
}


/* container: keep centered and compact */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  /* tighter gap */
  max-width: 1080px;
  /* similar to figma frame width */
  margin: 28px auto 12px;
  padding: 0 16px;
}

/* card: smaller footprint */
.stat-card {
  max-width: 120px;
  /* <= key: shrink width */
  justify-self: center;
  padding: 10px 12px;
  /* less internal spacing */
  border-radius: 14px;
  /* slightly tighter corners */
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

/* top “cap” line inside card */
.stat-card .cap {
  height: 6px;
  /* slimmer cap */
  border-radius: 6px;
  margin: 4px 0 14px;
}

/* value + labels: reduce sizes */
.stat-card .value {
  font-size: 28px;
  /* e.g., 50K+, 100% */
  line-height: 1.05;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 12.5px;
  /* FOREST TONS / PROCESSED, etc. */
  letter-spacing: .3px;
  line-height: 1.25;
}

/* mobile: two per row and even smaller */
@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .stat-card {
    max-width: 180px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .stat-card .value {
    font-size: 24px;
  }

  .stat-card .label {
    font-size: 11.5px;
  }
}


/* Container = 4 small cards side by side */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 30px auto;
  padding: 0 15px;
}

/* Each card smaller size */
.stat-card {
  max-width: 220px;
  /* shrink width */
  height: auto;
  /* adjust to content */
  padding: 16px 18px;
  /* less padding */
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
  text-align: center;
}

/* Heading number */
.stat-card h2 {
  font-size: 26px;
  /* smaller font */
  margin: 0 0 8px;
  color: #2c7a36;
  /* green shade */
}

/* Sub text */
.stat-card p {
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
  color: #555;
}

/* Mobile: 2 cards per row */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    max-width: 180px;
    padding: 12px 14px;
  }

  .stat-card h2 {
    font-size: 22px;
  }

  .stat-card p {
    font-size: 12px;
  }
}

/* container layout – keep compact */
section.stats-section .stats-container {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1080px !important;
  margin: 28px auto !important;
  padding: 0 14px !important;
}

/* CARD: force small size */
section.stats-section .stat-card {
  width: 220px !important;
  max-width: 220px !important;
  min-width: 0 !important;

  min-height: 180px !important;
  /* ↓ size */
  height: auto !important;

  padding: 14px 16px !important;
  /* ↓ inner spacing */
  border-radius: 12px !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06) !important;
  background: #fff !important;
  text-align: center !important;
  justify-self: center !important;
}

/* top cap line inside the card (உங்க designல இருக்குனா) */
section.stats-section .stat-card .cap {
  height: 6px !important;
  border-radius: 6px !important;
  margin: 6px 0 12px !important;
}

/* Text sizes smaller */
section.stats-section .stat-card h2 {
  font-size: 26px !important;
  line-height: 1.05 !important;
  margin: 0 0 8px !important;
}

section.stats-section .stat-card p {
  font-size: 13px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  letter-spacing: .2px !important;
  color: #555 !important;
}

/* Mobile: 2 per row and even smaller */
@media (max-width: 768px) {
  section.stats-section .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  section.stats-section .stat-card {
    width: 180px !important;
    max-width: 180px !important;
    min-height: 160px !important;
    padding: 12px 12px !important;
  }

  section.stats-section .stat-card h2 {
    font-size: 22px !important;
  }

  section.stats-section .stat-card p {
    font-size: 12px !important;
  }
}





/* ================================
   PRODUCTS2 PAGE – SECTIONS BELOW HERO
   (Heritage-ku mela already style irukku)
=================================== */

/* Products block container */
.products-page .products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Forest-style section header */
.products-page .forest-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.products-page .forest-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.products-page .forest-header .tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2d8659;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(45, 134, 89, 0.2);
}

.products-page .forest-header .title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #1a5f3f;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.products-page .forest-header .subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #574b3e;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* Generic section title (if you used section-header) */
.products-page .section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.products-page .section-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.products-page .section-header::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a5f3f, #2d8659);
  border-radius: 2px;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}

.products-page .section-header.animate-in::after {
  transform: translateX(-50%) scaleX(1);
}

.products-page .section-header h3 {
  font-size: 48px;
  font-weight: 800;
  color: #1a5f3f;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.products-page .section-header p {
  font-size: 20px;
  color: #6c757d;
  margin: 0;
  font-weight: 400;
}

/* Product cards grid */
.products-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.products-page .product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid rgba(26, 95, 63, 0.08);
  opacity: 0;
  transform: translateY(60px) scale(0.9) rotate(5deg);
}

.products-page .product-card.wave-slide {
  transform: translateX(-150px) translateY(30px) scale(0.85);
  opacity: 0;
}

.products-page .product-card.wave-zoom {
  transform: scale(0.3) translateY(30px);
  opacity: 0;
}

.products-page .product-card.animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

.products-page .product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 95, 63, 0.03), rgba(45, 134, 89, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.products-page .product-card:hover::before {
  opacity: 1;
}

.products-page .product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 95, 63, 0.2);
  border-color: rgba(26, 95, 63, 0.15);
}

.products-page .product-image {
  width: 100%;
  height: 320px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.products-page .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.products-page .product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

.products-page .image-placeholder {
  font-size: 100px;
  opacity: 0.35;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.products-page .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(26, 95, 63, 0.4);
  z-index: 3;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

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

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

.products-page .product-info {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.products-page .product-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1a5f3f;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.products-page .product-card:hover .product-info h4 {
  color: #2d8659;
}

.products-page .product-info p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

.products-page .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 95, 63, 0.9), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 3;
}

.products-page .product-card:hover .product-overlay {
  transform: translateY(0);
}

.products-page .overlay-text {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.products-page .product-card:hover .overlay-text {
  opacity: 1;
}

/* Upload instruction yellow box (if present) */
.products-page .upload-info {
  background: #fff3cd;
  border: 2px dashed #ffc107;
  border-radius: 12px;
  padding: 25px;
  margin: 0 40px 40px 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.products-page .upload-info h4 {
  color: #856404;
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.products-page .upload-info p {
  color: #856404;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.products-page .upload-info code {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
}

/* =========================
   ECO BENEFITS SECTION
========================= */

.products-page .eco-section {
  background: linear-gradient(180deg, #ffffff 0%, #e8f5e9 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.products-page .eco-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="%231a5f3f" opacity="0.08"/></svg>');
  background-size: 60px 60px;
  pointer-events: none;
}

.products-page .eco-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.products-page .eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #1a5f3f;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  border: 2px solid #2d8659;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(26, 95, 63, 0.15);
}

.products-page .leaf-icon {
  font-size: 20px;
  animation: leaf-rotate 3s ease-in-out infinite;
}

@keyframes leaf-rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

.products-page .eco-header h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1a5f3f;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
}

.products-page .eco-header p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #2d8659;
  font-weight: 600;
  margin: 0;
}

.products-page .eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.products-page .eco-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(26, 95, 63, 0.1);
  position: relative;
  overflow: hidden;
}

.products-page .eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1a5f3f, #2d8659, #3ea871);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.products-page .eco-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(26, 95, 63, 0.2);
  border-color: #2d8659;
}

.products-page .eco-card:hover::before {
  transform: scaleX(1);
}

.products-page .eco-icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.products-page .eco-card:nth-child(2) .eco-icon {
  animation-delay: 0.5s;
}

.products-page .eco-card:nth-child(3) .eco-icon {
  animation-delay: 1s;
}

.products-page .eco-card:nth-child(4) .eco-icon {
  animation-delay: 1.5s;
}

.products-page .eco-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a5f3f;
  margin: 0 0 15px 0;
}

.products-page .eco-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.7;
  margin: 0 0 25px 0;
}

.products-page .eco-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 20px;
  border-top: 2px solid #e8f5e9;
}

.products-page .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #2d8659;
  line-height: 1;
}

.products-page .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a5f3f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================
   TECHNICAL SPECS SECTION
========================= */

.products-page .specs-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 40px;
}

.products-page .specs-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-page .specs-header h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1a5f3f;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
}

.products-page .specs-header p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #6c757d;
  margin: 0;
}

.products-page .specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 60px auto;
}

.products-page .spec-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid rgba(26, 95, 63, 0.1);
}

.products-page .spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(26, 95, 63, 0.15);
  border-color: #2d8659;
}

/* =========================
   CONTACT SECTION – 2 CARDS
========================= */

.products-page .contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 40px;
  text-align: center;
}

.products-page .contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.products-page .simple-contact-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1a5f3f;
  margin: 0 0 50px 0;
  letter-spacing: -1px;
}

/* Two cards side-by-side */
.products-page .two-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Left info card */
.products-page .contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(26, 95, 63, 0.12);
  border: 2px solid rgba(26, 95, 63, 0.1);
  transition: all 0.4s ease;
}

.products-page .contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(26, 95, 63, 0.2);
  border-color: #2d8659;
}

/* Right image card */
.products-page .contact-image-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(26, 95, 63, 0.12);
  border: 2px solid rgba(26, 95, 63, 0.1);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page .contact-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(26, 95, 63, 0.2);
  border-color: #2d8659;
}

.products-page .contact-image-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e8f5e9;
  box-shadow: 0 8px 25px rgba(26, 95, 63, 0.2);
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-page .contact-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.products-page .contact-placeholder-icon {
  font-size: 80px;
  opacity: 0.4;
}

/* Contact details list */
.products-page .contact-details-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.products-page .contact-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.products-page .contact-detail-row:hover {
  background: #e8f5e9;
  transform: translateX(5px);
}

.products-page .detail-icon {
  font-size: 22px;
  min-width: 32px;
  text-align: center;
}

.products-page .detail-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a5f3f;
  text-align: left;
  flex: 1;
}

.products-page .detail-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.products-page .detail-link:hover {
  color: #2d8659;
}

/* =========
   Mobile
========= */

@media (max-width: 768px) {
  .products-page .products-section {
    padding: 60px 20px;
  }

  .products-page .products-grid {
    grid-template-columns: 1fr;
  }

  .products-page .section-header h3,
  .products-page .forest-header .title {
    font-size: 32px;
  }

  .products-page .contact-section {
    padding: 60px 20px;
  }

  .products-page .two-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-page .contact-info-card {
    padding: 25px 20px;
  }

  .products-page .contact-image-card {
    padding: 25px;
  }

  .products-page .contact-image-container {
    width: 140px;
    height: 140px;
  }

  .products-page .contact-placeholder-icon {
    font-size: 60px;
  }

  .products-page .contact-detail-row {
    padding: 10px 12px;
    gap: 10px;
  }

  .products-page .detail-icon {
    font-size: 20px;
    min-width: 30px;
  }

  .products-page .detail-text {
    font-size: 14px;
  }

  .products-page .upload-info {
    margin: 0 20px 30px 20px;
  }
}



/* ============================================
   FIX + PREMIUM STYLING FOR EXCELLENCE SECTION
   (Why Choose VM Global Impex)
============================================ */

.products-page .excellence-section {
  background: #fef6f2;
  /* soft warm white like your new theme */
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}

.products-page .excellence-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 1 !important;
  /* overriding fade */
}

.products-page .excellence-badge {
  display: inline-block;
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  color: #d17a00;
  border: 2px solid #ffcc7a;
  font-size: 14px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.products-page .excellence-title {
  font-size: 42px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #1a5f3f !important;
  /* strong green */
}

.products-page .excellence-subtitle {
  font-size: 18px;
  color: #5b4b3b !important;
  opacity: 0.9;
}

/* GRID */
.products-page .excellence-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

/* BENEFIT LEFT SIDE */
.products-page .benefits-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.products-page .benefit-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 95, 63, 0.1);
  transition: 0.3s;
}

.products-page .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 95, 63, 0.15);
}

.products-page .benefit-icon {
  font-size: 32px;
}

.products-page .benefit-text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a5f3f;
}

.products-page .benefit-text p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #666;
}

/* SPEC RIGHT SIDE */
.products-page .specs-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.products-page .quick-spec-card {
  background: #ffffff;
  padding: 25px 25px;
  border-radius: 16px;
  border: 1px solid rgba(26, 95, 63, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.products-page .quick-spec-card h4 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
  color: #1a5f3f;
}

.products-page .quick-list {
  padding-left: 20px;
  margin: 0;
  color: #444;
}

.products-page .quick-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* CTA BOX */
.products-page .excellence-cta {
  margin-top: 60px;
  background: linear-gradient(90deg, #1a5f3f, #2d8659);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(26, 95, 63, 0.25);
}

.products-page .cta-text h3 {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 800;
}

.products-page .cta-text p {
  margin: 0 0 20px;
  font-size: 16px;
  opacity: 0.9;
}

.products-page .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* CTA button styles */
.products-page .cta-btn-primary {
  background: white;
  color: #1a5f3f;
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4);
}

.products-page .cta-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid white;
}

/* MOBILE */
@media (max-width: 768px) {
  .products-page .excellence-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   TECHNICAL SPECIFICATIONS — FIX + PREMIUM THEME VERSION
   Only affects products2.html (because .products-page wrapper)
============================================================ */

.products-page .specs-section {
  padding: 80px 40px;
  background: #f3f9f4;
  /* soft premium green tint */
  position: relative;
  z-index: 2;
}

.products-page .specs-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 1 !important;
}

.products-page .specs-header h3 {
  font-size: 42px;
  color: #1a5f3f !important;
  font-weight: 800;
  margin-bottom: 10px;
}

.products-page .specs-header p {
  color: #4a5a4a !important;
  font-size: 18px;
  opacity: 0.9;
}

.products-page .specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.products-page .spec-card {
  background: #ffffff;
  padding: 40px 28px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 95, 63, 0.1);
  transition: 0.3s ease;
  position: relative;
}

.products-page .spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(26, 95, 63, 0.18);
}

.products-page .spec-icon {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page .spec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page .spec-emoji {
  font-size: 60px;
  opacity: 0.25;
}

.products-page .spec-card h4 {
  color: #1a5f3f !important;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.products-page .spec-list {
  margin: 0;
  padding-left: 18px;
}

.products-page .spec-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #4f4f4f;
  line-height: 1.6;
}

.products-page .spec-list strong {
  color: #1a5f3f;
}

/* Commitment Box */
.products-page .commitment-box {
  margin-top: 60px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 22px;
  border: 2px solid rgba(26, 95, 63, 0.12);
  box-shadow: 0 10px 40px rgba(26, 95, 63, 0.15);
  text-align: center;
}

.products-page .commitment-box h4 {
  font-size: 26px;
  font-weight: 800;
  color: #1a5f3f;
  margin-bottom: 12px;
}

.products-page .commitment-box p {
  color: #4f4f4f;
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.products-page .commitment-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.products-page .badge-item {
  background: #e8f5ec;
  padding: 10px 18px;
  border-radius: 30px;
  color: #1a5f3f;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(26, 95, 63, 0.2);
}


/* Mobile responsive */
@media (max-width: 768px) {
  .products-page .specs-section {
    padding: 60px 20px;
  }

  .products-page .specs-header h3 {
    font-size: 32px;
  }

  .products-page .spec-card {
    padding: 30px 20px;
  }

  .products-page .commitment-box {
    padding: 30px 20px;
  }
}



/* ============================================================
   GET IN TOUCH SECTION – FIX + PREMIUM STYLING
============================================================ */

.products-page .contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.products-page .simple-contact-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a5f3f;
  margin-bottom: 50px;
}

.products-page .two-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

/* LEFT CARD */
.products-page .contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(26, 95, 63, 0.15);
  border: 2px solid rgba(26, 95, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page .contact-details-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.products-page .contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f9fa;
  padding: 14px 18px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.products-page .contact-detail-row:hover {
  background: #e8f5e9;
  transform: translateX(5px);
}

.products-page .detail-icon {
  font-size: 20px;
  min-width: 32px;
  text-align: center;
}

.products-page .detail-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a5f3f;
}

/* RIGHT CARD */
.products-page .contact-image-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(26, 95, 63, 0.1);
  border: 2px solid rgba(26, 95, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page .contact-image-container {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f9f4;
  box-shadow: 0 10px 35px rgba(26, 95, 63, 0.25);
}

.products-page .contact-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .products-page .two-cards-container {
    grid-template-columns: 1fr;
  }

  .products-page .contact-section {
    padding: 60px 20px;
  }

  .products-page .simple-contact-title {
    font-size: 32px;
  }
}

/* ==========================================
   PREMIUM FOOTER — MATCHES WEBSITE THEME
========================================== */

.footer {
  background: #1a5f3f;
  /* deep green */
  color: white;
  padding: 50px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 4px solid #2d8659;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-company {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-line {
  font-size: 16px;
  opacity: 0.9;
  margin: 5px 0 10px 0;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

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

  .footer-company {
    font-size: 18px;
  }

  .footer-line {
    font-size: 15px;
  }

  .footer-copy {
    font-size: 13px;
  }
}





/* --- Language Selector --- */
.lang-box {
  position: relative;
  margin-right: 15px;
}

.lang-btn {
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn .arrow {
  font-size: 10px;
  margin-left: 6px;
}

.lang-dropdown {
  position: absolute;
  top: 38px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  display: none;
  width: 180px;
  z-index: 9999;
}

.lang-dropdown.active {
  display: block;
}

.language-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  gap: 8px;
}

.language-option:hover {
  background: #f1f1f1;
}

.language-option.selected {
  background: #e6ffe6;
  font-weight: 600;
}




/* Language Box Position */
.lang-select-box {
  position: absolute;
  top: 85px;
  left: 20px;
  z-index: 9999;
}

/* Button */
.lang-select-btn {
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown box */
.lang-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  width: 160px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  overflow: hidden;
  padding: 5px 0;
}

.lang-hidden {
  display: none !important;
}

.lang-option {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: #eaf5e5;
}

/* Highlight Selected */
.lang-active {
  background: #dff5d8 !important;
  font-weight: 600;
}



/* ============================
   LANGUAGE DROPDOWN FIX (NEW)
   ============================ */

.language-box {
  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dce5dd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 90px;
  left: 20px;
  z-index: 9999;
  overflow: hidden;
  font-family: Inter, sans-serif;
}

.language-box summary {
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
  background: #f4f7f5;
  font-size: 16px;
  font-weight: 600;
  color: #1b3d2f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-box summary::-webkit-details-marker {
  display: none;
}

.language-box ul {
  margin: 0;
  padding: 0;
}

.language-box li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.language-box button {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: 0;
  background: white;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.language-box button:hover {
  background: #eaf7ee;
  color: #1a5d39;
  font-weight: 600;
}

.language-box button:last-child {
  border-bottom: 0;
}




/* ---------------------------
   Modern Language Selector UI
----------------------------*/
.lang-selector {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5000;
}

.lang-trigger {
  background: white;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-trigger .arrow {
  font-size: 10px;
}

.lang-dropdown {
  margin-top: 6px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 160px;
  display: none;
  overflow: hidden;
}

.lang-dropdown .lang-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.lang-dropdown .lang-item:last-child {
  border-bottom: none;
}

.lang-dropdown .lang-item:hover {
  background: #f4f4f4;
}




/* Move language selector down (below logo) */
.lang-selector {
  position: absolute;
  top: 90px;
  /* move down */
  left: 20px;
  /* left side spacing */
  z-index: 9999;
}

/* Optional: Add soft shadow */
.lang-selector .lang-trigger {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dropdown nicely aligned below */
.lang-dropdown {
  margin-top: 5px;
}

/* Make language items darker (not light grey) */
.lang-dropdown .lang-item {
  color: #222 !important;
  /* Dark text */
  font-weight: 600 !important;
  /* Bold */
  opacity: 1 !important;
  /* Full visibility */
}

/* Hover effect */
.lang-dropdown .lang-item:hover {
  background: #f1f1f1;
  color: #000 !important;
}


/* New Product Range (A2Z Style) */
.product-range-section {
  padding: 60px 20px;
  background: #fff;
}

.product-range-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  align-items: start;
}

.product-item {
  text-align: center;
  transition: 0.3s;
}

.product-item img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.product-item h4 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Hover zoom */
.product-item:hover img {
  transform: scale(1.05);
}

.phone-ltr {
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  text-align: left !important;
  display: inline-block;
}

.phone-ltr {
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  text-align: left !important;
  display: inline-flex !important;
  flex-direction: row !important;
  gap: 4px;
}

/* RTL text only */
.rtl-mode body,
.rtl-mode [data-i18n],
.rtl-mode h1,
.rtl-mode h2,
.rtl-mode h3,
.rtl-mode h4,
.rtl-mode p,
.rtl-mode li {
  direction: rtl !important;
  text-align: right !important;
}

/* LTR for phone + email always */
.contact-detail-row a[href^="tel:"],
.contact-detail-row .phone-ltr,
#qPhone {
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  text-align: left !important;
}

/* RTL only for text */
.rtl-text p,
.rtl-text h1,
.rtl-text h2,
.rtl-text h3,
.rtl-text h4,
.rtl-text li,
.rtl-text span,
.rtl-text [data-i18n] {
  direction: rtl !important;
  text-align: right !important;
}

/* Phone number ALWAYS LTR */
.rtl-text a[href^="tel:"],
.rtl-text .phone-btn,
.rtl-text input[type="tel"] {
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  text-align: left !important;
}

.product-heading {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 20px;
  color: #2b2b2b;
}

.product-range-section h2 {
  color: #1a1a1a !important;
  /* Dark black */
  font-size: 32px !important;
  /* Bigger */
  font-weight: 800 !important;
  /* Extra bold */
  margin-bottom: 30px;
  text-align: center;
}


.product-item img {
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.08);
}

.product-item h4 {
  transition: color 0.3s ease;
}

.product-item:hover h4 {
  color: #0a6847;
}


/* 3D Tilt + Floating Shadow */
.product-item {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Smooth image scaling */
.product-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: translateZ(20px) scale(1.04);
}

/* 🔥 Option B – Glow Shadow Effect */
.product-item:hover {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 0 18px rgba(0, 153, 102, 0.45);
  /* green glow */
  border-radius: 16px;
}

/* Glow stronger for image */
.product-item:hover img {
  filter: drop-shadow(0px 0px 10px rgba(0, 153, 102, 0.35));
}

/* Fade-In + Slide-Up + Stagger */
.product-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

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

/* Floating Button */
.enquiry-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1c7d38;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 16px;
  z-index: 9999;
  transition: 0.3s ease;
}

.enquiry-float-btn:hover {
  transform: translateY(-3px);
  background: #14632b;
}

/* Slide Panel */
.enquiry-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  padding: 25px;
  transition: 0.4s ease;
  z-index: 10000;
}

.enquiry-panel.active {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-panel {
  font-size: 22px;
  cursor: pointer;
}

.product-title {
  margin: 10px 0 20px;
  font-weight: bold;
}

.enq-input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  font-size: 14px;
}

.send-btn {
  width: 100%;
  padding: 14px;
  background: #1c7d38;
  color: white;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  backdrop-filter: blur(3px);
  z-index: 999;
}

/* Right Side Panel */
.enquiry-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  transition: all 0.4s ease;
  overflow-y: auto;
}

/* When open */
.enquiry-panel.active {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.close-btn {
  cursor: pointer;
  font-size: 22px;
  padding: 5px;
}

.panel-body label {
  margin-top: 15px;
  display: block;
  font-weight: 600;
}

.panel-body input,
.panel-body textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
}

.send-btn {
  margin-top: 20px;
  width: 100%;
  background: #0b7d37;
  border: none;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.enq-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0b7d37;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.product-item {
  position: relative;
}

.product-item {
  position: relative;
  text-align: center;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Enquiry button BELOW product */
.enq-btn-box {
  margin-top: 10px;
}

.enq-btn {
  background: #0b7d37;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.enq-btn:hover {
  background: #055a29;
}

/* PRODUCT CARD */
.product-item {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* IMAGE FIX */
.product-img img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: 0.3s ease;
}

/* TITLE */
.product-info h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #222;
}

/* MESSAGE ICON – LIKE A2Z */
.enquiry-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #006837;
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 10;
}

.enquiry-btn:hover {
  background: #00984b;
}

/* INVISIBLE CLICK LAYER FOR FULL CARD */
.overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: 0.3s ease;
  position: relative;
}

.product-item:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.product-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* TITLE */
.product-info h4 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
}

/* ENQUIRY BUTTON BELOW TITLE */
.enquiry-btn {
  margin-top: 10px;
  /* BELOW PRODUCT NAME */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #006837;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.enquiry-btn:hover {
  background: #00994b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-item {
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.3s;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* PRODUCT NAME */
.product-title {
  margin: 12px 0 10px;
  font-weight: 600;
  color: #003312;
}

/* ENQUIRY BUTTON BELOW NAME - A2Z STYLE */
.enquiry-btn {
  margin-top: 10px;
  background: #00661f;
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  font-size: 18px;
}

.enquiry-btn:hover {
  background: #009f34;
  transform: scale(1.1);
}

.enquiry-btn i {
  pointer-events: none;
}

.product-card {
  text-align: center;
  margin-bottom: 40px;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.img-box img {
  width: 100%;
  transition: .4s ease;
}

/* Hover image fade */
.img-box:hover img {
  opacity: 0.25;
  transform: scale(1.05);
}

/* Hover overlay */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .3s ease;
}

/* Show icon on hover */
.img-box:hover .overlay {
  opacity: 1;
}

.msg-btn {
  background: #0E8A1E;
  border: none;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.msg-btn:hover {
  background: #066c16;
}

.product-card h4 {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 600;
}



.product-card {
  text-align: center;
  margin-bottom: 40px;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.img-box img {
  width: 100%;
  transition: .4s ease;
}

/* Hover image fade */
.img-box:hover img {
  opacity: 0.25;
  transform: scale(1.05);
}

/* Hover overlay */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .3s ease;
}

/* Show icon on hover */
.img-box:hover .overlay {
  opacity: 1;
}

.msg-btn {
  background: #0E8A1E;
  border: none;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.msg-btn:hover {
  background: #066c16;
}

.product-card h4 {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 600;
}

.product-range-section {
  padding: 50px 0;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}

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

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.img-box img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s ease;
  opacity: 0;
}

.product-card:hover .overlay {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.msg-btn {
  background: #0a7434;
  border: none;
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.msg-btn:hover {
  background: #055d27;
}

.product-card h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #333;
}

.product-range-section {
  position: relative;
  z-index: 10;
  background: #fff;
  padding-top: 60px !important;
}

.product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-card {
  display: block !important;
}

/* FORCE SHOW PRODUCT GRID */
.product-range-section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
  padding-top: 50px !important;
}

.product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
}

.product-card {
  display: block !important;
}

/* FORCE SHOW PRODUCTS */
.product-range-section,
.product-grid,
.product-card,
.img-box img {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  transform: none !important;
  display: block !important;
}

.product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
}

.product-range-section {
  position: relative !important;
  z-index: 5 !important;
  background: white !important;
  padding-top: 40px !important;
}

/* Overlay box */
.img-box {
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000000cc;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.3s ease;
}

/* Show on hover */
.img-box:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

/* Button style */
.msg-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.msg-btn:hover {
  color: #2ecc71;
  transform: scale(1.1);
}

.overlay i {
  color: #ffffff !important;
  font-size: 20px !important;
  z-index: 9999;
}

.overlay {
  background: #000000dd !important;
}

.msg-btn {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
}

.phone-ltr,
.email-ltr {
  font-weight: 600;
  color: #000 !important;
  text-decoration: none;
  direction: ltr;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.detail-icon {
  margin-right: 10px;
  font-size: 1.3rem;
}

.contact-name {
  color: #000 !important;
  font-weight: 700;
  opacity: 1 !important;
  font-size: 1.3rem;
  text-align: center;
  direction: ltr;
  /* Name always LTR */
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-menu .menu-link {
  font-size: 16px;
  font-weight: 600;
  color: #0f442d;
  text-decoration: none;
}

.desktop-menu .menu-link:hover {
  color: #0a7a3b;
}

/* Hide desktop menu on mobile */
@media (max-width: 900px) {
  .desktop-menu {
    display: none;
  }
}

/* Show mobile icon on small screens */
@media (max-width: 900px) {
  #menuToggle {
    display: flex;
  }
}

.fixed-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.desktop-menu {
  display: flex;
  gap: 26px;
  align-items: center;
}

.desktop-menu .menu-link {
  color: #0a4d20;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.desktop-menu .menu-link:hover {
  color: #4a9a47;
}

@media(max-width: 900px) {
  .desktop-menu {
    display: none;
    /* hide on mobile */
  }
}


/* ============ GLOBAL FIX ============ */
body {
  padding-top: 90px;
  /* Push content down below header */
}

/* ============ STICKY HEADER ============ */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 99999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

/* ============ NAVBAR ============ */
.header {
  width: 100%;
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  color: #033d0f;
}

.brand-sub {
  font-size: 12px;
  color: #666;
}

/* ============ DESKTOP MENU ============ */
.desktop-menu {
  display: flex;
  gap: 26px;
}

.menu-link {
  font-size: 16px;
  font-weight: 600;
  color: #033d0f;
  text-decoration: none;
  transition: 0.2s;
}

.menu-link:hover {
  color: #0a7b32;
}

/* ============ LANGUAGE DROPDOWN ============ */
.lang-selector {
  position: relative;
}

.lang-trigger {
  background: #f2f2f2;
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.lang-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  width: 140px;
  background: #fff;
  border-radius: 8px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-selector:hover .lang-dropdown {
  display: block;
}

.lang-item {
  padding: 10px;
  cursor: pointer;
}

.lang-item:hover {
  background: #f0f0f0;
}

/* ============ MOBILE MENU BUTTON ============ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: #033d0f;
  border-radius: 3px;
}

/* ============ MOBILE PANEL ============ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 99990;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 99991;
  padding: 20px;
  transition: 0.3s;
}

.mobile-panel.open {
  right: 0;
}

.close-mobile {
  background: none;
  border: none;
  font-size: 26px;
  float: right;
  cursor: pointer;
}

.mobile-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-link {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #033d0f;
}

/* SHOW MOBILE BUTTON ONLY ON SMALL SCREENS */
@media (max-width: 900px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* HIDE MOBILE MENU IN DESKTOP */
.menu {
  display: none;
}

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

/* Mobile Menu Panel (Slide from Right) */
.sheet-panel {
  position: fixed;
  top: 0;
  right: -100%;
  /* hidden initially */
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 18px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: right 0.35s ease;
  overflow-y: auto;
  padding: 20px;
}

/* When menu opened */
.sheet-panel.open {
  right: 0;
}

/* Dark overlay */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 9998;
  display: none;
}

.sheet-overlay.visible {
  display: block;
}

/* Mobile toggle button */
.menu {
  display: none;
}

@media(max-width: 840px) {
  .menu {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 10000;
  }

  .desktop-menu {
    display: none;
  }
}

.fixed-header {
  position: fixed;
  width: 100%;
  z-index: 10001;
}

.header .menu span {
  display: block !important;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: #000 !important;
  border-radius: 2px;
  position: relative;
  z-index: 9999;
}

/* FORCE SHOW MOBILE MENU ICON */
.menu {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 9999;
}

/* Menu bars */
.menu span {
  width: 28px;
  height: 3px;
  background: #23376d;
  border-radius: 3px;
  display: block;
}

/* Hide desktop menu on mobile */
@media (max-width: 900px) {
  .desktop-menu {
    display: none !important;
  }
}

.header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* FIX HAMBURGER ICON */
.menu span {
  display: block !important;
  opacity: 1 !important;
  background-color: #000 !important;
}

.menu {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
}

/* ALWAYS show the 3-line menu icon on mobile */
header .menu {
  position: relative;
  z-index: 10000 !important;
  /* above video */
}

header .menu span {
  display: block;
  width: 28px;
  height: 3px;
  background: #000;
  margin: 5px 0;
  border-radius: 2px;
  position: relative;
  z-index: 10001 !important;
}

/* Make sure mobile menu button is visible */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  #menuToggle {
    display: block !important;
  }
}

/* Make the mobile menu button ALWAYS clickable */
#menuToggle {
  position: relative;
  z-index: 100000 !important;
  /* highest so click works */
  pointer-events: auto !important;
}

/* Fix video/hero from blocking click */
.hero,
.hero * {
  pointer-events: none;
  /* disable blocking */
}

.header,
.header * {
  pointer-events: auto;
  /* allow menu, logo, language to click */
}

/* Fix menu click issue */
#menuToggle {
  position: relative;
  z-index: 99999 !important;
}

#menuToggle span {
  background: #333 !important;
  height: 3px !important;
  width: 24px;
  display: block;
  margin: 4px 0;
  border-radius: 2px;
}



/* ------------------------------
   MOBILE MENU (FINAL WORKING FIX)
   ------------------------------*/

/* Header container */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

/* Inner flex */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

/* Menu button (3-line icon) */
.menu {
  width: 32px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 10000;
}

/* 3 visible lines */
.menu span {
  width: 100%;
  height: 4px;
  background: #111 !important;
  /* DARK COLOR - ALWAYS VISIBLE */
  border-radius: 4px;
  display: block;
  pointer-events: none;
}

/* =======================
   SIDE PANEL (RIGHT SLIDE)
   =======================*/

.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 9997;
  display: none;
}

.sheet-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 88%;
  max-width: 420px;
  background: #fff;
  box-shadow: -4px 0 18px rgba(0, 0, 0, .15);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 9998;
  overflow-y: auto;
  padding: 18px;
}

.sheet-panel.is-open {
  transform: translateX(0);
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.sheet-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.sheet-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sheet-link {
  font-size: 18px;
  color: #111;
  text-decoration: none;
  padding: 8px 0;
}

/* Disable background scroll */
body.sheet-open {
  overflow: hidden;
}

/* Make sure menu button stays visible on top */
.menu {
  position: relative;
  z-index: 10000;
}




.overlay-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: 0.35s ease;
  z-index: 3;
}

.img-box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.img-box:hover .overlay-icons {
  opacity: 1;
}

.icon-btn {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.icon-btn:hover {
  background: #3c8d40;
}

.icon-btn i {
  color: #fff;
  font-size: 18px;
}

.product-card .img-box {
  position: relative !important;
  overflow: hidden;
}

/* PRODUCT IMAGE BOX */
.product-card .img-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Center Icons Container */
.overlay-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

/* Icon style (A2Z போல) */
.overlay-icons .icon-btn {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.overlay-icons .icon-btn i {
  font-size: 18px;
  color: #222;
}

/* Hover animation */
.overlay-icons .icon-btn:hover {
  transform: scale(1.15);
}

/* SHOW ICONS WHEN HOVERING */
.product-card .img-box:hover .overlay-icons {
  opacity: 1;
}


.lang-dropdown {
  position: absolute;
  right: 0;
  top: 42px;
  width: 170px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 9999;
}

.lang-dropdown.show {
  display: block;
}


/* Prevent video & hero overlays from blocking clicks */
.slide-video,
.slide-overlay,
.slide-bg {
  pointer-events: none !important;
}

.hero {
  pointer-events: auto !important;
}

/* FORCE language dropdown to stay above everything */
.lang-selector {
  position: relative;
  z-index: 99999 !important;
}

.lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 999999 !important;

  /* extra protection */
  pointer-events: auto !important;
}

.lang-trigger {
  position: relative;
  z-index: 999999 !important;
}

/* ============ LANGUAGE DROPDOWN TOP FIX ============ */

.lang-selector,
.lang-trigger,
.lang-dropdown {
  position: relative !important;
  z-index: 99999999 !important;
}

/* Dropdown Panel */
.lang-dropdown {
  display: none;
  position: absolute !important;
  top: 40px;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  pointer-events: auto !important;
}

/* Hero/video must be below */
.hero,
.slides,
.slide,
.slide-video,
.slide-overlay,
.slide-bg {
  pointer-events: none !important;
  z-index: 1 !important;
}


/* === FIX: Keep language dropdown always above === */
.lang-selector,
.lang-trigger,
.lang-dropdown {
  z-index: 999999999 !important;
  position: relative !important;
}

.lang-dropdown {
  display: none;
  pointer-events: auto !important;
}

/* Prevent hero/video from stealing clicks */
.hero,
.slides,
.slide,
.slide-video,
.slide-overlay,
.slide-bg {
  pointer-events: none !important;
}

.header,
.lang-selector,
.lang-dropdown {
  position: relative !important;
  z-index: 99999 !important;
}

.hero,
.hero * {
  z-index: 1 !important;
}

.lang-selector {
  position: relative !important;
  z-index: 999999 !important;
}

.lang-trigger {
  position: relative !important;
  z-index: 999999 !important;
}

.lang-dropdown {
  position: absolute !important;
  top: 38px !important;
  /* Adjust dropdown exact height */
  right: 0px !important;
  z-index: 999999 !important;

  /* FORCE DROPDOWN ABOVE HERO */
  transform: translateY(0) !important;
}

/* --- LANGUAGE SELECTOR FIX --- */
.lang-selector {
  position: relative !important;
  z-index: 999999 !important;
}

/* Button */
.lang-trigger {
  z-index: 999999 !important;
  position: relative !important;
}

/* Dropdown Box */
.lang-dropdown {
  position: absolute !important;
  top: 40px !important;
  /* Place EXACTLY under button */
  right: 0 !important;
  z-index: 999999 !important;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ---------- LANGUAGE SELECTOR PERFECT UI ---------- */

.lang-selector {
  position: relative;
  z-index: 99999;
}

/* Trigger Button */
.lang-trigger {
  background: white;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Dropdown Box */
.lang-dropdown {
  position: absolute;
  top: 45px;
  /* EXACT clean alignment */
  right: 0;
  width: 180px;
  background: #fff;
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999999;
}

/* Each Item */
.lang-item {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  transition: background 0.2s;
}

/* Hover Effect */
.lang-item:hover {
  background: #f4f7ff;
  /* light blue hover */
  color: #1a73e8;
}

/* First item top rounding */
.lang-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Last item bottom rounding */
.lang-item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* ---------- SLIM HEADER ---------- */

.header {
  background: #f4e9e4;
  /* your current BG */
  padding: 6px 0 !important;
  /* ↓ SLIM */
  height: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  /* ↓ reduced from 90px */
}

/* Logo area */
.brand-logo {
  height: 42px;
  /* ↓ reduce size */
  width: auto;
}

.brand-text .brand-title {
  font-size: 18px;
  /* ↓ reduce */
  font-weight: 600;
}

.brand-text .brand-sub {
  font-size: 11px;
  /* ↓ reduce */
}

/* Menu links */
.desktop-menu {
  display: flex;
  gap: 26px;
  /* ↓ gap reduced */
}

.desktop-menu .menu-link {
  font-size: 14px;
  /* ↓ reduce size */
  padding: 4px 0;
}

/* Language dropdown alignment */
.lang-selector {
  margin-left: 10px;
}

.lang-trigger {
  padding: 6px 10px;
  /* ↓ smaller button */
  font-size: 13px;
  border-radius: 6px;
}

.lang-dropdown {
  top: 38px;
  /* ↓ dropdown close to button */
}



/* RESET unwanted page padding */
body.products-page {
  margin: 0 !important;
  padding: 0 !important;
}

/* ---------- FIXED CLEAN HEADER ---------- */
.header {
  background: #f3e7e2;
  padding: 8px 0 !important;
  /* slim */
  height: 72px !important;
  /* perfect height */
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* header inner container */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

/* Logo resize */
.brand-logo {
  height: 46px !important;
  width: auto;
}

.brand-text .brand-title {
  font-size: 18px;
  font-weight: 600;
}

.brand-text .brand-sub {
  font-size: 11px;
}

/* Menu links */
.desktop-menu {
  display: flex;
  gap: 30px;
}

.desktop-menu .menu-link {
  font-size: 15px;
  font-weight: 500;
  padding: 4px 0;
}

/* Language */
.lang-selector {
  position: relative;
  z-index: 9999;
}

.lang-trigger {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
}

.lang-dropdown {
  top: 38px !important;
}


/* --------------------------------------
   CLEAN HEADER FIX (Same as products2.html)
---------------------------------------*/
.header {
  background: #efe4dd;
  /* same background */
  padding: 12px 0;
  /* reduce height */
  height: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e3d9d3;
}

.header .container.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* brand alignment */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 70px;
  height: auto;
}

/* menu alignment clean */
.desktop-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-menu .menu-link {
  font-size: 17px;
  font-weight: 500;
  padding: 4px 6px;
  color: #2b4a23;
}

.desktop-menu .menu-link:hover {
  color: #59834a;
}

/* language dropdown standardize */
.lang-selector {
  margin-right: 15px;
  position: relative;
}

.lang-trigger {
  padding: 6px 14px;
  border-radius: 8px;
  background: white;
  border: 1px solid #ccc;
  font-size: 14px;
  cursor: pointer;
}

.lang-dropdown {
  margin-top: 6px;
}


/* REMOVE EXTRA TOP GAP IN INDEX.HTML HEADER */
body#index-page .header {
  margin-top: 0 !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Force hero section to stick directly under header */
body#index-page .hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure the whole top beige section doesn't create extra height */
body#index-page {
  --header-space: 0px !important;
}


/* FIX INDEX PAGE HEADER (REMOVE BIG HEIGHT) */
#indexPage .header {
  padding: 8px 0 !important;
  margin: 0 !important;
  height: auto !important;
  background: #f2e8df;
}

/* FIX INSIDE WRAPPER */
#indexPage .nav-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  min-height: 70px !important;
  /* Exact height like products2.html */
  display: flex;
  align-items: center;
}

/* REMOVE ANY GLOBAL TOP PADDING */
#indexPage {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* HERO SHOULD TOUCH HEADER */
#indexPage .hero-section,
#indexPage .hero,
#indexPage .hero-wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* Align header items properly */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Language dropdown inside header */
.header-lang {
  position: relative;
  margin-left: 20px;
}

.header-lang .lang-trigger {
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ccc;
}

/* Position dropdown below the button */
.header-lang .lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 9999;
}

/* HEADER LAYOUT FIX */
.header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* KEY PART */
  gap: 20px;
}

/* Ensure menu takes center space */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

/* Language inside header right corner */
.header-lang {
  margin-left: auto;
  position: relative;
}

.header-lang .lang-trigger {
  padding: 6px 14px;
  background: white;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Dropdown position */
.header-lang .lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 9999;
}


/* FIX HEADER HEIGHT — match products2.html */
.header {
  padding: 8px 0;
  /* Reduce height */
  background: #f4e9dd;
  /* your beige background */
  border-bottom: 1px solid #e6d8c9;
}

.header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* MENU center alignment */
.desktop-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
}

/* BRAND shrink correctly */
.brand img {
  height: 50px;
  /* fix logo height */
  width: auto;
}

/* LANGUAGE BUTTON POSITION */
.header-lang {
  margin-left: auto;
  position: relative;
}

.header-lang .lang-trigger {
  padding: 6px 14px;
  font-size: 14px;
}

/* Place language dropdown inline with menu links */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Language button adjusts like menu item */
.header-lang {
  position: relative;
  margin-left: 10px;
}

.header-lang .lang-trigger {
  padding: 6px 14px;
  font-size: 14px;
  background: white;
  border-radius: 6px;
  border: 1px solid #ccc;
}


.header .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  /* adjust header size */
}

/* right side = menu + language + mobile menu */
.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* menu items same line */
.desktop-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

/* language selector style */
.header-lang {
  position: relative;
}

.header-lang .lang-trigger {
  padding: 6px 14px;
  background: white;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* HEADER FIX */
.header {
  background: #f4ebe4;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* RIGHT SIDE (MENU + LANGUAGE + TOGGLE) */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* MENU LINKS */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* LANGUAGE DROPDOWN FIX */
.header-lang {
  margin-left: 10px;
}

.lang-trigger {
  padding: 6px 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.lang-dropdown {
  top: 38px;
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desktop-menu {
    display: none;
  }

  .header-right {
    gap: 10px;
  }
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  /* Space between menu & language */
}

/* Language button inside header */
.header-lang {
  position: relative;
  margin-left: 20px;
}

.lang-trigger {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 6px;
}

/* Dropdown stays pinned to header */
.lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
}


/* FORCE LANGUAGE DROPDOWN TO HEADER RIGHT */
.header .lang-selector {
  position: absolute !important;
  top: 15px !important;
  right: 40px !important;
  z-index: 9999 !important;
}

/* Dropdown box positioning */
.header .lang-dropdown {
  position: absolute !important;
  top: 40px !important;
  right: 0 !important;
}

/* FIX HEADER POSITION CONTEXT */
.header {
  position: relative !important;
  z-index: 999;
}

/* FORCE DROPDOWN TO HEADER CORNER (NOT OVER LOGO) */
.lang-selector.header-lang {
  position: absolute !important;
  top: 20px !important;
  right: 40px !important;
  z-index: 9999 !important;
}

/* Move dropdown slightly down from button */
.lang-selector.header-lang .lang-dropdown {
  top: 42px !important;
  right: 0 !important;
}

/* Whole header should be relative */
.header {
  position: relative !important;
  z-index: 1000;
}

/* Language button fixed to right corner */
.lang-selector.header-lang {
  position: absolute !important;
  top: 20px !important;
  right: 30px !important;
  margin: 0;
  z-index: 2000 !important;
}

/* Dropdown below the button */
.lang-selector.header-lang .lang-dropdown {
  top: 40px !important;
  right: 0 !important;
}

/* Give right space so logo & menu don't overlap */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 150px !important;
  /* important */
}

/* Fix header layout */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Create space after menu so language fits inside header */
.desktop-menu {
  display: flex;
  gap: 30px;
  margin-right: 60px;
  /* Space for language button */
}

/* Language button inside header row – right aligned */
.header-lang {
  position: absolute;
  right: 20px;
  /* moves to right corner */
  top: 50%;
  transform: translateY(-50%);
  /* vertical center */
  z-index: 2000;
}

/* Dropdown alignment */
.header-lang .lang-dropdown {
  right: 0;
  top: 40px;
}


/* Main header container must be flex */
.header .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Place menu + language in one row */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language selector inside header — not above logo */
.lang-selector {
  position: relative;
  margin-left: 20px;
  /* small space from Contact */
  top: 0 !important;
}

/* Remove old wrong absolute styles */
.header-lang {
  position: static !important;
  transform: none !important;
  right: auto !important;
}


/* header main row */
.header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* right side of header */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  /* space between menu and language */
}

/* language box */
.lang-selector {
  position: relative;
  display: inline-block;
  top: 0 !important;
  margin: 0 !important;
}

/* remove old wrong positioning */
.lang-selector,
.header-lang {
  position: static !important;
  transform: none !important;
  right: auto !important;
  left: auto !important;
}

/* center-align header items */
.brand,
.desktop-menu a,
.lang-selector {
  display: flex;
  align-items: center;
}

/* UNIFORM HEADER FOR ALL PAGES */
.header {
  background: #f2eae6;
  padding: 10px 0;
  /* SAME HEIGHT for all pages */
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nav-inner {
  display: flex;
  align-items: center;
  /* FIX: Keeps logo vertical aligned */
  justify-content: space-between;
}

/* LOGO FIX */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 60px;
  /* Fixed height */
  object-fit: contain;
}

/* LANGUAGE BUTTON FIX (RIGHT CORNER) */
.header-lang {
  margin-left: 20px;
}

.lang-selector {
  position: relative;
  z-index: 99999;
}


/* SAME HEADER HEIGHT FOR ALL PAGES */
.header {
  background: #f2eae6;
  padding: 12px 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Center alignment fix */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo fix */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 60px;
  object-fit: contain;
}

.header {
  background: #f2eae6;
  padding: 18px 0 !important;
  /* 🔥 increased height */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.brand-logo {
  height: 65px !important;
  /* 🔥 logo matches height */
}


/* ---------------- HEADER FIX ---------------- */

.header {
  background: #f2eae6;
  padding: 15px 0 !important;
  /* adjust header height */
  height: 85px !important;
  /* 🔥 force full header height */
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* container inside header */
.header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo size */
.brand-logo {
  height: 100px !important;
  /* 🔥 this fits perfectly */
}

/* push body content down */
body {
  padding-top: 150px !important;
  /* equal to header height */
}


/* HEADER HEIGHT & PERFECT VERTICAL CENTER FIX */
.header {
  background: #f2eae6;
  height: 78px !important;
  /* reduce height */
  padding: 5px 0 !important;
  /* adjust spacing */
  display: flex;
  align-items: center;
  /* center items vertically */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* logo size */
.brand-logo {
  height: 58px !important;
  /* slightly smaller → perfect center */
}

/* container alignment */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* body offset equal to header height */
body {
  padding-top: 150px !important;
}


/* Move the full header slightly UP for perfect centering */
.header {
  height: 72px !important;
  /* reduced height */
  padding: 2px 0 !important;
  /* tighter spacing */
  display: flex;
  align-items: center;
}

/* Align logo perfectly to the center line */
.brand-logo {
  height: 54px !important;
  /* slightly smaller for balance */
  margin-top: -4px;
  /* move up slightly */
}

/* Move language dropdown slightly UP */
.header-lang .lang-trigger {
  margin-top: -4px !important;
  /* perfect alignment fix */
}


/* Fix mobile header push-down */
#indexPage {
  padding-top: 70px;
  /* height of header */
}

@media (max-width: 768px) {
  #indexPage {
    padding-top: 80px;
    /* small extra for mobile */
  }
}

.mobile-menu {
  z-index: 9999 !important;
}

header {
  z-index: 999 !important;
  position: fixed;
  width: 100%;
}

.hero-section {
  position: relative;
  z-index: 1;
}


.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 99999;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu.show {
  display: block;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  /* For bottom left */
  left: 25px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}

.whatsapp-float {
  position: fixed;
  top: 80px;
  left: 25px;
  background-color: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.email-ltr,
.phone-ltr {
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  text-align: left !important;
  display: inline-block;
}

.rtl-mode .contact-info-card {
  text-align: right;
}

.rtl-mode .contact-detail-row {
  direction: rtl;
}



.spec-title {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0 6px;
  color: #0a4b2f;
}

.spec-subtext {
  font-size: 14px;
  color: #4f6f62;
  margin-bottom: 15px;
  line-height: 1.5;
  font-style: italic;
}

.spec-card {
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.spec-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}


.table-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.table-title {
  text-align: center;
  margin-bottom: 35px;
  font-size: 26px;
  font-weight: 700;
  color: #0a4b2f;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.table-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.08);
}

.table-head {
  background: #1c1c1c;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 15px;
}

.table-sub {
  margin-top: 25px;
  font-weight: 700;
  color: #444;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

table th {
  background: #e8e8e8;
  padding: 10px;
  text-align: left;
  font-weight: 700;
}

table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

table td,
table th {
  color: #333 !important;
  /* dark clean color */
  opacity: 1 !important;
  /* remove faded look */
  font-weight: 500;
}

table td {
  background: #ffffff !important;
}

table th {
  background: #eaeaea !important;
}


.tech-detail {
  background: #eef8f0;
  padding: 60px 0;
  text-align: center;
}

.td-title {
  font-size: 26px;
  color: #0a4b2f;
  font-weight: 700;
}

.td-sub {
  max-width: 750px;
  margin: 10px auto 0;
  color: #4d6d63;
  font-size: 15px;
  line-height: 1.6;
}

.global-reach {
  padding: 70px 0;
  background: #ffffff;
}

.gr-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0a4b2f;
}

.gr-sub {
  text-align: center;
  max-width: 700px;
  margin: 10px auto 40px;
  color: #4b6d63;
  font-size: 15px;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.reach-card {
  background: #f7fdf8;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0a4b2f;
}

.reach-card h4 {
  color: #0a4b2f;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}

.reach-card p {
  margin: 0;
  line-height: 1.5;
  color: #506a62;
  font-size: 14px;
}

.global-reach {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf5 100%);
}

.gr-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0a4b2f;
  margin-bottom: 8px;
}

.gr-sub {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  color: #55786d;
  font-size: 16px;
  line-height: 1.6;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  padding: 0 15px;
}

.reach-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);

  border-left: 8px solid #0a4b2f;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;

  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
  transform: translateY(0);
}

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

.reach-card h4 {
  color: #0a4b2f;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.reach-card p {
  color: #4d665e;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}


/* CONTACT SECTION WRAPPER */
.get-in-touch {
  padding: 80px 0;
  background: #ffffff;
}

/* CONTACT TEXT + ICON CARD */
.contact-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
}

/* IMAGE CARD */
.contact-image-card {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;

  border: 3px solid #0a4b2f;
  border-radius: 25px;

  background: #ffffff;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.09);

  transition: all 0.3s ease;
}

/* Image hover effect */
.contact-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
}

/* PRODUCT IMAGE (CRYSTAL CLEAR) */
.contact-img {
  width: 230px;
  /* Bigger & better */
  height: 230px;
  object-fit: contain;
  /* No cropping */
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

/* Slight zoom on hover */
.contact-image-card:hover .contact-img {
  transform: scale(1.06);
}


/* PRODUCT IMAGE CARD (FULL HIGHLIGHT EFFECT) */
.contact-image-card {
  width: 100%;
  min-height: 360px;
  padding: 25px;
  border-radius: 25px;
  background: radial-gradient(circle at center, #ffffff 60%, #f0fff5 100%);
  box-shadow:
    0px 10px 40px rgba(0, 0, 0, 0.10),
    0px 0px 20px rgba(0, 100, 0, 0.10);
  /* green glow soft */
  border: 2px solid #0a4b2f15;
  /* slight transparent green border */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease-in-out;
}

/* HOVER EFFECT */
.contact-image-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0px 18px 50px rgba(0, 0, 0, 0.15),
    0px 0px 25px rgba(0, 120, 0, 0.20);
  /* stronger green glow */
  background: radial-gradient(circle at center, #ffffff 40%, #e9ffef 100%);
}

/* IMAGE IMPROVEMENT */
.contact-img {
  width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 8px 18px rgba(0, 0, 0, 0.18));
  transition: .3s ease-in-out;
}

/* Zoom image slightly on hover */
.contact-image-card:hover .contact-img {
  transform: scale(1.06);
}


.client-feedback {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f7fdf9);
  text-align: center;
}

.cf-title {
  font-size: 32px;
  font-weight: 800;
  color: #0a4b2f;
  margin-bottom: 10px;
}

.cf-sub {
  font-size: 16px;
  color: #4d6d63;
  max-width: 700px;
  margin: 0 auto 50px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.feedback-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.10);
  transition: 0.3s ease-in-out;
}

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

/* VIDEO FRAME STYLE */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

/* TEXTS */
.feedback-name {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #0a4b2f;
}

.feedback-text {
  color: #4f6760;
  font-size: 14px;
  margin-top: 5px;
}


/* Product Section Title */
.product-range-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 800;
  color: #0a4b2f;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 30px;
}

/* PRODUCT CARD */
.product-card {
  text-align: center;
}

/* IMAGE BOX */
.img-box {
  position: relative;
  background: #ffffff;
  padding: 18px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.10);
  transition: 0.25s ease-in-out;
}

/* HOVER EFFECT */
.img-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

/* PRODUCT IMAGE */
.img-box img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 14px;
}

/* WHITE FLOATING LABEL */
.product-card h4 {
  background: #ffffff;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  margin-top: -22px;
  position: relative;
  z-index: 10;

  font-size: 16px;
  font-weight: 700;
  color: #333;

  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.10);
}

/* Overlay Eye & Email Icons */
.overlay-icons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: 0.3s;
}

.img-box:hover .overlay-icons {
  opacity: 1;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.icon-btn:hover {
  background: #0a4b2f;
}


.product-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.prod-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 16px;
}

.product-card h4 {
  background: #fff;
  padding: 10px 20px;
  margin-top: -20px;
  display: inline-block;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.12);
}

.product-range-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  color: #1b4d2f;
}

.productSwiper {
  padding: 20px 10px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 250px;
}

.product-card .img-box img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card h4 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.product-range-section {
  width: 100%;
  padding: 40px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.productSwiper {
  width: 100%;
  max-width: 1200px;
  /* IMPORTANT FIX */
  margin: 0 auto;
  /* center slider */
  padding: 20px 0;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
}

.product-card {
  width: 260px;
  padding: 15px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card h4 {
  font-size: 16px;
  margin-top: 12px;
  font-weight: 600;
}

.canva-product-slider {
  background: #f4f8ee;
  padding: 40px 0;
  border-radius: 30px;
  margin: 30px auto;
  width: 90%;
  text-align: center;
}

.canva-product-slider .title {
  font-size: 34px;
  font-weight: 700;
  color: #2b8a3e;
  margin-bottom: 20px;
}

.product-slider {
  display: flex;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px 30px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.product-card img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
}

.p-title {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 12px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.nav-btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-btns button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  background: #a6c48a;
  color: #fff;
  cursor: pointer;
}

.nav-btns button:hover {
  background: #7da568;
}


/* MAIN SLIDER WRAPPER */
.product-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* FIXED CARD SIZE (Canva style) */
.product-card {
  min-width: 340px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: 0.3s;
}

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

/* IMAGE BOX */
.img-box {
  width: 100%;
  height: 240px;
  background: #f4f4f4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TITLE */
.p-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #1e5f2e;
}

/* NAV BUTTONS */
.nav-btns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 16px;
}

.nav-btns button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  color: white;
  background: #6ebf56;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}

.nav-btns button:hover {
  background: #4c9b38;
}

/* ===== Product Section Background ===== */
.canva-product-slider {
  padding: 60px 0;
  background: #f7fcea;
  border-radius: 40px;
  margin: 50px auto;
  width: 92%;
  min-height: 500px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
}

/* ===== Title ===== */
.canva-product-slider .title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #218838;
  margin-bottom: 40px;
}

/* ===== Slider Container ===== */
.product-slider {
  display: flex;
  gap: 40px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px 0 40px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* ===== Product Card ===== */
.product-card {
  min-width: 320px;
  background: white;
  border-radius: 35px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* ===== Image Box ===== */
.img-box {
  width: 100%;
  height: 260px;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box img {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: 0.3s ease-in-out;
}

.product-card:hover .img-box img {
  transform: scale(1.06);
}

/* ===== Product Title ===== */
.p-title {
  margin-top: 20px;
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 700;
  color: #218838;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ===== Navigation Buttons ===== */
.nav-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-btns button {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #34c759;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.25);
}

.nav-btns button:hover {
  background: #2fa94f;
  transform: scale(1.12);
}

/* ===== Product Title (Fixed, No Cutting) ===== */
.p-title {
  margin-top: 18px;
  background: white;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 700;
  color: #218838;
  font-size: 18px;
  line-height: 1.3;
  min-height: 65px;
  /* 🔥 Ensures 2-line text fits */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  /* 🔥 Ensure text wraps properly */
  overflow: visible;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* ===== FULL PRODUCT SECTION (compact mode) ===== */
.canva-product-slider {
  background: #f4fbe9;
  /* your light green */
  padding: 40px 0 60px 0;
  /* BEFORE: ~120px → now reduced */
  margin-top: 20px;
  border-radius: 40px;
}

/* Inner container shrink */
.canva-product-slider .product-slider-wrapper {
  padding-top: 10px;
}

.p-title {
  background: #fff;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #2b7a34;
  text-align: center;

  /* FIX CUTTING */
  white-space: normal !important;
  height: auto !important;
  /* Auto height */
  min-height: 55px;
  /* Enough for 2 lines */
  line-height: 1.3;
  overflow: visible !important;
  display: inline-block;
  max-width: 180px;
}

.img-box img {
  max-height: 200px;
  object-fit: contain;
}

.product-item {
  width: 260px;
  /* Bigger card so title fits */
  flex-shrink: 0;
  text-align: center;
  margin: 0 20px;
}

.p-title {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;

  max-width: 220px !important;
  /* more width */
  margin: 0 auto;

  white-space: normal !important;
  overflow: visible !important;
  display: block !important;

  min-height: 50px;
  /* enough space for 3 lines */
}

.product-item {
  width: 260px;
  flex-shrink: 0;
  text-align: center;
  margin: 0 20px;

  overflow: visible !important;
  /* FIX TITLE CUTTING */
}

.p-title {
  background: #fff;
  padding: 12px 18px;
  border-radius: 20px;

  font-size: 18px;
  font-weight: 600;
  color: #2d7a2d;
  line-height: 1.3;

  max-width: 220px;
  margin: -20px auto 0 auto;
  /* FLOAT DOWN BELOW IMAGE */

  white-space: normal !important;
  height: auto !important;
  overflow: visible !important;

  position: relative;
  z-index: 10;
}

.product-section {
  text-align: center;
  margin-top: 20px;
}

.premium-heading {
  position: relative;
  padding: 20px 10px;
}

.premium-heading h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #2f8f2f, #3dbd55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

.premium-heading .tagline {
  font-size: 17px;
  color: #5f7c5f;
  margin-top: -5px;
}

.heading-icon {
  width: 60px;
  opacity: 0.12;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
}

.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.35));
  /* SMOOTH GRADIENT – NOT TOO DARK */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section img {
  filter: brightness(1.15) contrast(1.1);
  /* crisp & bright */
}

/* MOBILE HEADER ALIGNMENT AND VISIBILITY FIX */
@media (max-width: 992px) {
  .nav-inner {
    padding-right: 16px !important;
    padding-left: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
  }

  .brand-logo {
    height: 44px !important;
    width: auto !important;
    margin: 0 !important;
    /* reset margin-top: -4px etc */
  }

  .brand-text {
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .brand-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #033d0f !important;
  }

  .brand-sub {
    font-size: 10px !important;
    line-height: 1.2 !important;
    color: #666 !important;
  }

  .header .lang-selector {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-left: auto !important;
    margin-right: 15px !important;
    display: flex !important;
    align-items: center !important;
    z-index: 99999 !important;
  }

  .header .lang-trigger {
    margin: 0 !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    height: auto !important;
    line-height: 1 !important;
  }

  /* Make sure the mobile menu button (hamburger) is visible and aligned */
  #menuToggle.menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 28px !important;
    height: 20px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    position: relative !important;
    z-index: 100000 !important;
    cursor: pointer !important;
    margin: 0 !important;
  }

  #menuToggle.menu span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #111 !important;
    border-radius: 2px !important;
    margin: 0 !important;
    opacity: 1 !important;
  }
}