*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --green:    #0d5c1f;
  --green2:   #1a8c32;
  --green3:   #27b847;
  --navy:     #111827;
  --navy2:    #1f2937;
  --white:    #ffffff;
  --offwhite: #f8faf8;
  --ink:      #1a1a1a;
  --muted:    #6b7280;
  --border:   #e5e7eb;
  --blue:     #1498CE;
  --blue2:    #0f7aaa;
  --topH:     44px;
  --navH:     86px;
  --ease:     0.28s cubic-bezier(.4,0,.2,1);
}

/* ─── ABOUT ─── */


.ab {
  background: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Faint diagonal background stripe */
.ab::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 38%;
  height: 100%;
  background: var(--offwhite);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

.ab__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}

/* ── EYEBROW LABEL ── */
.ab__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.ab__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green3));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── TOP SPLIT ── */
.ab__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
}

.ab__heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink);
}
.ab__heading mark {
  background: none;
  color: var(--green);
  position: relative;
  white-space: nowrap;
}
/* Drawn underline on keyword */
.ab__heading mark::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green3), var(--blue));
  border-radius: 99px;
  opacity: .4;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1s .6s var(--ease) forwards;
}
@keyframes drawLine {
  to { transform: scaleX(1); }
}

.ab__intro {
  font-size: .97rem;
  color: #4b5563;
  line-height: 1.82;
  margin-bottom: 28px;
}
.ab__intro strong { color: var(--ink); font-weight: 700; }

/* ── CLIP-PATH BUTTONS ── */
.ab__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary button */
.btn-clip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--green);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  overflow: hidden;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-clip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--green2), var(--green3));
  transform: translateX(-102%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-clip:hover::before { transform: translateX(0); }
.btn-clip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,92,31,.28);
}
.btn-clip:active { transform: translateY(0px); box-shadow: none; }
.btn-clip span,
.btn-clip i { position: relative; z-index: 1; transition: gap var(--ease); }
.btn-clip:hover .btn-clip__icon { transform: translateX(4px); }
.btn-clip__icon { transition: transform var(--ease); }

/* Blue outline button */
.btn-clip--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), color var(--ease);
  cursor: pointer;
}
.btn-clip--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateX(-102%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-clip--outline:hover::before { transform: translateX(0); }
.btn-clip--outline:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20,152,206,.22);
}
.btn-clip--outline:active { transform: translateY(0); box-shadow: none; }
.btn-clip--outline span,
.btn-clip--outline i { position: relative; z-index: 1; }
.btn-clip--outline .btn-clip__icon { transition: transform var(--ease); }
.btn-clip--outline:hover .btn-clip__icon { transform: translateX(3px); }

/* ── MAIN CONTENT GRID ── */
.ab__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}

/* ── LEFT — Highlights ── */
.ab__highlights {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ab__hl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 10px;
  transition:
    border-left-color var(--ease),
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  cursor: default;
}
.ab__hl + .ab__hl { margin-top: 10px; }

.ab__hl:hover {
  border-left-color: var(--green);
  background: #fbfdfb;
  transform: translateX(5px);
  box-shadow: -4px 0 0 var(--green3),
              0 8px 24px rgba(13,92,31,.06);
}

.ab__hl-dot {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.ab__hl:hover .ab__hl-dot {
  background: var(--green);
  border-color: var(--green);
}
.ab__hl-dot i {
  font-size: .88rem;
  color: var(--green);
  transition: color var(--ease);
}
.ab__hl:hover .ab__hl-dot i { color: #fff; }

.ab__hl-text {}
.ab__hl-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
  margin-bottom: 4px;
}
.ab__hl-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── RIGHT — Vision + Mission + Contact ── */
.ab__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab__vm {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ab__vm:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
}
.ab__vm-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
}
.ab__vm-head--green { background: var(--green); }
.ab__vm-head--blue  { background: var(--blue); }

