body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

        /* ======= NAVIGATION BAR ======= */
        nav {
            background: #00357a;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
        }
        nav a:hover {
            text-decoration: underline;
        }


.donation-container {
    max-width: 900px;
    margin: auto;
    padding: 30px;
}

.donation-header {
    text-align: center;
    margin-bottom: 40px;
}

.donation-header h1 {
    font-size: 2.2em;
}

/* ===========================
   DONATION APPEAL SECTION
=========================== */

.donation-appeal {
    max-width: 1100px;              /* Prevents stretching to full width */
    margin: 80px auto;              /* Centers section */
    padding: 60px 60px;             /* Moves content inward from left & right */
    background: rgba(10, 15, 25, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.4);
    backdrop-filter: blur(12px);
    color: #d0f8ff;
}

/* Heading */
.donation-appeal h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0,242,254,0.6);
}

/* Paragraph spacing */
.donation-appeal p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* List styling */
.donation-appeal ul {
    margin: 30px 0 30px 20px;   /* Push list inward from left */
    padding-left: 20px;         /* Extra inner space */
}

.donation-appeal ul li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Responsive Fix */
@media (max-width: 900px) {
    .donation-appeal {
        padding: 40px 25px;   /* Less padding on mobile */
    }

    .donation-appeal h2 {
        font-size: 2rem;
    }
}


.amount-section, .payment-section {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.amount-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.amount-options button,
.amount-options input {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    font-size: 16px;
}

.amount-options button {
    background: #00c6ff;
    color: #000;
    cursor: pointer;
}

.amount-options input {
    width: 150px;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.payment-card {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.pay-btn {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background: #00ffcc;
    cursor: pointer;
    font-weight: bold;
}

.bank-details {
    display: none;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.trust-section {
    text-align: center;
    margin-top: 30px;
    opacity: 0.8;
}


/* ===========================
   BANK / BSP DONATION SECTION
=========================== */

.bank-donate {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 30px;
    background: rgba(10,15,25,0.95);
    border-radius: 20px;
    border: 1px solid rgba(0,242,254,0.3);
    box-shadow: 0 0 30px rgba(0,242,254,0.4);
    backdrop-filter: blur(12px);
    color: #d0f8ff;
    text-align: center;
}

.bank-donate h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0,242,254,0.6);
}

.bank-donate p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.bank-donate ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.bank-donate ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #00f2fe;
    text-shadow: 0 0 5px rgba(0,242,254,0.5);
}


/* ===========================
   FUTURISTIC DONATION BUTTONS
=========================== */

.donation-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.donation-form {
    display: inline-block;
}

.donate-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    color: #000;
    text-shadow: 0 0 5px rgba(0,0,0,0.4);
    box-shadow: 0 0 20px rgba(0,242,254,0.5);
    transition: all 0.4s ease;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
}

.donate-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(0,242,254,0.8);
}

/* Optional: separate styling for PayPal and Card buttons */
.paypal-btn {
    background: linear-gradient(90deg, #0070ba, #00a0ff);
}

.card-btn {
    background: linear-gradient(90deg, #ff9500, #ffcc00);
}

/* Responsive */
@media(max-width: 900px) {
    .donation-buttons {
        flex-direction: column;
        gap: 25px;
    }

    .donate-btn {
        width: 80%;
        padding: 15px 0;
    }
}

/* IRRESISTIBLE BUTTON */

.explore-btn {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 60px;
    font-weight: bold;
    font-size: 1.05rem;
    text-decoration: none;
    color: #000;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(0,242,254,0.6);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Text & Arrow */
.btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Sliding Arrow */
.arrow {
    transition: 0.3s ease;
}

.explore-btn:hover .arrow {
    transform: translateX(8px);
}

/* Glow Background */
.btn-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease;
}

.explore-btn:hover .btn-glow {
    opacity: 0.4;
}

/* Lift + Scale */
.explore-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0,242,254,1);
}

/* Active Press */
.explore-btn:active {
    transform: scale(0.95);
}

/* Animated Border Glow */
.explore-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(90deg, #00f2fe, #4facfe, #00f2fe);
    background-size: 200%;
    animation: borderFlow 3s linear infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

@keyframes borderFlow {
    0% { background-position: 0% }
    100% { background-position: 200% }
}
