/*==============================================================
DONATION SECTION
==============================================================*/

.donation-section{
    padding:90px 0;
    background:#f8f5ef;
    position:relative;
}

.donation-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.donation-tag{
    display:inline-block;
    padding:10px 22px;
    background:#fff2df;
    color:#b45309;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.donation-heading h2{
    font-size:44px;
    font-weight:700;
    color:#4c2413;
    margin-bottom:18px;
    line-height:1.2;
}

.donation-heading p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/*==============================================================
MAIN WRAPPER
==============================================================*/

.donation-wrapper{

    display:grid;

    grid-template-columns:1.6fr .9fr;

    gap:35px;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

    transition:.4s;

}

.donation-wrapper:hover{

    transform:translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);

}

/*==============================================================
LEFT SIDE
==============================================================*/

.donation-left{

    padding:45px;

}

.card-title{

    margin-bottom:30px;

}

.card-title h3{

    font-size:30px;

    color:#5c2714;

    margin-bottom:10px;

}

.card-title p{

    color:#777;

    line-height:1.8;

}

/*==============================================================
BANK TABLE
==============================================================*/

.bank-table{

    border-top:1px solid #eee;

}

.bank-row{

    display:grid;

    grid-template-columns:180px 1fr;

    gap:20px;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.bank-row:hover{

    padding-left:10px;

    background:#fffaf3;

}

.bank-label{

    color:#9a6a42;

    font-weight:600;

    font-size:15px;

}

.bank-value{

    color:#222;

    font-weight:600;

    font-size:16px;

}

/*==============================================================
RIGHT SIDE
==============================================================*/

.donation-right{

    background:linear-gradient(145deg,#8f2215,#b94716);

    color:#fff;

    padding:40px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

/*==============================================================
QR CARD
==============================================================*/

.qr-card{

    text-align:center;

}

.qr-card h3{

    font-size:30px;

    margin-bottom:10px;

}

.qr-card p{

    line-height:1.8;

    opacity:.92;

    margin-bottom:25px;

}

.qr-image{

    display:flex;

    justify-content:center;

    margin-bottom:30px;

}

.qr-image img{

    width:230px;

    background:#fff;

    border-radius:20px;

    padding:15px;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

    transition:.4s;

}

.qr-image img:hover{

    transform:scale(1.05);

}

/*==============================================================
UPI APPS
==============================================================*/

.upi-apps{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px;

}

.upi-apps span{

    padding:8px 15px;

    background:rgba(255,255,255,.15);

    border-radius:30px;

    font-size:13px;

    transition:.3s;

}

.upi-apps span:hover{

    background:#fff;

    color:#8f2215;

}

/*==============================================================
80G CARD
==============================================================*/

.tax-card{

    background:#fff;

    margin-top:35px;

    border-radius:18px;

    padding:25px;

    color:#333;

}

.tax-card h4{

    color:#8f2215;

    margin-bottom:15px;

    font-size:22px;

}

.tax-card p{

    line-height:1.8;

    color:#555;

    margin-bottom:18px;

}

.tax-number{

    background:#fff6e9;

    border-left:4px solid #d97706;

    padding:15px;

    border-radius:10px;

    color:#222;

    line-height:1.7;

}

.tax-number strong{

    display:block;

    margin-top:6px;

}

/*==============================================================
BOTTOM NOTE
==============================================================*/

.donation-note{

    max-width:850px;

    margin:50px auto 0;

    text-align:center;

}

.donation-note p{

    color:#666;

    font-size:17px;

    line-height:1.9;

}

/*==============================================================
ANIMATION
==============================================================*/

.donation-wrapper{

    animation:donationFade .8s ease;

}

@keyframes donationFade{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.bank-row{

    animation:slideLeft .8s ease;

}

.qr-card{

    animation:slideRight .8s ease;

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:992px){

.donation-wrapper{

grid-template-columns:1fr;

}

.donation-right{

order:-1;

}

.bank-row{

grid-template-columns:150px 1fr;

}

}

@media(max-width:768px){

.donation-section{

padding:70px 0;

}

.donation-heading h2{

font-size:34px;

}

.donation-left{

padding:30px;

}

.donation-right{

padding:30px;

}

.bank-row{

grid-template-columns:1fr;

gap:8px;

}

.bank-label{

font-size:14px;

}

.bank-value{

font-size:15px;

}

.qr-image img{

width:190px;

}

}

@media(max-width:576px){

.donation-heading h2{

font-size:28px;

}

.donation-heading p{

font-size:15px;

}

.qr-card h3{

font-size:24px;

}

.card-title h3{

font-size:24px;

}

.tax-card{

padding:20px;

}

}