
:root{
  --bg:#ffffff;
  --ink:#111827;
  --muted:#6b7280;
  --brand:#0ea5e9;   /* sky-500 */
  --brand2:#0369a1;  /* sky-700 */
  --line:#e5e7eb;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
}
a{color:var(--brand2);text-decoration:none}
a:hover{color:var(--brand)}
img{max-width:100%;display:block}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:10;
  background:#ffffffee;
  backdrop-filter:saturate(160%) blur(6px);
  border-bottom:1px solid var(--line);
}
.container{
  max-width:1120px;
  margin:0 auto;
  padding:16px;
}
.flex{display:flex;align-items:center}
.between{justify-content:space-between}
.gap8{gap:8px}
.gap12{gap:12px}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}


/* Navigation */
nav a{
  margin-right:14px;
  color:#374151;
  font-size:14px;
}
nav a:hover{color:var(--brand2)}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
}
.btn-primary:hover{background:var(--brand2)}
.btn-ghost{
  border:1px solid #bae6fd;
  color:var(--brand2);
}

/* Sections */
.section{
  padding:56px 0;
}
.h1{
  font-size:40px;
  font-weight:800;
  line-height:1.1;
}
.h2{
  font-size:28px;
  font-weight:800;
}
.h3{
  font-size:18px;
  font-weight:700;
}
.muted{color:var(--muted)}

/* Grid utilities */
.grid{display:grid;gap:18px}
.grid-2{grid-template-columns:1fr 1fr}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
}

/* Card */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:0 1px 2px rgba(0,0,0,.03);
}

/* Hero */
.hero{
  background:linear-gradient(135deg,#e0f2fe,#fff 55%,#bae6fd);
  padding:60px 0;
}
.heroimg{
  width:100%;
  height:280px;
  border-radius:16px;
  object-fit:cover;
  background:#eef2f7;
  border:1px dashed #cbd5e1;
}

/* Badges */
.badge{
  padding:4px 8px;
  border-radius:999px;
  font-size:12px;
}
.badge-green{
  background:#e0f2fe;
  color:#075985;
}
.badge-gray{
  background:#f3f4f6;
  color:#374151;
}

/* Impact stats */
.stats{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
@media(max-width:900px){
  .stats{grid-template-columns:1fr 1fr}
}
.stat{text-align:center}
.val{
  font-size:28px;
  font-weight:800;
}
.label{
  font-size:12px;
  color:#6b7280;
  margin-top:4px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* Gallery (fixed layout) */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:24px;
}
.gallery img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
  background:#f3f4f6;
  border:1px solid #e5e7eb;
}

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

/* Footer */
footer{
  border-top:1px solid var(--line);
  padding:40px 0;
  text-align:center;
  color:var(--muted);
}
.lang button{
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
}
.lang .active{
  background:var(--brand);
  color:#fff;
  border-color:transparent;
}

.rtl{direction:rtl}
.small{font-size:12px}
.heroimg{ height:340px; }
@media(max-width:900px){ .heroimg{ height:220px; } }
/* --- NGO polish --- */
.section .sub { color: var(--muted); font-size: 13px; margin-top: 4px; }
.icon-list { list-style: none; padding:0; margin: 0; }
.icon-list li { padding-left: 24px; position: relative; margin: 8px 0; }
.icon-list li:before { content:"✓"; position:absolute; left:0; top:0; color:#059669; font-weight:700; }
.pills { display:flex; flex-wrap:wrap; gap:8px; }
.pill { font-size:12px; padding:6px 10px; border:1px solid var(--line); border-radius:999px; color:#374151; background:#fff; }
.details { border:1px solid var(--line); border-radius:12px; padding:10px 14px; background:#fff; }
details summary { cursor:pointer; font-weight:700; }
.kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.kpi { border:1px solid var(--line); border-radius:12px; padding:12px; background:#fff; }
.kpi b { font-size:22px; display:block; }
@media(max-width:900px){ .kpis{ grid-template-columns:1fr; } }
.mapbox img { width:100%; height:320px; object-fit:cover; border-radius:14px; border:1px solid var(--line); }


