* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* SCROLL ANIMATIONS */

.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-stagger {
    opacity: 0;
    transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal-fade {
    transform: translateY(20px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-stagger {
    transform: translateY(60px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay */
.reveal-stagger:nth-child(1) {
    transition-delay: .1s;
}

.reveal-stagger:nth-child(2) {
    transition-delay: .2s;
}

.reveal-stagger:nth-child(3) {
    transition-delay: .3s;
}

.reveal-stagger:nth-child(4) {
    transition-delay: .4s;
}

.header {
    width: 100%;
    /* background: radial-gradient(ellipse at 90% 50%, rgba(200, 200, 255, 0.38) 0%, transparent 55%), radial-gradient(ellipse at 0% 100%, rgba(180, 180, 255, 0.38) 0%, transparent 60%), linear-gradient(to bottom, #fff 0%, #e7e8fc 100%); */
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    width: 160px;
    display: block;
}

/* DESKTOP NAV */

.desktop-nav {
    flex: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a,
.dropdown-toggle {
    text-decoration: none;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.nav-links a:hover,
.dropdown-toggle:hover {
    color: #2563eb;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff;
    width: 260px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f7f7f7;
}

/* BUTTON */

.donate-btn {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #fff;
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* MOBILE TOGGLE */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #2563eb;
    border-radius: 5px;
}

/* MOBILE MENU */

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2563eb;
}


.mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-donate-btn {
    display: block;
    text-align: center;
    background: #2563eb;
    color: #fff !important;
    padding: 14px;
    border-radius: 50px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .desktop-nav,
    .donate-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

}

/* =========================================
   HERO SECTION
========================================= */

.modern-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #04111b 0%, #071b29 40%, #0a2231 100%);
    color: #fff;
}

/* OVERLAY */

.modern-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(0, 255, 170, 0.10), transparent 30%), radial-gradient(circle at right, rgba(255, 196, 79, 0.08), transparent 30%);
}

/* GLOW EFFECTS */

.hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.hero-light-1 {
    width: 300px;
    height: 300px;

    background: #00d9a6;

    top: -80px;
    left: -80px;
}

.hero-light-2 {
    width: 260px;
    height: 260px;

    background: #f8c44f;

    right: -50px;
    bottom: -80px;
}

/* GRID */

.modern-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 1fr;

    gap: 40px;
    align-items: center;
}

/* LEFT CONTENT */

.modern-hero-content {
    max-width: 620px;
}

/* TAG */

.modern-hero-tag {
    display: inline-flex;
    align-items: center;

    padding: 12px 20px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(10px);

    color: #f8c44f;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 28px;
}

/* TITLE */

.modern-hero-title {
    font-size: 74px;
    line-height: 1.02;

    font-weight: 800;

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.modern-hero-title span {
    display: block;

    color: #f8c44f;
}

/* TEXT */

.modern-hero-text {
    font-size: 18px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);

    margin-bottom: 38px;

    max-width: 560px;
}

/* BUTTONS */

.modern-hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 45px;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 18px 34px;

    border-radius: 14px;

    font-weight: 700;
    font-size: 15px;

    text-decoration: none;

    transition: 0.35s ease;
}

/* PRIMARY */

.primary-btn {
    background: #f8c44f;
    color: #08131d;
    box-shadow: 0 10px 30px rgba(248, 196, 79, 0.25);
}

.primary-btn:hover {
    transform: translateY(-4px);
}

/* SECONDARY */

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    color: #fff;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* =========================================
   VIDEO POPUP
========================================= */

.video-popup {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 110px;
    padding-bottom: 40px;

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;

    z-index: 9999;
}

/* ACTIVE */

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

/* DARK BACKGROUND */

.video-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(6px);
}

/* VIDEO BOX */

.video-popup-content {
    position: relative;

    width: 88%;
    max-width: 720px;

    z-index: 2;

    animation: popupScale 0.35s ease;
}

/* VIDEO */

.video-popup video {
    width: 100%;

    max-height: 75vh;
    object-fit: cover;

    border-radius: 22px;

    background: #000;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(248, 196, 79, 0.08);
}

/* CLOSE BUTTON */

