
  :root {
    /* --blue-deep: #1a5c38;
    --blue-mid: #2e8b57;
    --blue-light: #4caf80;
    --blue-pale: #e8f5ee; */
    --blue-deep: #042c54;
    --blue-mid: #0a4f8a;
    --blue-light: #3b7fb3;
     --blue-pale: #e6f0f8;
    --orange: #e07b1a;
    --orange-light: #f5a623;
    --orange-pale: #fff7ed;
    --earth: #8b6914;
    --white: #ffffff;
    --off-white: #f9faf8;
    --gray-light: #f0f2f0;
    --gray-mid: #9caa9a;
    --gray-dark: #4a5248;
    --text: #1c2b1e;
    --text-light: #556357;
    --shadow-sm: 0 2px 12px rgba(26,92,56,0.08);
    --shadow-md: 0 8px 32px rgba(26,92,56,0.12);
    --shadow-lg: 0 20px 60px rgba(26,92,56,0.18);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;


      opacity: 1;
  transition: opacity 0.28s ease;

  }

  body.page-exit {
  opacity: 0;
  pointer-events: none;
}


/* ============================================================
   Mobile menu
   ============================================================ */
#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}
#mobileMenu.open {
  max-height: 500px;
}
 


  

  /* ─── PAGES ─── */
  /* .page { display: none; } */
  /* .page.active { display: block; } */

  

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26,92,56,0.08);
    transition: var(--transition);
  }
  nav.scrolled { box-shadow: var(--shadow-sm); }

  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; cursor: pointer;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 44px; height: 44px;
    /* background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); */
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    /* font-size: 20px; color: white; */
    /* box-shadow: 0 4px 12px rgba(26,92,56,0.3); */
  }
  .nav-logo-text { line-height: 1.15; }
  .nav-logo-text span:first-child {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.1rem;
    color: var(--blue-deep);
  }
  .nav-logo-text span:last-child {
    display: block; font-size: 0.72rem;
    color: var(--gray-mid); letter-spacing: 0.04em;
  }

  .nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none;
  }
  .nav-links a {
    display: block; padding: 8px 14px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text-light); text-decoration: none;
    border-radius: 8px; transition: var(--transition);
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--blue-deep);
    background: var(--blue-pale);
  }

  .nav-cta {
    padding: 9px 22px !important;
    background: var(--blue-deep) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26,92,56,0.28);
  }
  .nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; border: none; background: none;
    border-radius: 8px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--blue-deep); transition: var(--transition);
    border-radius: 2px;
  }

  .mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--gray-light);
    z-index: 999; padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block; padding: 12px 0;
    font-size: 1rem; font-weight: 500;
    color: var(--text); text-decoration: none;
    border-bottom: 1px solid var(--gray-light);
    cursor: pointer;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a.donate-m {
    margin-top: 12px; padding: 12px 20px;
    background: var(--blue-deep); color: white;
    border-radius: 50px; text-align: center;
    font-weight: 600; border-bottom: none;
    box-shadow: 0 4px 14px rgba(26,92,56,0.28);
  }

  /* ─── COMMON ─── */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 96px 0; }
  .section-sm { padding: 64px 0; }

  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue-pale); color: var(--blue-deep);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 6px 14px;
    border-radius: 50px; margin-bottom: 20px;
    border: 1px solid rgba(26,92,56,0.12);
  }
  .badge-orange {
    background: var(--orange-pale); color: var(--orange);
    border-color: rgba(224,123,26,0.15);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2;
    color: var(--text); margin-bottom: 16px;
  }
  .section-title span { color: var(--blue-mid); }
  .section-sub {
    font-size: 1.05rem; color: var(--text-light);
    max-width: 600px; line-height: 1.75;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; font-weight: 600; font-size: 0.95rem;
    border-radius: 50px; text-decoration: none; cursor: pointer;
    border: none; transition: var(--transition);
  }
  .btn-primary {
    background: var(--blue-deep); color: white;
    box-shadow: 0 6px 20px rgba(26,92,56,0.3);
  }
  .btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,92,56,0.36); }
  .btn-secondary {
    background: transparent; color: var(--blue-deep);
    border: 2px solid var(--blue-deep);
  }
  .btn-secondary:hover { background: var(--blue-pale); transform: translateY(-2px); }
  .btn-orange {
    background: var(--orange); color: white;
    box-shadow: 0 6px 20px rgba(224,123,26,0.3);
  }
  .btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); }
  .btn-white {
    background: white; color: var(--blue-deep);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

  .card {
    background: white; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
  }
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 45%, var(--blue-light) 100%);
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden; padding-top: 72px;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(78,160,107,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(224,123,26,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto; padding: 80px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center;
  }
  .hero-left { animation: fadeSlideUp 0.9s ease both; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 50px; margin-bottom: 24px;
  }
  .hero-badge i { color: var(--orange-light); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900; color: white;
    line-height: 1.15; margin-bottom: 24px;
  }
  .hero h1 em { font-style: normal; color: var(--orange-light); }
  .hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.78);
    line-height: 1.8; margin-bottom: 40px; max-width: 500px;
  }
  .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-stats {
    display: flex; gap: 32px; margin-top: 56px; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stat { text-align: left; }
  .hero-stat strong {
    display: block; font-size: 1.8rem; font-weight: 700;
    color: white; font-family: 'Playfair Display', serif;
  }
  .hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

  .hero-right {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    animation: fadeSlideUp 0.9s 0.2s ease both;
  }
  .hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius); padding: 28px 22px;
    transition: var(--transition);
  }
  .hero-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
  .hero-card:first-child { grid-column: span 2; }
  .hero-card i { font-size: 1.6rem; color: var(--orange-light); margin-bottom: 12px; display: block; }
  .hero-card h3 {
    font-size: 1rem; font-weight: 600; color: white; margin-bottom: 8px;
  }
  .hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

  /* ─── ABOUT PREVIEW ─── */
  .about-preview { background: var(--off-white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }
  .about-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    
    min-height: 460px;
    width: 100%;

    /* floating card feel */
    box-shadow:
        0 20px 40px rgba(0,0,0,0.18),
        0 8px 16px rgba(0,0,0,0.08);

    background: #fff;
}

