/* index page */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─── Design tokens (mirror contactus.html exactly) ─────────────── */
:root {
  --ct-green:     #0C625D;
  --ct-green-dk:  #063d39;
  --ct-green-lt:  #e6f4f3;
  --ct-gold:      #D4960A;
  --ct-gold-lt:   #FFC107;
  --ct-ivory:     #FAFAF7;
  --ct-ink:       #1a2e2c;
  --ct-ink-mid:   #3d5450;
  --ct-ink-muted: #7a9390;
  --ct-border:    #dde8e7;
  --ct-white:     #ffffff;
  --ct-rad:       14px;
  --ct-rad-lg:    22px;
  --ct-shad:      0 8px 32px rgba(0,0,0,.08);
  --ct-shad-lg:   0 20px 60px rgba(0,0,0,.12);
  --ct-trans:     all .3s cubic-bezier(.4,0,.2,1);
  --ct-ffh:       'Playfair Display', Georgia, serif;
  --ct-ffb:       'DM Sans', sans-serif;
}

/* ─── Scope resets ───────────────────────────────────────────────── */
.ix-hero,.ix-trust-bar,.ix-about,.ix-blood,.ix-join,
.ix-elig,.ix-video-sec,.ix-team,.ix-gallery,.ix-cta {
  font-family: var(--ct-ffb);
  box-sizing: border-box;
}
.ix-hero *,.ix-trust-bar *,.ix-about *,.ix-blood *,.ix-join *,
.ix-elig *,.ix-video-sec *,.ix-team *,.ix-gallery *,.ix-cta * {
  box-sizing: border-box;
}

/* ─── Layout helpers ─────────────────────────────────────────────── */
.ix-wrap       { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.ix-sec        { padding: 96px 0; }
.ix-two-col    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ix-two-col-rev { direction: rtl; }
.ix-two-col-rev > * { direction: ltr; }

/* ─── Section header ─────────────────────────────────────────────── */
.ix-sec-header  { text-align: center; margin-bottom: 56px; }
.ix-sec-h2 {
  font-family: var(--ct-ffh);
  font-size: clamp(2rem,4vw,2.9rem);
  font-weight: 800; color: var(--ct-ink);
  margin: 0 0 12px; letter-spacing: -.3px; line-height: 1.15;
}
.ix-sec-h2.ix-center { text-align: center; }
.ix-sec-sub  { font-size: 1.05rem; color: var(--ct-ink-muted); max-width: 560px; margin: 0 auto; line-height: 1.75; text-align: center; }
.ix-center   { text-align: center; }

/* ─── Eyebrow tags ───────────────────────────────────────────────── */
.ix-eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ct-green); margin-bottom: 16px;
}
.ix-eyebrow-tag.ix-eyebrow-center { display: flex; justify-content: center; }
.ix-eyebrow-tag.ix-eyebrow-gold   { color: var(--ct-gold-lt); }
.ix-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ct-gold-lt); flex-shrink: 0; display: inline-block; }

/* ─── Highlight underline ────────────────────────────────────────── */
.ix-hl {
  color: var(--ct-green); position: relative; display: inline-block;
}
.ix-hl::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 3px; background: var(--ct-gold-lt); border-radius: 2px;
}

/* ─── Shared buttons ─────────────────────────────────────────────── */
.ix-btn-primary {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 12px; background: var(--ct-green); color: #fff;
  text-decoration: none; padding: 14px 20px 14px 26px;
  border-radius: var(--ct-rad); font-size: .97rem; font-weight: 800;
  font-family: var(--ct-ffb); transition: var(--ct-trans);
  box-shadow: 0 4px 18px rgba(12,98,93,.28);
}
.ix-btn-primary:hover { background: var(--ct-green-dk); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(12,98,93,.38); color: #fff; }
.ix-btn-arrow {
  width: 34px; height: 34px; background: rgba(255,255,255,.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: .88rem; flex-shrink: 0; transition: transform .25s;
}
.ix-btn-primary:hover .ix-btn-arrow { transform: translateX(4px); }
.ix-btn-full { width: 100%; }

.ix-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3);
  color: #fff; text-decoration: none; padding: 14px 22px;
  border-radius: var(--ct-rad); font-size: .95rem; font-weight: 700;
  backdrop-filter: blur(4px); transition: var(--ct-trans);
}
.ix-btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

.ix-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--ct-green);
  color: var(--ct-green); text-decoration: none; padding: 12px 22px;
  border-radius: var(--ct-rad); font-size: .93rem; font-weight: 700;
  transition: var(--ct-trans);
}
.ix-btn-outline:hover { background: var(--ct-green-lt); color: var(--ct-green-dk); }

.ix-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ct-white); color: var(--ct-green); text-decoration: none;
  padding: 14px 24px; border-radius: var(--ct-rad);
  font-size: .95rem; font-weight: 700; transition: var(--ct-trans);
  box-shadow: 0 4px 18px rgba(0,0,0,.14);
}
.ix-btn-white:hover { background: var(--ct-ivory); transform: translateY(-2px); color: var(--ct-green-dk); }

/* ─── Floating accent cards ──────────────────────────────────────── */
.ix-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--ct-white); border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); border: 1px solid var(--ct-border);
  pointer-events: none;
}
.ix-float-about { left: -20px; bottom: 28px; }
.ix-float-elig  { right: 20px; bottom: 20px; }
.ix-float-icon  {
  width: 36px; height: 36px; background: var(--ct-green-lt); color: var(--ct-green);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.ix-float-icon-red { background: #fff0f0; color: #e53e3e; }
.ix-float-card strong { font-size: .88rem; font-weight: 700; color: var(--ct-ink); display: block; }
.ix-float-card em     { font-size: .75rem; color: var(--ct-ink-muted); font-style: normal; display: block; }

/* ─── Play button ────────────────────────────────────────────────── */
.ix-play-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--ct-green); font-size: 1.15rem; text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.18); padding-left: 4px;
  transition: var(--ct-trans);
}
.ix-play-btn:hover { background: var(--ct-green); color: #fff; transform: translate(-50%,-50%) scale(1.1); }

/* ─── Phone link ─────────────────────────────────────────────────── */
.ix-phone-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ct-green); font-weight: 700; text-decoration: none; font-size: .93rem;
}
.ix-phone-link:hover { color: var(--ct-green-dk); }

/* ================================================================
   HERO
================================================================ */
.ix-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.ix-hero-bg { position: absolute; inset: 0; }
.ix-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s ease;
}
.ix-slide.active { opacity: 1; }
.ix-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6,61,57,.82) 0%, rgba(10,46,43,.72) 60%, rgba(6,61,57,.88) 100%);
}
.ix-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none; z-index: 1;
}
.ix-r1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.ix-r2 { width: 400px; height: 400px; bottom: -160px; left:  -80px; border-color: rgba(255,193,7,.06); }
.ix-r3 { width: 240px; height: 240px; top: 40%; left: -80px; border-color: rgba(255,255,255,.03); }