.ab__vm-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab__vm-icon i { color: #fff; font-size: .82rem; }
.ab__vm-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}
.ab__vm-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ab__vm-body {
  padding: 18px 22px 22px;
  background: var(--offwhite);
}
.ab__vm-text {
  font-size: .85rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 12px;
}
.ab__vm-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ab__vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .82rem;
  color: #374151;
  line-height: 1.55;
}
.ab__vm-list i {
  color: var(--green3);
  font-size: .5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Person / owner strip */
.ab__person {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  justify-content: space-between;
  transition: box-shadow var(--ease), transform var(--ease);
}
.ab__person:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.ab__person-left { display: flex; align-items: center; gap: 14px; }
.ab__avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab__avatar i { color: #fff; font-size: 1.1rem; }
.ab__person-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.ab__person-role { font-size: .74rem; color: var(--muted); }
.ab__person-links { display: flex; flex-direction: column; gap: 5px; align-items: flex-end; }
.ab__person-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color var(--ease);
}
.ab__person-links a:hover { color: var(--blue); }
.ab__person-links i { font-size: .65rem; }

/* ── WHY CHOOSE US ── */
.ab__why {
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.ab__why-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ab__why-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.ab__why-title span { color: var(--blue); }
.ab__why-rule {
  flex: 1;
  height: 1px;
  min-width: 40px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* 4-column grid, no boxes — editorial style */
.ab__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
/* vertical dividers between cells */
.ab__why-item {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  transition: transform var(--ease);
}
.ab__why-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.ab__why-item:hover { transform: translateY(-4px); }

.ab__why-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--border);
  transition: color var(--ease);
}
.ab__why-item:hover .ab__why-num { color: var(--green3); }

.ab__why-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  flex-shrink: 0;
}
.ab__why-item:hover .ab__why-icon {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(13,92,31,.2);
}
.ab__why-item:nth-child(even):hover .ab__why-icon {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(20,152,206,.2);
}
.ab__why-icon i {
  font-size: 1.1rem;
  color: var(--green);
  transition: color var(--ease);
}
.ab__why-item:nth-child(even) .ab__why-icon i { color: var(--blue); }
.ab__why-item:hover .ab__why-icon i { color: #fff; }
.ab__why-item:nth-child(even):hover .ab__why-icon i { color: #fff; }

.ab__why-item-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: .01em;
}
.ab__why-item-text { font-size: .82rem; color: var(--muted); line-height: 1.66; }

/* ── BOTTOM DARK STRIP ── */
.ab__strip {
  margin-top: 60px;
  background: var(--navy);
  border-radius: 12px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.ab__strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--green3), var(--blue));
}
.ab__strip-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.ab__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ab__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  font-size: .76rem;
  color: rgba(255,255,255,.62);
  font-weight: 500;
  transition: all var(--ease);
  cursor: default;
  white-space: nowrap;
}
.ab__chip i { font-size: .6rem; color: var(--green3); flex-shrink: 0; }
.ab__chip:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .ab__why-grid { grid-template-columns: 1fr 1fr; }
  .ab__why-item {
    padding: 0;
    margin: 0;
    border-right: none;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }
  .ab__why-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 860px) {
  .ab__top  { grid-template-columns: 1fr; gap: 28px; }
  .ab__body { grid-template-columns: 1fr; gap: 36px; }
  .ab::after { display: none; }
}
@media (max-width: 600px) {
  .ab { padding: 64px 0 56px; }
  .ab__wrap { padding: 0 20px; }
  .ab__why-grid { grid-template-columns: 1fr; }
  .ab__why-item { border-bottom: 1px solid var(--border) !important; padding-bottom: 24px !important; }
  .ab__why-item:last-child { border-bottom: none !important; }
  .ab__strip { padding: 20px; }
  .ab__strip-label { display: none; }
  .ab__person-links { display: none; }
}




 /* ══════════════════════════════════════════════
   SECTION 03 — COUNT / STATS
   Scroll-triggered animated counters
══════════════════════════════════════════════  */

.st {
  background: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

/* Faint large watermark text */
.st::before {
  content: '25';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 36vw;
  font-weight: 700;
  line-height: 1;
  color: rgba(14, 92, 31, 0.028);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

.st__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.st__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
.st__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.st__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green3));
  border-radius: 2px;
  flex-shrink: 0;
}
.st__heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.015em;
}
.st__heading span { color: var(--green); }

.st__since-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 28px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.st__since-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 0 0 2px 2px;
}
.st__since-badge:hover {
  border-color: rgba(13,92,31,.25);
  box-shadow: 0 8px 24px rgba(13,92,31,.08);
}
.st__since-year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.st__since-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── STATS GRID — No boxes, just numbers ── */
.st__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

/* Vertical dividers */
.st__item::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.st__item:last-child::before { display: none; }

.st__item {
  position: relative;
  padding: 0 40px 0 0;
  cursor: default;
}
.st__item:not(:first-child) { padding-left: 40px; }