/* image wrapper fills parent */
.about-img-wrap .img-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* actual image */
.about-img-wrap .img-icon img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    border-radius: inherit;
}

/* floating badge */
.about-badge-float {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;

    background: #f28c18;
    color: white;

    padding: 18px 22px;
    border-radius: 20px;

    box-shadow: 0 10px 24px var(--blue-mid);

    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ===== TESTIMONIAL VIDEO ===== */
.testimonial-video { background: var(--off-white); }

.vid-outer {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--blue-deep);
    box-shadow: 0 0 0 6px rgba(26, 92, 56, 0.12);
    position: relative;
    background: #000;
    max-width: 760px;
    margin: 0 auto;
}
.vid-outer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    border: 2px solid rgba(224, 123, 26, 0.35);
    pointer-events: none;
    z-index: 2;
}
.vid-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
}
.vid-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    cursor: pointer;
    gap: 14px;
    z-index: 3;
    transition: background 0.2s;
}
.vid-overlay:hover { background: rgba(0, 0, 0, 0.6); }
.vid-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}
.vid-play-btn:hover { transform: scale(1.1); }
.vid-play-btn i { font-size: 22px; color: #fff; margin-left: 4px; }
.vid-overlay p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }

.vid-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.25rem;
    font-size: 13px;
    color: var(--text-light);
}
.vid-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
}
.vid-caption strong { color: var(--text); font-weight: 600; }

.vid-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.vid-tags span {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-light);
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.vid-tags span i { color: var(--blue-deep); }

.about-badge-float strong {
    font-size: 2rem;
    font-weight: 700;
}

