@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #020b18;
    font-family: 'Inter', sans-serif;
    padding-top: 0; /* keep 0 because header is in flow */

}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999; /* must be higher than hero */
    background: linear-gradient(180deg, #0a1727 0%, #071426 100%);
}


/* MAIN HEADER BAR */
.header-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo img {
    height: 4rem;
    filter: brightness(0) invert(1);
}

/* ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* PHONE BUTTON */
.phone-btn {
    font-family: "Inter", sans-serif;  
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    margin: 0 10px;
    background: linear-gradient(135deg,#315381,#243b6b);
    border-radius: .75rem;
    border: 1px solid hsla(42,70%,50%,.25);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.phone-btn:hover {
    background: linear-gradient(135deg,#3a5a8a,#2b466f);
    transform: scale(1.01); /* subtle zoom */
    box-shadow: 0 18px 10px rgba(0, 0, 0, 0.157); /* black shadow */
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

.phone-btn img {
    width: 16px;
    height: 16px;
}

/* DONATE BUTTON */
.donate-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(90deg,#d8b564,#b6913a,#886c2b);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;

    /* 🔥 animation */
    animation: donatePulse 2.4s ease-in-out infinite;
    will-change: transform, box-shadow;
}

/* ICON OPTIONAL SMOOTH */
.donate-btn i {
    font-size: 16px;
}

@keyframes donatePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(216,181,100,0.0);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(216,181,100,0.55);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(216,181,100,0.0);
    }
}


/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: linear-gradient(90deg,#d8b564,#b6913a,#886c2b);
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
}

/* donation-progress-section */

/* ===============================
   DONATION PROGRESS SECTION
================================ */
.donation-progress-section {
    background: linear-gradient(180deg,#16263b,#0f1c2e);
    padding: 100px 12vw;
    text-align: center;
}

.donation-inner {
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.donation-title {
    font-family: "Playfair", serif;
    font-size: 28px;
    line-height: 1.3;
    color: #ffffff;
}

.highlight-name {
    color: #d8b564;
    font-weight: 700;
}

.highlight-gold {
    color: #d8b564;
    font-weight: 800;
}

.highlight-blue {
    color: #d8b564;
}

/* SUBTITLE */
.donation-subtitle {
    margin-top: 40px;
    font-size: 16px;
    color: #9fb3cf;
    font-weight: 600;
}

/* QUOTE */
.donation-quote {
    margin: 24px auto 18px;
    padding: 26px 32px;
    max-width: 700px;
    border: 2px solid rgba(255,215,120,.35);
    border-radius: 14px;
    color: #ffffff;
    font-style: italic;
    position: relative;
    background: rgba(255,255,255,0.02);
}

.quote-mark {
    font-size: 32px;
    color: #d8b564;
    font-weight: 900;
}

.quote-mark.start {
    position: absolute;
    top: -14px;
    left: 14px;
}

.quote-mark.end {
    position: absolute;
    bottom: -18px;
    right: 14px;
}

/* DESCRIPTION */
.donation-desc {
    color: #9fb3cf;
    font-size: 15px;
    margin-top: 18px;
}

/* PROGRESS */
.donation-progress-wrap {
    margin: 50px auto 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.goal-label {
    color: #d8b564;
    font-weight: 700;
    font-size: 14px;
    min-width: 48px;
}

.progress-bar {
    flex: 1;
    height: 14px;
    background: #1a2a42;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,#dfa620,#f0c766);
    border-radius: 999px;
}

/* STATS */
.donation-stats {
    margin-top: 26px;
    font-size: 20px;
    font-weight: 700;
    color: #d8b564;
}

.donation-stats .percent {
    font-size: 26px;
    color: #d8b564;
}

.donation-stats .feet {
    color: #d8b564;
}

.donation-stats .total {
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .donation-title {
        font-size: 20px;
    }

    .donation-progress-section {
        padding: 80px 6vw;
    }

    .donation-stats {
        font-size: 18px;
    }
}



/* HERO */
.hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}
.hero-bgg{
    display: none;
}
.text-mobile{
    display: none;
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 12, 26, 0.96) 0%,
        rgba(3, 12, 26, 0.85) 40%,
        rgba(3, 12, 26, 0.4) 70%,
        rgba(3, 12, 26, 0.05) 100%
        );
}

/* Content */
.hero-content {
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    max-width: 60%;
    padding-top: 40px;
    padding-left: 14vw;
    color: #ffffff;
}

/* Eyebrow */
.hero-eyebrow {
    font-size: 24px;
    font-weight: 700;

}

/* Heading */
.hero h1 {
    margin-top: 14px;
    font-family: "Playfair", serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 0.80;
}

/* Description */
.hero-desc {
    font-family: 'Inter', sans-serif;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #d6dbe4;
}

/* Sub text */
.hero-sub {
    margin-top: 16px;
    font-size: 18px;
    color: #f0c766;
    font-weight: 400;
}

/* Button */
.hero-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 34px;
    background: linear-gradient(90deg, rgb(216, 181, 100), rgb(182, 145, 58), rgb(136, 108, 43));
    color: #ffffff;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
/* marquee section */
/* SECTION */
.trusted-marquee {
    background: linear-gradient(180deg,#16263b,#0f1c2e);
    padding: 50px 0;
    overflow: hidden;
}

.trusted-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10vw;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
}

/* LABEL */
.trusted-label {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* MARQUEE */
.marquee {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 26px;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

/* LOGO CARD */
.logo-card {
    background: #ffffff;
    border-radius: 14px;
    min-width: 240px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card img {
    max-height: 38px;
    max-width: 75%;
    object-fit: contain;
}

/* ANIMATION */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* inspiration section  */
.inspiration-section {
    background:linear-gradient(180deg,#091320,#050b14);
    padding: 100px 0 120px;
}

/* LAYOUT */
.inspiration-inner {
    margin: 0 auto;
    padding: 0 10vw;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE CARD */
.media-card {
    position: relative;
    width: 100%;  
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #caa042;
}

/* ===============================
   INSPIRATION VIDEO (ISOLATED)
================================ */

.insp-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    max-width: 520px;
    border-radius: 22px;
    overflow: visible; /* IMPORTANT */
    background: transparent;
    isolation: isolate;
}


/* GOLD GLOW BORDER */
.insp-video-card::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 26px;
    background: linear-gradient(
        120deg,
        #caa24d,
        #ffdf8c,
        #caa24d
        );
    filter: blur(8px);
    opacity: 0.9;
    z-index: -1;
    animation: glowMove 5s linear infinite;
}

.insp-video-card::after {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 40px;
    background: radial-gradient(
        circle,
        rgba(202,162,77,0.55),
        transparent 65%
        );
    z-index: -2;
    animation: glowPulse 4s ease-in-out infinite;
}


/* SOFT OUTER SHADOW */
.insp-video-card::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 32px;
    background: radial-gradient(
        circle,
        rgba(202,162,77,0.45),
        transparent 65%
        );
    z-index: -2;
    animation: glowPulse 3.5s ease-in-out infinite;
}

/* IMAGE */
.insp-poster,
.insp-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    background: #000;
}


/* PLAY BUTTON stays same */


/* ANIMATIONS */
@keyframes glowMove {
    0% {
        filter: blur(8px);
        opacity: 0.7;
    }
    50% {
        filter: blur(12px);
        opacity: 1;
    }
    100% {
        filter: blur(8px);
        opacity: 0.7;
    }
}


@keyframes glowPulse {
    0%,100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.insp-video-card:hover::before {
    filter: blur(8px);
    opacity: 1;
}

.insp-video-card:hover {
    transform: scale(1.01);
    transition: transform 0.4s ease;
}



.insp-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insp-play-btn {
    position: absolute;

    /* bottom-right positioning */
    right: 22px;
    bottom: 22px;

    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,0.92);
    color: #000;
    font-size: 20px;

    cursor: pointer;
    z-index: 3;

    display: grid;
    place-items: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.insp-play-btn:hover {
    transform: scale(1.15);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.insp-play-btn {
    right: 14px;
    bottom: 14px;
}


.insp-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    z-index: 4;
}



/* IMAGE */
.video-poster {
    width: 100%;
    display: block;
    object-fit: cover;
}
.leader-info{
    display: flex;
}
/* PLAY BUTTON */
.play-btn1 {
    position: absolute;
    bottom: 2vh;
    left: 28vw;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    background: #ffffffe0;
    display: grid;
    place-items: center;
    cursor: pointer;
    margin: 0 10px;
    z-index: 2;
}
.play-btn1:hover{
    background: #ffffff;
    transform: scale(1.2);
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}
.play-btn1 i {
    font-size: 20px;
    color: #000;
    margin-left: 3px;
}

/* YOUTUBE */
.youtube-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;   /* hidden initially */
    border: none;
}


/* CONTENT */
.inspiration-content {
    color: #d9e2ef;
}

.eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.6px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.inspiration-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 22px;
}

.inspiration-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #94a3b8;
}

/* CTA */
.inspiration-cta {
    margin-top: 60px;
    text-align: center;
}

.gold-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgb(216, 181, 100), rgb(182, 145, 58), rgb(136, 108, 43));
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