.close-video {
    position: absolute;

    top: -16px;
    right: -16px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #000;

    cursor: pointer;

    font-size: 16px;

    z-index: 5;

    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.close-video:hover {
    transform: rotate(90deg);
}

/* POPUP ANIMATION */

@keyframes popupScale {

    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .video-popup {
        padding-top: 90px;
        padding-inline: 16px;
    }

    .video-popup-content {
        width: 100%;
        max-width: 420px;
    }

    .close-popup video {
        max-height: 55vh;
        border-radius: 18px;
    }

    .close-video {
        top: -12px;
        right: -12px;

        width: 38px;
        height: 38px;
    }
}

/* SUPPORTERS */

.hero-supporters {
    display: flex;
    align-items: center;
    gap: 18px;
}

.supporters-images {
    display: flex;
    align-items: center;
}

.supporters-images a {
    display: block;
    margin-left: -14px;
}

.supporters-images img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #08131d;
    display: block;
}

.supporters-images a:first-child {
    margin-left: 0;
}

.supporters-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);

    font-weight: 500;
}

.supporters-text span {
    display: block;

    color: #f8c44f;

    margin-top: 3px;
}


/* RIGHT IMAGE */

.modern-hero-image {
    position: relative;

    display: flex;
    justify-content: center;
}

.modern-hero-image img {
    width: 100%;
    max-width: 700px;

    object-fit: contain;

    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

/* QUOTE CARD */

.hero-quote-card {
    position: absolute;

    right: 20px;
    bottom: 70px;

    width: 290px;

    padding: 28px;

    border-radius: 24px;

    background: rgba(10, 16, 24, 0.75);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.quote-icon {
    font-size: 24px;

    color: #f8c44f;

    margin-bottom: 18px;
}

.hero-quote-card p {
    font-size: 22px;
    line-height: 1.6;

    color: #fff;

    margin-bottom: 18px;

    font-weight: 500;
}

.hero-quote-card span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .modern-hero {
        padding: 120px 0 60px;
    }

    .modern-hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .modern-hero-content {
        order: 2;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modern-hero-buttons {
        justify-content: center;
    }

    .hero-supporters {
        justify-content: center;
    }

    .modern-hero-image {
        order: 1;
        width: 100%;
        margin: 0 auto 70px;
        justify-content: center;
    }

    .hero-quote-card {
        right: 50%;
        transform: translateX(50%);

        bottom: 20px;
    }

    .hero-quote-card {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        max-width: 340px;
        z-index: 3;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .modern-hero {
        min-height: auto;

        padding: 110px 0 50px;
    }

    .modern-hero-grid {
        gap: 10px;
    }

    .modern-hero-content {
        text-align: center;
        align-items: center;
    }

    .modern-hero-tag {
        margin-inline: auto;
    }

    .modern-hero-title {
        font-size: 46px;
        line-height: 1.08;
    }

    .modern-hero-text {
        font-size: 16px;
        max-width: 100%;
    }

    .modern-hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .modern-btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-supporters {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .modern-hero-image {
        margin-bottom: 65px;
    }

    .modern-hero-image img {
        max-width: 450px;
        width: 100%;
    }

    .hero-quote-card {

        left: 55%;
        width: calc(100% - 40px);
        max-width: 320px;
        right: auto;
        bottom: -35px;
        transform: translateX(-50%);
        padding-top: 22px;
        border-radius: 22px;
    }

    .hero-quote-card p {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .modern-hero-title {
        font-size: 38px;
    }

    .modern-hero-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .modern-btn {
        padding: 16px 20px;
    }

    .modern-hero-tag {
        font-size: 12px;
    }

    .hero-quote-card {
        padding: 22px;
    }

    .hero-quote-card {
        bottom: -25px;
        padding: 20px;
    }

    .modern-hero-image img {
        max-width: 360px;
    }

    .hero-quote-card p {
        font-size: 16px;
    }

}

/* =========================
   BENEFITS SECTION
========================= */

.benefits-section {
    padding: 110px 20px;
    background: #f8faf9;
    overflow: hidden;
}

.benefits-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 90px;
}

.section-tag {
    display: inline-block;

    background: #2563eb;
    color: #fff;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.section-title {
    font-size: 52px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* LAYOUT */

.benefits-layout {
    width: 100%;
}

/* ROWS */

.benefits-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 75px;
}

/* TOP ROW */

.top-row {
    margin-bottom: 90px;
}

/* BOTTOM ROW */

.bottom-row {
    margin-top: -10px;
}

/* ITEM */

.benefit-item {
    text-align: center;
    max-width: 220px;
}

/* CIRCLE */

.benefit-circle {
    width: 160px;
    height: 160px;

    border-radius: 50%;

    overflow: hidden;

    margin: 0 auto 25px;

    transition: 0.35s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.10);
}

.benefit-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SMALLER BOTTOM CIRCLES */

.small-circle {
    width: 135px;
    height: 135px;
}

/* TITLE */

.benefit-item h3 {
    font-size: 22px;
    line-height: 1.5;
    color: #111;
    font-weight: 700;
}

/* HOVER */

.benefit-item:hover .benefit-circle {
    transform: translateY(-10px);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .benefits-row {
        gap: 40px;
    }

    .benefit-circle {
        width: 140px;
        height: 140px;
    }

    .small-circle {
        width: 115px;
        height: 115px;
    }

    .benefit-item h3 {
        font-size: 17px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .benefits-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 38px;
    }

    /* TOP 4 = 2 PER ROW */

    .top-row {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 30px;

        margin-bottom: 55px;
    }

    /* LAST 3 IN ONE ROW */

    .bottom-row {
        display: flex;
        justify-content: center;
        gap: 18px;

        margin-top: 0;
    }

    /* TOP CIRCLES */

    .benefit-circle {
        width: 115px;
        height: 115px;
    }

    /* SMALLER LAST 3 */

    .small-circle {
        width: 78px;
        height: 78px;
    }

    .benefit-item h3 {
        font-size: 14px;
        line-height: 1.5;
    }

    .small-item h3 {
        font-size: 11px;
        margin-top: 10px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .section-title {
        font-size: 30px;
    }

    .benefit-circle {
        width: 105px;
        height: 105px;
    }

    .small-circle {
        width: 70px;
        height: 70px;
    }

    .benefit-item h3 {
        font-size: 13px;
    }

    .small-item h3 {
        font-size: 10px;
    }

}

/* =========================
   WHY DONATE SECTION
========================= */

.why-donate-section {
    padding: 120px 20px;
    background: radial-gradient(ellipse at 90% 50%, rgba(200, 200, 255, 0.38) 0%, transparent 55%), radial-gradient(ellipse at 0% 100%, rgba(180, 180, 255, 0.38) 0%, transparent 60%), linear-gradient(to bottom, #fff 0%, #e7e8fc 100%);
    overflow: hidden;
}

.why-donate-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* HEADER */

.why-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.why-tag {
    display: inline-block;

    background: #2563eb;
    color: #fff;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.why-title {
    font-size: 52px;
    line-height: 1.2;
    color: #111;

    margin-bottom: 22px;
}

.why-description {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* CONTENT */

.why-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}

/* IMAGE */

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    display: block;
    border-radius: 50%;
}

/* FEATURES */

.why-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    align-items: stretch;
}

/* SHIFT BOTTOM BOXES */

.why-box:nth-child(3),
.why-box:nth-child(4) {
    transform: translateX(70px);
}

/* BOX */

.why-box {
    width: 100%;
    max-width: 280px;
    height: 100%;
    min-height: 260px;

    aspect-ratio: 1/1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 30px;

    border-radius: 28px;

    background: #fff;

    border: 3px solid #2563eb;

    transition: 0.35s ease;
}



/* TEXT */

/* TITLE */

.why-text h3 {
    font-size: 24px;
    line-height: 1.4;

    color: #2563eb;

    margin-bottom: 14px;
}

/* TEXT */

.why-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #2563eb;
}


/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-title {
        font-size: 42px;
    }

    .why-features {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px;

        justify-content: center;
    }

    .why-box {
        max-width: 280px;
        margin: 0 auto;
    }

    .why-box:nth-child(3),
    .why-box:nth-child(4) {
        transform: translateX(70px);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .why-donate-section {
        padding: 90px 20px;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 100%;
        overflow: hidden;
    }

    .why-image {
        width: 100%;
    }

    .why-image img {
        width: 100%;
        max-width: 100%;
        height: auto;

        display: block;
    }

    .why-title {
        font-size: 34px;
    }

    .why-description {
        font-size: 16px;
    }

    /* TWO BOXES PER ROW */

    .why-features {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;

        align-items: stretch;
    }

    .why-box {
        width: 100%;
        max-width: 100%;

        min-width: 0;

        min-height: 230px;

        padding: 18px 14px;

        border-radius: 22px;

        overflow: hidden;
    }

    /* REMOVE SHIFT ON MOBILE */

    .why-box:nth-child(3),
    .why-box:nth-child(4) {
        transform: none;
    }

    .why-number {
        width: 58px;
        min-width: 58px;
        height: 58px;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        font-size: 18px;

        margin-bottom: 18px;
    }

    .why-text h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .why-text p {
        font-size: 13px;
        line-height: 1.6;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .why-title {
        font-size: 28px;
    }

    .why-features {
        gap: 15px;
    }

    .why-box {
        padding: 18px;
        min-height: 230px;
    }

    .why-number {
        width: 50px;
        min-width: 50px;
        height: 50px;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        font-size: 16px;
    }

    .why-text h3 {
        font-size: 14px;
    }

    .why-text p {
        font-size: 12px;
    }

}

/* STATISTICS SECTION */

.statistics {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}

.statistics .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-container {
    display: flex;
    flex-direction: column;
}

.statistics h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2563eb;
    margin-bottom: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-item {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: repeat;
    background-size: auto;
    color: rgb(51, 51, 51);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.stat-number {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

/* =========================
   DONATE BANNER SECTION
========================= */

.donate-banner-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.donate-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="30" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
    opacity: 0.3;
}

/* BANNER */

.donate-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TAG */

.donate-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 40px;

    /* border-radius: 100px; */

    background: #fff;

    color: #062c43;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);

    transition: 0.35s ease;
}

.donate-tag:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .donate-banner-section {
        padding: 70px 20px;
    }

    .donate-tag {
        font-size: 18px;
        padding: 16px 34px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .donate-banner-section {
        padding: 60px 16px;
    }

    .donate-tag {
        width: 100%;

        text-align: center;

        font-size: 16px;
        line-height: 1.4;

        padding: 16px 20px;
    }

}

/* =========================
   DONATION FORM
========================= */

.donation-form-section {
    padding: 100px 20px;
    background: #f7f7f7;
}

.donation-form-wrapper {
    width: 100%;
    max-width: 900px;

    margin: auto;

    background: #ffffff;

    padding: 50px;

    border-radius: 32px;

    box-shadow:
        0 15px 60px rgba(0, 0, 0, 0.08);
}

.donor-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.donor-options .checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}

.donor-options .checkbox-wrap input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .donor-options {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* LABEL */

.donation-label,
.form-group label {
    display: block;

    font-size: 15px;
    font-weight: 700;

    color: #062c43;

    margin-bottom: 12px;
}

/* AMOUNT */

.donation-input-wrap {
    position: relative;
}

.currency-symbol {
    position: absolute;

    left: 24px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 24px;
    font-weight: 700;

    color: #062c43;
}

#donationAmount {
    width: 100%;
    height: 75px;

    border: 2px solid #e5e5e5;
    border-radius: 18px;

    padding: 0 24px 0 55px;

    font-size: 28px;
    font-weight: 700;

    outline: none;

    transition: 0.3s ease;
}

#donationAmount:focus {
    border-color: #2563eb;
}

/* BUTTONS */

.donation-levels {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 30px;
}

.amount-btn {
    height: 60px;

    border: 2px solid #d9d9d9;
    border-radius: 16px;

    background: #fff;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* OPTIONS */

.donation-options {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 16px;
    color: #444;
}

.checkbox-wrap input {
    width: 18px;
    height: 18px;
}

/* FORM */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.form-group {
    margin-top: 28px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 62px;

    border: 2px solid #e4e4e4;
    border-radius: 16px;

    padding: 0 20px;

    font-size: 16px;

    outline: none;

    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2563eb;
}

/* TOTAL */

.donation-total-box {
    margin-top: 40px;

    padding: 28px;

    border-radius: 24px;

    background: #f9f9f9;
}

.total-row {
    display: flex;
    justify-content: space-between;

    margin-bottom: 14px;

    font-size: 17px;
}

.fee-row {
    color: #777;
}

.grand-total {
    margin-top: 20px;
    padding-top: 20px;

    border-top: 2px solid #e6e6e6;

    font-size: 22px;
    font-weight: 700;

    color: #2563eb;
}

/* OTHER AMOUNT BUTTON */

.other-amount-btn {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* CARD INPUT */

.card-input-wrap {
    position: relative;
}

.card-input-wrap input {
    padding-right: 70px;
}

.card-logo {
    position: absolute;

    top: 50%;
    right: 20px;

    transform: translateY(-50%);

    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTON */

.donation-submit-btn {
    width: 100%;
    height: 70px;

    margin-top: 35px;

    border: none;
    border-radius: 20px;

    background: #2563eb;
    color: #fff;

    font-size: 20px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.donation-submit-btn :hover {
    background: #2563eb;
}

.payment-note {
    font-size: 20px;
    font-weight: 500;
    padding: 20px;
    text-align: center;
}

/* SECURE PAYMENT BOX */

.secure-payment-box {
    display: flex;
    align-items: center;

    gap: 12px;

    background: #eef8ff;

    border: 2px solid #d6ecff;

    padding: 18px 22px;

    border-radius: 18px;

    margin-top: 35px;
    margin-bottom: 25px;
}

.secure-icon {
    font-size: 22px;
}

.secure-text {
    font-size: 15px;
    font-weight: 600;

    color: #062c43;
}

/* =========================
   CARD LOGO
========================= */

.card-input-wrap {
    position: relative;
}

.card-input-wrap input {
    padding-right: 90px;
}

.card-logo-image {
    position: absolute;

    top: 50%;
    right: 18px;

    transform: translateY(-50%);

    width: 52px;
    height: auto;

    object-fit: contain;
}

/* =========================
   CARD EXTRA GRID
========================= */

.card-extra-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .secure-payment-box {
        padding: 16px 18px;
        border-radius: 16px;
    }

    .secure-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .card-extra-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .card-logo-image {
        width: 45px;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .donation-form-wrapper {
        padding: 40px;
    }

    .donation-levels {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .donation-form-section {
        padding: 80px 15px;
    }

    .donation-form-wrapper {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .donation-levels {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #donationAmount {
        height: 65px;
        font-size: 24px;
    }

    .amount-btn {
        height: 55px;
        font-size: 16px;
    }

    .donate-btn {
        height: 62px;
        font-size: 18px;
    }

}

/* =========================
   CRYPTO SECTION
========================= */

.crypto-payment-section {
    margin-top: 60px;
    padding: 70px 40px;
    background: #071c2f;
    border-radius: 30px;
    overflow: hidden;
}

.crypto-header {
    text-align: center;
    margin-bottom: 50px;
}

.crypto-tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.crypto-header h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}

.crypto-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}


/* TOGGLE BUTTON */

.crypto-toggle-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.crypto-toggle-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.crypto-toggle-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* GRID */

.crypto-grid {
    display: none;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    animation: fadeDown 0.4s ease;
}

/* ACTIVE */

.crypto-grid.active {
    display: grid;
}

/* CARD */

.crypto-wallet {
    background: #0d2740;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.crypto-wallet:hover {
    transform: translateY(-8px);
}

/* ICON */

.crypto-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
}

.crypto-icon.btc {
    background: #f7931a;
}

.crypto-icon.eth {
    background: #627eea;
}

.crypto-icon.usdc {
    background: #2775ca;
}

.crypto-icon.usdt {
    background: #26a17b;
}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* TITLE */

.crypto-wallet h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

/* ADDRESS */

.wallet-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 14px;

    padding: 14px;
    margin-bottom: 30px;
}

.wallet-address code {
    color: #fff;
    font-size: 12px;
    word-break: break-all;
    text-align: left;
    flex: 1;
}

.wallet-address button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.wallet-address button:hover {
    background: #0b5ed7;
}

/* QR */

.qr-code img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
}

.qr-code p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 14px;
}

/* TABLET */

@media(max-width:991px) {

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .crypto-payment-section {
        padding: 50px 20px;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
    }

    .crypto-header h3 {
        font-size: 30px;
    }

}

/* =========================
   OUR PARTNERS SECTION
========================= */

.our-partners-section {
    padding: 110px 20px;

    background: #ffffff;
}

/* HEADER */

.partners-header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;
}