.ix-hero-inner {
  position: relative; z-index: 2;
  padding: 110px 24px 90px; max-width: 840px; margin: 0 auto;
}
.ix-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ct-gold-lt); margin-bottom: 22px;
}
.ix-hero-h1 {
  font-family: var(--ct-ffh);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin: 0 0 22px; letter-spacing: -.5px;
}
.ix-hero-h1 em { font-style: italic; color: var(--ct-gold-lt); }
.ix-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.8);
  line-height: 1.75; margin-bottom: 36px;
}
.ix-hero-actions {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; flex-wrap: wrap; margin-bottom: 34px;
}
.ix-razorpay-wrap { display: flex; align-items: center; }
.ix-hero-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ix-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; padding: 7px 15px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; backdrop-filter: blur(4px);
  transition: background .25s;
}
.ix-chip:hover { background: rgba(255,255,255,.14); }
.ix-chip i { color: var(--ct-gold-lt); font-size: .75rem; }

.ix-dots {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 3; display: flex; gap: 8px;
}
.ix-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: all .3s ease; padding: 0;
}
.ix-dot.active { background: var(--ct-gold-lt); width: 26px; border-radius: 4px; }

/* ================================================================
   TRUST BAR
================================================================ */
.ix-trust-bar {
  background: var(--ct-white);
  border-bottom: 1px solid var(--ct-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.ix-trust-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; flex-wrap: wrap;
}
.ix-tb-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0; font-size: .88rem; color: var(--ct-ink-mid);
  flex: 1; min-width: 200px;
}
.ix-tb-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ct-green-lt); color: var(--ct-green);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.ix-tb-item strong { color: var(--ct-ink); }
.ix-tb-sep { width: 1px; height: 40px; background: var(--ct-border); flex-shrink: 0; }

/* ================================================================
   ABOUT
================================================================ */
.ix-about { background: var(--ct-ivory); }
.ix-img-main-wrap {
  position: relative; border-radius: var(--ct-rad-lg);
  overflow: hidden; box-shadow: var(--ct-shad-lg);
}
.ix-img-main {
  width: 100%; height: 480px; object-fit: cover;
  object-position: center; display: block;
  transition: transform .5s ease;
}
.ix-img-main-wrap:hover .ix-img-main { transform: scale(1.03); }
.ix-about-visual { position: relative; }

.ix-lead  { font-size: 1.05rem; color: var(--ct-ink-mid); line-height: 1.75; margin-bottom: 14px; font-weight: 500; }
.ix-para  { font-size: .97rem;  color: var(--ct-ink-mid); line-height: 1.8;  margin-bottom: 14px; }
.ix-para a { color: var(--ct-green); font-weight: 700; }

.ix-feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 26px; }
.ix-feat-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--ct-white); border: 1px solid var(--ct-border);
  border-radius: var(--ct-rad); padding: 16px; transition: var(--ct-trans);
}
.ix-feat-box:hover { border-color: var(--ct-green); box-shadow: var(--ct-shad); }
.ix-feat-icon {
  width: 38px; height: 38px; background: var(--ct-green-lt); color: var(--ct-green);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.ix-feat-gold { background: #fff8e1; color: var(--ct-gold); }
.ix-feat-box p { font-size: .84rem; color: var(--ct-ink-mid); margin: 0; line-height: 1.5; }

.ix-action-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   BLOOD MISSION
================================================================ */
.ix-blood { background: var(--ct-white); }
.ix-blood-hl { color: #D32F2F; }
.ix-blood-italic { font-size: .9em; }
.ix-blood-feats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px;
}
.ix-bf-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--ct-ivory); border: 1px solid var(--ct-border);
  border-radius: 10px; padding: 12px 14px;
  font-size: .84rem; color: var(--ct-ink-mid); font-weight: 600;
  transition: var(--ct-trans);
}
.ix-bf-card:hover { border-color: var(--ct-green); background: var(--ct-green-lt); }
.ix-bf-icon {
  width: 32px; height: 32px; background: var(--ct-green-lt); color: var(--ct-green);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}
