/* =========================================================
   DONATE SECTION
========================================================= */

.donate-hero-section {

    position: relative;

    padding: 140px 0 80px;

    overflow: hidden;

    background: linear-gradient(180deg,
            #ffffff 0%,
            #f7fafc 100%);

}

/* BG EFFECTS */

.donate-bg {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

}

.donate-bg-1 {

    width: 350px;
    height: 350px;

    background: rgba(15, 157, 88, .10);

    top: -100px;
    left: -100px;

}

.donate-bg-2 {

    width: 300px;
    height: 300px;

    background: rgba(11, 44, 138, .08);

    right: -100px;
    bottom: -100px;

}

/* LEFT CONTENT */

.donate-content {

    position: relative;

    z-index: 2;

}

.donate-tag {

    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(15, 157, 88, .08);

    border: 1px solid rgba(15, 157, 88, .15);

    color: #0F9D58;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 25px;

}

.donate-content h1 {

    font-size: 42px;

    font-weight: 900;

    line-height: 1.2;

    color: #0f172a;

    margin-bottom: 25px;

}

.donate-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #64748B;

    margin-bottom: 40px;

}

/* IMPACT GRID */

.donate-impact-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

.donate-impact-card {

    background: #fff;

    padding: 30px;

    border-radius: 25px;

    text-align: center;

    border: 1px solid #e2e8f0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    transition: .4s;

}

.donate-impact-card:hover {

    transform: translateY(-8px);

}

.donate-impact-card h3 {

    font-size: 28px;

    color: #0F9D58;

    font-weight: 800;

    margin-bottom: 10px;

}

.donate-impact-card span {

    color: #64748B;

    font-weight: 600;

}

/* RIGHT BOX */

.donate-box {

    position: relative;

    overflow: hidden;

    padding: 45px;

    border-radius: 35px;

    background: linear-gradient(135deg,
            #07143B,
            #0B2C8A);

    box-shadow: 0 25px 70px rgba(11, 44, 138, .20);

}

.donate-box-glow {

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -150px;
    right: -120px;

}

.donate-box-top {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 35px;

}

.donate-box-top h2 {

    color: #fff;

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 10px;

}

.donate-box-top p {

    color: rgba(255, 255, 255, .85);

    line-height: 1.8;

}

/* QR BOX */

.donate-qr-box {

    position: relative;

    z-index: 2;

    text-align: center;

    background: rgba(255, 255, 255, .08);

    padding: 30px;

    border-radius: 25px;

    backdrop-filter: blur(10px);

    margin-bottom: 25px;

}

.donate-qr {

    width: 240px;
    height: 240px;

    margin: auto;

    background: #fff;

    padding: 15px;

    border-radius: 20px;

}

.donate-qr img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}

.donate-upi {

    margin-top: 20px;

}

.donate-upi span {

    display: block;

    color: rgba(255, 255, 255, .70);

    margin-bottom: 10px;

}

.donate-upi h4 {

    color: #fff;

    font-size: 22px;

    font-weight: 700;

    word-break: break-all;

}

/* BANK DETAILS */

.donate-bank-details {

    position: relative;

    z-index: 2;

    background: rgba(255, 255, 255, .08);

    padding: 25px;

    border-radius: 25px;

    backdrop-filter: blur(10px);

    margin-bottom: 25px;

}

.donate-bank-details h5 {

    color: #fff;

    text-align: center;

    font-size: 24px;

    margin-bottom: 20px;

    font-weight: 700;

}

.bank-row {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .10);

}

.bank-row:last-child {

    border-bottom: none;

}

.bank-row span {

    color: rgba(255, 255, 255, .75);

}

.bank-row strong {

    color: #fff;

    text-align: right;

    font-weight: 600;

}

/* BUTTON */

.donate-btn-main {

    display: block;

    text-align: center;

    padding: 18px;

    border-radius: 60px;

    background: #0F9D58;

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: .4s;

}

.donate-btn-main:hover {

    background: #fff;

    color: #0B2C8A;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .donate-content {

        margin-bottom: 50px;

    }

    .donate-content h1 {

        font-size: 36px;

    }

}