.partners-tag {
    display: inline-block;

    background: #3319F0;
    color: #fff;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.partners-title {
    font-size: 52px;
    line-height: 1.3;

    color: #111;

    font-weight: 700;
}

.partners-title span {
    display: block;

    color: #3319F0;
}

/* GRID */

.partners-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

/* CARD */

.partner-card {
    height: 170px;

    background: #fff;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    border: 2px solid #f1f1f1;

    transition: 0.35s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-8px);

    border-color: #3319F0;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.partner-card img {
    max-width: 100%;
    max-height: 90px;

    object-fit: contain;

    display: block;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .partners-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .partners-title {
        font-size: 42px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .our-partners-section {
        padding: 80px 20px;
    }

    .partners-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

    .partner-card {
        height: 130px;

        padding: 20px;

        border-radius: 22px;
    }

    .partner-card img {
        max-height: 60px;
    }

    .partners-title {
        font-size: 32px;
    }

}

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.donation-submit-btn.loading .btn-text {
    display: none;
}

.donation-submit-btn.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.toast-message {
    position: fixed;
    right: 20px;
    top: 10px;

    background: #d9534f;
    color: #fff;

    padding: 14px 18px;
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
    z-index: 9999;
}

.toast-message.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   FOOTER
========================= */

.main-footer {
    background: #2563eb;

    color: #fff;

    overflow: hidden;
}