/* coinstruction section */
.construction-section {
    background: linear-gradient(180deg,#16263b,#0f1c2e);
    padding: 90px 0 110px;
}

.construction-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.section-head {
    margin-bottom: 40px;
}

.section-head h2 {
    font-family: "Playfair", serif;
    font-size: 36px;
    color: #ffffff;
}

.section-head p {
    margin-top: 6px;
    color: #a9b9d2;
    font-size: 15px;
}

/* GRID */
.construction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 18px;
}

/* CARD */
.card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* smooth zoom */
}

/* HOVER ZOOM  */
.card:hover img {
    transform: scale(1.1); /* 10% zoom */
}

/* SIZES */
.card.large {
    grid-column: span 2;
    grid-row: span 2;
}



/* TAG */
.tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #d4a43a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 6px;
}

.tag.center {
    left: 40%;
    transform: translateX(-30%);
    bottom: 14px;
    font-size: 18px;
    padding: 8px 14px;
}

/* HOVER */
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
.card img {
    cursor: zoom-in;
}

.card:hover::after {
    opacity: 1;
}

/* ===============================
   GALLERY MODAL
================================ */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 30, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.gallery-viewport {
    width: 80vw;
    max-width: 1100px;
    height: 80vh;
    overflow: hidden;
    position: relative;
}
.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