.ix-prog-stack  { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.ix-prog-item   { display: flex; flex-direction: column; gap: 6px; }
.ix-prog-labels { display: flex; justify-content: space-between; font-size: .84rem; font-weight: 700; color: var(--ct-ink-mid); }
.ix-prog-track  { height: 8px; background: var(--ct-border); border-radius: 4px; overflow: hidden; }
.ix-prog-fill   { display: block; height: 100%; width: 0; border-radius: 4px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.ix-fill-teal   { background: var(--ct-green); }
.ix-fill-gold   { background: var(--ct-gold-lt); }
.ix-blood-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #D32F2F; color: #fff; text-decoration: none;
  padding: 14px 24px; border-radius: var(--ct-rad);
  font-size: .95rem; font-weight: 700; transition: var(--ct-trans);
  box-shadow: 0 4px 16px rgba(211,47,47,.28);
}
.ix-blood-btn:hover { background: #b71c1c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(211,47,47,.38); color: #fff; }
.ix-blood-img-wrap {
  border-radius: var(--ct-rad-lg); overflow: hidden; box-shadow: var(--ct-shad-lg);
}
.ix-blood-img-wrap img {
  width: 100%; height: 480px; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.ix-blood-img-wrap:hover img { transform: scale(1.04); }

/* Reveal animations */
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }

/* ================================================================
   HOW TO JOIN
================================================================ */
.ix-join { background: var(--ct-ivory); }
.ix-join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ix-steps { display: flex; flex-direction: column; }
.ix-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--ct-border);
  transition: var(--ct-trans);
}
.ix-step:hover { padding-left: 6px; }
.ix-step:last-child { border-bottom: none; }
.ix-step-help { opacity: .7; }
.ix-step-num {
  font-family: var(--ct-ffh); font-size: 1.9rem; font-weight: 800;
  color: rgba(12,98,93,.13); line-height: 1; min-width: 44px; flex-shrink: 0;
  transition: color .3s;
}
.ix-step:hover .ix-step-num { color: var(--ct-gold-lt); }
.ix-step-icon {
  width: 44px; height: 44px; background: var(--ct-green-lt); color: var(--ct-green);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ix-step-icon-gold { background: #fff8e1; color: var(--ct-gold); }
.ix-step-body h4 {
  font-family: var(--ct-ffh); font-size: 1rem; font-weight: 700;
  color: var(--ct-ink); margin: 0 0 4px;
}
.ix-step-body p  { font-size: .88rem; color: var(--ct-ink-muted); margin: 0; line-height: 1.55; }
.ix-step-body a  { color: var(--ct-green); font-weight: 700; text-decoration: none; }

.ix-bank-card {
  background: var(--ct-white); border: 1px solid var(--ct-border);
  border-radius: var(--ct-rad-lg); padding: 32px 28px; box-shadow: var(--ct-shad);
}
.ix-bank-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.ix-bank-head-icon {
  width: 44px; height: 44px; background: var(--ct-green-lt); color: var(--ct-green);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.ix-bank-head h3 { font-family: var(--ct-ffh); font-size: 1.2rem; font-weight: 700; color: var(--ct-ink); margin: 0; }
.ix-bank-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  border: 1px solid var(--ct-border); border-radius: var(--ct-rad); overflow: hidden;
}
.ix-bank-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-bottom: 1px solid var(--ct-border);
  font-size: .88rem;
}
.ix-bank-list li:last-child { border-bottom: none; }
.ix-bank-list span  { color: var(--ct-ink-muted); }
.ix-bank-list strong { color: var(--ct-ink); font-weight: 700; }
.ix-bank-or { text-align: center; font-size: .82rem; color: var(--ct-ink-muted); font-weight: 600; letter-spacing: 2px; margin: 18px 0; }
.ix-qr-wrap { text-align: center; margin-bottom: 22px; }
.ix-qr {
  width: 140px; height: 140px; object-fit: contain;
  border-radius: 10px; border: 4px solid var(--ct-border);
  display: block; margin: 0 auto 8px;
}
.ix-qr-wrap p { font-size: .8rem; color: var(--ct-ink-muted); font-weight: 600; margin: 0; }

/* ================================================================
   ELIGIBILITY
================================================================ */
.ix-elig { background: var(--ct-white); }
.ix-elig-intro { font-size: 1rem; color: var(--ct-ink-mid); line-height: 1.7; margin-bottom: 22px; }
.ix-elig-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  border: 1px solid var(--ct-border); border-radius: var(--ct-rad); overflow: hidden;
}
.ix-elig-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-bottom: 1px solid var(--ct-border);
  font-size: .9rem; color: var(--ct-ink-mid); transition: background .2s;
}
.ix-elig-list li:last-child { border-bottom: none; }
.ix-elig-list li:hover { background: var(--ct-green-lt); }
.ix-elig-list i { color: var(--ct-green); font-size: .85rem; flex-shrink: 0; }
.ix-tg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0088cc; color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: var(--ct-rad);
  font-size: .9rem; font-weight: 700; transition: var(--ct-trans);
  box-shadow: 0 4px 14px rgba(0,136,204,.25);
}
.ix-tg-btn:hover { background: #0073ab; transform: translateY(-2px); color: #fff; }
.ix-elig-img-col { position: relative; }
.ix-elig-img-wrap {
  position: relative; border-radius: var(--ct-rad-lg);
  overflow: hidden; box-shadow: var(--ct-shad-lg);
}
.ix-elig-img-wrap img {
  width: 100%; height: 460px; object-fit: cover; display: block; transition: transform .5s;
}
.ix-elig-img-wrap:hover img { transform: scale(1.04); }

/* ================================================================
   VIDEO + COUNTER
================================================================ */
.ix-video-sec {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(160deg,#0a1f1c 0%,#063d39 50%,#0a2e2b 100%);
  overflow: hidden;
}
.ix-vs-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05); pointer-events: none;
}
.ix-vsr1 { width: 560px; height: 560px; top: -180px; right: -120px; }
.ix-vsr2 { width: 380px; height: 380px; bottom: -140px; left: -80px; border-color: rgba(255,193,7,.06); }
.ix-vs-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px;
  align-items: center; position: relative; z-index: 2;
}
.ix-vs-h2 {
  font-family: var(--ct-ffh);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 14px;
}
.ix-vs-h2 em { font-style: italic; color: var(--ct-gold-lt); }
.ix-vs-sub { font-size: .97rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px; }
.ix-vs-frame { position: relative; margin-bottom: 18px; }
.ix-vs-glow {
  position: absolute; inset: -8px; border-radius: 22px;
  background: linear-gradient(135deg,rgba(12,98,93,.5),rgba(255,193,7,.12));
  filter: blur(12px); z-index: 0;
}
.ix-vs-inner {
  position: relative; z-index: 1; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.08); background: #000;
}
.ix-vs-inner iframe { display: block; width: 100%; height: 320px; border: none; }
.ix-vs-meta { display: flex; align-items: center; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.45); }
.ix-yt-link { display: inline-flex; align-items: center; gap: 6px; color: #ff4e45; font-weight: 700; text-decoration: none; }
.ix-yt-link:hover { opacity: .8; color: #ff4e45; }
.ix-vs-meta-txt { display: flex; align-items: center; gap: 5px; }

.ix-vs-stats-col { display: flex; flex-direction: column; gap: 22px; }
.ix-vs-counter-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 36px 32px; text-align: center;
  backdrop-filter: blur(8px); position: relative; overflow: hidden; transition: all .3s;
}
.ix-vs-counter-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,193,7,.3); }
.ix-vs-counter-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#0C625D,#FFC107,#0C625D); background-size: 200%;
  animation: ix-shimmer 3s linear infinite;
}
@keyframes ix-shimmer { 0%{background-position:200%} 100%{background-position:-200%} }
.ix-vs-cicon {
  width: 56px; height: 56px; background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.25); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--ct-gold-lt); margin: 0 auto 14px;
}
.ix-vs-clabel { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.ix-vs-cnum   { font-family: var(--ct-ffh); font-size: clamp(3rem,6vw,4.5rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.ix-vs-csub   { font-size: .82rem; color: #4ade80; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 5px; }
.ix-vs-pills  { display: flex; flex-direction: column; gap: 10px; }
.ix-vs-pill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 12px 16px;
  font-size: .88rem; color: rgba(255,255,255,.75); transition: all .25s;
}
.ix-vs-pill:hover { background: rgba(255,255,255,.08); transform: translateX(4px); }
.ix-vs-pill i {
  width: 32px; height: 32px; background: rgba(12,98,93,.5); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ct-gold-lt); font-size: .82rem; flex-shrink: 0;
}
.ix-vs-pill strong { color: #fff; }
.ix-vs-reg-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--ct-gold-lt); color: #1a2e2c; text-decoration: none;
  padding: 17px 20px 17px 26px; border-radius: 14px; font-size: 1rem; font-weight: 800;
  font-family: var(--ct-ffb); transition: all .3s; box-shadow: 0 8px 28px rgba(255,193,7,.3);
}
.ix-vs-reg-btn:hover { background: #e6a800; transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,193,7,.45); color: #1a2e2c; }
.ix-vs-btn-icon {
  width: 36px; height: 36px; background: rgba(26,46,44,.15); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; transition: transform .25s;
}
.ix-vs-reg-btn:hover .ix-vs-btn-icon { transform: translateX(4px); }
.ix-vs-trust-note {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: rgba(255,255,255,.38); justify-content: center; margin: 0;
}
.ix-vs-trust-note i { color: rgba(255,193,7,.5); font-size: .75rem; }

/* ================================================================
   TEAM
================================================================ */
.ix-team { background: var(--ct-ivory); }
.ix-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 44px; }
.ix-tm-card {
  background: var(--ct-white); border: 1px solid var(--ct-border);
  border-radius: var(--ct-rad-lg); overflow: hidden;
  box-shadow: var(--ct-shad); transition: var(--ct-trans);
  display: flex; flex-direction: column;
}
.ix-tm-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(12,98,93,.16); border-color: rgba(12,98,93,.2); }
.ix-tm-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;   /* ← fixed height */
}

.ix-tm-img-wrap img {
  width: 100%;     /* ← fills the card width */
  height: 100%;    /* ← fills the 260px height */
  object-fit: cover;
  object-position: top center;  /* ← shows the top/face of the image */
}

.ix-tm-card:hover .ix-tm-img-wrap img { transform: scale(1.06); }
.ix-tm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(6,61,57,0) 40%,rgba(6,61,57,.92) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18px; opacity: 0; transition: opacity .35s;
}
.ix-tm-card:hover .ix-tm-overlay { opacity: 1; }
.ix-tm-socials { display: flex; gap: 8px; }
.ix-tm-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; text-decoration: none; transition: background .2s;
}
.ix-tm-socials a:hover { background: var(--ct-gold-lt); border-color: var(--ct-gold-lt); color: #333; }
.ix-tm-body {
  padding: 18px 16px 20px; border-top: 3px solid var(--ct-green-lt);
  display: flex; flex-direction: column; gap: 4px; flex: 1;
  transition: border-color .3s;
}
.ix-tm-card:hover .ix-tm-body { border-top-color: var(--ct-gold-lt); }
.ix-tm-role {
  font-size: .72rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; background: var(--ct-green-lt);
  color: var(--ct-green); padding: 3px 8px; border-radius: 4px; align-self: flex-start;
}
.ix-tm-body h3 { font-family: var(--ct-ffh); font-size: 1rem; font-weight: 700; color: var(--ct-ink); margin: 4px 0 0; line-height: 1.3; }
.ix-tm-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .83rem; font-weight: 700; color: var(--ct-green);
  text-decoration: none; margin-top: auto; padding-top: 8px;
  border-top: 1px solid var(--ct-border);
}
.ix-tm-phone:hover { color: var(--ct-green-dk); }
.ix-team-cta { text-align: center; }