/* Hover — green accent bar slides up */
.st__item::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 3px;
  border-radius: 99px;
  transition: width .42s cubic-bezier(.4,0,.2,1);
}
.st__item:nth-child(odd)::after  { background: var(--green); }
.st__item:nth-child(even)::after { background: var(--blue); }
.st__item:hover::after { width: 60%; }

/* Icon above number */
.st__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--ease);
}
.st__item:hover .st__icon {
  border-color: transparent;
  background: var(--green);
  box-shadow: 0 6px 18px rgba(13,92,31,.2);
}
.st__item:nth-child(even):hover .st__icon {
  background: var(--blue);
  box-shadow: 0 6px 18px rgba(20,152,206,.2);
}
.st__icon i {
  font-size: .85rem;
  color: var(--green);
  transition: color var(--ease);
}
.st__item:nth-child(even) .st__icon i { color: var(--blue); }
.st__item:hover .st__icon i { color: #fff; }
.st__item:nth-child(even):hover .st__icon i { color: #fff; }

/* The big number */
.st__value {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 14px;
  transition: color var(--ease);
}
.st__item:hover .st__value { color: var(--green); }
.st__item:nth-child(even):hover .st__value { color: var(--blue); }

.st__suffix {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green3);
  line-height: 1;
  margin-top: 8px;
}
.st__item:nth-child(even) .st__suffix { color: var(--blue); }

/* Label + description */
.st__label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.st__desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 170px;
}

/* ── BOTTOM TAGLINE BAR ── */
.st__bar {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.st__bar-left {}
.st__bar-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.st__bar-tagline span { color: var(--green); }
.st__bar-sub { font-size: .85rem; color: var(--muted); }

.st__bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.st__brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: #374151;
  transition: all var(--ease);
  cursor: default;
  white-space: nowrap;
}
.st__brand-pill i { font-size: .6rem; color: var(--green3); }
.st__brand-pill:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(13,92,31,.04);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .st__grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .st__item:nth-child(n+4) { margin-top: 48px; }
  .st__item:nth-child(3)::before { display: none; }
  .st__item:nth-child(n+4):not(:last-child)::before { display: block; }
}
@media (max-width: 700px) {
  .st__grid { grid-template-columns: repeat(2, 1fr); }
  .st__item:nth-child(2)::before,
  .st__item:nth-child(4)::before { display: none; }
  .st__item:nth-child(3)::before { display: block; }
  .st__item:nth-child(n+3) { margin-top: 40px; }
}
@media (max-width: 600px) {
  .st { padding: 60px 0; }
  .st__wrap { padding: 0 20px; }
  .st__header { grid-template-columns: 1fr; gap: 20px; }
  .st__since-badge { align-self: flex-start; }
  .st__bar { flex-direction: column; align-items: flex-start; }
  .st__item { padding: 0 !important; }
  .st__item::before { display: none !important; }
  .st__grid { gap: 36px 0; }
}


/* 
 ══════════════════════════════════════════════
   SECTION 04 — PRODUCTS
   Category tabs + Product slider
══════════════════════════════════════════════  */


/* ─── PRODUCTS SECTION ─── */
.prod-section {
  background: #f0f2f0;
  padding: 100px 0;
  overflow: hidden;
}

.prod-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.prod-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.prod-header-left {}
.prod-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 10px;
}
.prod-title span { color: #0d5c1f; }
.prod-subtitle { font-size: .9rem; color: #6b7280; max-width: 440px; }
.prod-header-right {
  display: flex;
  gap: 10px;
}
.prod-slider-btn {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .24s ease;
}
.prod-slider-btn:hover {
  border-color: #0d5c1f;
  background: #0d5c1f;
  color: #fff;
}

/* Category filter tabs */
.prod-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.prod-cat-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 30px;
  color: #4b5563;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.prod-cat-btn i { font-size: .72rem; }
.prod-cat-btn:hover {
  border-color: #0d5c1f;
  color: #0d5c1f;
  background: rgba(13,92,31,.06);
}
.prod-cat-btn.active {
  background: #0d5c1f;
  border-color: #0d5c1f;
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,92,31,.25);
}

/* Slider wrapper */
.prod-slider-wrap {
  position: relative;
  overflow: hidden;
}

.prod-slider {
  display: flex;
  gap: 22px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Product card */
.prod-card {
  flex: 0 0 calc(25% - 17px);
  min-width: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .28s ease;
  cursor: pointer;
  position: relative;
}
.prod-card:hover {
  box-shadow: 0 16px 48px rgba(13,92,31,.14);
  transform: translateY(-5px);
  border-color: rgba(13,92,31,.25);
}
.prod-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0d5c1f;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
}
.prod-card-img-wrap {
  height: 200px;
  background: linear-gradient(145deg, #f0f4f0, #e8eee8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.prod-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.04));
}
.prod-card-icon-large {
  font-size: 5rem;
  opacity: .14;
  color: #0d5c1f;
  transition: all .3s ease;
}
.prod-card:hover .prod-card-icon-large {
  opacity: .22;
  transform: scale(1.1) rotate(-5deg);
}
.prod-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(13,92,31,.08);
  color: #0d5c1f;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  align-self: flex-start;
}
.prod-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.2;
}
.prod-card-desc {
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.prod-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.prod-card-size {
  background: #f0f2f0;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: .68rem;
  color: #4b5563;
  font-weight: 500;
}
.prod-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f2f0;
}
.prod-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: #0d5c1f;
  text-decoration: none;
  letter-spacing: .04em;
  transition: gap .2s ease;
}
.prod-card-cta:hover { gap: 9px; }
.prod-card-cta i { font-size: .72rem; }

