

.donate-section {
    background: #0E78BE;
    color: white;
    padding: 140px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donate-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    pointer-events: none;
}

.donate-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.donate-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-icon svg {
    width: 22px;
    height: 22px;
    color: #F2D377;
}

.donate-section h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.donate-section h2 span {
    color: #F2D377;
}

.donate-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #dbeafe;
    line-height: 1.6;
}

.donate-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F2D377;
    color: #0E78BE;
    padding: 18px 36px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffd95e;
}

.btn-secondary {
    background: white;
    color: #0E78BE;
    padding: 18px 36px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #e0f2fe;
}

/* ======================================
   FOOTER LINKS
====================================== */

/* ==============================
   CLEAN FOOTER STRUCTURE
============================== */

.footer-links {
    padding: 100px 40px 70px;
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #111827;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #6b7280;
    transition: 0.25s ease;
}

.footer-col a:hover {
    color: #0E78BE;
}

.brand-col p {
    max-width: 280px;
    line-height: 1.7;
    color: #6b7280;
}

/* ==============================
   FOOTER BOTTOM BAR
============================== */

.footer-bottom {
    border-top: 1px solid #f3f4f6;
    padding: 28px 40px;
    background: #ffffff;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #0E78BE;
}
/* ===============================
   SOCIAL ICON SIZE FIX
=============================== */

.social-links {
    margin-top: 16px;
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    background: #ffffff;
    transition: 0.25s ease;
}
.footer-logo{
    width:150px;
    height:auto;
    margin-top:5px;
}
.social-icon svg {
    width: 25px;
    height: 25px;
}

.social-icon:hover {
    background: #f0f9ff;
    border-color: #0E78BE;
    color: #0E78BE;
}
/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