/* ================================================================
   GALLERY
================================================================ */
.ix-gallery { background: var(--ct-white); }
.ix-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 22px; margin-bottom: 8px;
}
.ix-gallery-item {
  position: relative; border-radius: var(--ct-rad-lg); overflow: hidden;
  height: 260px; box-shadow: var(--ct-shad); border: 1px solid var(--ct-border);
  transition: var(--ct-trans);
}
.ix-gallery-item:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.14); }
.ix-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s; }
.ix-gallery-item:hover img { transform: scale(1.07); }
.ix-gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent,rgba(6,61,57,.9));
  color: #fff; padding: 30px 20px 20px;
  transform: translateY(100%); transition: transform .4s ease;
}
.ix-gallery-item:hover .ix-gallery-cap { transform: translateY(0); }
.ix-gallery-cap h4 { font-family: var(--ct-ffh); font-size: 1.1rem; margin-bottom: 5px; color: var(--ct-gold-lt); }
.ix-gallery-cap p  { font-size: .88rem; opacity: .88; margin: 0; line-height: 1.4; }
.ix-gallery-empty  { text-align: center; color: var(--ct-ink-muted); padding: 40px 0; }

/* ================================================================
   CTA BANNER
================================================================ */
.ix-cta {
  position: relative; padding: 90px 0;
  background: linear-gradient(135deg,var(--ct-green) 0%,var(--ct-green-dk) 100%);
  overflow: hidden;
}
.ix-cta-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); pointer-events: none; }
.ix-cta-r1 { width: 500px; height: 500px; top: -180px; right: -100px; }
.ix-cta-r2 { width: 320px; height: 320px; bottom: -120px; left: -60px; border-color: rgba(255,193,7,.07); }
.ix-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; position: relative; z-index: 2;
}
.ix-cta-h2 {
  font-family: var(--ct-ffh);
  font-size: clamp(1.7rem,3.5vw,2.4rem);
  font-weight: 800; color: #fff; margin: 0 0 12px; line-height: 1.2;
}
.ix-cta-hl { color: var(--ct-gold-lt); }
.ix-cta-sub { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0; max-width: 520px; }
.ix-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.ix-wa-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 14px 24px; border-radius: var(--ct-rad);
  font-size: .97rem; font-weight: 700; transition: var(--ct-trans);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.ix-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); color: #fff; }
.ix-wa-btn i { font-size: 1.1rem; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .ix-two-col { gap: 48px; }
  .ix-vs-grid { gap: 48px; }
  .ix-join-grid { gap: 40px; }
  .ix-team-grid { grid-template-columns: repeat(2,1fr); }
  /* Lock image height at desktop size on tablet — no stretching */
  .ix-tm-img-wrap { height: 260px; }
}
@media (max-width: 860px) {
  .ix-two-col,
  .ix-join-grid,
  .ix-vs-grid,
  .ix-cta-inner { grid-template-columns: 1fr; gap: 40px; flex-direction: column; }
  .ix-two-col-rev { direction: ltr; }
  .ix-float-about,.ix-float-elig { display: none; }
  .ix-tb-sep { display: none; }
  .ix-tb-item { min-width: 50%; border-bottom: 1px solid var(--ct-border); }
  .ix-img-main,.ix-blood-img-wrap img,.ix-elig-img-wrap img { height: 280px; }
  /* CTA text alignment */
  .ix-cta-text { text-align: center; }
  .ix-cta-sub  { margin: 0 auto; }
  .ix-cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
  /* ── Hero: compact on mobile ── */
  .ix-hero {
    min-height: auto;
    height: auto;
  }
  .ix-hero-inner {
    padding: 52px 16px 44px;
  }
  .ix-hero-bg, .ix-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .ix-hero-h1 { font-size: clamp(1.6rem, 6vw, 2rem); line-height: 1.2; }
  .ix-hero-sub { font-size: 0.9rem; margin-bottom: 24px; }
  .ix-hero-eyebrow { font-size: 0.75rem; margin-bottom: 12px; }
  .ix-sec { padding: 56px 0; }
  .ix-video-sec { padding: 56px 0; }
  .ix-cta { padding: 56px 0; }
  .ix-wrap { padding: 0 16px; }

  /* Horizontal card layout — image stays fixed 120px wide, never stretches */
  .ix-team-grid { grid-template-columns: 1fr; gap: 14px; }
  .ix-tm-card { flex-direction: row; align-items: stretch; }
.ix-tm-img-wrap {
  width: 120px !important;
  min-width: 120px !important;
  height: auto !important;
  min-height: 150px;
}
  .ix-tm-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .ix-tm-body { flex: 1; padding: 12px 14px 14px; gap: 4px; }
  .ix-tm-role { font-size: 0.66rem; padding: 3px 7px; }
  .ix-tm-body h3 { font-size: 0.95rem; }
  .ix-tm-phone { font-size: 0.8rem; padding-top: 8px; }
  /* Hide hover overlay on touch screens */
  .ix-tm-overlay { display: none; }

  .ix-feat-row,.ix-blood-feats { grid-template-columns: 1fr; }
  .ix-vs-inner iframe { height: 220px; }
  .ix-vs-counter-card { padding: 28px 20px; }
  .ix-tb-item { min-width: 100%; }
  .ix-cta-actions { width: 100%; justify-content: center; flex-direction: column; }
  .ix-wa-btn, .ix-btn-white { width: 100%; justify-content: center; }
  .ix-hero-actions { flex-direction: column; align-items: center; }
  .ix-btn-primary { width: 100%; justify-content: center; }
  .ix-btn-ghost { width: 100%; justify-content: center; }
  .ix-razorpay-wrap { width: 100%; display: flex; justify-content: center; }

  /* About section mobile */
  .ix-about-visual, .ix-blood-img-col, .ix-elig-img-col { order: -1; }
  .ix-img-main { height: 240px; border-radius: var(--ct-rad); }
  .ix-blood-img-wrap img, .ix-elig-img-wrap img { height: 240px; }

  /* Steps section */
  .ix-step { gap: 12px; }
  .ix-step-num { font-size: 2rem; }
  .ix-bank-card { padding: 24px 18px; }

  /* Gallery grid */
  .ix-gallery-grid { gap: 12px; }

  /* Section headers */
  .ix-sec-h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .ix-sec-sub { font-size: 0.95rem; }

  /* Video section */
  .ix-vs-h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .ix-vs-sub { font-size: 0.9rem; }
  .ix-vs-pills { flex-direction: column; gap: 8px; }
  .ix-vs-pill { width: 100%; }

  /* Eligibility list */
  .ix-elig-list li { font-size: 0.9rem; }

  /* Blood section feats */
  .ix-bf-card { padding: 12px; }
}

