/* =========================================================
   PRAC FOUNDATION — DESIGN TOKENS
   Palette pulled from the PRAC mark:
   blue arc/dot, orange arc, green arc, yellow dot, slate wordmark
   ========================================================= */
:root{
  --blue-deep:   #145DA0;
  --blue:        #1C75BC;
  --blue-light:  #29ABE2;
  --orange:      #F7941D;
  --orange-deep: #E07B0E;
  --yellow:      #FDB813;
  --green:       #39B54A;
  --green-light: #8DC63F;
  --ink:         #23272A;
  --slate:       #58595B;
  --slate-soft:  #7B7D80;
  --white:       #FFFFFF;
  --off-white:   #F7F9FB;
  --off-white-2: #F0F3F6;
  --border:      #E6EAED;

  --font-display: 'Hind Siliguri', 'Sora', sans-serif;
  --font-body: 'Hind Siliguri', 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(28,117,188,.06);
  --shadow-md: 0 14px 40px rgba(28,60,90,.10);
  --shadow-lg: 0 24px 60px rgba(28,60,90,.16);

  --ease: cubic-bezier(.22,.9,.32,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; max-width:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--slate);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100%;
  position:relative;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink);
  margin:0 0 .5em;
  line-height:1.15;
  letter-spacing:-.01em;
}
p{ margin:0 0 1em; line-height:1.7; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input{ font-family:inherit; }

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:3px solid var(--blue-light);
  outline-offset:3px;
  border-radius:4px;
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .5s ease, visibility .5s ease;
}
.preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-arcs{ position:relative; width:80px; height:60px; }
.preloader-arcs .arc{
  position:absolute; bottom:0; width:56px; height:56px;
  border-radius:50%;
  border:7px solid transparent;
  animation:spin 1.1s linear infinite;
}
.arc-1{ left:0; border-top-color:var(--orange); border-right-color:var(--orange); animation-duration:1s;}
.arc-2{ left:12px; border-top-color:var(--blue); border-right-color:var(--blue); animation-duration:1.3s; animation-direction:reverse;}
.arc-3{ left:24px; border-top-color:var(--green); border-right-color:var(--green); animation-duration:.9s;}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* =========================================================
   ICONS / UTILITIES
   ========================================================= */
.icon-xs{ width:14px; height:14px; vertical-align:-2px; margin-right:4px; }
.icon-sm{ width:18px; height:18px; }
.text-accent{
  background:linear-gradient(92deg,var(--orange),var(--blue) 55%,var(--green));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.eyebrow{
  display:inline-block;
  font-family:var(--font-display);
  font-size:.78rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue);
  margin-bottom:14px;
  position:relative; padding-left:26px;
}
.eyebrow::before{
  content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:18px; height:3px; border-radius:3px;
  background:linear-gradient(90deg,var(--orange),var(--green));
}
.eyebrow-light{ color:var(--yellow); }
.eyebrow-light::before{ background:linear-gradient(90deg,var(--white),var(--yellow)); }

.section-head{ max-width:620px; margin:0 0 52px; }
.section-head.light h2, .section-head.light p{ color:var(--white); }
.section-head p{ font-size:1.05rem; }

.value-dot{ width:12px; height:12px; border-radius:50%; flex:none; margin-top:6px; display:inline-block; }
.dot-blue-bg{ background:var(--blue); }
.dot-orange-bg{ background:var(--orange); }
.dot-green-bg{ background:var(--green); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:600; font-size:.95rem;
  padding:14px 26px; border-radius:100px;
  border:none; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn svg{ transition:transform .25s var(--ease); }
.btn:hover svg{ transform:translateX(3px); }

.btn-primary{
  background:var(--blue-deep); color:var(--white);
  box-shadow:0 10px 24px rgba(20,93,160,.28);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(20,93,160,.36); }

.btn-ghost{
  background:transparent; color:var(--ink);
  border:1.5px solid var(--border);
}
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); }

.btn-outline{
  background:transparent; color:var(--blue-deep);
  border:1.5px solid var(--blue-deep);
}
.btn-outline:hover{ background:var(--blue-deep); color:var(--white); }

.btn-donate{
  position:relative;
  background:linear-gradient(100deg,var(--orange),var(--orange-deep));
  color:var(--white); padding:12px 22px;
  box-shadow:0 8px 18px rgba(247,148,29,.32);
}
.btn-donate:hover{ transform:translateY(-2px); }
.btn-donate-large{
  position:relative; width:100%; justify-content:center;
  background:linear-gradient(100deg,var(--orange),var(--orange-deep));
  color:var(--white); padding:16px 26px; font-size:1rem;
  box-shadow:0 10px 26px rgba(247,148,29,.32);
}
.btn-donate-large:hover{ transform:translateY(-2px); }