/* Image */
.gallery-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}


/* Close */
.gallery-close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,164,58,0.9);
    border: none;
    color: #000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: grid;
    place-items: center;
}

.gallery-nav:hover {
    background: #f0c766;
}

.gallery-nav.prev { left: 40px; }
.gallery-nav.next { right: 40px; }


@media (max-width: 900px) {
    .gallery-nav {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        font-size: 18px;
        z-index: 10001;
        background: rgba(212,164,58,0.95);
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }
}



/* gratitude section */
.gratitude-section {
    background: radial-gradient(circle at center, #0b2038, #050f1f);
    padding: 100px 0;
}

.gratitude-card {
    background: #b56cff;
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 60px 70px;
    border-radius: 16px;
    background: linear-gradient(180deg, #0e1f36, #081425);
    border: 1px solid rgba(216,181,100,0.35);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    align-items: center;

    /* breathing glow */
    box-shadow:
        0 0 40px rgba(216,181,100,0.18),
        inset 0 0 40px rgba(216,181,100,0.06);

    animation: cardGlow 4s ease-in-out infinite;
}

/* STOP glow on hover */
.gratitude-card:hover {
    animation: none;
    box-shadow:
        0 0 10px rgba(216,181,100,0.15),
        inset 0 0 20px rgba(216,181,100,0.05);
}

/* Glow animation */
@keyframes cardGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(216,181,100,0.18),
            inset 0 0 25px rgba(216,181,100,0.06);
    }
    50% {
        box-shadow:
            0 0 70px rgba(216,181,100,0.35),
            inset 0 0 45px rgba(216,181,100,0.12);
    }
}


/* PROGRESS */
.progress-wrap {
    position: relative;
    width: 180px;
    height: 180px;
}