/* Extra small screens (360px and below) */
@media (max-width: 380px) {
  .ix-hero-h1 { font-size: 1.4rem; }
  .ix-hero-inner { padding: 40px 12px 36px; }
  .ix-sec-h2  { font-size: 1.4rem; }
  .ix-wrap    { padding: 0 12px; }
  .ix-btn-primary, .ix-btn-ghost { font-size: 0.875rem; padding: 12px 16px; }
}



:root {
  --ab-green:      #0C625D;
  --ab-green-dk:   #063d39;
  --ab-green-dk:   #063d39;
  --ab-green-lt:   #e6f4f3;
  --ab-gold:       #D4960A;
  --ab-gold-lt:    #FFC107;
  --ab-ivory:      #FAFAF7;
  --ab-white:      #ffffff;
  --ab-ink:        #1a2e2c;
  --ab-ink-mid:    #3d5450;
  --ab-ink-muted:  #7a9390;
  --ab-border:     #dde8e7;
  --ab-radius:     14px;
  --ab-radius-lg:  22px;
  --ab-shadow:     0 8px 32px rgba(0,0,0,0.08);
  --ab-shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
  --ab-trans:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ab-ff-head:    'Playfair Display', Georgia, serif;
  --ab-ff-body:    'DM Sans', sans-serif;
}

/* ---- Reset scope ---- */
.ab-hero, .ab-trust-bar, .ab-intro-section,
.ab-mv-section, .ab-eligibility-section,
.ab-benefits-section, .ab-register-section {
  font-family: var(--ab-ff-body);
}

.ab-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================================
   HERO
================================================================ */
.ab-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ab-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: brightness(0.4);
}
.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6,61,57,0.75) 0%, rgba(26,46,44,0.65) 100%);
}
.ab-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.ab-ring-1 { width: 420px; height: 420px; top: -140px; right: -80px; }
.ab-ring-2 { width: 280px; height: 280px; bottom: -100px; left: -60px; }

.ab-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 24px 64px;
  max-width: 760px;
  margin: 0 auto;
}
.ab-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.ab-breadcrumb a { color: var(--ab-gold-lt); text-decoration: none; font-weight: 600; }
.ab-breadcrumb a:hover { color: #fff; }
.ab-breadcrumb svg { opacity: 0.4; }
.ab-hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ab-gold-lt);
  margin-bottom: 16px;
}
.ab-hero h1 {
  font-family: var(--ab-ff-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.ab-hero h1 em { font-style: italic; color: var(--ab-gold-lt); }
.ab-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}
.ab-hero-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ab-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.ab-chip i { color: var(--ab-gold-lt); font-size: 0.8rem; }

/* ================================================================
   TRUST BAR — identical to contactus
================================================================ */
.ab-trust-bar {
  background: var(--ab-white);
  border-bottom: 1px solid var(--ab-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ab-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ab-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 0.88rem;
  color: var(--ab-ink-mid);
  flex: 1;
  min-width: 200px;
}
.ab-trust-item i {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--ab-green-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--ab-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ab-trust-item strong { color: var(--ab-ink); }
.ab-trust-sep { width: 1px; height: 40px; background: var(--ab-border); flex-shrink: 0; }

/* ================================================================
   SHARED SECTION HEADER
================================================================ */
.ab-sec-header { text-align: center; margin-bottom: 60px; }
.ab-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ab-green);
  margin-bottom: 16px;
}
.ab-label-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ab-gold); display: inline-block; }
.ab-sec-header h2,
.ab-intro-text h2,
.ab-benefits-text h2 {
  font-family: var(--ab-ff-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--ab-ink);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.ab-sec-header p {
  font-size: 1.05rem;
  color: var(--ab-ink-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.ab-accent-word {
  color: var(--ab-green);
  position: relative;
  display: inline-block;
}
.ab-accent-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: var(--ab-gold-lt);
  border-radius: 2px;
}

/* ================================================================
   INTRO SPLIT
================================================================ */
.ab-intro-section {
  padding: 100px 0;
  background: var(--ab-ivory);
}
.ab-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image stack */
.ab-intro-visual { position: relative; }
.ab-img-stack { position: relative; }
.ab-img-main-wrap {
  position: relative;
  border-radius: var(--ab-radius-lg);
  overflow: hidden;
  box-shadow: var(--ab-shadow-lg);
}
.ab-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.ab-img-main-wrap:hover .ab-img-main { transform: scale(1.03); }

.ab-play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ab-green);
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--ab-trans);
  padding-left: 4px;
}
.ab-play-btn:hover {
  background: var(--ab-green);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.ab-img-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 130px;
  height: 90px;
  border-radius: var(--ab-radius);
  overflow: hidden;
  border: 5px solid var(--ab-white);
  box-shadow: var(--ab-shadow);
}
.ab-img-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

/* Floating stat cards */
.ab-stat-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ab-white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid var(--ab-border);
  min-width: 130px;
}
.ab-stat-float-1 { top: 30px; left: -24px; }
.ab-stat-float-2 { top: 110px; left: -24px; }
.ab-stat-icon {
  width: 36px; height: 36px;
  background: var(--ab-green-lt);
  color: var(--ab-green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ab-stat-icon-gold { background: #fff8e1; color: var(--ab-gold); }
.ab-stat-text { display: flex; flex-direction: column; gap: 1px; }
.ab-stat-text strong { font-size: 0.88rem; font-weight: 700; color: var(--ab-ink); }
.ab-stat-text span { font-size: 0.75rem; color: var(--ab-ink-muted); }

/* Text side */
.ab-intro-text .ab-label-tag { margin-bottom: 14px; }
.ab-lead {
  font-size: 1.08rem;
  color: var(--ab-ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 500;
}
.ab-para { font-size: 0.97rem; color: var(--ab-ink-mid); line-height: 1.8; margin-bottom: 14px; }

/* Feature boxes */
.ab-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 28px; }
.ab-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--ab-white);
  border: 1px solid var(--ab-border);
  border-radius: var(--ab-radius);
  padding: 16px;
  transition: var(--ab-trans);
}
.ab-feature-box:hover { border-color: var(--ab-green); box-shadow: var(--ab-shadow); }
.ab-feature-icon {
  width: 38px; height: 38px;
  background: var(--ab-green-lt);
  color: var(--ab-green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ab-feature-icon-gold { background: #fff8e1; color: var(--ab-gold); }
.ab-feature-box p { font-size: 0.84rem; color: var(--ab-ink-mid); margin: 0; line-height: 1.5; }

/* Action buttons */
.ab-intro-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ab-green);
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--ab-radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--ab-ff-body);
  letter-spacing: 0.2px;
  transition: var(--ab-trans);
  box-shadow: 0 4px 16px rgba(12,98,93,0.25);
}
.ab-btn-primary:hover {
  background: var(--ab-green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(12,98,93,0.35);
  color: #fff;
}
.ab-btn-primary i { font-size: 0.85rem; transition: transform 0.25s; }
.ab-btn-primary:hover i { transform: translateX(4px); }
.ab-btn-lg { padding: 16px 32px; font-size: 1rem; }

.ab-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ab-green);
  border: 1.5px solid var(--ab-green);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--ab-radius);
  font-size: 0.93rem;
  font-weight: 700;
  font-family: var(--ab-ff-body);
  transition: var(--ab-trans);
}
.ab-btn-outline:hover {
  background: var(--ab-green-lt);
  color: var(--ab-green-dk);
}
.ab-btn-outline-dark {
  color: var(--ab-ink);
  border-color: var(--ab-border);
}
.ab-btn-outline-dark:hover { background: var(--ab-ivory); color: var(--ab-green); border-color: var(--ab-green); }