/* Dots indicator */
.prod-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.prod-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all .24s ease;
  padding: 0;
}
.prod-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #0d5c1f;
}

/* CTA strip */
.prod-cta-strip {
  margin-top: 52px;
  background: linear-gradient(110deg, #111827 0%, #0a3016 100%);
  border-radius: 18px;
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.prod-cta-text {}
.prod-cta-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.prod-cta-sub { font-size: .88rem; color: rgba(255,255,255,.55); }
.prod-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.prod-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: #27b847;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .24s ease;
}
.prod-cta-btn-primary:hover { background: #1a8c32; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,184,71,.3); }
.prod-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .24s ease;
}
.prod-cta-btn-outline:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.07); }

/* Responsive */
@media(max-width:1100px){
  .prod-card { flex: 0 0 calc(33.333% - 15px); }
}
@media(max-width:780px){
  .prod-card { flex: 0 0 calc(50% - 11px); }
  .prod-cta-strip { padding: 28px; }
}
@media(max-width:560px){
  .prod-container { padding: 0 20px; }
  .prod-card { flex: 0 0 calc(100% - 0px); }
  .prod-section { padding: 60px 0; }
  .prod-header { flex-direction: column; align-items: flex-start; }
}




 /* ══════════════════════════════════════════════
   SECTION 05 — TESTIMONIALS
══════════════════════════════════════════════  */


/* ─── TESTIMONIALS ─── */
.tm{
  background: var(--white);
  padding: 108px 0 100px;
  position: relative;
  overflow: hidden;
}