.about-badge-float span {
    font-size: 0.95rem;
    opacity: 0.95;
}
  
  .about-badge-float {
    position: absolute; bottom: 28px; left: 28px; z-index: 2;
    background: var(--orange); color: white;
    padding: 14px 20px; border-radius: 14px;
    box-shadow: 0 8px 24px rgba(224,123,26,0.35);
  }
  .about-badge-float strong { display: block; font-size: 1.4rem; font-weight: 700; }
  .about-badge-float span { font-size: 0.78rem; opacity: 0.9; }

  /* ─── VMG ─── */
  .vmg { background: var(--white); }
  .vmg-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .vmg-card {
    border-radius: var(--radius); padding: 40px 32px;
    position: relative; overflow: hidden;
  }
  .vmg-card-1 { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); color: white; }
  .vmg-card-2 { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; }
  .vmg-card-3 { background: linear-gradient(135deg, #1c3a5e, #2d5f8a); color: white; }
  .vmg-card::before {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .vmg-card .icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 24px;
  }
  .vmg-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 16px;
  }
  .vmg-card p { font-size: 0.95rem; line-height: 1.75; opacity: 0.9; }

  /* ─── PROJECTS PREVIEW ─── */
  .projects-preview { background: var(--off-white); }
  .projects-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 56px;
  }
  .project-card { border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
  .project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
  .project-thumb {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; position: relative; overflow: hidden;
  }
  .project-thumb-1 { background: linear-gradient(135deg, #1a5c38, #4caf80); }
  .project-thumb-2 { background: linear-gradient(135deg, #8b4513, #d2691e); }
  .project-thumb-3 { background: linear-gradient(135deg, #1c3a5e, #3a7bd5); }
  .project-tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.9);
    font-size: 0.72rem; font-weight: 600; color: var(--blue-deep);
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .project-body { padding: 28px; }
  .project-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
    color: var(--text);
  }
  .project-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
  .project-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.8rem; color: var(--gray-mid);
  }
  .project-meta span { display: flex; align-items: center; gap: 5px; }

  /* ─── IMPACT ─── */
  .impact { background: linear-gradient(160deg, var(--blue-deep), var(--blue-mid)); color: white; }
  .impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    border-radius: var(--radius); overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .impact-item {
    padding: 48px 32px; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
  }
  .impact-item:last-child { border-right: none; }
  .impact-item:hover { background: rgba(255,255,255,0.06); }
  .impact-item i { font-size: 2rem; color: var(--orange-light); margin-bottom: 16px; display: block; }
  .impact-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; color: white;
    margin-bottom: 8px;
  }
  .impact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

  /* ─── PARTNERS CTA ─── */
  .partners-cta { background: var(--white); }
  .cta-band {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 24px; padding: 72px 64px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 40px;
  }
  .cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: white; margin-bottom: 12px;
  }
  .cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; }
  .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--blue-deep); color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand { }
  .footer-brand .logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  }
  .footer-brand .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: white;
  }
  .footer-brand .logo-text strong {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: white;
  }
  .footer-brand .logo-text span { font-size: 0.72rem; opacity: 0.6; }
  .footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
  .footer-socials { display: flex; gap: 10px; margin-top: 24px; }
  .footer-social {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); text-decoration: none;
    transition: var(--transition); font-size: 0.9rem;
  }
  .footer-social:hover { background: var(--blue-mid); color: white; transform: translateY(-2px); }

  .footer-col h4 {
    font-size: 0.88rem; font-weight: 600; color: white;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    font-size: 0.88rem; color: rgba(255,255,255,0.65);
    text-decoration: none; transition: var(--transition); cursor: pointer;
  }
  .footer-links a:hover { color: var(--blue-light); padding-left: 4px; }

  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px;
  }
  .footer-contact-item i { color: var(--blue-light); margin-top: 2px; font-size: 0.9rem; width: 14px; }
  .footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
  .footer-contact-item a:hover { color: var(--blue-light); }
  .footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

  .footer-bottom {
    padding: 24px 0; display: flex;
    align-items: center; justify-content: space-between;
    font-size: 0.82rem; flex-wrap: wrap; gap: 8px;
  }
  .footer-bottom span { color: rgba(255,255,255,0.4); }
  .footer-bottom a { color: var(--blue-light); text-decoration: none; }

  /* ─── PAGE HERO (inner pages) ─── */
  .page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg,var(--blue-deep), var(--blue-mid));
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(78,160,107,0.15) 0%, transparent 70%);
  }
  .page-hero-content { position: relative; z-index: 1; }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: white; margin-bottom: 12px;
  }
  .page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; margin-bottom: 20px;
  }
  .breadcrumb span { color: rgba(255,255,255,0.5); }
  .breadcrumb span.sep { opacity: 0.4; }
  .breadcrumb span.cur { color: var(--orange-light); font-weight: 600; }

  /* ─── ABOUT PAGE ─── */
  .about-story { background: white; }
  .story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start;
  }
  .story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; margin-bottom: 20px;
    color: var(--text);
  }
  .story-text p { color: var(--text-light); margin-bottom: 18px; line-height: 1.8; }
  .story-facts {
    background: var(--blue-pale); border-radius: var(--radius);
    padding: 32px; margin-top: 32px;
    border: 1px solid rgba(26,92,56,0.1);
  }
  .story-fact { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
  .story-fact:last-child { margin-bottom: 0; }
  .fact-dot {
    width: 32px; height: 32px; min-width: 32px;
    background: var(--blue-deep); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.75rem; font-weight: 700;
  }
  .story-fact div strong { display: block; font-size: 0.85rem; color: var(--blue-deep); }
  .story-fact div span { font-size: 0.85rem; color: var(--text-light); }

  .values-section { background: var(--off-white); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .value-card { background: white; border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); }
  .value-card .icon {
    width: 52px; height: 52px;
    background: var(--blue-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--blue-deep);
    margin-bottom: 20px;
  }
  .value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
  .value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

  .timeline { background: white; }
  .timeline-list { position: relative; padding-left: 40px; margin-top: 48px; }
  .timeline-list::before {
    content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
    width: 2px; background: var(--blue-pale);
  }
  .tl-item { position: relative; margin-bottom: 40px; }
  .tl-dot {
    position: absolute; left: -34px; top: 4px;
    width: 20px; height: 20px;
    background: var(--blue-deep); border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--blue-deep);
  }
  .tl-date {
    font-size: 0.78rem; font-weight: 600; color: var(--orange);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
  }
  .tl-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
  .tl-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

  /* ─── PROJECTS PAGE ─── */
  .projects-full { background: white; }
  .proj-full-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
  .proj-full-card {
    display: grid; grid-template-columns: 340px 1fr; gap: 0;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
    background: white; transition: var(--transition);
  }
  .proj-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .proj-full-card:nth-child(even) { grid-template-columns: 1fr 340px; }
  .proj-full-card:nth-child(even) .proj-img { order: 2; }
  .proj-full-card:nth-child(even) .proj-content { order: 1; }
  .proj-img {
    min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; flex-direction: column; gap: 8px;
  }
  .proj-img-1 { background: linear-gradient(135deg, #1a5c38, #4caf80); }
  .proj-img-2 { background: linear-gradient(135deg, #8b4513, #d2691e); }
  .proj-img-3 { background: linear-gradient(135deg, #1c3a5e, #3a7bd5); }
  .proj-content { padding: 44px 48px; }
  .proj-content .badge { margin-bottom: 16px; }
  .proj-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; color: var(--text);
  }
  .proj-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
  .proj-activities { list-style: none; margin: 20px 0; }
  .proj-activities li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; color: var(--text-light); margin-bottom: 10px;
  }
  .proj-activities li i { color: var(--blue-mid); margin-top: 2px; }
  .proj-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .chip {
    background: var(--blue-pale); color: var(--blue-deep);
    font-size: 0.78rem; font-weight: 500; padding: 5px 12px;
    border-radius: 50px; border: 1px solid rgba(26,92,56,0.12);
  }
  .chip-orange { background: var(--orange-pale); color: var(--orange); border-color: rgba(224,123,26,0.15); }

  /* ─── TEAM PAGE ─── */
  .team-section { background: white; }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
    margin-top: 56px;
  }
  .team-card {
    background: white; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition); text-align: center;
  }
  .team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
  .team-avatar {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.7);
    position: relative;
  }
  .team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, #1a5c38, #2e8b57); }
  .team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #1c3a5e, #2d5f8a); }
  .team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #8b1a4a, #c4306d); }
  .team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #5c3a1a, #8b6030); }
  .team-card:nth-child(5) .team-avatar { background: linear-gradient(135deg, #1a5c5c, #2e8b8b); }
  .team-card:nth-child(6) .team-avatar { background: linear-gradient(135deg, #4a1a5c, #7b2e8b); }
  .team-card:nth-child(7) .team-avatar { background: linear-gradient(135deg, #1a3a5c, #2e608b); }
  .team-avatar .initials {
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; color: white;
    font-family: 'Playfair Display', serif;
  }
  .team-body { padding: 24px 20px; }
  .team-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
  .team-role {
    font-size: 0.78rem; font-weight: 600; color: var(--blue-mid);
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
  }
  .team-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

  /* ─── BLOG PAGE ─── */
  .blog-section { background: white; }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 56px;
  }
  .blog-card { border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
  .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .blog-thumb {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; position: relative;
  }
  .blog-thumb img{
    height: 200px;
    display: block;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  .blog-cat {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.9);
    font-size: 0.72rem; font-weight: 600; color: var(--blue-deep);
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .blog-body { padding: 24px; }
  .blog-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--gray-mid); margin-bottom: 10px; }
  .blog-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text);
    line-height: 1.4;
  }
  .blog-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
  .blog-read {
    font-size: 0.82rem; font-weight: 600; color: var(--blue-mid);
    display: flex; align-items: center; gap: 4px; cursor: pointer;
    transition: var(--transition);
  }
  .blog-read:hover { color: var(--blue-deep); }

  /* ─── DONATE PAGE ─── */
  .donate-section { background: white; }
  .donate-hero-inner {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    border-radius: 24px; padding: 72px 64px;
    text-align: center; margin-bottom: 80px;
  }
  .donate-hero-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; color: white; margin-bottom: 16px; font-weight: 700;
  }
  .donate-hero-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }

  .donate-ways {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-bottom: 80px;
  }
  .donate-way {
    background: white; border-radius: var(--radius); padding: 40px 32px;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
    text-align: center; transition: var(--transition);
  }
  .donate-way:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .donate-way .icon {
    width: 72px; height: 72px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 24px;
  }
  .donate-way:nth-child(1) .icon { background: var(--blue-pale); color: var(--blue-deep); }
  .donate-way:nth-child(2) .icon { background: var(--orange-pale); color: var(--orange); }
  .donate-way:nth-child(3) .icon { background: #eff6ff; color: #2d5f8a; }
  .donate-way h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
  .donate-way p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; }

  /* ─── CONTACT PAGE ─── */
  .contact-section { background: white; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px;
    align-items: start;
  }
  .contact-info-item {
    display: flex; align-items: flex-start; gap: 18px; margin-bottom: 32px;
  }
  .contact-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: var(--blue-pale); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--blue-deep);
  }
  .contact-info-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
  .contact-info-item p { color: var(--text); font-size: 0.95rem; }
  .contact-info-item a { color: var(--blue-mid); text-decoration: none; }

  .contact-form { background: var(--off-white); border-radius: var(--radius); padding: 48px; border: 1px solid rgba(0,0,0,0.04); }
  .form-group { margin-bottom: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%; padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; color: var(--text);
    background: white; transition: var(--transition);
    outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(46,139,87,0.12);
  }
  .form-group textarea { min-height: 140px; resize: vertical; }

  .map-placeholder {
    height: 280px; background: var(--blue-pale);
    border-radius: var(--radius); margin-top: 32px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border: 1px dashed rgba(26,92,56,0.2);
    gap: 12px;
  }
  .map-placeholder i { font-size: 2.5rem; color: var(--blue-mid); }
  .map-placeholder p { color: var(--text-light); font-size: 0.9rem; text-align: center; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
 .fade-up {
  opacity: 0.5;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

  .fade-up.delay-1 { transition-delay: 0.1s; }
  .fade-up.delay-2 { transition-delay: 0.2s; }
  .fade-up.delay-3 { transition-delay: 0.3s; }

   
/* The photo wrapper keeps the same square shape you already have */
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: #e8f5e9;           /* fallback bg if image missing */
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* Real photo — fills the circle */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
 


  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .vmg-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .proj-full-card { grid-template-columns: 1fr !important; }
    .proj-full-card:nth-child(even) .proj-img { order: 0; }
    .proj-full-card:nth-child(even) .proj-content { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .donate-hero-inner { padding: 48px 40px; }
    .cta-band { grid-template-columns: 1fr; text-align: center; padding: 48px 40px; }
    .cta-btns { justify-content: center; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 64px 0; }
    .vmg-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .donate-ways { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
    .contact-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { padding: 40px 24px; }
    .donate-hero-inner { padding: 40px 24px; }
  }
  @media (max-width: 480px) {
    .impact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
  }

  /* Divider */
  .divider { height: 1px; background: var(--gray-light); margin: 0; }

  /* Scroll indicator */
  .scroll-progress {
    position: fixed; top: 72px; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-mid), var(--orange));
    z-index: 999; transition: width 0.1s;
  }