/* infinite pulse loop — minimal, single accent moment */
.btn-pulse{
  position:absolute; inset:0; border-radius:100px;
  border:2px solid rgba(247,148,29,.55);
  animation:pulseRing 2.4s var(--ease) infinite;
  pointer-events:none;
}
@keyframes pulseRing{
  0%{ opacity:.65; transform:scale(1); }
  100%{ opacity:0; transform:scale(1.28); }
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar{
  background:var(--ink);
  color:#C9CDD0;
  font-size:.82rem;
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:9px 24px; gap:20px; flex-wrap:wrap;
}
.topbar-left{ display:flex; gap:22px; }
.topbar-link{ display:flex; align-items:center; color:#C9CDD0; transition:color .2s; }
.topbar-link:hover{ color:var(--yellow); }
.topbar-right{ display:flex; align-items:center; gap:18px; }
.topbar-badge{
  font-size:.76rem; letter-spacing:.03em;
  color:var(--green-light); font-weight:500;
}
.social-mini{ display:flex; gap:8px; }
.social-dot{
  width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:transform .25s var(--ease), filter .25s var(--ease);
}
.social-dot svg{ width:13px; height:13px; transition:fill .2s; }
.social-dot:hover{ transform:translateY(-2px); filter:brightness(1.1); }
.social-dot.fb{ background:#1877F2; }
.social-dot.fb svg{ fill:#fff; }
.social-dot.yt{ background:#FF0000; }
.social-dot.yt svg{ fill:#fff; }
.social-dot.ig{ background:radial-gradient(circle at 30% 110%,#fdf497,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-dot.ig svg{ fill:#fff; }
.social-dot.wa{ background:#25D366; }
.social-dot.wa svg{ fill:#fff; }
.social-dot.xt{ background:#fff; }
.social-dot.xt svg{ fill:#0A0A0A; }
.social-mini-footer{ gap:12px; margin-top:4px; }
.social-mini-footer .social-dot{ width:40px; height:40px; opacity:.92; }
.social-mini-footer .social-dot svg{ width:19px; height:19px; }
.social-mini-footer .social-dot:hover{ opacity:1; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:500;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s ease, padding .3s ease;
}
.site-header.is-scrolled{ box-shadow:0 6px 24px rgba(20,60,90,.08); }
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px; gap:20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ width:46px; height:46px; object-fit:contain; border-radius:10px; }
.site-header .brand-logo{ width:62px; height:62px; }
.brand-word{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-family:var(--font-display); font-weight:800; font-size:1.3rem; color:var(--ink); letter-spacing:.01em; }
.brand-tag{ font-size:.62rem; letter-spacing:.22em; color:var(--slate-soft); font-weight:600; }

.main-nav{ display:flex; gap:6px; align-items:center; }
.nav-link{
  position:relative;
  font-family:var(--font-display); font-weight:600; font-size:.92rem;
  color:var(--slate); padding:10px 14px; border-radius:8px;
  transition:color .2s;
}
.nav-link::after{
  content:''; position:absolute; left:14px; right:14px; bottom:6px; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--green));
  transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease);
}
.nav-link:hover{ color:var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after{ transform:scaleX(1); }
.nav-link.is-active{ color:var(--blue-deep); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.hamburger{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:8px;
}
.hamburger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .3s, opacity .3s; }
.hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{ position:relative; padding:76px 0 0; background:var(--white); overflow:hidden; }
.hero::before{
  content:''; position:absolute; top:-180px; right:-160px; width:520px; height:520px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(41,171,226,.10),transparent 70%);
}
.hero-inner{
  display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;
  padding-bottom:60px; position:relative; z-index:1;
}
.hero-copy h1{ font-size:clamp(2.2rem,4.2vw,3.4rem); }
.hero-sub{ font-size:1.08rem; max-width:520px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin:28px 0 34px; }
.hero-trust{ display:flex; align-items:center; gap:14px; }
.hero-trust p{ margin:0; font-size:.92rem; color:var(--slate-soft); }
.hero-trust strong{ color:var(--ink); }
.avatars{ display:flex; }
.avatars img{
  width:34px; height:34px; border-radius:50%; border:3px solid var(--white);
  margin-left:-10px; object-fit:cover; display:block; flex:none;
}
.avatars img:first-child{ margin-left:0; }

.hero-art{ position:relative; display:flex; align-items:center; justify-content:center; }

.hero-slider{
  position:relative; width:100%; max-width:460px; aspect-ratio:4/5;
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  border:10px solid var(--white); outline:1px solid var(--border);
}
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.06);
  transition:opacity 1s var(--ease), transform 6s linear;
}
.hero-slide.is-active{ opacity:1; transform:scale(1); z-index:1; }
.hero-slide::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(15,25,35,.78) 0%,rgba(15,25,35,.15) 45%,transparent 70%);
}
.hero-slide-caption{
  position:absolute; left:20px; right:20px; bottom:44px; z-index:1;
  color:var(--white); font-family:var(--font-display); font-weight:600; font-size:.95rem; line-height:1.4;
}
.hero-slider-dots{
  position:absolute; left:0; right:0; bottom:16px; z-index:2;
  display:flex; justify-content:center; gap:8px;
}
.hero-dot{
  width:8px; height:8px; border-radius:50%; border:none; background:rgba(255,255,255,.45);
  transition:background .25s, transform .25s;
}
.hero-dot.is-active{ background:var(--white); transform:scale(1.3); }

.hero-float-card{
  position:absolute; background:var(--white); border-radius:var(--radius-sm);
  box-shadow:var(--shadow-md); padding:12px 16px; z-index:5;
  display:flex; flex-direction:column; line-height:1.2;
  animation:floatCard 5s ease-in-out infinite;
}
.hero-float-card strong{ font-family:var(--font-display); font-size:1.15rem; color:var(--ink); }
.hero-float-card span{ font-size:.74rem; color:var(--slate-soft); }
.card-1{ top:10%; left:6%; }
.card-2{ bottom:8%; right:6%; animation-delay:1.2s; }
@keyframes floatCard{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

/* infinite marquee strip */
.marquee{
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:var(--off-white); overflow:hidden; padding:14px 0;
}
.marquee-track{
  display:flex; gap:40px; white-space:nowrap; width:max-content;
  animation:marqueeScroll 22s linear infinite;
}
.marquee-track span{
  font-family:var(--font-display); font-weight:600; font-size:.85rem;
  letter-spacing:.04em; color:var(--slate-soft);
  display:flex; align-items:center; gap:40px;
}
.marquee-track span::after{ content:'✦'; color:var(--orange); margin-left:40px; }
@keyframes marqueeScroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =========================================================
   STATS
   ========================================================= */
.stats-section{ padding:52px 0; background:var(--off-white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.stat-card{
  text-align:center; padding:6px 16px; position:relative;
}
.stat-card::before{
  content:''; position:absolute; left:0; top:8px; bottom:8px; width:1px;
  background:var(--border);
}
.stat-card:first-child::before{ display:none; }
.stat-card:hover{ transform:none; box-shadow:none; }
.stat-icon{ display:none; }
.icon-blue{ background:rgba(28,117,188,.12); color:var(--blue-deep); }
.icon-orange{ background:rgba(247,148,29,.14); color:var(--orange-deep); }
.icon-green{ background:rgba(57,181,74,.14); color:var(--green); }
.icon-yellow{ background:rgba(253,184,19,.16); color:#B9860B; }
.stat-number, .stat-suffix{ font-family:var(--font-display); font-size:1.9rem; font-weight:700; color:var(--blue-deep); letter-spacing:-.01em; }
.stat-card p{ margin:4px 0 0; font-weight:500; color:var(--slate-soft); font-size:.84rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-section{ padding:40px 0 100px; }
.about-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:64px; align-items:center; }
.about-art{ position:relative; }
.about-frame{
  width:100%; max-width:460px;
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  border:10px solid var(--white); outline:1px solid var(--border);
  aspect-ratio:4/5; background:var(--off-white);
}
.about-img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.about-badge{
  position:absolute; bottom:-24px; left:-24px;
  background:var(--white); border-radius:var(--radius-sm); box-shadow:var(--shadow-md);
  padding:14px 18px; display:flex; align-items:center; gap:12px; max-width:230px;
}
.about-badge svg{ color:var(--green); flex:none; }
.about-badge strong{ display:block; font-family:var(--font-display); color:var(--ink); }
.about-badge span{ font-size:.78rem; color:var(--slate-soft); }
.about-values{ display:flex; flex-direction:column; gap:16px; margin:26px 0 30px; }
.value-item{ display:flex; gap:12px; }
.value-item strong{ display:block; color:var(--ink); font-family:var(--font-display); font-size:.98rem; }
.value-item p{ margin:2px 0 0; font-size:.92rem; }

/* =========================================================
   PROGRAMS
   ========================================================= */
.programs-section{ padding:20px 0 100px; background:var(--off-white); }
.programs-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.program-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:30px 26px; transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.program-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:transparent; }
.program-icon{
  width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.program-icon svg{ width:24px; height:24px; }
.program-card h3{ font-size:1.08rem; margin-bottom:8px; }
.program-card p{ font-size:.92rem; margin-bottom:16px; }
.card-link{
  font-family:var(--font-display); font-weight:600; font-size:.86rem; color:var(--blue-deep);
  display:inline-flex; align-items:center; gap:6px;
}
.card-link svg{ transition:transform .25s var(--ease); }
.card-link:hover svg{ transform:translateX(4px); }

/* =========================================================
   PROCESS
   ========================================================= */
.process-section{
  padding:90px 0; background:linear-gradient(160deg,var(--blue-deep),#0F4A80);
  color:var(--white);
}
.process-grid{
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center; gap:16px;
}
.process-step{ text-align:center; padding:0 10px; }
.process-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
  font-family:var(--font-display); font-weight:700; font-size:1.1rem;
  margin-bottom:16px; color:var(--yellow);
}
.process-step h3{ color:var(--white); }
.process-step p{ color:#CFE0F0; font-size:.92rem; }
.process-connector{
  width:70px; height:2px;
  background:repeating-linear-gradient(90deg,var(--orange) 0 8px,transparent 8px 16px);
}

/* =========================================================
   COMPACT DONATE STRIP (sits right under About)
   ========================================================= */
.donate-strip{
  padding:34px 0;
  background:var(--off-white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.donate-strip-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.donate-strip-text{ position:relative; padding-left:0; max-width:640px; }
.strip-dot{ width:9px; height:9px; border-radius:50%; display:inline-block; margin-right:4px; }
.donate-strip-text h3{
  font-size:1.2rem; margin:8px 0 4px; display:block;
}
.donate-strip-text p{ margin:0; font-size:.92rem; }
.btn-donate-strip{
  position:relative; flex:none;
  background:linear-gradient(100deg,var(--orange),var(--orange-deep));
  color:var(--white); padding:13px 24px;
  box-shadow:0 8px 18px rgba(247,148,29,.3);
}
.btn-donate-strip:hover{ transform:translateY(-2px); }

/* =========================================================
   DONATE / PAYMENT MODAL
   ========================================================= */
.donate-modal-overlay{
  position:fixed; inset:0; z-index:1000;
  background:rgba(20,30,40,.6); backdrop-filter:blur(3px);
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; visibility:hidden; transition:opacity .3s var(--ease), visibility .3s var(--ease);
}
.donate-modal-overlay.is-open{ opacity:1; visibility:visible; }
.donate-modal{
  position:relative; width:100%; max-width:480px; max-height:88vh; overflow-y:auto;
  background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  transform:translateY(24px) scale(.97); transition:transform .35s var(--ease);
}
.donate-modal-overlay.is-open .donate-modal{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:16px; right:16px; z-index:2;
  width:36px; height:36px; border-radius:50%; border:none;
  background:var(--off-white); color:var(--slate); display:flex; align-items:center; justify-content:center;
  transition:background .2s, color .2s, transform .2s;
}
.modal-close:hover{ background:var(--orange); color:var(--white); transform:rotate(90deg); }
.modal-close svg{ width:16px; height:16px; }

.modal-header{
  text-align:center; padding:36px 30px 22px;
  background:linear-gradient(180deg,var(--off-white),var(--white));
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-arcs{ width:110px; height:auto; margin:0 auto 12px; }
.modal-header h3{ font-size:1.3rem; margin-bottom:6px; }
.modal-org-name{ font-family:var(--font-display); font-weight:600; font-size:.92rem; color:var(--blue-deep); margin:0 0 6px; }
.modal-sub{ font-size:.86rem; color:var(--slate-soft); margin:0; }

.modal-body{ padding:8px 26px 6px; display:flex; flex-direction:column; gap:18px; }
.pay-card{
  border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 20px;
  background:var(--off-white);
}
.pay-card-head{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.pay-icon{
  width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex:none;
}
.pay-icon svg{ width:18px; height:18px; }
.pay-card-head h4{ margin:0; font-size:1rem; }
.pay-details{ margin:0; }
.pay-row{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:8px 0; border-top:1px dashed var(--border); font-size:.9rem;
}
.pay-row:first-child{ border-top:none; }
.pay-row dt{ color:var(--slate-soft); font-weight:500; }
.pay-row dd{ margin:0; font-weight:700; color:var(--ink); text-align:right; }
.pay-row-solo{ justify-content:center; padding-top:2px; }
.copy-row dd{ display:flex; align-items:center; gap:8px; }
.copy-value{ font-family:var(--font-display); letter-spacing:.02em; }
.copy-btn{
  width:28px; height:28px; border-radius:8px; border:1px solid var(--border);
  background:var(--white); color:var(--blue-deep); display:flex; align-items:center; justify-content:center;
  transition:background .2s, color .2s, transform .2s; flex:none;
}
.copy-btn svg{ width:14px; height:14px; }
.copy-btn:hover{ background:var(--blue-deep); color:var(--white); }
.copy-btn.is-copied{ background:var(--green); color:var(--white); border-color:var(--green); }
.pay-note{ display:block; text-align:center; font-size:.78rem; color:var(--slate-soft); margin-top:10px; }

.modal-contact{ display:flex; gap:12px; align-items:flex-start; padding:4px 2px 6px; }
.modal-contact h4{ font-size:.94rem; margin-bottom:4px; }
.modal-contact p{ margin:0; font-size:.88rem; }
.modal-phone-link{ color:var(--blue-deep); font-weight:600; }

.modal-footer{
  text-align:center; padding:20px 26px 30px; margin-top:6px;
  border-top:1px solid var(--border);
}
.trust-label{ font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; color:var(--slate-soft); margin-bottom:4px; }
.chairman-name{ font-family:var(--font-display); font-weight:700; color:var(--ink); font-size:1.02rem; margin-bottom:2px; }
.chairman-title{ font-size:.82rem; color:var(--slate-soft); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section{ padding:100px 0; }
.gallery-grid{
  display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:16px;
}
.gallery-item{
  position:relative; margin:0; border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.gallery-item.span-2{ grid-column:span 2; grid-row:span 2; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:16px;
  background:linear-gradient(to top,rgba(20,30,40,.75),transparent);
  color:var(--white); font-size:.86rem; font-weight:600;
  opacity:0; transform:translateY(8px); transition:opacity .3s, transform .3s;
}
.gallery-item:hover figcaption{ opacity:1; transform:translateY(0); }

/* Gallery filter buttons */
.gallery-filters{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  margin:28px 0 40px;
}
.filter-btn{
  font-family:var(--font-display); font-weight:600; font-size:.86rem;
  padding:9px 20px; border-radius:999px; border:1px solid var(--border);
  background:var(--white); color:var(--slate); cursor:pointer;
  transition:background .25s, color .25s, border-color .25s, transform .2s;
}
.filter-btn:hover{ border-color:var(--blue-light); color:var(--blue-deep); transform:translateY(-1px); }
.filter-btn.is-active{
  background:var(--blue-deep); border-color:var(--blue-deep); color:var(--white);
}
.gallery-item.is-hidden{ display:none; }
.gallery-item{ animation:galleryFadeIn .4s var(--ease); }
@keyframes galleryFadeIn{ from{ opacity:0; transform:scale(.96); } to{ opacity:1; transform:scale(1); } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-section{ padding:90px 0; background:var(--ink); color:var(--white); }
.testimonial-carousel{ display:flex; align-items:center; gap:16px; max-width:1200px; margin:0 auto; }
.testimonial-viewport{ overflow:hidden; flex:1; }
.testimonial-track{
  display:flex; transition:transform .55s var(--ease);
}
.testi-card{
  box-sizing:border-box; padding:8px 10px;
}
.testi-card-inner{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg); padding:30px 26px; text-align:center; height:100%;
}
.testi-quote-mark{
  width:32px; height:26px; margin:0 auto 16px; opacity:.9;
}
.testi-card p{
  font-family:var(--font-display); font-size:1.02rem; font-weight:500; color:var(--white);
  line-height:1.6; margin:0 0 20px;
}
.testi-person{ display:flex; align-items:center; justify-content:center; gap:12px; }
.testi-avatar{
  width:38px; height:38px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:.95rem; color:var(--white);
}
.testi-person cite{ display:block; text-align:left; font-style:normal; }
.testi-person .testi-name{ display:block; font-weight:600; font-size:.9rem; color:var(--white); }
.testi-person .testi-role{ display:block; font-size:.76rem; color:rgba(255,255,255,.55); }
.testi-arrow{
  flex:none; width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.18);
  background:transparent; color:var(--white); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s, border-color .2s, opacity .2s;
}
.testi-arrow:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.35); }
.testi-arrow svg{ width:18px; height:18px; }
.testimonial-dots{ display:flex; justify-content:center; gap:10px; margin-top:26px; }
.dot{
  width:9px; height:9px; border-radius:50%; border:none; background:rgba(255,255,255,.25);
  transition:background .25s, transform .25s;
}
.dot.is-active{ background:var(--orange); transform:scale(1.3); }

/* =========================================================
   NEWS
   ========================================================= */
.news-section{ padding:100px 0; background:var(--off-white); }
.news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.news-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:26px; transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.news-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.news-thumb{
  width:100%; height:120px; border-radius:14px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center;
}
.news-thumb svg{ width:34px; height:34px; }
.thumb-blue{ background:rgba(28,117,188,.1); color:var(--blue-deep); }
.thumb-orange{ background:rgba(247,148,29,.12); color:var(--orange-deep); }
.thumb-green{ background:rgba(57,181,74,.12); color:var(--green); }
.news-date{ font-size:.78rem; color:var(--slate-soft); font-weight:600; letter-spacing:.03em; }
.news-card h3{ font-size:1.06rem; margin:8px 0 8px; }
.news-card p{ font-size:.92rem; margin-bottom:14px; }

/* =========================================================
   GET INVOLVED
   ========================================================= */
.involved-section{ padding:100px 0; }
.involved-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.involved-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:26px; }
.involved-stats{ display:flex; flex-direction:column; gap:22px; }
.involved-stat{ display:flex; gap:14px; padding:20px; border-radius:var(--radius-md); background:var(--off-white); border:1px solid var(--border); }
.involved-stat strong{ font-family:var(--font-display); color:var(--ink); }
.involved-stat p{ margin:2px 0 0; font-size:.88rem; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter-section{ padding:70px 0; background:var(--off-white-2); }
.newsletter-inner{
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  background:var(--white); border-radius:var(--radius-lg); padding:44px 48px;
  box-shadow:var(--shadow-sm); border:1px solid var(--border); position:relative;
}
.newsletter-inner h2{ font-size:1.5rem; margin-bottom:6px; }
.newsletter-inner p{ margin:0; }
.newsletter-form{ display:flex; gap:10px; flex:none; }
.newsletter-form input{
  padding:13px 16px; border-radius:100px; border:1.5px solid var(--border); min-width:240px; font-size:.92rem;
}
.newsletter-form button{
  background:var(--blue-deep); color:var(--white); border:none; border-radius:100px;
  padding:13px 24px; font-family:var(--font-display); font-weight:600;
  transition:transform .25s var(--ease);
}
.newsletter-form button:hover{ transform:translateY(-2px); }
.newsletter-success{
  position:absolute; right:48px; bottom:-10px; transform:translateY(100%);
  background:var(--green); color:var(--white); padding:8px 16px; border-radius:100px;
  font-size:.84rem; font-weight:600; opacity:0; transition:opacity .3s, transform .3s;
}
.newsletter-success.is-shown{ opacity:1; transform:translateY(130%); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink); color:#C9CDD0; }
.footer-top{ padding:70px 0 40px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; }
.footer-brand p{ font-size:.9rem; color:#A7ABAE; margin:16px 0 20px; }
.brand-footer .brand-logo{ width:64px; height:64px; }
.brand-footer .brand-name{ color:var(--white); }
.brand-footer .brand-tag{ color:#8B8E91; }
.footer-col h4{ color:var(--white); font-size:.92rem; letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px; }
.footer-col a, .footer-contact p{
  display:block; color:#A7ABAE; font-size:.9rem; margin-bottom:12px; transition:color .2s;
}
.footer-col a:hover{ color:var(--yellow); }
.footer-contact p{ display:flex; align-items:flex-start; gap:8px; }
.footer-contact svg{ margin-top:3px; color:var(--blue-light); flex:none; }

.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding:20px 0; }
.footer-bottom-inner{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.8rem; color:#7E8184; }
.footer-fine{ font-style:italic; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:400;
  width:48px; height:48px; border-radius:50%; border:none;
  background:var(--blue-deep); color:var(--white); box-shadow:var(--shadow-md);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .3s, transform .3s, visibility .3s, background .25s;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--orange); }
.back-to-top svg{ width:20px; height:20px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  .stats-grid{ grid-template-columns:repeat(2,1fr); row-gap:22px; }
  .stat-card:nth-child(2n+1)::before{ display:none; }
  .programs-grid{ grid-template-columns:repeat(2,1fr); }
  .news-grid{ grid-template-columns:1fr; }
  .about-grid, .involved-grid{ grid-template-columns:1fr; }
  .about-art{ order:2; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .process-connector{ width:2px; height:40px; margin:0 auto; background:repeating-linear-gradient(180deg,var(--orange) 0 8px,transparent 8px 16px); }
}

@media (max-width:900px){
  .main-nav{
    position:fixed; top:0; right:-320px; height:100vh; width:min(300px,80vw);
    background:var(--white); flex-direction:column; align-items:flex-start;
    padding:100px 28px 28px; gap:4px; box-shadow:-10px 0 40px rgba(0,0,0,.12);
    transition:right .35s var(--ease);
  }
  .main-nav.is-open{ right:0; }
  .nav-link{ width:100%; padding:14px 10px; }
  .hamburger{ display:flex; }
  .topbar-left{ display:none; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-art{ order:-1; margin-bottom:20px; }
  .hero-float-card{ display:none; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-item.span-2{ grid-column:span 2; grid-row:span 1; }
  .newsletter-inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:600px){
  .testimonial-carousel{ gap:6px; }
  .testi-arrow{ width:34px; height:34px; }
  .testi-card-inner{ padding:24px 18px; }
  .testi-card p{ font-size:.98rem; }
  .stats-grid, .programs-grid{ grid-template-columns:1fr; }
  .stat-card::before{ display:none; }
  .stat-card{ padding:10px 16px; border-bottom:1px solid var(--border); }
  .stat-card:last-child{ border-bottom:none; }
  .footer-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-item.span-2{ grid-column:span 1; }
  h1{ font-size:2rem !important; }
  .topbar-right{ gap:10px; }
  .topbar-badge{ display:none; }
  .newsletter-form{ flex-direction:column; width:100%; }
  .newsletter-form input{ min-width:0; width:100%; }
  .newsletter-form button{ width:100%; justify-content:center; }
  .newsletter-success{ right:24px; left:24px; }
}

@media (max-width:480px){
  .header-inner{ gap:10px; }
  .header-actions{ gap:8px; }
  .brand{ gap:8px; }
  .brand-tag{ display:none; }
  .btn-donate{ padding:10px 16px; font-size:.86rem; }
}

/* ================= WELCOME MESSAGE ================= */
.welcome-section{ padding:70px 0 20px; }
.welcome-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:start; }
.welcome-copy p{ font-size:1.02rem; color:#4b5157; }
.welcome-pillars{ display:flex; flex-direction:column; gap:22px; padding-top:8px; }

/* ================= VIEW-ALL CTA (programs / gallery) ================= */
.programs-cta{ text-align:center; margin-top:44px; }

@media (max-width:900px){
  .welcome-grid{ grid-template-columns:1fr; gap:28px; }
}

/* =========================================================
   INTERIOR PAGE HERO (about.html etc.)
   ========================================================= */
.page-hero{
  position:relative; padding:150px 0 70px; background:var(--ink); overflow:hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(20,93,160,.55), rgba(35,39,42,.92) 55%, rgba(57,181,74,.35));
  pointer-events:none;
}
.page-hero-inner{ position:relative; max-width:720px; }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:.86rem; color:#C9CDD0; margin-bottom:18px; }
.breadcrumb a{ color:#C9CDD0; transition:color .2s; }
.breadcrumb a:hover{ color:var(--yellow); }
.breadcrumb svg{ width:12px; height:12px; opacity:.6; }
.page-hero h1{ color:var(--white); font-size:clamp(2rem,3.6vw,2.8rem); margin:0 0 14px; }
.page-hero p{ color:#D8DCDE; font-size:1.05rem; margin:0; }

/* =========================================================
   ABOUT — HISTORY / LEGAL
   ========================================================= */
.history-section{ padding:90px 0; }
.history-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.history-copy p{ font-size:1rem; color:#4b5157; margin-bottom:16px; }
.history-copy p:last-child{ margin-bottom:0; }

.legal-card{
  background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:32px;
}
.legal-card h3{ font-size:1.05rem; margin:0 0 18px; }
.legal-list{ display:flex; flex-direction:column; gap:14px; }
.legal-row{ display:flex; justify-content:space-between; gap:16px; font-size:.92rem; padding-bottom:14px; border-bottom:1px solid var(--border); }
.legal-row:last-child{ border-bottom:none; padding-bottom:0; }
.legal-row dt{ color:var(--slate-soft); }
.legal-row dd{ margin:0; color:var(--ink); font-weight:600; text-align:right; }

/* =========================================================
   VISION / MISSION / VALUES (about.html detail block)
   ========================================================= */
.vm-section{ padding:0 0 90px; }
.vm-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.vm-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:32px; box-shadow:var(--shadow-sm);
}
.vm-card .value-dot{ margin-bottom:14px; width:14px; height:14px; }
.vm-card h3{ font-size:1.05rem; margin:0 0 10px; }
.vm-card p{ font-size:.92rem; margin:0; color:var(--slate); }

/* =========================================================
   LEADERSHIP (board + management team)
   ========================================================= */
.leadership-section{ padding:90px 0; background:var(--off-white); }
.leader-subhead{ font-family:var(--font-display); font-weight:600; font-size:1.05rem; color:var(--ink); margin:0 0 22px; }
.leader-subhead:not(:first-child){ margin-top:48px; }
.leader-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.leader-card{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:26px 18px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.leader-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.leader-photo{
  width:88px; height:88px; border-radius:50%; object-fit:cover;
  margin-bottom:16px; box-shadow:0 0 0 4px var(--off-white), 0 0 0 5px var(--border);
}
.leader-card strong{ display:block; font-size:.92rem; color:var(--ink); line-height:1.35; }
.leader-card span{
  display:inline-block; font-size:.76rem; color:var(--blue-deep); margin-top:8px;
  font-weight:600; background:rgba(28,117,188,.08); padding:4px 12px; border-radius:100px;
}
.leader-contact{
  margin-top:16px; padding-top:14px; border-top:1px solid var(--border);
  display:flex; flex-direction:column; gap:7px; width:100%;
}
.leader-contact-link{
  display:flex; align-items:center; justify-content:center; gap:6px;
  font-size:.78rem; color:var(--slate-soft); transition:color .2s; word-break:break-all;
}
.leader-contact-link:hover{ color:var(--blue-deep); }
.leader-contact-link svg{ flex:none; width:13px; height:13px; opacity:.75; }
.leader-grid-compact{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px 24px; }
.leader-chip{ display:flex; justify-content:space-between; gap:12px; padding:11px 0; border-bottom:1px solid var(--border); font-size:.9rem; }
.leader-chip span:first-child{ color:var(--ink); }
.leader-chip span:last-child{ color:var(--slate-soft); text-align:right; }

/* =========================================================
   DEPARTMENT CONTACT NUMBERS
   ========================================================= */
.deptcontact-section{ padding:90px 0; }
.deptcontact-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.deptcontact-item{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 22px; border-radius:var(--radius-md); border:1px solid var(--border);
  transition:border-color .2s, box-shadow .2s;
}
.deptcontact-item:hover{ border-color:var(--blue-light); box-shadow:var(--shadow-sm); }
.deptcontact-item strong{ font-size:.92rem; color:var(--ink); font-weight:600; }
.deptcontact-item a{ font-family:var(--font-display); font-weight:700; color:var(--blue-deep); font-size:.94rem; white-space:nowrap; }

/* =========================================================
   PARTNER INSTITUTIONS
   ========================================================= */
.partners-section{ padding:90px 0 90px; }
.partner-list{ display:flex; flex-wrap:wrap; gap:12px; }
.partner-chip{
  background:var(--off-white); border:1px solid var(--border); border-radius:100px;
  padding:10px 20px; font-size:.88rem; color:var(--slate); font-weight:500;
}

@media (max-width:1080px){
  .history-grid{ grid-template-columns:1fr; gap:36px; }
  .vm-grid{ grid-template-columns:1fr 1fr; }
  .leader-grid{ grid-template-columns:repeat(3,1fr); }
  .deptcontact-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .vm-grid, .leader-grid-compact{ grid-template-columns:1fr; }
  .leader-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .leader-card{ padding:20px 12px 18px; }
  .leader-photo{ width:72px; height:72px; }
  .page-hero{ padding:140px 0 50px; }
  .legal-row{ flex-direction:column; gap:4px; }
  .legal-row dd{ text-align:left; }
}
@media (max-width:400px){
  .leader-grid{ grid-template-columns:1fr; }
}
