.donate-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.donate-page__content {
    border-radius: 10px;
    /* margin-bottom: 60px; */

    @media (max-width: 991.98px) {
        padding: 30px;
        background-color: transparent;
        box-shadow: none;
    }

}

.donate-form {
    border: 1px solid rgba(9, 42, 36, 0.54);
}



.donate-page__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
    text-align: center;
}

.donate-page__text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    text-align: center;
}

/* .payment-methods {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0px 0;
} */

.payment-method {
    margin-bottom: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 300px;
    /* max-width: 566px; */
    border: 1px solid rgba(9, 42, 36, 0.54);
}

.payment-method h3 {
    color: #2c2c2c;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.bank-details {
    text-align: left;
    margin: 20px 0;
}

.bank-details p {
    margin: 10px 0;
    color: #373737;
    font-size: 16px;
}

.bank-details strong {
    color: #2c2c2c;
    font-weight: 600;
}

.qr-code {
    margin: 20px auto;
    text-align: center;
}

.qr-code img {
    max-width: 200px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.payment-note {
    background: #092a24;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.payment-note p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    /* text-align: center; */
    font-weight: 600;
}

@media (max-width: 768px) {
    .donate-page {
        padding: 50px 0;
    }

    .donate-page__content {
        padding: 0px;
    }

    .payment-method {
        min-width: 100%;
    }
}



.donate-btn-left {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #d89638, #c47c2a);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(216, 150, 56, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    width: max-content;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.donate-btn-left:hover {
    box-shadow: 0 12px 35px rgba(216, 150, 56, 0.4);
    background: linear-gradient(135deg, #c47c2a, #d89638);
    color: white;
    text-decoration: none;
}

.donate-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    animation: heartbeat 2s infinite;
}

.donate-icon i {
    font-size: 16px;
    color: white;
}

.donate-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.donate-main {
    font-size: 16px;
    margin-bottom: 1px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.donate-sub {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.donate-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    animation: pulse-donate 3s infinite;
}

/* Animations */
@keyframes slideInLeft-donate {
    from {
        transform: translateX(100px) translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

@keyframes heartbeat {

    0%,
    50%,
    100% {
        transform: scale(1);
    }

    25%,
    75% {
        transform: scale(1.1);
    }
}

@keyframes pulse-donate {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Hover effects */
.donate-btn-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.donate-btn-left:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donate-float-left {
        left: 15px;
        top: 60%;
    }

    .donate-btn-left {
        padding: 10px 16px;
        min-width: 100px;
    }

    .donate-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .donate-icon i {
        font-size: 14px;
    }

    .donate-main {
        font-size: 13px;
    }

    .donate-sub {
        font-size: 11px;
    }
}



/* Additional glow effect */
.donate-btn-left:hover .donate-icon {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Smooth entrance animation delay */
.donate-float-left {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}