/* 🔥 HERO */
.donate-hero{
    background: linear-gradient(90deg,#0b3d91,#1c3b8b);
    padding:50px 0;
    border-bottom:4px solid #ff9933;
}

/* 🔥 CARD */
.donate-landscape{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* 🔥 INPUT */
.form-control{
    border-radius:10px;
    border:1px solid #ddd;
}

/* 🔥 BUTTONS */
.btn-donate{
    background: linear-gradient(90deg,#ff9933,#ff6b00);
    color:#fff;
    border:none;
    border-radius:30px;
    font-weight:600;
    padding:10px;
}

.btn-upi{
    background:#0b3d91;
    color:#fff;
    border:none;
    border-radius:30px;
    font-weight:600;
    padding:10px;
}

/* 🔥 QUICK AMOUNT */
.quick-amount button{
    border:none;
    background:#eef5ff;
    padding:6px 14px;
    margin:4px;
    border-radius:20px;
    transition:0.3s;
}

.quick-amount button:hover{
    background:#0b3d91;
    color:#fff;
}

/* 🔥 MODAL */
.modal-content{
    border-radius:15px;
}
/* 🔥 CENTER CARD WIDTH */
.donate-landscape{
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* 🔥 QUICK AMOUNT BETTER */
.quick-amount button{
    border:none;
    background:#eef5ff;
    padding:8px 16px;
    margin:5px;
    border-radius:25px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.quick-amount button:hover{
    background:#0b3d91;
    color:#fff;
}
/* CARD DESIGN */
.donate-card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border-top:4px solid #0b3d91;
}

/* INPUT */
.form-control{
    border-radius:8px;
    border:1px solid #ddd;
    height:48px;
}

.form-control:focus{
    border-color:#0b3d91;
    box-shadow:0 0 0 2px rgba(11,61,145,0.1);
}

/* QUICK BUTTON */
.quick-amount button{
    border:none;
    background:#eef5ff;
    padding:8px 16px;
    margin:5px;
    border-radius:20px;
    font-size:14px;
    transition:0.3s;
}

.quick-amount button:hover{
    background:#0b3d91;
    color:#fff;
}

/* BUTTONS */
.btn-donate{
    background:linear-gradient(90deg,#ff9933,#ff6b00);
    color:#fff;
    border-radius:30px;
    padding:10px;
    font-weight:600;
}

.btn-upi{
    background:#0b3d91;
    color:#fff;
    border-radius:30px;
    padding:10px;
    font-weight:600;
}

/* HOVER */
.btn-donate:hover{
    opacity:0.9;
}

.btn-upi:hover{
    background:#082c6c;
}

/* MOBILE */
@media(max-width:768px){
    .donate-card{
        padding:20px;
    }
}