﻿    /* ============================================================
       CSS CUSTOM PROPERTIES  (identical to index.html)
    ============================================================ */
    :root {
      --blue-dark:    #0d2a4e;
      --blue-mid:     #1a4480;
      --blue-light:   #2563a8;
      --orange:       #f07c1e;
      --orange-dark:  #d96712;
      --orange-light: #ffb347;
      --white:        #ffffff;
      --gray-50:      #f8f9fb;
      --gray-100:     #eef1f6;
      --gray-200:     #dde3ed;
      --gray-400:     #94a3b8;
      --gray-600:     #475569;
      --gray-800:     #1e293b;
      --text:         #1e293b;
      --radius-sm:    8px;
      --radius-md:    16px;
      --radius-lg:    24px;
      --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
      --shadow-md:    0 8px 32px rgba(0,0,0,.12);
      --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
      --transition:   .3s cubic-bezier(.4,0,.2,1);
      --max-w:        1200px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a  { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700; 
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--blue-dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-title.white { color: var(--white); }
    .body-text { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; }
    .body-text.white { color: rgba(255,255,255,.85); }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: .95rem;
      letter-spacing: .02em;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(240,124,30,.35);
    }
    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(240,124,30,.5);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.7);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.12);
      border-color: var(--white);
      transform: translateY(-2px);
    }
    .btn-blue {
      background: var(--blue-dark);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(13,42,78,.25);
    }
    .btn-blue:hover {
      background: var(--blue-mid);
      transform: translateY(-2px);
    }
    .btn-lg { padding: 18px 44px; font-size: 1.05rem; }

    /* ============================================================
       SCROLL REVEAL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ============================================================
       NAVIGATION  (identical to index.html)
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13,42,78,.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: box-shadow var(--transition);
    }
    #navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .nav-logo img { height: 48px; width: auto; object-fit: contain; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      color: rgba(255,255,255,.82);
      font-size: .9rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .nav-links a.active { color: var(--white); font-weight: 600; background: rgba(255,255,255,.13); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(240,124,30,.85); }
    .nav-links .btn-nav-donate {
      background: var(--orange);
      color: var(--white);
      font-weight: 700;
      padding: 9px 20px;
      border-radius: 50px;
      margin-left: 8px;
      box-shadow: 0 2px 12px rgba(240,124,30,.4);
    }
    .nav-links .btn-nav-donate:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(240,124,30,.55);
    }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
      z-index: 1100;
    }
    .nav-toggle span {
      display: block;
      width: 26px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mobile {
      display: none;
      flex-direction: column;
      background: var(--blue-dark);
      padding: 12px 24px 24px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      color: rgba(255,255,255,.85);
      font-size: 1rem;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      transition: color var(--transition);
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover { color: var(--orange); }
    .nav-mobile a.active { color: var(--orange); font-weight: 600; }
    .nav-mobile .btn-nav-donate {
      margin-top: 16px;
      background: var(--orange);
      color: var(--white);
      border-radius: 50px;
      padding: 14px 24px;
      font-weight: 700;
      text-align: center;
      border-bottom: none;
    }

    /* sticky donate */
    #stickyDonate {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 1200;
      padding: 14px 18px;
      border-radius: 999px;
      font-size: 0.95rem;
      letter-spacing: .05em;
      animation: pulseButton 2.4s ease-in-out infinite;
      box-shadow: 0 10px 24px rgba(0,0,0,.25);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    #stickyDonate:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0,0,0,.35);
    }
    @keyframes pulseButton {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/who-we-are/second-image.webp');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.06);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(13,42,78,.92) 0%,
        rgba(13,42,78,.78) 55%,
        rgba(13,42,78,.45) 100%
      );
    }

    /* Animated gradient particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-particles span {
      position: absolute;
      border-radius: 50%;
      background: rgba(240,124,30,.12);
      animation: floatParticle var(--dur, 8s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
    }
    @keyframes floatParticle {
      0%, 100% { transform: translateY(0) scale(1); opacity: .4; }
      50%       { transform: translateY(-30px) scale(1.1); opacity: .7; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,124,30,.2);
      border: 1px solid rgba(240,124,30,.4);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 24px;
      animation: fadeSlideDown .8s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .6; transform: scale(1.4); }
    }
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 12px;
      animation: fadeSlideUp .9s .2s ease both;
    }
    .hero-headline .accent {
      font-style: italic;
      color: var(--orange-light);
      display: block;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,.85);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 520px;
      animation: fadeSlideUp .9s .4s ease both;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeSlideUp .9s .6s ease both;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.5);
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: scrollBob 2s ease-in-out infinite;
    }
    @keyframes scrollBob {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50%       { transform: scaleY(.65); opacity: .4; }
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about {
      padding: 110px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      transition: transform .6s ease;
    }
    .about-image-wrap:hover img {
      transform: scale(1.02);
    }
    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--orange);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .about-badge strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1;
    }
    .about-badge span {
      font-size: .75rem;
      letter-spacing: .07em;
      text-transform: uppercase;
      opacity: .9;
    }
    .about-text { }
    .about-text .section-label { color: var(--orange); }
    .about-body {
      font-size: 1.05rem;
      color: var(--gray-600);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-body .kw {
      color: var(--blue-dark);
      font-weight: 700;
    }

    /* Service icons row */
    .service-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }
    .service-icon-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 12px 18px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--blue-dark);
      transition: var(--transition);
    }
    .service-icon-item:hover {
      background: var(--blue-dark);
      color: var(--white);
      border-color: var(--blue-dark);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .service-icon-item .si-icon {
      font-size: 1.3rem;
      transition: transform .3s ease;
    }
    .service-icon-item:hover .si-icon {
      transform: scale(1.25) rotate(-5deg);
    }

    /* ============================================================
       MISSION HIGHLIGHTS
    ============================================================ */
    #mission-highlights {
      padding: 100px 0;
      background: var(--gray-50);
    }
    .mh-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }
    .mh-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .mh-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .mh-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }
    .mh-card:hover::before { transform: scaleX(1); }
    .mh-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,.13);
      border-color: transparent;
    }
    .mh-icon {
      font-size: 2.8rem;
      margin-bottom: 16px;
      display: block;
      transition: transform .4s ease, color .4s ease, text-shadow .4s ease;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
      will-change: transform, text-shadow;
    }
    .mh-icon-feed {
      animation-name: iconFloat;
    }
    .mh-icon-medical {
      animation-name: iconPulse;
    }
    .mh-icon-education {
      animation-name: iconRise;
    }
    .mh-icon-disaster {
      animation-name: iconRipple;
    }
    .mh-card:hover .mh-icon {
      transform: scale(1.2) rotate(-8deg);
      color: var(--orange);
      text-shadow: 0 0 14px rgba(240,124,30,.18);
    }
    .mh-card:hover .mh-icon-feed {
      animation-duration: 5.8s;
    }
    .mh-card:hover .mh-icon-medical {
      animation-duration: 5.2s;
    }
    .mh-card:hover .mh-icon-education {
      animation-duration: 5.6s;
    }
    .mh-card:hover .mh-icon-disaster {
      animation-duration: 5.9s;
    }
    @keyframes iconFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-6px) scale(1.04); }
    }
    @keyframes iconPulse {
      0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
      30% { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(255,255,255,.18)); }
      60% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
    }
    @keyframes iconRise {
      0%, 100% { transform: translateY(0) scale(1); }
      40% { transform: translateY(-5px) scale(1.03); }
      70% { transform: translateY(-3px) scale(1.02); }
    }
    @keyframes iconRipple {
      0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(255,255,255,0); }
      20% { transform: scale(1.02); text-shadow: 0 0 12px rgba(37,99,168,.14); }
      50% { transform: scale(1.01); text-shadow: 0 0 0 rgba(255,255,255,0); }
      80% { transform: scale(1.03); text-shadow: 0 0 10px rgba(240,124,30,.12); }
    }
    .mh-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 10px;
    }
    .mh-desc {
      font-size: .9rem;
      color: var(--gray-600);
      line-height: 1.7;
    }

    /* ============================================================
       MEET THE TEAM
    ============================================================ */
    #team {
      padding: 110px 0;
      background: var(--white);
    }
    .team-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 64px;
    }

    /* Featured founder card */
    .team-founder-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 48px;
    }
    .team-founder-card {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      align-items: center;
      gap: 36px;
      max-width: 680px;
      width: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .team-founder-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 70px rgba(13,42,78,.35);
    }
    .team-founder-card::after {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(240,124,30,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .founder-photo-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .founder-photo {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      border: 4px solid var(--orange);
      box-shadow: 0 0 0 6px rgba(240,124,30,.2);
      transition: transform .4s ease;
    }
    .team-founder-card:hover .founder-photo {
      transform: scale(1.04);
    }
    .founder-info { color: var(--white); }
    .founder-info .founder-label {
      display: inline-block;
      background: rgba(240,124,30,.25);
      border: 1px solid rgba(240,124,30,.4);
      color: var(--orange-light);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 12px;
    }
    .founder-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .founder-info .founder-role {
      font-size: .95rem;
      color: rgba(255,255,255,.7);
      margin-bottom: 14px;
    }
    .founder-info .founder-bio {
      font-size: .88rem;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
    }

    /* Team grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .team-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      transition: transform .35s ease, box-shadow .35s ease;
      cursor: default;
    }
    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 56px rgba(0,0,0,.14);
    }
    .team-photo-wrap {
      position: relative;
      overflow: hidden;
      height: 220px;
    }
    .team-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform .5s ease;
    }
    .team-card:hover .team-photo {
      transform: scale(1.07);
    }
    .team-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,42,78,.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .35s ease;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }
    .team-card:hover .team-photo-overlay {
      opacity: 1;
    }
    .team-overlay-role {
      font-size: .82rem;
      font-weight: 700;
      color: var(--orange-light);
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .team-info {
      padding: 20px;
    }
    .team-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 4px;
    }
    .team-info p {
      font-size: .85rem;
      color: var(--gray-600);
      font-weight: 500;
    }
    .team-role-bar {
      width: 28px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
      margin-top: 10px;
      transition: width .3s ease;
    }
    .team-card:hover .team-role-bar { width: 56px; }

    /* ============================================================
       DONATION CTA SECTION
    ============================================================ */
    #donate-cta {
      position: relative;
      padding: 120px 0;
      overflow: hidden;
    }
    .donate-cta-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/landingpage/giving_back_feels_good.webp');
      background-size: cover;
      background-position: center;
    }
    .donate-cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13,42,78,.94) 0%, rgba(26,68,128,.88) 100%);
    }

    /* Animated glow blobs */
    .cta-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      animation: blobMove var(--dur, 10s) ease-in-out infinite alternate;
    }
    @keyframes blobMove {
      0%   { transform: translate(0, 0) scale(1); }
      100% { transform: translate(30px, -20px) scale(1.1); }
    }

    .donate-cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .donate-cta-content .section-label { color: var(--orange-light); }
    .donate-cta-content .section-title { color: var(--white); margin-bottom: 16px; }
    .donate-cta-content .body-text { color: rgba(255,255,255,.8); margin-bottom: 44px; }
    .donate-cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }
    .btn-primary.pulse-cta {
      animation: ctaPulse 2.6s ease-in-out infinite;
    }
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(240,124,30,.35); }
      50%       { box-shadow: 0 8px 40px rgba(240,124,30,.65); }
    }
    .impact-note {
      margin-top: 28px;
      font-size: .82rem;
      color: rgba(255,255,255,.5);
    }

    /* ============================================================
       FOOTER  (identical to index.html)
    ============================================================ */
    #footer {
      background: #060f1e;
      color: rgba(255,255,255,.75);
      padding: 80px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand img {
      height: 52px;
      width: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }
    .footer-brand p {
      font-size: .9rem;
      line-height: 1.8;
      color: rgba(255,255,255,.55);
      margin-bottom: 24px;
    }
    .footer-socials { display: flex; gap: 10px; }
    .social-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      transition: var(--transition);
      cursor: pointer;
      color: rgba(255,255,255,.6);
    }
    .social-icon:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--white);
      transform: translateY(-2px);
    }
    .footer-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before { content: '\203A'; color: var(--orange); font-size: 1rem; }
    .footer-links a:hover { color: var(--orange); }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      line-height: 1.6;
    }
    .contact-icon {
      width: 32px; height: 32px;
      background: rgba(240,124,30,.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      flex-shrink: 0;
      font-size: .9rem;
    }
    .contact-row a { color: rgba(255,255,255,.55); transition: color var(--transition); }
    .contact-row a:hover { color: var(--orange); }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 0;
    }
    .footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-size: .82rem;
      color: rgba(255,255,255,.35);
      transition: color var(--transition);
    }
    .footer-legal a:hover { color: var(--orange); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-image-wrap img { height: 400px; }
      .about-badge { right: 16px; bottom: -12px; }
      .mh-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .mh-grid { grid-template-columns: 1fr 1fr; }
      .team-founder-card { flex-direction: column; text-align: center; padding: 32px 24px; }
      .founder-photo { width: 110px; height: 110px; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
      .donate-cta-btns { flex-direction: column; align-items: center; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .team-photo-wrap { height: 180px; }
      .mh-grid { grid-template-columns: 1fr; }
      .btn-lg { padding: 15px 28px; font-size: 1rem; }
      #stickyDonate { right: 8px; bottom: 10px; padding: 12px 14px; font-size: .82rem; }
    }
    @media (max-width: 360px) {
      .team-grid { grid-template-columns: 1fr; }
    }