/* Halo behind circle */
.progress-halo {
    position: absolute;
    inset: -25px;
    border-radius: 20%;
    background: radial-gradient(
        circle,
        rgba(223,166,32,0.20) 0%,
        rgba(223,166,32,0.20) 35%,
        rgba(223,166,32,0.20) 55%,
        transparent 70%
        );
    filter: blur(12px);
    animation: haloPulse 3s ease-in-out infinite;
    z-index: 0;
}

/* SVG above halo */
.progress-ring {
    position: relative;
    z-index: 1;
}

/* Pulse animation */
@keyframes haloPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}


.progress-ring {
    transform: rotate(-90deg);
}

.progress-circle {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(90deg, #d8b564, #b6913a, #886c2b);
    background-clip: text;
    color: transparent;
}

/* CONTENT */
.gratitude-content h2 {
    font-family: "Playfair", serif;
    font-size: 36px;
    color: #ffffff;
}

.gratitude-content p {
    margin-top: 12px;
    font-size: 16px;
    color: #9fb3cf;
}

.stats-box {
    margin-top: 26px;
    padding: 22px 36px;
    border-radius: 18px;

    /* MULTI-LAYER BACKGROUND */
    background:
        /* LEFT GOLD GLOW */
        radial-gradient(
        circle at left center,
        rgba(223, 166, 32, 0.20),
        hsla(42, 70%, 50%, 0.12),
        transparent 60%
        ),

        /* RIGHT GOLD GLOW */
        radial-gradient(
        circle at right center,
        rgba(255, 210, 110, 0.35),
        rgba(255, 210, 110, 0.18),
        transparent 60%
        ),

        /* BASE GLASS */
        linear-gradient(
        180deg,
        rgba(20, 40, 75, 0.95),
        rgba(10, 22, 42, 0.95)
        );

    border: 1px solid rgba(255, 215, 120, 0.28);

    box-shadow:
        inset 0 0 35px rgba(255, 215, 120, 0.12),
        inset 0 0 8px rgba(255,255,255,0.08),
        0 12px 35px rgba(0,0,0,0.55);

    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}




.stats-box .raised {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #d8b564, #b6913a, #886c2b);
    background-clip: text;
    color: transparent;
}

.stats-box .total {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.stats-box .unit {
    font-size: 18px;
    color: #DFA620;
    font-weight: 600;
    margin-left: 6px;
}

.gold-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg,#d8b564,#b6913a,#886c2b);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

/* charity-section */
.charity-section {
    background: #111f32;
    padding: 30px 10vw;
}
.charity-section h2{
    font-family: "Playfair", serif;
    font-size: 36px;
    color: #ffffff;
    padding: 0px 0 30px 30px;
}

.charity-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
/* COMMON ZOOM EFFECT */
.charity-box,
.charity-media ,.gold-btn:hover ,.hero-btn:hover{
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
    text-decoration: auto;
    color:#fff;
}

/* HOVER */
.charity-box:hover,
.charity-media:hover ,.gold-btn:hover,.hero-btn:hover{
    transform: scale(1.03); /* subtle zoom */
    box-shadow: 0 18px 10px rgba(0, 0, 0, 0.157); /* black shadow */
}


/* LEFT */
.charity-left h2 {
    font-family: "Playfair", serif;
    font-size: 38px;
    color: #fff;
    margin-bottom: 26px;
}

.charity-box {
    background: linear-gradient(180deg, #0e1f36, #081425);
    border: 1px solid rgba(255,215,120,.25);
    border-radius: 18px;
    padding: 16px;
    max-height: 480px;
}

/* ITEM */
.charity-item {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: transparent;
    border: 1px solid hsl(42 75% 15%);
    transition: background .3s ease;
}

.charity-item.active {
    background: linear-gradient(180deg,#122742,#0b1b31);
    border-color: rgba(255,215,120,.35);
}

.charity-head {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: #fff;
}

.num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dfa620;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
}

.title {
    font-size: 16px;
    font-weight: 600;
}

.charity-head i {
    margin-left: auto;
    transition: transform .35s ease;
}

.charity-item.active .charity-head i {
    transform: rotate(0deg); /* DOWN → UP */
}


/* BODY */
.charity-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.45s ease,
        opacity 0.3s ease;
    font-size: 14px;
    line-height: 1.6;
    color: #b8c6db;
    padding-left: 42px;
}

/* OPEN STATE */
.charity-item.active .charity-body {
    max-height: 200px; /* enough for text */
    opacity: 1;
    margin-top: 12px;
}


/* RIGHT IMAGE */
.charity-right {
    position: relative;
    overflow: hidden;
}

.charity-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.charity-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* CTA */
.charity-cta {
    text-align: center;
}

.donor-section {
    background: linear-gradient(180deg,#091320,#050b14);
    padding: 90px 12vw;
}

.donor-title {
    font-family: "Playfair", serif;
    font-size: 40px;
    color: #fff;
    margin-bottom: 26px;
}

/* MARQUEE */
.donor-marquee {
    overflow: hidden;
    margin-bottom: 50px;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: donorScroll 22s linear infinite;
}

@keyframes donorScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* DONOR CARD */
.donor-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    min-width: 260px;

    background: linear-gradient(180deg,#2b2614,#1a160b);
    border-radius: 16px;
    border: 1px solid rgba(216,181,100,.35);

    box-shadow:
        inset 0 0 18px rgba(216,181,100,.12),
        0 10px 25px rgba(0,0,0,.45);

    color: #fff;
}

/* AVATAR */
.donor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #8a6b1f;
    color: #fff;

    display: grid;
    place-items: center;

    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

/* INFO */
.donor-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.donor-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.donor-amount {
    font-size: 14px;
    font-weight: 600;
    color: #dfa620;
    margin-top: 2px;
}

.donor-time {
    font-size: 12px;
    color: #a9b9d2;
    margin-top: 2px;
}

/* CONTENT */
.donor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.donor-image-box {
    padding: 20px 40px;
    border-radius: 10px;
    background: linear-gradient(180deg,#0e1f36,#081425);
    border: 1px solid rgba(255,215,120,.3);
    transition: transform .35s ease, box-shadow .35s ease;
}

.donor-image-box:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,.55);
}

.donor-image-box img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* RIGHT */
.donor-right h3,.donor-section h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 24px;
}

.privilege-list,.other-privilege-list,.membership-privileges-list {
    list-style: none;
    display: grid;
    gap: 5px;
}

.privilege-list li ,.other-privilege-list li, .membership-privileges-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all .3s ease;
}

.privilege-list li.active,
.privilege-list li:hover ,
.other-privilege-list li.active,
.other-privilege-list li:hover,
.membership-privileges-list li.active,
.membership-privileges-list li:hover {
    background: linear-gradient(180deg,#101c2d,#101c2d);
    border: 1px solid rgba(255,215,120,.2);
    border-color: rgba(255,215,120,.45);
}

.privilege-list i,.other-privilege-list i, .membership-privileges-list i {
    color: #f0c766;
}

/* CTA */
.donor-cta {
    text-align: center;
    margin-top: 50px;
}
.donor-ctaa{
    text-align: left;
}

/* BOTTOM MARQUEES WRAPPER */
.donor-marquees {
    margin-top: 70px;
    overflow: hidden;
}

/* COMMON MARQUEE */
.donor-marquee {
    overflow: hidden;
    margin-bottom: 22px;
}

.donor-marquee .marquee-track {
    display: inline-flex;
    gap: 22px;
    width: max-content;
}

/* DONOR CHIP (matches your design) */
.donor-chip {
    padding: 14px 22px;
    border-radius: 16px;
    background: linear-gradient(180deg,#dfa62033,#dfa62033);
    border: 1px solid rgba(247, 208, 119, 0.35);
    color: #f0c766;
    font-weight: 600;
    white-space: nowrap;
}

/* ANIMATIONS */
.marquee-left .marquee-track {
    animation: scroll-left 26s linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right 26s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* leaders-section */

.leaders-section {
    background: #111f32;
    padding: 100px 15vw;
    text-align: center;
    color: #fff;
}

.leaders-section h2 {
    font-family: "Playfair", serif;
    font-size: 42px;
}

.subtitle {
    margin-top: 10px;
    color: #9fb3cf;
}

.leaders-slider-wrap {
    position: relative;
    margin-top: 60px;
}

.leaders-slider {
    overflow: hidden;
    touch-action: pan-y;
}

.leaders-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARD BASE */
.leader-card {
    background: #111c2c;
    border-radius: 18px;
    padding: 20px 25px;
    /* min-width: 325px; */
    flex: 0 0 calc((100% - 60px) / 3);
    color: #fff;
    position: relative;
}
.leaders-track {
    transition: transform 0.5s ease;
}
/* Quote */
.leader-card .quote {
    color: #4f4629;
    font-size: 4rem;
    display: block;
    margin-bottom: 18px;
    text-align: start;
}

/* Paragraph */
.leader-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 36px;
    text-align: start;
}

/* 🔥 THIS FIXES YOUR MAIN ISSUE */
.leader-footer {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center horizontally */
    text-align: center;
    gap: 14px;
    position: relative;
}

.leader-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid #d4a43a;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.leader-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button */
.play-btn {

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111f32;
    display: grid;
    place-items: center;
    cursor: pointer;
    margin: 0 10px;
    z-index: 2;
}
.play-btn:hover{
    background: #d4a33a28;

}
.play-btn i {
    font-size: 20px;
    color: #000;
    margin-left: 3px;
}

.leader-avatar .play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: 0.3s ease;
}

.leader-avatar:hover .play-btn {
    opacity: 1;
}


.leader-footer h4 {
    color: #f0c766;
    margin-bottom: 2px;
}

.leader-footer span {
    font-size: 13px;
    color: #9fb3cf;
}

/* arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid #907840a6;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}

.prev { left: -60px; }
.next { right: -60px; }

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;

    z-index: 20000; /* 🔥 higher than header */
}