/* ================================================================
   MISSION + VISION
================================================================ */
.ab-mv-section {
  padding: 100px 0;
  background: var(--ab-white);
}
.ab-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ab-mv-card {
  background: var(--ab-ivory);
  border: 1px solid var(--ab-border);
  border-radius: var(--ab-radius-lg);
  padding: 40px 36px;
  transition: var(--ab-trans);
}
.ab-mv-card:hover { box-shadow: 0 16px 48px rgba(12,98,93,0.1); border-color: rgba(12,98,93,0.2); }
.ab-mv-card-primary {
  background: var(--ab-green);
  border-color: var(--ab-green);
  color: rgba(255,255,255,0.9);
}

.ab-mv-card-primary h3,
.ab-mv-card-primary p,
.ab-mv-card-primary li { color: rgba(255,255,255,0.9); }
.ab-mv-icon {
  width: 52px; height: 52px;
  background: var(--ab-green-lt);
  color: var(--ab-green);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.ab-mv-card-primary .ab-mv-icon { background: rgba(255,255,255,0.15); color: var(--ab-gold-lt); }
.ab-mv-icon-gold { background: #fff8e1; color: var(--ab-gold); }
.ab-mv-card h3 {
  font-family: var(--ab-ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ab-ink);
  margin: 0 0 14px;
}
.ab-mv-card p { font-size: 0.95rem; color: var(--ab-ink-mid); line-height: 1.75; margin-bottom: 14px; }
.ab-mv-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.ab-mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.ab-mv-list li i { color: var(--ab-gold-lt); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }
.ab-quote-block {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 3px solid var(--ab-gold-lt);
  background: var(--ab-green-lt);
  border-radius: 0 8px 8px 0;
}
.ab-quote-block blockquote {
  font-family: var(--ab-ff-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--ab-green);
  margin: 0;
  line-height: 1.6;
}

/* ================================================================
   ELIGIBILITY
================================================================ */
.ab-eligibility-section {
  padding: 100px 0;
  background: var(--ab-ivory);
}
.ab-eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ab-elig-card {
  background: var(--ab-white);
  border: 1px solid var(--ab-border);
  border-radius: var(--ab-radius);
  padding: 28px 24px;
  transition: var(--ab-trans);
  position: relative;
  overflow: hidden;
}
.ab-elig-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ab-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.ab-elig-card:hover::before { transform: scaleX(1); }
.ab-elig-card:hover { box-shadow: 0 12px 36px rgba(12,98,93,0.1); transform: translateY(-4px); }
.ab-elig-card-highlight {
  background: var(--ab-green);
  border-color: var(--ab-green);
}
.ab-elig-card-highlight h4,
.ab-elig-card-highlight p { color: rgba(255,255,255,0.92); }
.ab-elig-card-highlight .ab-elig-icon { background: rgba(255,255,255,0.15); color: var(--ab-gold-lt); }
.ab-elig-card-highlight::before { background: var(--ab-gold-lt); }
.ab-elig-icon {
  width: 46px; height: 46px;
  background: var(--ab-green-lt);
  color: var(--ab-green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.ab-elig-card h4 {
  font-family: var(--ab-ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ab-ink);
  margin: 0 0 10px;
}
.ab-elig-card p { font-size: 0.88rem; color: var(--ab-ink-muted); line-height: 1.65; margin: 0; }

/* ================================================================
   BENEFITS
================================================================ */
.ab-benefits-section {
  padding: 100px 0;
  background: var(--ab-green);
}
.ab-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.ab-label-tag-light { color: rgba(255,255,255,0.75); }
.ab-label-tag-light .ab-label-dot { background: var(--ab-gold-lt); }
.ab-benefits-text h2 { color: #fff; margin-bottom: 16px; }
.ab-accent-word-light {
  color: var(--ab-gold-lt);
  position: relative;
  display: inline-block;
}
.ab-accent-word-light::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: rgba(255,193,7,0.4);
  border-radius: 2px;
}
.ab-benefits-lead { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.ab-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ab-white);
  color: var(--ab-green);
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--ab-radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--ab-ff-body);
  transition: var(--ab-trans);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.ab-btn-white:hover { background: var(--ab-ivory); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); color: var(--ab-green-dk); }
.ab-btn-white i { font-size: 0.85rem; transition: transform 0.25s; }
.ab-btn-white:hover i { transform: translateX(4px); }

/* Benefit items */
.ab-benefits-cards { display: flex; flex-direction: column; gap: 0; }
.ab-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: var(--ab-trans);
}
.ab-benefit-item:last-child { border-bottom: none; }
.ab-benefit-item:hover { transform: translateX(6px); }
.ab-benefit-num {
  font-family: var(--ab-ff-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.ab-benefit-item:hover .ab-benefit-num { color: var(--ab-gold-lt); }
.ab-benefit-body h4 {
  font-family: var(--ab-ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.ab-benefit-body p { font-size: 0.9rem; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.6; }

/* ================================================================
   REGISTER STEPS
================================================================ */
.ab-register-section {
  padding: 100px 0;
  background: var(--ab-white);
}
.ab-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
  justify-content: center;
}
.ab-step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: var(--ab-ivory);
  border-radius: var(--ab-radius-lg);
  border: 1px solid var(--ab-border);
  position: relative;
  transition: var(--ab-trans);
}
.ab-step:hover { box-shadow: 0 16px 44px rgba(12,98,93,0.1); transform: translateY(-6px); border-color: var(--ab-green); }
.ab-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ab-green);
  color: #fff;
  font-family: var(--ab-ff-head);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.ab-step-icon {
  width: 56px; height: 56px;
  background: var(--ab-green-lt);
  color: var(--ab-green);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.ab-step-icon-gold { background: #fff8e1; color: var(--ab-gold); }
.ab-step h4 {
  font-family: var(--ab-ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ab-ink);
  margin: 0 0 8px;
}
.ab-step p { font-size: 0.85rem; color: var(--ab-ink-muted); margin: 0; line-height: 1.6; }
.ab-step p a { color: var(--ab-green); font-weight: 700; text-decoration: none; }
.ab-step p a:hover { text-decoration: underline; }

.ab-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-green);
  font-size: 0.85rem;
  opacity: 0.4;
  padding: 0 8px;
  margin-top: 32px;
  flex-shrink: 0;
}

.ab-register-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .ab-intro-grid { gap: 48px; }
  .ab-mv-grid { gap: 20px; }
  .ab-benefits-layout { gap: 48px; }
  .ab-eligibility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .ab-intro-grid,
  .ab-mv-grid,
  .ab-benefits-layout { grid-template-columns: 1fr; }
  .ab-intro-grid { gap: 40px; }
  .ab-stat-float { display: none; }
  .ab-img-badge { right: 12px; bottom: 12px; }
  .ab-trust-sep { display: none; }
  .ab-trust-item { min-width: 50%; border-bottom: 1px solid var(--ab-border); }
  .ab-steps-grid { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .ab-step { max-width: 200px; }
  .ab-step-connector { display: none; }
}
@media (max-width: 640px) {
  .ab-hero { min-height: 340px; }
  .ab-hero h1 { font-size: 2rem; }
  .ab-intro-section, .ab-mv-section, .ab-eligibility-section,
  .ab-benefits-section, .ab-register-section { padding: 68px 0 60px; }
  .ab-img-main { height: 280px; }
  .ab-eligibility-grid { grid-template-columns: 1fr; }
  .ab-feature-row { grid-template-columns: 1fr; }
  .ab-trust-item { min-width: 100%; }
  .ab-steps-grid { gap: 14px; }
  .ab-step { max-width: 100%; }
  .ab-mv-card { padding: 28px 22px; }
}



/* contact us */

/* ---- Variables ---- */
:root {
  --ct-green:      #0C625D;
  --ct-green-dk:   #063d39;
  --ct-green-lt:   #e6f4f3;
  --ct-gold:       #D4960A;
  --ct-gold-lt:    #FFC107;
  --ct-ivory:      #FAFAF7;
  --ct-white:      #ffffff;
  --ct-ink:        #1a2e2c;
  --ct-ink-mid:    #3d5450;
  --ct-ink-muted:  #7a9390;
  --ct-border:     #dde8e7;
  --ct-radius-sm:  8px;
  --ct-radius:     14px;
  --ct-radius-lg:  22px;
  --ct-shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --ct-shadow:     0 8px 32px rgba(0,0,0,0.08);
  --ct-shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
  --ct-trans:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ct-ff-head:    'Playfair Display', Georgia, serif;
  --ct-ff-body:    'DM Sans', sans-serif;
}

/* ---- Base ---- */
.ct-hero, .ct-trust-bar, .ct-team-section,
.ct-contact-section, .ct-faq-section,
.ct-form-card, .ct-tm-card {
  font-family: var(--ct-ff-body);
}

/* ---- Layout ---- */
.ct-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================================
   HERO
================================================================ */
.ct-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ct-green-dk);
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(12,98,93,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(6,61,57,0.45) 0%, transparent 60%),
    linear-gradient(160deg, #0a2e2b 0%, #063d39 45%, #0f4a44 100%);
}
.ct-decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.ct-ring-1 { width: 420px; height: 420px; top: -140px; right: -80px; }
.ct-ring-2 { width: 280px; height: 280px; bottom: -100px; left: -60px; }

.ct-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 24px 64px;
  max-width: 760px;
  margin: 0 auto;
}
.ct-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.ct-breadcrumb a { color: var(--ct-gold-lt); text-decoration: none; font-weight: 600; }
.ct-breadcrumb a:hover { color: #fff; }

.ct-hero-eyebrow {
  font-family: var(--ct-ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ct-gold-lt);
  margin-bottom: 16px;
}
.ct-hero h1 {
  font-family: var(--ct-ff-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.ct-hero h1 em {
  font-style: italic;
  color: var(--ct-gold-lt);
}
.ct-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
}
.ct-hero-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: var(--ct-trans);
}
.ct-chip:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.35); }
.ct-chip i { color: var(--ct-gold-lt); font-size: 0.8rem; }
.ct-chip-plain { cursor: default; }
.ct-chip-plain:hover { background: rgba(255,255,255,0.1); }

