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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #FDF6EF;
    color: #1a1a2e;
    overflow-x: hidden;
  }

  /* ===========================
     NAVIGATION
  =========================== */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  }
  nav.scrolled {
    padding: 10px 60px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo img {
    height: 52px;
    width: 52px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  nav.scrolled .logo img {
    height: 42px;
    width: 42px;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .logo-text .top {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2B8FBF;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .logo-text .bottom {
    font-size: 11px;
    color: #3BAD8A;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a:hover { color: #2B8FBF; }
  .nav-cta {
    background: linear-gradient(135deg, #C94F3A, #E8892A) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 79, 58, 0.35);
  }

  /* Hamburger menu */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 3px;
    transition: transform 0.35s ease, opacity 0.25s ease;
  }
  body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* ===========================
     HERO
  =========================== */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(43,143,191,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(201,79,58,0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 60% 80%, rgba(59,173,138,0.06) 0%, transparent 50%),
      linear-gradient(135deg, #FDF6EF 0%, #EEF7FB 60%, #F0FBF6 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
    animation: heroGradientDrift 12s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
  }
  @keyframes heroGradientDrift {
    0%   { background-position: 0% 0%, 100% 0%, 0% 100%, 0% 0%; }
    50%  { background-position: 50% 30%, 50% 50%, 50% 50%, 0% 0%; }
    100% { background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%; }
  }
  /* Decorative animated blobs */
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(43,143,191,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobDrift1 8s ease-in-out infinite alternate;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,79,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobDrift2 10s ease-in-out infinite alternate;
  }
  @keyframes blobDrift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-60px, 40px) scale(1.1); }
  }
  @keyframes blobDrift2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, -30px) scale(1.15); }
  }

  /* Hero entrance animations */
  .hero-animate-1 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  }
  .hero-animate-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
  }
  .hero-animate-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
  }
  @keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(43,143,191,0.12), rgba(59,173,138,0.12));
    color: #2B8FBF;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 28px;
    border: 1px solid rgba(43,143,191,0.2);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
  }
  .hero h1 .teal  { color: #2B8FBF; }
  .hero h1 .coral {
    color: #C94F3A;
    font-style: italic;
    background: linear-gradient(135deg, #C94F3A, #E8892A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 440px;
    margin-bottom: 40px;
  }
  .hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, #2B8FBF, #3BAD8A);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 143, 191, 0.3);
  }
  .btn-outline {
    background: transparent;
    color: #C94F3A;
    padding: 13px 30px;
    border-radius: 40px;
    border: 1.5px solid #C94F3A;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-outline:hover {
    background: #C94F3A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 79, 58, 0.25);
  }

  /* Scroll indicator */
  .scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 48px;
  }
  .scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 500;
  }
  .scroll-arrow {
    font-size: 16px;
    color: #2B8FBF;
    animation: scrollBounce 2s ease-in-out infinite;
  }
  @keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
  }

  /* Hero right visual */
  .hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-logo-bg {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(135deg, #e8f6fc 0%, #f0faf6 50%, #fef5ee 100%);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(43,143,191,0.15);
    box-shadow: 0 20px 60px rgba(43, 143, 191, 0.12);
    transition: box-shadow 0.5s ease;
  }
  .hero-logo-bg:hover {
    box-shadow: 0 30px 80px rgba(43, 143, 191, 0.2);
  }
  .hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
  }
  .hero-video--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #e8f6fc 0%, #f0faf6 50%, #fef5ee 100%);
  }
  .hero-video-placeholder {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
  }
  .hero-video-placeholder code {
    font-size: 12px;
    color: #2B8FBF;
  }

  /* Orbit ring decoration */
  .orbit {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(43,143,191,0.18);
  }
  .orbit-1 { width: 340px; height: 340px; }
  .orbit-2 { width: 420px; height: 420px; border-color: rgba(201,79,58,0.12); }

  .floating-badge {
    position: absolute;
    bottom: 32px;
    right: -16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(43,143,191,0.15);
    border: 1px solid rgba(43,143,191,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(43,143,191,0.22);
  }
  .floating-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #2B8FBF, #3BAD8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .floating-badge .lbl { font-size: 12px; color: #888; margin-top: 2px; }

  .floating-badge2 {
    position: absolute;
    top: 32px;
    left: -16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(201,79,58,0.15);
    border: 1px solid rgba(201,79,58,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .floating-badge2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(201,79,58,0.22);
  }
  .dot-multi {
    display: flex;
    gap: 4px;
  }
  .dot-multi span {
    width: 10px; height: 10px; border-radius: 50%;
    display: block;
    animation: dotPulse 2s ease-in-out infinite;
  }
  .dot-multi span:nth-child(2) { animation-delay: 0.3s; }
  .dot-multi span:nth-child(3) { animation-delay: 0.6s; }
  .dot-multi span:nth-child(4) { animation-delay: 0.9s; }
  @keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.7; }
  }
  .floating-badge2 .b-text { font-size: 12px; font-weight: 500; color: #333; }
  .floating-badge2 .b-sub  { font-size: 11px; color: #888; }

  /* ===========================
     STATS BAR
  =========================== */
  .stats-bar {
    background: linear-gradient(135deg, #2B8FBF 0%, #7B4CA0 50%, #C94F3A 100%);
    background-size: 200% 100%;
    animation: statsGradient 6s ease-in-out infinite alternate;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
  }
  @keyframes statsGradient {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  .stat-item {
    transition: transform 0.3s ease;
  }
  .stat-item:hover {
    transform: scale(1.08);
  }
  .stat-item .n {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  }
  .stat-item .l {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* ===========================
     SECTIONS (shared)
  =========================== */
  .section { padding: 100px 60px; }
  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 18px;
  }
  .tag-teal  { color: #2B8FBF; background: rgba(43,143,191,0.1); }
  .tag-coral { color: #C94F3A; background: rgba(201,79,58,0.1); }
  .tag-green { color: #3BAD8A; background: rgba(59,173,138,0.1); }
  .tag-purple{ color: #7B4CA0; background: rgba(123,76,160,0.1); }

  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .section p.sub {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    max-width: 520px;
  }

  /* ===========================
     CAUSES
  =========================== */
  .causes { background: #fff; }
  .causes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }
  .causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .cause-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
  }
  .cause-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }
  .cause-img {
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
  .cause-img::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(0,0,0,0.24);
    transition: opacity 0.4s ease;
  }
  .cause-card:hover .cause-img::before {
    opacity: 0.3;
  }
  .cause-img.coral-g  { background-image: url('../images/gallery-04.png'); }
  .cause-img.teal-g   { background-image: url('../images/gallery-02.png'); }
  .cause-img.purple-g { background-image: url('../images/gallery-05.png'); }
  .cause-img .c-icon {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.34);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.4s ease, background 0.4s ease;
    color: #fff;
  }
  .cause-card:hover .c-icon {
    transform: rotate(15deg) scale(1.1);
    background: rgba(255,255,255,0.35);
  }
  .cause-badge {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #333;
  }
  .cause-body { background: #fafafa; padding: 24px; }
  .cause-body h3 { font-size: 17px; font-weight: 500; color: #1a1a2e; margin-bottom: 8px; }
  .cause-body p  { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 16px; }
  .progress-bar  {
    height: 5px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }
  /* Shimmer on progress bar */
  .progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShimmer 2.5s ease-in-out infinite;
  }
  @keyframes progressShimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
  }
  .pf-coral  { background: linear-gradient(90deg, #f4a58a, #C94F3A); }
  .pf-teal   { background: linear-gradient(90deg, #7dd8c8, #2B8FBF); }
  .pf-purple { background: linear-gradient(90deg, #c4a0e0, #7B4CA0); }
  .cause-meta { display: flex; justify-content: space-between; font-size: 12px; color: #999; }
  .cause-meta strong { color: #1a1a2e; }

  /* ===========================
     IMPACT STORIES (NEW)
  =========================== */
  .impact-stories {
    background: linear-gradient(135deg, #FDF6EF 0%, #EEF7FB 50%, #F0FBF6 100%);
    overflow: hidden;
    position: relative;
  }
  .impact-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .stories-ticker {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .story-card {
    flex-shrink: 0;
    width: 340px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  }
  .story-emoji {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .story-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
  }
  .story-author {
    font-size: 12px;
    font-weight: 500;
    color: #2B8FBF;
    letter-spacing: 0.5px;
  }

  /* ===========================
     MISSION
  =========================== */
  .mission {
    background: linear-gradient(135deg, #EEF7FB 0%, #F0FBF6 100%);
  }
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .mission-img-wrap {
    position: relative;
  }
  .mission-img-wrap img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(43, 143, 191, 0.15));
    transition: transform 0.5s ease;
  }
  .mission-img-wrap:hover img {
    transform: scale(1.05) rotate(3deg);
  }
  .m-ring {
    position: absolute;
    border-radius: 50%;
  }
  .m-ring-1 { width: 280px; height: 280px; border: 1.5px dashed rgba(43,143,191,0.2); }
  .m-ring-2 { width: 360px; height: 360px; border: 1px dashed rgba(201,79,58,0.15); }
  .mission-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease;
  }
  .feature:hover {
    transform: translateX(6px);
  }
  .f-dot {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  .feature:hover .f-dot {
    transform: scale(1.1) rotate(5deg);
  }
  .f-dot.d1 { background: rgba(43,143,191,0.12); }
  .f-dot.d2 { background: rgba(59,173,138,0.12); }
  .f-dot.d3 { background: rgba(201,79,58,0.12); }
  .f-body h4 { font-size: 15px; font-weight: 500; color: #1a1a2e; margin-bottom: 4px; }
  .f-body p  { font-size: 13px; color: #666; line-height: 1.6; }

  /* ===========================
     TEAM
  =========================== */
  .volunteers { background: #1a1a2e; position: relative; overflow: hidden; }
  /* Subtle gradient orbs in background */
  .volunteers::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(43,143,191,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobDrift1 12s ease-in-out infinite alternate;
  }
  .volunteers::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(123,76,160,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobDrift2 14s ease-in-out infinite alternate;
  }
  .volunteers .section-tag { color: #7dd8c8; background: rgba(125,216,200,0.1); }
  .volunteers h2 { color: #fff; }
  .volunteers p.sub { color: rgba(255,255,255,0.5); }
  .volunteer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
  }
  .v-card {
    background: rgba(37, 37, 64, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 28px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .v-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(43,143,191,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .v-card:hover::before {
    opacity: 1;
  }
  .v-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43,143,191,0.2);
    box-shadow: 0 20px 60px rgba(43,143,191,0.1);
  }
  .v-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    position: relative;
    transition: transform 0.3s ease;
  }
  .v-card:hover .v-avatar {
    transform: scale(1.08);
  }
  /* Animated ring around avatar */
  .v-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: currentColor;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: avatarSpin 3s linear infinite;
  }
  .v-card:hover .v-avatar::after {
    opacity: 0.4;
  }
  @keyframes avatarSpin {
    to { transform: rotate(360deg); }
  }
  .va-teal   { background: rgba(43,143,191,0.2);  color: #7dd8c8; }
  .va-coral  { background: rgba(201,79,58,0.2);   color: #f4a58a; }
  .va-purple { background: rgba(123,76,160,0.2);  color: #c4a0e0; }
  .va-green  { background: rgba(59,173,138,0.2);  color: #7dd8c8; }
  .v-name  { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 4px; }
  .v-role  { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
  .v-quote { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; font-style: italic; }

  /* ===========================
     DONATE
  =========================== */
  .donate-section {
    background: linear-gradient(135deg, #2B8FBF 0%, #7B4CA0 60%, #C94F3A 100%);
    background-size: 200% 200%;
    animation: donateGradient 8s ease-in-out infinite alternate;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  @keyframes donateGradient {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  /* Floating sparkles in donate section */
  .donate-section::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    top: -50px; right: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: blobDrift1 7s ease-in-out infinite alternate;
  }
  .donate-section::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    bottom: -30px; left: 30%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: blobDrift2 9s ease-in-out infinite alternate;
  }
  .donate-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
  }
  .donate-section p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
  }
  .donate-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  .donate-card:hover {
    transform: translateY(-4px);
  }
  .donate-card h3 { font-size: 17px; font-weight: 500; color: #1a1a2e; margin-bottom: 24px; }
  .amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .amount-btn {
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.25s ease;
  }
  .amount-btn.active,
  .amount-btn:hover {
    border-color: #2B8FBF;
    background: rgba(43,143,191,0.08);
    color: #2B8FBF;
    transform: scale(1.03);
  }
  .custom-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    background: #fafafa;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .custom-input:focus {
    border-color: #2B8FBF;
    box-shadow: 0 0 0 4px rgba(43, 143, 191, 0.1);
  }
  .donate-btn {
    width: 100%;
    background: linear-gradient(135deg, #2B8FBF, #7B4CA0);
    color: #fff;
    padding: 16px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(43, 143, 191, 0.35);
  }
  .secure-note { font-size: 12px; color: #0a0606; text-align: center; margin-top: 12px; }

  /* ===========================
     FOOTER WAVE
  =========================== */
  .footer-wave {
    height: 60px;
    background: #0f0f1e;
    position: relative;
  }
  .footer-wave::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #0f0f1e);
  }

  /* ===========================
     FOOTER
  =========================== */
  footer {
    background: #0f0f1e;
    padding: 60px 60px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand-name {
    font-size: 13px;
    font-weight: 500;
    color: #2B8FBF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .footer-brand-sub {
    font-size: 11px;
    color: #3BAD8A;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-desc { font-size: 13px; color: #555; line-height: 1.7; max-width: 260px; }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col a {
    display: block;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .footer-col a:hover {
    color: #7dd8c8;
    transform: translateX(4px);
  }
  .social-row { display: flex; gap: 12px; margin-top: 24px; }
  .s-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid #2a2a3e;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    background: transparent; color: #666;
    transition: all 0.3s ease; text-decoration: none;
  }
  .s-btn svg { width: 16px; height: 16px; }
  .s-btn:hover {
    border-color: #2B8FBF;
    color: #7dd8c8;
    background: rgba(43, 143, 191, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(43, 143, 191, 0.2);
  }
  .footer-bottom {
    background: #0f0f1e;
    padding: 24px 60px;
    border-top: 1px solid #1e1e30;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p { font-size: 12px; color: #444; }
  .footer-legal-link {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-legal-link:hover {
    color: #888;
    text-decoration: underline;
  }


  /* Multicolor divider */
  .rainbow-bar {
    height: 4px;
    background: linear-gradient(90deg, #2B8FBF, #3BAD8A, #7B4CA0, #C94F3A, #E8892A);
    background-size: 200% 100%;
    animation: rainbowSlide 4s linear infinite;
  }
  @keyframes rainbowSlide {
    from { background-position: 0% 0%; }
    to   { background-position: 200% 0%; }
  }

  /* ===========================
     RESPONSIVE
  =========================== */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 60px 30px;
      gap: 40px;
    }
    .hero-visual { height: 350px; }
    .causes-grid { grid-template-columns: 1fr 1fr; }
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .volunteer-grid { grid-template-columns: repeat(2, 1fr); }
    .donate-section {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 60px 30px;
    }
    .causes-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    footer { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    nav.scrolled { padding: 10px 20px; }
    .hamburger { display: flex; }
    .nav-links {
      position: fixed;
      top: 0; right: 0;
      width: 280px;
      height: 100vh;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 24px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: -10px 0 40px rgba(0,0,0,0.1);
      z-index: 150;
    }
    body.nav-open .nav-links {
      transform: translateX(0);
    }
    .nav-links a { font-size: 18px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 14px; }
    .section { padding: 60px 20px; }
    .section h2 { font-size: 30px; }
    .causes-grid { grid-template-columns: 1fr; }
    .volunteer-grid { grid-template-columns: 1fr; }
    .donate-section h2 { font-size: 32px; }
    footer { grid-template-columns: 1fr; padding: 40px 20px; }
    .footer-bottom { padding: 20px; flex-direction: column; gap: 8px; align-items: flex-start; }
    .stats-bar { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
    .scroll-indicator { display: none; }
  }

  /* ===========================
     REDUCED MOTION
  =========================== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }