/* skewed header on About Us */
/* ==========================================
   DONATE HEADER
========================================== */

/* *{
    outline:1px solid red;
} */

/* html{
    background:red;
}

body{
    background:blue;
} */

body{
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family:'ubuntu',sans-serif;
    /* background-color: #f2f2f2; */
}
.donate-header{

    position:relative;

    height:500px;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;
}


/* ==========================================
   BACKGROUND
========================================== */

.donate-header .header-bg{

    position:absolute;

    inset:0;

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    transform:
        skewY(-5deg)
        scale(1.15);

    transform-origin:top left;

    filter:
        brightness(.75)
        saturate(1.15);

    animation:
        donateZoom 20s ease-in-out infinite alternate;
}

@keyframes donateZoom{

    from{

        transform:
            skewY(-5deg)
            scale(1.15);
    }

    to{

        transform:
            skewY(-5deg)
            scale(1.22);
    }
}

/* ==========================================
   OVERLAY
========================================== */

.donate-header .header-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(15,23,42,.88),
            rgba(217,119,6,.35)
        );

    z-index:1;
}

/* ==========================================
   WRAPPER
========================================== */

.donate-header .skewed-header-wrapper{

    position:relative;

    z-index:2;

    width:100%;

    display:flex;

    justify-content:center;

    padding:0 20px;
}

.donate-header .skewed-header-content{

    width:100%;
    max-width:1200px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;
}

/* ==========================================
   GLASS CARD
========================================== */

.donate-header .heading-wrapper{

    position:relative;

    max-width:700px;

    padding:22px;

    border-radius:30px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,193,7,.20);

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}

.donate-header .heading-wrapper::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,193,7,.25),
            rgba(255,87,34,.15)
        );

    filter:blur(24px);

    z-index:-1;
}

/* ==========================================
   PAGE TAG
========================================== */

.donate-header .page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:40px;

    background:
        rgba(255,193,7,.15);

    border:
        1px solid rgba(255,193,7,.25);

    color:#ffe082;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;
}

.donate-header .page-tag i{

    color:#ffd54f;
}

/* ==========================================
   TITLE
========================================== */

.donate-header h1{

    color:white;

    font-size:
        clamp(2.8rem,5vw,4.8rem);

    line-height:1.1;

    font-weight:800;

    margin-bottom:18px;
}

/* ==========================================
   DESCRIPTION
========================================== */

.donate-header p{

    color:#e2e8f0;

    font-size:1.05rem;

    line-height:1.8;

    max-width:600px;

    margin-bottom:30px;
}

/* ==========================================
   BREADCRUMB
========================================== */

.donate-header .breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;
}

.donate-header .breadcrumb a{

    color:#ffd54f;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.donate-header .breadcrumb a:hover{

    color:white;
}

.donate-header .breadcrumb span{

    color:#cbd5e1;
}

/* ==========================================
   QUICK LINKS
========================================== */

.donate-header .header-links{

    display:flex;

    flex-direction:column;

    gap:12px;

    min-width:280px;
}

.donate-header .header-links a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 18px;

    text-decoration:none;

    color:white;

    font-weight:600;

    border-radius:14px;

    background:
        rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:
        1px solid rgba(255,255,255,.15);

    transition:.35s ease;
}

.donate-header .header-links a:hover{

    transform:translateX(8px);

    background:
        rgba(255,193,7,.20);
}

.donate-header .header-links i{

    width:18px;

    text-align:center;

    color:#ffd54f;
}

/* ==========================================
   DONATE BUTTON
========================================== */

.donate-link{

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ef4444
        ) !important;

    color:white !important;

    font-weight:700;

    box-shadow:
        0 10px 30px rgba(245,158,11,.35);

    animation:
        donatePulse 2.5s infinite;
}

.donate-link:hover{

    transform:
        translateX(8px)
        scale(1.03);

    box-shadow:
        0 15px 40px rgba(245,158,11,.5);
}

@keyframes donatePulse{

    0%{

        box-shadow:
            0 10px 30px rgba(245,158,11,.25);
    }

    50%{

        box-shadow:
            0 15px 45px rgba(245,158,11,.55);
    }

    100%{

        box-shadow:
            0 10px 30px rgba(245,158,11,.25);
    }
}

/* ==========================================
   HEART DECORATION
========================================== */

.donate-header::after{

    content:"❤";

    position:absolute;

    right:8%;
    top:15%;

    font-size:140px;

    color:
        rgba(255,255,255,.05);

    z-index:1;

    animation:
        heartFloat 8s ease-in-out infinite;
}

@keyframes heartFloat{

    0%,100%{

        transform:
            translateY(0);
    }

    50%{

        transform:
            translateY(-15px);
    }
}

@media (max-width:991px){

    .skewed-header{

        height:auto;
        min-height:550px;

        padding:60px 0;
    }

    .skewed-header-content{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:30px;
    }

    .heading-wrapper{

        width:100%;
        max-width:800px;

        padding:30px;
    }

    .heading-wrapper p{

        max-width:100%;
    }

    .breadcrumb{

        justify-content:center;
    }

    .header-links{

        width:100%;
        max-width:800px;

        display:grid;

        grid-template-columns:
            repeat(2, minmax(180px,1fr));

        gap:12px;

        align-items:stretch;
    }

    .header-links a{

        justify-content:center;

        text-align:center;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .skewed-header{

        min-height:auto;

        padding:50px 15px;
    }

    .heading-wrapper{

        padding:25px;
    }

    .heading-wrapper h1{

        font-size:2.3rem;
    }

    .heading-wrapper p{

        font-size:.95rem;
    }

    .header-links{

        grid-template-columns:1fr;
    }

    .header-links a{

        padding:14px 18px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .heading-wrapper{

        padding:20px;
    }

    .page-tag{

        font-size:.75rem;
    }

    .heading-wrapper h1{

        font-size:1.9rem;
    }

    .breadcrumb{

        gap:8px;

        font-size:.9rem;
    }

    .header-links a{

        font-size:.9rem;
    }
}


/* =========================================================
   DONATION INTRO (THEMED TO MATCH DONATE HEADER)
========================================================= */

.donation-intro{
    padding:110px 20px 80px;
    text-align:center;
    background:
        radial-gradient(circle at top, rgba(245,158,11,.08), transparent 60%),
        radial-gradient(circle at bottom, rgba(30,136,229,.06), transparent 60%);
}

.donation-intro-content{
    max-width:900px;
    margin:auto;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:50px;

    background:rgba(245,158,11,.12);
    border:1px solid rgba(245,158,11,.25);

    color:#fbbf24;
    font-weight:700;
    backdrop-filter:blur(10px);
}

.donation-intro h2{
    margin:25px 0;
    font-size:clamp(2rem,4vw,3.5rem);
    color:midnightblue;
}

.donation-intro p{
    color:#475569;
    line-height:1.9;
    max-width:750px;
    margin:auto;
}

/* =========================================================
   IMPACT STATS (GLASS THEMED)
========================================================= */

.impact-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:50px;
}

.impact-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(14px);

    border:1px solid rgba(245,158,11,.15);
    border-radius:22px;

    padding:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s ease;
}

.impact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(245,158,11,.15);
}

.impact-card h3{
    color:#f59e0b;
    font-size:2.5rem;
    margin-bottom:10px;
}


/* Review  */

.impact-block{

    background:
        rgba(255,255,255,.75);

    backdrop-filter:blur(16px);

    border-radius:30px;

    padding:35px;

    border:
        1px solid rgba(245,158,11,.12);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
}

.impact-block:hover{

    transform:translateY(-6px);

    transition:.4s ease;

    box-shadow:
        0 30px 80px rgba(245,158,11,.18);
}



/* =========================================================
   IMPACT SECTION LAYOUT
========================================================= */

.donation-impact{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.impact-block{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:70px;
}

/* IMAGE STYLE (GLOW FRAME) */

.impact-image{
    height:360px;
    border-radius:26px;

    background-size:cover;
    background-position:center;

    position:relative;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);
}

.impact-image::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;

    background:
        linear-gradient(
            135deg,
            rgba(245,158,11,.18),
            rgba(30,136,229,.10)
        );
}

/* TEXT BLOCK */

.impact-text{
    padding:10px;
}

.impact-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;

    background:rgba(245,158,11,.12);
    border:1px solid rgba(245,158,11,.25);

    color:#f59e0b;
    font-weight:700;
    font-size:12px;
    letter-spacing:.5px;
}

.impact-text h2{
    margin:15px 0;
    color:midnightblue;
    font-size:clamp(1.6rem,3vw,2.4rem);
}

.impact-text p{
    color:#475569;
    line-height:1.9;
}

/* Alternate layout */
.impact-block:nth-child(even) .impact-image{
    order:2;
}

/* =========================================================
   CTA SECTION (MATCH HEADER GLOW)
========================================================= */
.trust-bar{

    max-width:1200px;

    margin:10px auto;

    padding:10px;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    text-align:center;
}

.trust-bar div{

    background:white;

    padding:20px;

    border-radius:18px;

    font-weight:700;

    color:midnightblue;
}

.trust-bar i{

    color:#f59e0b;

    margin-right:8px;
}


.donation-cta{
    padding:90px 20px;
}

.cta-box{
    max-width:950px;
    margin:auto;
    text-align:center;

    padding:70px;
    border-radius:30px;

    background:
        linear-gradient(135deg, rgba(15,23,42,.92), rgba(245,158,11,.25));

    border:1px solid rgba(245,158,11,.25);

    color:white;

    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.cta-box h2{
    margin-bottom:20px;
    font-size:clamp(2rem,4vw,3rem);
}

.cta-box p{
    max-width:650px;
    margin:auto auto 30px;
    line-height:1.8;
    color:#e5e7eb;
}

/* CTA BUTTON */

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 32px;
    border-radius:50px;

    background:linear-gradient(135deg, #f59e0b, #ef4444);
    color:white;

    font-weight:800;
    text-decoration:none;

    box-shadow:0 15px 40px rgba(245,158,11,.25);

    transition:.35s ease;
}

.cta-button:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 60px rgba(245,158,11,.35);
}

/* =========================================================
   DONATION METHODS (REFINED MATCH)
========================================================= */

.donation-methods{
    padding:50px 20px;
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at top left, rgba(245,158,11,.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(30,136,229,.08), transparent 55%);
}

/* GLOW ORBS */

.donation-methods::before,
.donation-methods::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(40px);
}

.donation-methods::before{
    width:320px;
    height:320px;
    background:rgba(245,158,11,.15);
    top:-100px;
    left:-100px;
}

.donation-methods::after{
    width:300px;
    height:300px;
    background:rgba(30,136,229,.12);
    bottom:-100px;
    right:-100px;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;

    background:rgba(245,158,11,.12);
    border:1px solid rgba(245,158,11,.25);

    color:#f59e0b;
    font-weight:800;
    letter-spacing:.5px;
    font-size:12px;
}

.section-heading h2{
    margin:18px 0;
    color:midnightblue;
    font-size:clamp(2rem,4vw,3rem);
}

.section-heading p{
    color:#475569;
    line-height:1.8;
}

/* =========================================================
   PAYMENT CARDS (UPGRADED GLASS STYLE)
========================================================= */

.payment-options{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.payment-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(16px);

    border-radius:26px;
    border:1px solid rgba(245,158,11,.12);

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.35s ease;
}

.payment-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 80px rgba(245,158,11,.18);
}

.payment-header{
    display:flex;
    align-items:center;
    gap:18px;
    padding:24px;

    background:linear-gradient(135deg, rgba(15,23,42,.04), rgba(245,158,11,.06));
}

.payment-header img{
    width:70px;
    height:70px;
    border-radius:18px;
    padding:6px;
    background:white;
}

.payment-header h3{
    color:midnightblue;
    margin:0;
}

.payment-header span{
    color:#64748b;
    font-size:14px;
}

/* CONTENT */

.payment-content{
    padding:24px;
}

.payment-content ul{
    color:#475569;
    line-height:1.8;
}

.payment-content strong{
    color:#f59e0b;
}