/* ================================================================
   TRUST BAR
================================================================ */
.ct-trust-bar {
  background: var(--ct-white);
  border-bottom: 1px solid var(--ct-border);
  box-shadow: var(--ct-shadow-sm);
}
.ct-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.ct-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 0.88rem;
  color: var(--ct-ink-mid);
  flex: 1;
  min-width: 200px;
}
.ct-trust-item i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ct-green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ct-trust-item strong { color: var(--ct-ink); }
.ct-trust-sep {
  width: 1px;
  height: 40px;
  background: var(--ct-border);
  flex-shrink: 0;
}

/* ================================================================
   SHARED SECTION HEADER
================================================================ */
.ct-sec-header {
  text-align: center;
  margin-bottom: 60px;
}
.ct-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ct-green);
  margin-bottom: 16px;
}
.ct-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ct-gold);
  display: inline-block;
  flex-shrink: 0;
}
.ct-sec-header h2, .ct-info-panel h2 {
  font-family: var(--ct-ff-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--ct-ink);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.ct-accent-word {
  color: var(--ct-green);
  position: relative;
  display: inline-block;
}
.ct-accent-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: var(--ct-gold-lt);
  border-radius: 2px;
}
.ct-sec-header p {
  font-size: 1.05rem;
  color: var(--ct-ink-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ================================================================
   TEAM SECTION
================================================================ */
.ct-team-section {
  padding: 100px 0 80px;
  background: var(--ct-ivory);
}
.ct-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ct-tm-card {
  background: var(--ct-white);
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  box-shadow: var(--ct-shadow);
  border: 1px solid var(--ct-border);
  transition: var(--ct-trans);
  display: flex;
  flex-direction: column;
}
.ct-tm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(12,98,93,0.16);
  border-color: rgba(12,98,93,0.2);
}

.ct-tm-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--ct-green-lt);
}
.ct-tm-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ct-tm-card:hover .ct-tm-photo { transform: scale(1.06); }

.ct-tm-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,61,57,0.0) 30%, rgba(6,61,57,0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ct-tm-card:hover .ct-tm-photo-overlay { opacity: 1; }
.ct-tm-overlay-links { display: flex; gap: 10px; }
.ct-tm-overlay-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.82rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.ct-tm-overlay-links a:hover {
  background: var(--ct-gold-lt);
  border-color: var(--ct-gold-lt);
  color: #333;
  transform: scale(1.12);
}

.ct-tm-body {
  padding: 20px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
  border-top: 3px solid var(--ct-green-lt);
  transition: border-color 0.3s;
}
.ct-tm-card:hover .ct-tm-body { border-top-color: var(--ct-gold-lt); }

.ct-tm-role-badge {
  display: inline-block;
  background: var(--ct-green-lt);
  color: var(--ct-green);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  align-self: flex-start;
}
.ct-tm-body h3 {
  font-family: var(--ct-ff-head);
  font-size: 1.08rem; font-weight: 700;
  color: var(--ct-ink); margin: 4px 0 0; line-height: 1.3;
}
.ct-tm-desc {
  font-size: 0.83rem; color: var(--ct-ink-muted);
  line-height: 1.6; margin: 2px 0 0;
}
.ct-tm-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 700;
  color: var(--ct-green); text-decoration: none;
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--ct-border);
  transition: color 0.2s;
}
.ct-tm-phone i { font-size: 0.75rem; opacity: 0.7; }
.ct-tm-phone:hover { color: var(--ct-green-dk); }

/* ================================================================
   CONTACT SECTION
================================================================ */
.ct-contact-section {
  padding: 100px 0 100px;
  background: var(--ct-white);
}
.ct-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.ct-info-panel .ct-label-tag { margin-bottom: 14px; }
.ct-info-panel h2 { margin-bottom: 14px; }
.ct-info-intro {
  font-size: 1rem; color: var(--ct-ink-mid);
  line-height: 1.75; margin-bottom: 32px;
}

.ct-vol-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 36px;
}
.ct-vol-photo {
  position: relative; border-radius: var(--ct-radius);
  overflow: hidden; height: 170px;
  box-shadow: var(--ct-shadow-sm); border: 1px solid var(--ct-border);
}
.ct-vol-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block; transition: transform 0.4s ease;
}
.ct-vol-photo:hover img { transform: scale(1.05); }
.ct-vol-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,61,57,0.82));
  color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 22px 12px 10px;
  display: flex; align-items: center; gap: 6px; letter-spacing: 0.3px;
}
.ct-vol-photo-caption i { color: var(--ct-gold-lt); }