.tm__bg{
  position: absolute;
  bottom: -6vw; right: -2vw;
  font-family:'Poppins',sans-serif;
  font-size: 26vw;
  font-weight: 700;
  line-height: 1;
  color: rgba(13,92,31,.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

.tm__wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.tm__hd{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
}

.tm__ey{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family:'DM Sans',sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.tm__ey::before{
  content:'';
  display: block;
  width: 32px; height: 2px;
  background: linear-gradient(90deg,var(--blue),var(--green3));
  border-radius: 2px;
  flex-shrink: 0;
}

.tm__h2{
  font-family:'Rajdhani',sans-serif;
  font-size: clamp(2.4rem,4vw,3.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.tm__h2 em{ font-style:normal; color: var(--green); }

/* Score pill */
.tm__pill{
  background: var(--navy);
  border-radius: 16px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.tm__pill::before{
  content:'';
  position: absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg,var(--green3),var(--blue));
}
.tm__pill:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17,24,39,.28);
}
.tm__pill-n{
  font-family:'Rajdhani',sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.tm__pill-n sup{
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.38);
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}
.tm__pill-stars{ display:flex; gap:3px; margin-bottom:5px; }
.tm__pill-stars i{ color:#fbbf24; font-size:.78rem; }
.tm__pill-sub{
  font-family:'Poppins',sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}

/* ── MAIN ASYMMETRIC GRID ── */
/* col1: 1 big featured, col2+3: 2 cards stacked */
.tm__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 16px;
}

/* Base card */
.tm__c{
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform .32s cubic-bezier(.4,0,.2,1),
    box-shadow .32s cubic-bezier(.4,0,.2,1),
    border-color .32s cubic-bezier(.4,0,.2,1),
    background .32s cubic-bezier(.4,0,.2,1);
}

/* Left accent bar */
.tm__c::before{
  content:'';
  position: absolute;
  top:0; left:0; bottom:0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.tm__c:nth-child(1)::before,
.tm__c:nth-child(3)::before,
.tm__c:nth-child(5)::before{ background: var(--green); }
.tm__c:nth-child(2)::before,
.tm__c:nth-child(4)::before,
.tm__c:nth-child(6)::before{ background: var(--blue); }

.tm__c:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
  border-color: transparent;
  background: var(--white);
}
.tm__c:hover::before{ transform: scaleY(1); }

/* Featured dark card */
.tm__c--feat{
  grid-row: span 2;
  background: var(--navy);
  border-color: transparent;
}
.tm__c--feat::before{ background: var(--green3) !important; }
.tm__c--feat:hover{
  background: var(--navy2);
  box-shadow: 0 28px 72px rgba(17,24,39,.4);
}

/* Quote icon */
.tm__qi{
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.tm__c--feat .tm__qi{ background: rgba(39,184,71,.14); }
.tm__c:not(.tm__c--feat) .tm__qi{ background: var(--border); }
.tm__qi i{ font-size: .9rem; }
.tm__c--feat .tm__qi i{ color: var(--green3); }
.tm__c:nth-child(odd):not(.tm__c--feat) .tm__qi i{ color: var(--green); }
.tm__c:nth-child(even) .tm__qi i{ color: var(--blue); }
.tm__c:hover .tm__qi{ transform: scale(1.1); }

.tm__st{ display:flex; gap:3px; margin-bottom:16px; }
.tm__st i{ font-size:.7rem; color:#fbbf24; }

.tm__txt{
  font-size: .9rem;
  line-height: 1.82;
  font-style: italic;
  flex: 1;
  margin-bottom: 26px;
}
.tm__c--feat .tm__txt{ color: rgba(255,255,255,.72); font-size:.96rem; }
.tm__c:not(.tm__c--feat) .tm__txt{ color: #374151; }

.tm__auth{
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.07);
  margin-top: auto;
}
.tm__c--feat .tm__auth{ border-top-color: rgba(255,255,255,.09); }

.tm__av{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family:'Rajdhani',sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.tm__c:hover .tm__av::after{
  content:'';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--green3);
  animation: avR .28s ease forwards;
}
@keyframes avR{ from{opacity:0;transform:scale(.8);} to{opacity:1;transform:scale(1);} }

.av1{background:linear-gradient(135deg,#0d5c1f,#27b847);}
.av2{background:linear-gradient(135deg,#111827,#374151);}
.av3{background:linear-gradient(135deg,#1498CE,#0f7aaa);}
.av4{background:linear-gradient(135deg,#92400e,#d97706);}
.av5{background:linear-gradient(135deg,#991b1b,#dc2626);}
.av6{background:linear-gradient(135deg,#065f46,#10b981);}

.tm__an{
  font-family:'Rajdhani',sans-serif;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.2;
}
.tm__c--feat .tm__an{ color:#fff; }
.tm__c:not(.tm__c--feat) .tm__an{ color: var(--ink); }
.tm__ar{ font-size: .74rem; }
.tm__c--feat .tm__ar{ color: rgba(255,255,255,.4); }
.tm__c:not(.tm__c--feat) .tm__ar{ color: var(--muted); }

/* Row 2 — 3 smaller cards */
.tm__row2{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 64px;
}

/* ── STATS PANEL ── */
.tm__bot{
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 240px 1px 1fr 1px 320px;
  overflow: hidden;
}
.tm__bdiv{
  background: var(--border);
  width:1px;
  align-self: stretch;
}
.tm__bc{
  padding: 40px 44px;
}

/* Big num */
.tm__bn{
  font-family:'Rajdhani',sans-serif;
  font-size: 5.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: .9;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.tm__bn span{ color:var(--green); font-size:2.4rem; }
.tm__bst{ display:flex; gap:4px; margin-bottom:8px; }
.tm__bst i{ color:#fbbf24; font-size:.95rem; }
.tm__bsub{
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Bars */
.tm__bars{
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content: center;
}
.tm__br{
  display:flex;
  align-items:center;
  gap:12px;
}
.tm__bl{
  font-size: .7rem;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap:3px;
  width:28px;
  flex-shrink:0;
}
.tm__bl i{ color:#fbbf24; font-size:.55rem; }
.tm__bt{
  flex:1;
  height:7px;
  background: var(--border);
  border-radius:99px;
  overflow:hidden;
}
.tm__bf{
  height:100%;
  border-radius:99px;
  width:0;
  transition: width 1.5s cubic-bezier(.4,0,.2,1);
}
.tm__bf--g{ background:linear-gradient(90deg,var(--green),var(--green3)); }
.tm__bf--b{ background:linear-gradient(90deg,var(--blue),#62d0f5); }
.tm__bp{
  font-size:.7rem;
  font-weight:700;
  color:var(--muted);
  width:34px;
  text-align:right;
  flex-shrink:0;
}

/* CTA cell */
.tm__bct{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.tm__bctit{
  font-family:'Rajdhani',sans-serif;
  font-size:1.5rem;
  font-weight:700;
  color:var(--ink);
  line-height:1.2;
  margin-bottom:10px;
}
.tm__bctit span{ color:var(--green); }
.tm__bctext{
  font-size:.84rem;
  color:var(--muted);
  line-height:1.72;
  margin-bottom:22px;
}
.tm__bcbtn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 28px;
  background:var(--green);
  color:#fff;
  font-family:'DM Sans',sans-serif;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  clip-path:polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  overflow:hidden;
  align-self:flex-start;
  transition: transform var(--ease), box-shadow var(--ease);
}
.tm__bcbtn::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,var(--green2),var(--green3));
  transform:translateX(-102%);
  transition:transform .36s cubic-bezier(.4,0,.2,1);
  z-index:0;
}
.tm__bcbtn:hover::before{ transform:translateX(0); }
.tm__bcbtn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(13,92,31,.28);
}
.tm__bcbtn span,.tm__bcbtn i{ position:relative; z-index:1; }
.tm__bcbtn i{ transition:transform var(--ease); }
.tm__bcbtn:hover i{ transform:translateX(4px); }

/* ── RESPONSIVE ── */
@media(max-width:1080px){
  .tm__grid{ grid-template-columns:1fr 1fr; }
  .tm__c--feat{ grid-row:span 1; grid-column:span 2; }
  .tm__bot{ grid-template-columns:1fr; }
  .tm__bdiv{ display:none; }
  .tm__bc{ padding:28px 28px; border-bottom:1px solid var(--border); }
  .tm__bc:last-child{ border-bottom:none; }
}
@media(max-width:760px){
  .tm__grid,.tm__row2{ grid-template-columns:1fr; }
  .tm__c--feat{ grid-column:span 1; }
  .tm__hd{ grid-template-columns:1fr; gap:24px; }
}
@media(max-width:600px){
  .tm{ padding:64px 0 56px; }
  .tm__wrap{ padding:0 20px; }
  .tm__bc{ padding:24px 20px; }
}


/* <!-- ══════════════════════════════════════════════
   SECTION 06 — CLIENTS / BRAND PARTNERS
══════════════════════════════════════════════ --> */

/* ─── CLIENTS ─── */


/* ═══════════════════════════════════════════
   BASE RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: #fff; }

/* ═══════════════════════════════════════════
   SECTION LABEL (shared utility)
═══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,92,31,.08);
  color: #0d5c1f;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 30px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CLIENTS SECTION
═══════════════════════════════════════════ */
.clients-section {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.clients-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ── */
.clients-header {
  text-align: center;
  margin-bottom: 52px;
}
.clients-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  margin-top: 14px;
  line-height: 1.15;
}
.clients-title span { color: #0d5c1f; }
.clients-sub { font-size: .9rem; color: #6b7280; }

/* ═══════════════════════════════════════════
   BRAND CARDS GRID
   Desktop: 6 cols → Tablet: 3 → Mobile: 2
═══════════════════════════════════════════ */
.clients-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.clients-brand-card {
  background: #f8faf8;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
  cursor: default;
  min-height: 130px;
}
.clients-brand-card:hover {
  background: #fff;
  border-color: rgba(13,92,31,.3);
  box-shadow: 0 8px 28px rgba(13,92,31,.1);
  transform: translateY(-4px);
}

.clients-brand-logo-wrap {
  width: 72px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clients-brand-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.clients-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}
.clients-brand-type {
  font-size: .68rem;
  color: #9ca3af;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   SCROLLING TICKER
═══════════════════════════════════════════ */
.clients-ticker-section {
  background: #f8faf8;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 56px;
}

/* Fade edges */
.clients-ticker-section::before,
.clients-ticker-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-ticker-section::before {
  left: 0;
  background: linear-gradient(to right, #f8faf8 0%, transparent 100%);
}
.clients-ticker-section::after {
  right: 0;
  background: linear-gradient(to left, #f8faf8 0%, transparent 100%);
}

.clients-ticker-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
  padding: 0 16px;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerMove 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 30px;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item i { color: #0d5c1f; font-size: .82rem; flex-shrink: 0; }
.ticker-item span {
  font-family: 'Rajdhani', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   SECTORS GRID
   Desktop: 4 → Tablet(900): 2 → Mobile: 1
═══════════════════════════════════════════ */
.clients-sectors-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.2;
}
.clients-sectors-title span { color: #0d5c1f; }

.clients-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.clients-sector-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}
.clients-sector-card:hover {
  box-shadow: 0 12px 36px rgba(13,92,31,.1);
  transform: translateY(-4px);
}

.clients-sector-head {
  padding: 18px 20px;
  background: linear-gradient(110deg, #111827 0%, #1a2e1a 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.clients-sector-icon {
  width: 40px;
  height: 40px;
  background: rgba(39,184,71,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clients-sector-icon i { color: #27b847; font-size: .95rem; }
.clients-sector-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.clients-sector-body {
  padding: 14px 20px 18px;
  flex: 1;
}
.clients-sector-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: .82rem;
  color: #4b5563;
  line-height: 1.4;
}
.clients-sector-item:last-child { border-bottom: none; }
.clients-sector-item i {
  color: #27b847;
  font-size: .5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */

/* Large tablet ≤ 1200px */
@media (max-width: 1200px) {
  .clients-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .clients-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Tablet ≤ 900px */
@media (max-width: 900px) {
  .clients-section { padding: 64px 0; }
  .clients-container { padding: 0 28px; }
  .clients-header { margin-bottom: 40px; }

  .clients-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .clients-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .clients-ticker-section::before,
  .clients-ticker-section::after { width: 60px; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .clients-section { padding: 52px 0; }
  .clients-container { padding: 0 16px; }
  .clients-header { margin-bottom: 32px; }

  /* 2 brand cards per row on mobile */
  .clients-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 32px;
  }

  .clients-brand-card {
    padding: 18px 10px 16px;
    min-height: 110px;
    gap: 8px;
    border-radius: 12px;
  }
  .clients-brand-logo-wrap {
    width: 56px;
    height: 46px;
  }
  .clients-brand-name { font-size: .82rem; }
  .clients-brand-type { font-size: .65rem; }

  /* 1 sector card per row on mobile */
  .clients-sectors-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .clients-ticker-section {
    padding: 20px 0;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .clients-ticker-section::before,
  .clients-ticker-section::after { width: 40px; }

  .ticker-item { padding: 0 20px; }
  .ticker-item span { font-size: .88rem; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .clients-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .clients-brand-card {
    padding: 14px 8px 12px;
    min-height: 100px;
  }
  .clients-brand-logo-wrap {
    width: 48px;
    height: 40px;
  }
  .clients-brand-name { font-size: .78rem; }
}




/* <!-- ══════════════════════════════════════════════
   SECTION 07 — CONTACT US
══════════════════════════════════════════════ --> */





:root{
  --green:      #0d5c1f;
  --green2:     #1a8c32;
  --green3:     #27b847;
  --green-pale: #e8f5ec;
  --green-light:#d1edda;
  --navy:       #111827;
  --navy2:      #1f2937;
  --white:      #ffffff;
  --offwhite:   #f8faf8;
  --cream:      #faf9f6;
  --ink:        #1a1a1a;
  --ink2:       #2d3748;
  --muted:      #6b7280;
  --muted2:     #9ca3af;
  --border:     #e5e7eb;
  --ease:       0.28s cubic-bezier(.4,0,.2,1);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
body{font-family:'DM Sans',sans-serif;background:#fff;}
 
/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
.testimonials-section{
  background: var(--cream);
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
  
}
.testi-track-wrap{
    max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}
 
/* subtle dot texture */
.testimonials-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image: radial-gradient(circle, rgba(13,92,31,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events:none;
}
 
/* top-left glow */
.testimonials-section::after{
  content:'';
  position:absolute;
  top:-120px; left:-120px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(13,92,31,.07) 0%, transparent 65%);
  pointer-events:none;
}
 
.testi-container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}
 
/* ── HEADER ── */
.testi-header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.testi-header-left{}
 
.testi-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 12px;
}
.testi-eyebrow::before{
  content:'';
  width: 26px; height: 2px;
  background: var(--green2);
  border-radius: 2px;
}
 
.testi-title{
 
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.testi-title em{
  font-style: italic;
  color: var(--green);
}
 
/* rating summary right */
.testi-rating-summary{
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 26px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.trs-score{

  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.03em;
}
.trs-right{}
.trs-stars{
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.trs-stars i{ color: #f59e0b; font-size: .85rem; }
.trs-label{
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
}
.trs-label strong{ color: var(--ink2); }
 
.trs-divider{
  width: 1px;
  height: 40px;
  background: var(--border);
}
.trs-google{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trs-google i{ font-size: 1.3rem; color: #ea4335; }
.trs-google span{ font-size: .65rem; color: var(--muted2); font-weight: 600; letter-spacing:.04em; }
 
/* ── MARQUEE TRACK ── */
.testi-track-wrap{
  overflow: hidden;
  position: relative;
  /* fade edges */
}
.testi-track-wrap::before,
.testi-track-wrap::after{
  content:'';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.testi-track-wrap::before{
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.testi-track-wrap::after{
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
 
/* Row 1 – scrolls left */
.testi-row-1{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 38s linear infinite;
  margin-bottom: 20px;
}
/* Row 2 – scrolls right */
.testi-row-2{
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollRight 44s linear infinite;
}
 
.testi-row-1:hover,
.testi-row-2:hover{
  animation-play-state: paused;
}
 
@keyframes scrollLeft{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight{
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
 
/* ── CARD ── */
.testi-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px 22px;
  width: 300px;
  flex-shrink: 0;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  overflow: hidden;
}
.testi-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green3));
  opacity: 0;
  transition: opacity var(--ease);
}
.testi-card:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(13,92,31,.18);
}
.testi-card:hover::before{ opacity: 1; }
 
/* quote mark */
.testi-card-quote{
  position: absolute;
  top: 16px; right: 18px;
 
  font-size: 4rem;
  font-weight: 700;
  color: rgba(13,92,31,.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
 
/* stars */
.testi-card-stars{
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testi-card-stars i{ color: #f59e0b; font-size: .78rem; }
 
/* review text */
.testi-card-text{
  font-size: .88rem;
  color: var(--ink2);
  line-height: 1.72;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
 
/* reaction */
.testi-card-reaction{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.testi-card-reaction span{ font-size: .82rem; }
 
/* user row */
.testi-card-user{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
 
/* avatar */
.testi-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
/* verified tick */
.testi-avatar::after{
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: -2px; right: -2px;
  width: 14px; height: 14px;
  background: var(--green3);
  border: 1.5px solid #fff;
  border-radius: 50%;
  font-size: .38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 14px;
  text-align: center;
}
 
.testi-user-info{}
.testi-user-name{

  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.testi-user-badge{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .64rem;
  color: var(--muted2);
  margin-top: 2px;
}
.testi-user-badge i{ color: #ea4335; font-size: .6rem; }
.testi-user-badge.guide{ color: #1a73e8; }
.testi-user-badge.guide i{ color: #1a73e8; }
 
/* Google icon on card */
.testi-card-google{
  margin-left: auto;
  flex-shrink: 0;
}
.testi-card-google i{
  color: #dadce0;
  font-size: .95rem;
  transition: color var(--ease);
}
.testi-card:hover .testi-card-google i{ color: #ea4335; }
 
/* ── BOTTOM ROW ── */
.testi-bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.testi-bottom-text{
  font-size: .86rem;
  color: var(--muted);
}
.testi-bottom-text strong{ color: var(--ink2); }
.btn-google-review{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 22px;
 
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn-google-review:hover{
  border-color: #ea4335;
  color: #ea4335;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,67,53,.12);
}
.btn-google-review i{ color: #ea4335; font-size: .9rem; }
 
/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .testi-container{ padding: 0 32px; }
}
@media(max-width:860px){
  .testi-container{ padding: 0 24px; }
  .testimonials-section{ padding: 72px 0 80px; }
  .testi-header{ flex-direction: column; align-items: flex-start; }
  .testi-rating-summary{ width: 100%; }
  .testi-card{ width: 270px; }
}
@media(max-width:600px){
  .testi-container{ padding: 0 18px; }
  .testimonials-section{ padding: 60px 0 68px; }
  .testi-track-wrap::before,
  .testi-track-wrap::after{ width: 48px; }
  .testi-card{ width: 250px; padding: 22px 18px 18px; }
  .trs-score{ font-size: 2.2rem; }
}