.payment-content a{
    display:inline-flex;
    margin-top:15px;
    font-weight:700;
    color:#1e88e5;
    text-decoration:none;
}

.payment-content a:hover{
    color:#f59e0b;
}

/* =========================================================
   PAYPAL BUTTON (MATCH BRAND + GOLD ACCENT)
========================================================= */

/* .paypal-donate-btn{
    width:80%;
    margin-top:18px;

    border:none;
    cursor:pointer;

    padding:15px 22px;
    border-radius:14px;

    font-weight:800;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    color:white;

    background:linear-gradient(135deg, #0070ba, #f59e0b);

    box-shadow:0 18px 50px rgba(0,112,186,.25);

    transition:.35s ease;
} */

.paypal-donate-btn{
    width:100%;
    box-sizing:border-box;

    margin-top:18px;
    border:none;
    cursor:pointer;

    padding:15px 22px;
    border-radius:14px;

    font-weight:800;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    color:white;

    background:linear-gradient(135deg,#0070ba,#f59e0b);

    box-shadow:0 18px 50px rgba(0,112,186,.25);

    transition:.35s ease;
}


.paypal-donate-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 25px 70px rgba(245,158,11,.25);
}

@media(max-width:768px){

    .paypal-donate-btn{
        width:100%;
        max-width:100%;
        box-sizing:border-box;

        padding:14px 16px;
        gap:8px;

        font-size:.95rem;

        flex-wrap:wrap;
    }

}

/* ==========================================
   FUNDING PROGRESS
========================================== */

.funding-progress{

    position:relative;

    max-width:1000px;

    margin:80px auto;

    padding:60px 40px;

    text-align:center;

    border-radius:32px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.88),
            rgba(255,255,255,.75)
        );

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(245,158,11,.15);

    box-shadow:
        0 20px 60px rgba(15,23,42,.08);
}

/* Decorative glow */

.funding-progress::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(245,158,11,.18),
            transparent 70%
        );

    top:-180px;
    left:-120px;
}

.funding-progress::after{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(239,68,68,.15),
            transparent 70%
        );

    bottom:-150px;
    right:-120px;
}

/* Badge */

.funding-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:50px;

    background:
        rgba(245,158,11,.12);

    color:#d97706;

    font-weight:700;

    margin-bottom:20px;
}

/* Title */

.funding-progress h2{

    color:midnightblue;

    margin-bottom:15px;

    font-size:
        clamp(2rem,4vw,3rem);
}

.funding-progress p{

    max-width:700px;

    margin:0 auto 35px;

    color:#64748b;

    line-height:1.8;
}

/* ==========================================
   PROGRESS BAR
========================================== */

.progress-container{

    height:26px;

    background:#e5e7eb;

    border-radius:50px;

    overflow:hidden;

    position:relative;
}

.progress-bar{

    height:100%;

    width:0;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    padding-right:15px;

    color:white;

    font-weight:700;

    font-size:.9rem;

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #ef4444
        );

    box-shadow:
        0 0 25px rgba(245,158,11,.45);

    animation:
        fillProgress 3s ease forwards;
}

.progress-percent{

    opacity:0;

    animation:
        showPercent .8s ease forwards;

    animation-delay:2.4s;
}

@keyframes fillProgress{

    from{
        width:0;
    }

    to{
        width:12.9%;
    }
}

@keyframes showPercent{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

/* ==========================================
   STATS
========================================== */

.progress-stats{

    margin-top:35px;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(200px,1fr));

    gap:25px;
}

.stat-item{

    padding:25px;

    border-radius:22px;

    background:
        rgba(255,255,255,.65);

    border:
        1px solid rgba(245,158,11,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.stat-item strong{

    display:block;

    font-size:1.4rem;

    color:#f59e0b;

    margin-bottom:8px;
}

.stat-item span{

    color:#64748b;

    font-size:.95rem;
}
/* =========================================================
   RESPONSIVE TWEAKS
========================================================= */

@media(max-width:768px){

    .impact-block{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:40px;
    }
}

/* @media(max-width:768px){
    body{
        overflow-x:hidden;
    }
} */