.ct-detail-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius); overflow: hidden;
}
.ct-detail-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid var(--ct-border);
  background: var(--ct-white); transition: background 0.2s;
}
.ct-detail-list li:last-child { border-bottom: none; }
.ct-detail-list li:hover { background: var(--ct-green-lt); }
.ct-detail-icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 9px; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.ct-icon-green { background: var(--ct-green-lt); color: var(--ct-green); }
.ct-icon-gold  { background: #fff8e1; color: var(--ct-gold); }
.ct-icon-wa    { background: #e8f8ef; color: #25D366; }
.ct-detail-text { display: flex; flex-direction: column; gap: 1px; }
.ct-detail-text strong { font-size: 0.84rem; font-weight: 700; color: var(--ct-ink); }
.ct-detail-text a, .ct-detail-text span { font-size: 0.84rem; color: var(--ct-ink-mid); text-decoration: none; }
.ct-detail-text a:hover { color: var(--ct-green); font-weight: 600; }

.ct-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ct-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none; transition: var(--ct-trans); letter-spacing: 0.2px;
}
.ct-wa-btn {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.ct-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); color: #fff; }
.ct-tg-btn {
  background: #0088cc; color: #fff;
  box-shadow: 0 4px 16px rgba(0,136,204,0.22);
}
.ct-tg-btn:hover { background: #0073ab; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,204,0.35); color: #fff; }

.ct-form-card {
  background: var(--ct-white); border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-lg);
  box-shadow: 0 16px 50px rgba(12,98,93,0.1); overflow: hidden;
}
.ct-form-top {
  background: linear-gradient(135deg, var(--ct-green) 0%, var(--ct-green-dk) 100%);
  padding: 36px 36px 30px; text-align: center;
  position: relative; overflow: hidden;
}
.ct-form-top::after {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -60px; right: -40px; pointer-events: none;
}
.ct-form-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ct-gold-lt); margin-bottom: 14px;
}
.ct-form-top h3 {
  font-family: var(--ct-ff-head);
  font-size: 1.45rem; font-weight: 700; color: #fff; margin: 0 0 6px;
}
.ct-form-top p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin: 0; }

.ct-form-body {
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.ct-field { display: flex; flex-direction: column; gap: 7px; }
.ct-field label { font-size: 0.84rem; font-weight: 700; color: var(--ct-ink); letter-spacing: 0.2px; }
.ct-field label abbr { text-decoration: none; color: var(--ct-green); margin-left: 2px; }
.ct-field-inner { position: relative; display: flex; align-items: center; }
.ct-fi {
  position: absolute; left: 14px;
  color: var(--ct-green); font-size: 0.82rem;
  pointer-events: none; z-index: 1; opacity: 0.7;
}
.ct-fi-top { top: 14px; align-self: flex-start; }
.ct-textarea-fi { align-items: flex-start; }
.ct-field-inner input, .ct-field-inner textarea {
  width: 100%; border: 1.5px solid var(--ct-border);
  border-radius: var(--ct-radius-sm);
  padding: 11px 14px 11px 40px;
  font-size: 0.93rem; color: var(--ct-ink);
  background: var(--ct-ivory); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  font-family: var(--ct-ff-body); line-height: 1.5;
}
.ct-field-inner textarea { resize: vertical; padding-top: 11px; }
.ct-field-inner input:focus, .ct-field-inner textarea:focus {
  border-color: var(--ct-green);
  box-shadow: 0 0 0 3px rgba(12,98,93,0.1);
  background: var(--ct-white);
}
.ct-field-hint { font-size: 0.78rem; color: var(--ct-ink-muted); padding-left: 2px; }

.ct-submit-btn {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; background: var(--ct-green); color: #fff;
  border: none; border-radius: var(--ct-radius-sm);
  padding: 15px 20px 15px 24px;
  font-size: 0.97rem; font-weight: 700; cursor: pointer;
  transition: var(--ct-trans); font-family: var(--ct-ff-body);
  letter-spacing: 0.2px; width: 100%; margin-top: 4px;
}
.ct-submit-btn:hover { background: var(--ct-green-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(12,98,93,0.3); }
.ct-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.ct-submit-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.ct-submit-btn:hover .ct-submit-icon { background: rgba(255,255,255,0.25); transform: translateX(4px); }

/* ================================================================
   FAQ SECTION
================================================================ */
.ct-faq-section {
  padding: 80px 0 100px;
  background: var(--ct-ivory);
}
.ct-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ct-faq-item {
  background: var(--ct-white);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 28px 24px;
  box-shadow: var(--ct-shadow-sm);
  transition: var(--ct-trans);
}
.ct-faq-item:hover {
  box-shadow: 0 12px 36px rgba(12,98,93,0.1);
  border-color: rgba(12,98,93,0.2);
  transform: translateY(-3px);
}
.ct-faq-item h3 {
  font-family: var(--ct-ff-head);
  font-size: 1rem; font-weight: 700;
  color: var(--ct-ink); margin: 0 0 12px;
  line-height: 1.4;
}
.ct-faq-item p {
  font-size: 0.9rem; color: var(--ct-ink-mid);
  line-height: 1.7; margin: 0;
}
.ct-faq-item a { color: var(--ct-green); font-weight: 600; }
.ct-faq-item a:hover { color: var(--ct-green-dk); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .ct-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ct-faq-grid  { grid-template-columns: repeat(2, 1fr); }
  .ct-contact-layout { gap: 44px; }
}

@media (max-width: 860px) {
  .ct-contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .ct-trust-inner { gap: 0; }
  .ct-trust-sep { display: none; }
  .ct-trust-item { min-width: 50%; padding: 16px 0; border-bottom: 1px solid var(--ct-border); }
  .ct-faq-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ct-hero { min-height: 320px; }
  .ct-hero h1 { font-size: 2rem; }
  .ct-team-section, .ct-contact-section, .ct-faq-section { padding: 68px 0 60px; }

  .ct-team-grid { grid-template-columns: 1fr; gap: 14px; }
  .ct-tm-card { flex-direction: row; align-items: stretch; }
  .ct-tm-photo-wrap {
    width: 120px !important; min-width: 120px !important;
    height: auto !important; min-height: 150px;
    flex-shrink: 0; border-radius: 0;
  }
  .ct-tm-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .ct-tm-body { flex: 1; padding: 12px 14px 14px; gap: 4px; }
  .ct-tm-role-badge { font-size: 0.66rem; padding: 3px 7px; }
  .ct-tm-body h3 { font-size: 0.95rem; }
  .ct-tm-desc { font-size: 0.78rem; }
  .ct-tm-phone { font-size: 0.8rem; padding-top: 8px; }
  .ct-tm-photo-overlay { display: none; }

  /* Mobile volunteer photos — show fully, not cropped */
  .ct-vol-photos { grid-template-columns: 1fr; gap: 12px; }
  .ct-vol-photo { height: 220px; }
  .ct-vol-photo img { object-fit: cover; object-position: center center; }

  .ct-form-body { padding: 24px 20px 28px; }
  .ct-form-top  { padding: 28px 20px 22px; }
  .ct-trust-item { min-width: 100%; }
}