.video-box {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.video-box iframe {
    width: 100%;
    height: 450px;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* faq section */
.faq-section {
    background: linear-gradient(180deg,#091320,#050b14);
    padding: 100px 12vw;
}

.faq-title {
    font-family: "Playfair", serif;
    font-size: 42px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.faq-box {
    max-width: 850px;
    margin: auto;
    border-radius: 18px;
    padding: 18px;
}

/* ITEM */
.faq-item {
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 12px;
    border: 1px solid hsl(42 75% 15%);
    background: #111c2c;
    transition: background .3s ease;
}

.faq-item:hover {
    transform: scale(1.01); /* subtle zoom */
    box-shadow: 0 18px 10px rgba(0, 0, 0, 0.157); /* black shadow */
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

.faq-item.active {
    background: #111c2c;
    border-color: #dfa6215a;
}

/* HEADER */
.faq-head {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
}

.faq-head i {
    margin-left: auto;
    transition: transform .35s ease;
}

.faq-item.active .faq-head i {
    transform: rotate(180deg);
}

/* BODY */
.faq-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height .45s ease,
        opacity .3s ease;
    line-height: 1.6;
    color: #b8c6db;
    padding-left: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.faq-item.active .faq-body {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

/* footer */
/* DONATION STRIP */
.donate-strip {
    background: #122033;
    padding: 70px 12vw;
}

.donate-strip-inner {
    max-width: 1200px;
    margin: auto;
    padding: 36px 44px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(180deg, #0f2137, #0a1626);
    border: 1px solid rgba(255,215,120,0.25);

}

.donate-strip-inner:hover {
    transform: scale(1.03); /* subtle zoom */
    box-shadow:
        0 5px 60px rgba(0,0,0,0.55),
        inset 0 0 35px rgba(255,215,120,0.06); /* black shadow */
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

/* TEXT */
.donate-text h2 {
    font-family: "Playfair", serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 8px;
}

.donate-text p {
    font-size: 16px;
    color: #9fb3cf;
}

/* BUTTON */
.donate-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 10px 20px;
    border-radius: 999px;

    background: linear-gradient(90deg,#d8b564,#b6913a,#886c2b);
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;

    box-shadow:
        0 10px 30px rgba(216,181,100,0.35);

    transition: transform .35s ease, box-shadow .35s ease;
}

.donate-strip-btn i {
    font-size: 16px;
}

.donate-strip-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(216,181,100,0.55);
}

/* footer */
/* FOOTER */
.site-footer {
    background: linear-gradient(180deg,#091320,#050b14);
    padding: 80px 12vw;
    color: #c7d3e6;
}

/* GRID */
.footer-inner {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
}

/* BRAND */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    height: 42px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 20px;
    color: #ffffff;
}

.footer-col p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

/* HEADINGS */
.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 14px;
}

/* DIVIDER */
.footer-divider {
    margin: 50px 0 30px;
    height: 1px;
    background: #213045;
}

/* BOTTOM */
.footer-bottom {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    color: #94a3b8;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: #202730;
    border: 1px solid #94a3b8;
    color: #94a3b8;

    transition: transform .3s ease, background .3s ease;
}

.footer-social a:hover {
    background: #29323d;
    color: #d8b564;
    transform: translateY(-3px);
}

/* ===== Sticky Bottom Bar ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2f3f56; /* your theme */
    z-index: 9999;
}

.bottom-bar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* CENTER TEXT */
.bar-text {
    text-align: center;
    color: #fff;
    font-weight: 600;
}

/* BUTTONS */
.login-btn {
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
}

.donate-btn-bar {
    background: #ffe600;
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}


/* ===== Login Modal ===== */
.login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items:flex-start;
    justify-content: center;
    padding-top: 20px;
    z-index: 9999;
}

.login-box {
    width: 580px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    animation: popIn 0.35s ease;
}

@keyframes popIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.login-header {
    background: #4aa3ef;
    padding: 14px;
    text-align: center;
    color: #fff;
    position: relative;
}

.login-header h3 {
    font-size: 18px;
}

.close-login {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

.login-body {
    padding: 20px;
}

.login-body input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.login-submit {
    width: 100%;
    background: #4aa3ef;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.login-links {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
}

.login-links a {
    color: #1e90ff;
    text-decoration: none;
}




/* MOBILE */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* MOBILE */
@media (max-width: 768px) {

}



/* MOBILE */
@media (max-width: 900px) {
    .donor-content {
        grid-template-columns: 1fr;
    }
}


/* MOBILE */
@media (max-width: 900px) {
    .charity-container {
        grid-template-columns: 1fr;
    }
}


/* MOBILE */
@media (max-width: 900px) {
    .gratitude-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 30px;
    }

    .progress-wrap {
        margin: auto;
    }
}


/* MOBILE */
@media (max-width: 900px) {
    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;

    }

    .card.large {
        grid-column: span 2;
    }
}


/* MOBILE */
@media (max-width: 900px) {
    .inspiration-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .inspiration-content h2 {
        font-size: 34px;
    }

    .inspiration-section {
        padding: 80px 0 100px;
    }
}
.campaigner-message {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.campaigner-img {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.campaigner-content {
    flex: 1;
}
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px;
}
.contact-info p{
    color: #fff;
}
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-toggle {
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.user-menu {
    position: absolute;
    bottom: 100%;          
    right: 0;
    margin-bottom: 8px;   
    background: #fff;
    min-width: 140px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
}
.user-menu::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: 16px;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.user-menu a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.user-menu a:hover {
    background: #f5f5f5;
}
@media (max-width: 768px) {
    .campaigner-message {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .campaigner-img {
        width: 180px;
    }
}
.donate-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.note {
    font-size: 12px;
    color: green;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group span {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.phone-group {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 10px;
}

.citizen-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0056b3;
}

.center {
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .other_donors {
        flex-direction: column-reverse !important; /* RIGHT on top, LEFT bottom */
    }
}
.tel_num{
    color:#94a3b8;
}
.cursor-pointer{
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
}
.page-center {
    display: flex;
    justify-content: center; 
    align-items: center;     
}
.campaign_list_donor{
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    text-align: center;
}
.campaign_list li:hover {
    background: none !important;
    border: none !important;
    border-color: transparent !important;
}
.campaign_list li{
    cursor: unset;
}
.donate-now form.login {
    background: #c7e4f6 !important;
    padding: 20px 20px 0 !important;
}
.captcha {
    width: 100%;
    text-align: center;
}