/* TOP */

.footer-top {
    padding: 100px 20px 70px;
}

/* GRID */

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: start;
}

/* LOGO */

.footer-logo img {
    height: 70px;

    display: block;

    margin-bottom: 30px;
}

/* COMPANY */

.footer-company h3 {
    font-size: 24px;

    margin-bottom: 10px;

    font-weight: 700;
}

.company-number {
    display: block;

    color: #cfcfcf;

    font-size: 13px;

    margin-bottom: 20px;
}

.footer-company p {
    line-height: 1.9;

    color: #f1f1f1;

    font-size: 15px;
}

/* CONTACT */

.footer-contact {
    list-style: none;

    margin-top: 30px;
}

.footer-contact li {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #fff;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* SOCIALS */

.footer-socials {
    display: flex;

    gap: 14px;

    margin-top: 35px;
}

.footer-socials a {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #F7941E;

    transform: translateY(-5px);
}

/* RIGHT */

.footer-download-title {
    font-size: 26px;

    line-height: 1.5;

    margin-bottom: 30px;
}

/* STORE BUTTONS */

.store-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.store-buttons img {
    width: 130px;

    display: block;

    transition: 0.3s ease;
}

.store-buttons img:hover {
    transform: translateY(-4px);
}

/* VERSE */

.footer-verse {
    background: rgba(255, 255, 255, 0.05);

    padding: 30px;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-verse p {
    line-height: 2;

    color: #f5f5f5;

    margin-bottom: 20px;
}

.footer-verse span {
    color: #F7941E;

    font-weight: 700;
}

/* BOTTOM */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 25px 20px;
}

.footer-bottom-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

/* COPYRIGHT */

.copyright-text {
    color: #d9d9d9;

    font-size: 14px;
}

/* LINKS */

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #fff;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #F7941E;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .footer-top {
        padding: 80px 20px 60px;
    }

    .footer-company h3 {
        font-size: 20px;
    }

    .footer-download-title {
        font-size: 22px;
    }

    .footer-bottom-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        justify-content: center;

        flex-wrap: wrap;
    }

    .store-buttons {
        gap: 12px;
    }

    .store-buttons img {
        width: 115px;
    }

}

/* SCROLL TO TOP BUTTON */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #f7931a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Visible State */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.scroll-to-top:hover {
    background: #11C3E8;
}

/* Icon */
.scroll-to-top i {
    font-size: 1.2rem;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        /* avoids mobile browser bar */
        right: 15px;
        width: 50px;
        height: 50px;
    }
}