@media(max-width:767px) {

    .donate-impact-grid {

        grid-template-columns: 1fr;

    }

    .donate-content h1 {

        font-size: 30px;

    }

    .donate-box {

        padding: 30px;

    }

}

@media(max-width:576px) {

    .donate-hero-section {

        padding: 120px 0 50px;

    }

    .donate-content h1 {

        font-size: 26px;

    }

    .donate-content p {

        font-size: 16px;

    }

    .donate-box {

        padding: 25px;

        border-radius: 25px;

    }

    .donate-qr {

        width: 180px;
        height: 180px;

    }

    .donate-box-top h2 {

        font-size: 28px;

    }

    .bank-row {

        flex-direction: column;

        gap: 6px;

    }

    .bank-row strong {

        text-align: left;

        word-break: break-word;

    }

}

/* =========================================================
   DONATION TESTIMONIAL SECTION
========================================================= */

.donation-testimonial-section {

    position: relative;

    padding: 50px 0;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);

}

/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.donation-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

}

/* LEFT */

.donation-shape-1 {

    width: 320px;
    height: 320px;

    background:
        rgba(22, 163, 74, 0.08);

    top: -120px;
    left: -120px;

}

/* RIGHT */

.donation-shape-2 {

    width: 280px;
    height: 280px;

    background:
        rgba(37, 99, 235, 0.08);

    bottom: -100px;
    right: -100px;

}

/* =========================================================
   HEADING
========================================================= */

.donation-testimonial-heading {

    margin-bottom: 40px;

}

/* TAG */

.donation-testimonial-heading span {

    display: inline-block;

    padding: 14px 28px;

    border-radius: 60px;

    background:
        rgba(22, 163, 74, 0.08);

    color: #16A34A;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 28px;

}

/* TITLE */

.donation-testimonial-heading h2 {

    font-size: 40px;

    line-height: 1.3;

    font-weight: 900;

    color: #0F172A;

    margin-bottom: 28px;

}

/* TEXT */

.donation-testimonial-heading p {

    font-size: 18px;

    line-height: 1.9;

    color: #64748B;

    max-width: 850px;

    margin: auto;

}

/* =========================================================
   CARD COMMON
========================================================= */

.donation-testimonial-card {

    position: relative;

    height: 100%;

    padding: 45px 38px;

    border-radius: 34px;

    overflow: hidden;

    transition: 0.4s ease;

}

/* Hover */

.donation-testimonial-card:hover {

    transform:
        translateY(-10px);

}

/* QUOTE */

.donation-quote {

    font-size: 90px;

    line-height: 1;

    font-weight: 900;

    margin-bottom: 20px;

}

/* TEXT */

.donation-testimonial-card p {

    font-size: 17px;

    line-height: 2;

    color: #475569;

    margin-bottom: 35px;

}

/* USER */

.donation-user h4 {

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 8px;

}

/* LOCATION */

.donation-user span {

    font-size: 15px;

    font-weight: 600;

    color: #64748B;

}

/* =========================================================
   GREEN CARD
========================================================= */

.card-green {

    background: #F0FDF4;

    border: 1px solid #BBF7D0;

}

.card-green .donation-quote {

    color:
        rgba(22, 163, 74, 0.18);

}

.card-green .donation-user h4 {

    color: #16A34A;

}

/* =========================================================
   BLUE CARD
========================================================= */

.card-blue {

    background: #EFF6FF;

    border: 1px solid #BFDBFE;

}

.card-blue .donation-quote {

    color:
        rgba(37, 99, 235, 0.18);

}

.card-blue .donation-user h4 {

    color: #2563EB;

}

/* =========================================================
   ORANGE CARD
========================================================= */

.card-orange {

    background: #FFF7ED;

    border: 1px solid #FED7AA;

}

.card-orange .donation-quote {

    color:
        rgba(234, 88, 12, 0.18);

}

.card-orange .donation-user h4 {

    color: #EA580C;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .donation-testimonial-section {

        padding: 100px 0;

    }

    .donation-testimonial-heading h2 {

        font-size: 38px;

    }

}

@media(max-width:767px) {

    .donation-testimonial-heading h2 {

        font-size: 32px;

    }

}

@media(max-width:576px) {

    .donation-testimonial-section {

        padding: 80px 0;

    }

    .donation-testimonial-heading {

        margin-bottom: 50px;

    }

    .donation-testimonial-heading h2 {

        font-size: 28px;

    }

    .donation-testimonial-heading p {

        font-size: 16px;

    }

    .donation-testimonial-card {

        padding: 35px 28px;

        border-radius: 28px;

    }

    .donation-user h4 {

        font-size: 20px;

    }

}

/* ==========================
   DONATE SECTION
========================== */

.donate-section {
    padding: 50px 0;
    background: #f8fafc;
    position: relative;
}

.donate-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.donate-tag {
    display: inline-block;
    background: #ffe7e7;
    color: #d62828;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.mission-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 35px;
    border-left: 6px solid #e63946;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-box h3 {
    color: #d62828;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-box p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
}

.section-small-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    background: #fff;
    padding: 18px;
    border-radius: 15px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.feature-item i {
    color: #16a34a;
    margin-top: 4px;
}

/* IMPACT CARD */

.impact-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 100px;
}

.impact-header {
    text-align: center;
    margin-bottom: 30px;
}

.impact-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.impact-header p {
    color: #64748b;
}

.impact-item {
    text-align: center;
    padding: 25px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-radius: 15px;
}

.impact-item span {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #d62828;
}

.impact-item p {
    margin-top: 10px;
    color: #475569;
}

.impact-note {
    text-align: center;
    font-weight: 600;
    margin: 25px 0;
    color: #0f172a;
}

.donate-btn {
    display: block;
    text-align: center;
    background: #d62828;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.donate-btn:hover {
    background: #b71c1c;
    color: #fff;
}

.bottom-message {
    margin-top: 80px;
    text-align: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.bottom-message h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.bottom-message p {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
    color: #475569;
}

.bottom-message h4 {
    margin-top: 25px;
    color: #d62828;
    font-weight: 800;
}

/* Responsive */

@media(max-width:991px) {

    .donate-content h2 {
        font-size: 34px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        margin-top: 40px;
    }

    .bottom-message h3 {
        font-size: 28px;
    }

}

/* =====================================
   DONATION FORM SECTION
===================================== */

.donation-form-section {
    background: #f8fafc;
    padding: 80px 0;
}

.donation-form-section .container {
    max-width: 900px;
}

#donationForm {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#donationForm h3 {
    color: #0f766e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#donationForm label {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
}

#donationForm .form-control {
    height: 55px;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    font-size: 15px;
    padding: 10px 15px;
    box-shadow: none;
    transition: all .3s ease;
}

#donationForm textarea.form-control {
    height: auto;
    resize: none;
}

#donationForm .form-control:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, .12);
}

#donationForm select.form-control {
    cursor: pointer;
}

#donationForm input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

#donationForm .btn-danger {
    height: 60px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,
            #e91e63,
            #ff4081);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s;
}

#donationForm .btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, .25);
}

.alert-success {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    background: #d1fae5;
    color: #065f46;
}

/* =====================================
   REQUIRED STAR
===================================== */

label::after {
    content: "";
}

.required::after {
    content: " *";
    color: red;
}

/* =====================================
   PLACEHOLDER
===================================== */

::placeholder {
    color: #94a3b8;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 991px) {

    #donationForm {
        padding: 30px;
    }

    #donationForm h3 {
        font-size: 26px;
    }

}

@media (max-width: 767px) {

    .donation-form-section {
        padding: 50px 0;
    }

    #donationForm {
        padding: 25px 20px;
        border-radius: 15px;
    }

    #donationForm h3 {
        font-size: 22px;
        text-align: center;
    }

    #donationForm .form-control {
        height: 50px;
        font-size: 14px;
    }

    #donationForm .btn-danger {
        height: 55px;
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    #donationForm {
        padding: 20px 15px;
    }

    #donationForm h3 {
        font-size: 20px;
    }

}