* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

section {
    background: linear-gradient( 135deg, #f4f8ff 0%, #ffffff 100% );
}

html {
    scroll-behavior: smooth;
}

.top-header {
    background: #3f3996;
    font-size: 14px;
    padding: 20px;
    color: white;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    transition: 0.3s;
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.carousel-item img {
    width: 100%;
    height: auto;
    /* same height for all slides */
    object-fit: cover;
}

.navbar-brand.text-blue {
    color: #3f3996 !important;
}

.nav-link {
    color: #3f3996 !important;
    font-weight: bold;
    font-size: 16px;
    /* menu items */
}

.about-section {
    background: #f8f9fa;
}

    .about-section h2 {
        font-size: 48px;
        line-height: 1.3;
    }

    .about-section p {
        font-size: 16px;
    }

/* Mobile Responsive */
@media (max-width:768px) {

    .about-section {
        text-align: center;
    }

        .about-section h2 {
            font-size: 32px;
        }
}

/* PROGRAM SECTION */

.programs-section {
    background: #f8f9fa;
}

.program-text {
    max-width: 700px;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

    .program-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        transition: 0.4s ease;
    }

    .program-card h4 {
        font-size: 22px;
    }

    .program-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Hover Effect */

    .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

        .program-card:hover img {
            transform: scale(1.05);
        }

/* Mobile Responsive */

@media (max-width:768px) {

    .programs-section h2 {
        font-size: 32px;
    }

    .program-card img {
        height: 200px;
    }
}



/* SECTION */

.certificate {
    background: #f8f9fa;
}

    .certificate h2 {
        font-size: 42px;
    }

/* Line */

.border-line {
    width: 90px;
    height: 4px;
    background: #000080;
    margin: 15px auto 50px;
    border-radius: 10px;
}

/* Wrapper */

.certificate-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Container */

.certificate-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    max-width: 1200px;
    padding: 10px;
}

    /* Hide Scrollbar */

    .certificate-container::-webkit-scrollbar {
        display: none;
    }

.certificate-container {
    scrollbar-width: none;
}

/* Item */

.certificate-item {
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

    /* Hover */

    .certificate-item:hover {
        transform: translateY(-8px);
    }

    /* Image */

    .certificate-item img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

/* Buttons */

.certificate-btn {
    border: none;
    width: clamp(45px, 6vw, 65px);
    height: clamp(45px, 6vw, 65px);
    border-radius: 50%;
    background: #000080;
    color: #fff;
    font-size: clamp(16px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}

    .certificate-btn:hover {
        transform: scale(1.08);
        background: #0e3386;
    }



    .certificate-btn.left {
        margin-right: 15px;
    }

    .certificate-btn.right {
        margin-left: 15px;
    }

/* Tablet */

@media (max-width:992px) {
    .certificate-item {
        min-width: 280px;
    }

        .certificate-item img {
            height: 320px;
        }
}

/* Mobile */


@media (max-width:768px) {

    .certificate {
        overflow: hidden;
    }

        .certificate h2 {
            font-size: 30px;
        }

    .certificate-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .certificate-container {
        gap: 14px;
        padding: 0 12px;
        overflow-x: auto;
        scroll-padding: 12px;
        width: 100%;
    }

    .certificate-item {
        min-width: 100%;
        max-width: 100%;
        border-radius: 18px;
        padding: 10px;
        background: #fff;
    }

        .certificate-item img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

    /* Buttons */

    .certificate-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        z-index: 10;
    }

        .certificate-btn.left {
            left: 8px;
            margin-right: 0;
        }

        .certificate-btn.right {
            right: 8px;
            margin-left: 0;
        }
}

.contact-section {
    background: #f8f9fa;
}

.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-control {
    padding: 14px;
    border-radius: 10px;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #198754;
    }

.contact-form button {
    border-radius: 10px;
}

.btn-contact {
    background: #000080 !important;
    color: white !important;
}

/* Mobile */

@media (max-width:768px) {
    .contact-section h2 {
        font-size: 32px;
    }
}

/* DONATE CTA */

.donate-cta {
    background: url("img/donate-cta.jpg") center/cover no-repeat;
    position: relative;
    padding: 200px 20px;
    background-attachment: fixed;
}

    /* Overlay */

    .donate-cta .overlay {
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Content */

.donate-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin: auto;
}

    .donate-content h2 {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .donate-content p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

/* Button */

.donate-btn {
    background: #198754;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s ease;
}

    .donate-btn:hover {
        background: #fff;
        color: #198754;
        transform: translateY(-4px);
    }

/* Tablet */

@media (max-width:992px) {
    .donate-content h2 {
        font-size: 42px;
    }
}

/* Mobile */

@media (max-width:768px) {
    .donate-cta {
        padding: 90px 20px;
        background-attachment: scroll;
    }

    .donate-content h2 {
        font-size: 34px;
    }

    .donate-content p {
        font-size: 16px;
    }

    .donate-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* MODAL */

.donate-modal {
    border-radius: 25px;
    padding: 10px;
}

/* Donation Cards */

.donation-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.donation-card {
    border: none;
    background: #f8f9fa;
    padding: 18px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

    .donation-card:hover {
        background: #198754;
        color: #fff;
        transform: translateY(-3px);
    }

/* Input */

#customAmount {
    height: 55px;
    border-radius: 12px;
}

/* QR */

.qr-box img {
    width: 220px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}



.nav-link {
    color: #222 !important;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: #0E3386 !important;
    }

.menu-donate {
    background: #0E3386 !important;
    color: white !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0;
    background: #0E3386;
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}


.btn-success {
    transition: 0.3s;
}

    .btn-success:hover {
        transform: translateY(-2px);
    }

section {
    scroll-margin-top: 100px;
}







/* =========================
   LARGE DESKTOP
========================= */

@media (min-width:1400px) {

    .donate-cta {
        padding: 220px 20px;
    }

    .donate-content {
        max-width: 900px;
    }

        .donate-content h2 {
            font-size: 60px;
        }

        .donate-content p {
            font-size: 20px;
            line-height: 1.9;
        }

    .donate-btn {
        padding: 16px 42px;
        font-size: 19px;
    }
}

/* =========================
   DESKTOP
========================= */

@media (max-width:1200px) {

    .donate-cta {
        padding: 170px 20px;
    }

    .donate-content h2 {
        font-size: 48px;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width:992px) {

    .donate-cta {
        padding: 140px 20px;
        background-attachment: scroll;
    }

    .donate-content {
        max-width: 700px;
    }

        .donate-content h2 {
            font-size: 42px;
        }

        .donate-content p {
            font-size: 17px;
            line-height: 1.7;
        }

    .donate-btn {
        padding: 13px 34px;
        font-size: 17px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px) {

    .donate-cta {
        padding: 100px 18px;
    }

    .donate-content h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .donate-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .donate-btn {
        width: 100%;
        max-width: 240px;
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:576px) {

    .donate-cta {
        padding: 85px 15px;
    }

    .donate-content h2 {
        font-size: 28px;
    }

    .donate-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .donate-btn {
        max-width: 220px;
        font-size: 15px;
        padding: 11px 22px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media (max-width:400px) {

    .donate-cta {
        padding: 75px 12px;
    }

    .donate-content h2 {
        font-size: 24px;
    }

    .donate-content p {
        font-size: 14px;
    }

    .donate-btn {
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 18px;
    }
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    background: #f8f9fa;
}

    /* Heading */

    .contact-section h2 {
        font-size: 42px;
        color: #000080;
    }

.border-line {
    width: 90px;
    height: 4px;
    background: #000080;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* =========================
   TOP INFO ROW
========================= */

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.contact-info-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

    .contact-info-box:hover {
        transform: translateY(-6px);
    }

    .contact-info-box h6 {
        font-size: 20px;
        font-weight: 700;
        color: #000080;
        margin-bottom: 10px;
    }

    .contact-info-box p {
        margin: 0;
        color: #555;
        line-height: 1.7;
    }

/* =========================
   IMAGE
========================= */

.contact-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================
   FORM
========================= */

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: auto;
}

.contact-form .form-control:focus {
    border-color: #000080;
    box-shadow: none;
}

/* Button */

.btn-contact {
    background: #000080;
    color: #fff;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
    border: none;
}

    .btn-contact:hover {
        background: #198754;
        color: #fff;
        transform: translateY(-3px);
    }

/* =========================
   TABLET
========================= */

@media (max-width:992px) {

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px) {

    .contact-section {
        padding: 60px 0;
    }

        .contact-section h2 {
            font-size: 30px;
        }

    .contact-info-box {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-form .form-control {
        height: 50px;
    }

    .btn-contact {
        width: 100%;
        padding: 12px;
    }
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}

/* Tablet */
@media (max-width:768px) {

    .navbar-brand img {
        max-width: 140px;
    }
}

/* Mobile */
@media (max-width:576px) {

    .navbar-brand img {
        max-width: 110px;
    }
}

@media (max-width:768px) {

    .donate-cta {
        padding: 80px 20px;
        background-position: center;
    }

    .donate-content {
        max-width: 100%;
    }

        .donate-content h2 {
            font-size: 34px;
            line-height: 1.3;
        }

        .donate-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

    .donate-btn {
        width: 100%;
        max-width: 240px;
        padding: 12px 20px !important;
    }
}

/* SMALL MOBILE */

@media (max-width:480px) {

    .donate-cta {
        padding: 155px 76px;
    }

    .donate-content h2 {
        font-size: 28px;
    }

    .donate-content p {
        font-size: 15px;
    }
}
/* Mobile Menu Underline Remove */

@media (max-width:991px) {

    .nav-link::after {
        display: none;
    }
}
/* =========================
   GET INVOLVED SECTION
========================= */

.get-involved {
    background: linear-gradient( 135deg, rgba(0,123,255,0.05), rgba(255,255,255,1) );
}

.section-tag {
    background: rgba(0,123,255,0.12);
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.get-involved h2 {
    color: #111827;
    line-height: 1.3;
}

.get-involved p {
    font-size: 17px;
    line-height: 1.8;
}

.point-item {
    align-items: flex-start;
    gap: 14px;
}

    .point-item i {
        width: 32px;
        height: 32px;
        background: #0d6efd;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin-top: 2px;
    }

    .point-item span {
        color: #374151;
        font-size: 16px;
        line-height: 1.7;
    }

.get-involved-img {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

    .get-involved-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s;
    }

        .get-involved-img img:hover {
            transform: scale(1.05);
        }
/* =========================
   ABOUT SECTION
========================= */

.about-section {
    background: #f8fbff;
}

.about-tag {
    color: #0e3386;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-section h2 {
    color: #111827;
    line-height: 1.3;
}

/* Tabs */

.about-tabs {
    gap: 12px;
}

    .about-tabs .nav-link {
        border-radius: 50px;
        padding: 10px 22px;
        font-weight: 600;
        color: #0e3386;
        background: rgba(14,51,134,0.08);
        border: none;
    }

        .about-tabs .nav-link.active {
            background: #0e3386;
            color: white !important;
        }

/* Content */

.about-points p {
    margin-bottom: 14px;
    color: #374151;
    font-weight: 500;
}

/* Image */

.about-img {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s;
    }

        .about-img img:hover {
            transform: scale(1.05);
        }

/* Mobile Responsive */

@media(max-width:768px) {
    .about-tabs;

{
    gap: 10px;
}

.about-tabs .nav-link {
    padding: 8px 18px;
    font-size: 14px;
}

.about-section h2 {
    font-size: 32px;
}

}
/* =========================
   IMPACT SECTION
========================= */

.impact-section {
    background: linear-gradient( 135deg, rgba(14,51,134,0.04), rgba(255,255,255,1) );
}

.impact-tag {
    color: #0e3386;
    font-weight: 700;
    letter-spacing: 1px;
}

.impact-section h2 {
    color: #111827;
    line-height: 1.3;
}

.impact-text {
    font-size: 17px;
    line-height: 1.8;
}

/* Points */

.impact-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .impact-item i {
        color: #0e3386;
        font-size: 22px;
        margin-top: 2px;
    }

    .impact-item span {
        color: #374151;
        line-height: 1.7;
        font-size: 16px;
    }

/* Button */

.impact-btn {
    background: #0e3386;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .impact-btn:hover {
        background: #001f66;
        color: white;
        transform: translateY(-2px);
    }

/* Image */

.impact-img {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

    .impact-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }

        .impact-img img:hover {
            transform: scale(1.05);
        }

/* Mobile Responsive */

@media(max-width:768px) {
    .impact-section h2;

{
    font-size: 32px;
}

.impact-text {
    font-size: 15px;
}

.impact-item span {
    font-size: 15px;
}

}
/* =========================
   GET INVOLVED SECTION
========================= */

.get-involved {
    background: linear-gradient( 135deg, #f4f8ff, #ffffff );
    position: relative;
    overflow: hidden;
}

/* Small Tag */

.section-tag {
    display: inline-block;
    background: rgba(14,51,134,0.1);
    color: #0e3386;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Heading */

.get-involved h2 {
    color: #111827;
    line-height: 1.25;
    font-size: clamp(34px,5vw,58px);
}

/* Paragraph */

.get-involved p {
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* Bullet Box */

.involve-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

/* Point Item */


/* Icon */

.point-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #0e3386, #1f57d6 );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* Text */

.point-item span {
    color: #1f2937;
    font-weight: 500;
    line-height: 1.6;
}

/* Button */

.get-involved .btn {
    background: linear-gradient( 135deg, #0e3386, #1f57d6 );
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(14,51,134,0.2);
}

    .get-involved .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(14,51,134,0.3);
    }

/* Image */

.get-involved-img {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

    .get-involved-img img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        transition: 0.5s ease;
    }

    .get-involved-img:hover img {
        transform: scale(1.06);
    }

/* Decorative Glow */

.get-involved::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(14,51,134,0.06);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px) {
    .get-involved;

{
    text-align: center;
}

.involve-points {
    grid-template-columns: 1fr;
}

.point-item {
    text-align: left;
}

.get-involved h2 {
    font-size: 36px;
}

.get-involved p {
    font-size: 15px;
}

.get-involved-img img {
    aspect-ratio: 16 / 10;
}

}
/* =========================
   GET INVOLVED SECTION
========================= */

.get-involved {
    position: relative;
    background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65) ), url("https://images.pexels.com/photos/37369630/pexels-photo-37369630.jpeg") center/cover no-repeat;
    overflow: hidden;
}

    /* Optional: Better Text Visibility */

    .get-involved h2,
    .get-involved p,
    .get-involved span,
    .get-involved .point-item {
        color: #fff !important;
    }

/* Tag Design */

.section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    font-weight: 600;
}
/* IMAGE WRAPPER */

.get-involved-img {
    position: relative;
    padding: 18px;
    display: inline-block;
}

    /* IMAGE */

    .get-involved-img img {
        width: 100%;
        display: block;
        border-radius: 20px;
        position: relative;
        z-index: 2;
    }

    /* LEFT + BOTTOM BORDER */

    .get-involved-img::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 85%;
        height: 85%;
        border-left: 6px solid #fff;
        border-bottom: 6px solid #fff;
        border-radius: 20px;
        z-index: 1;
    }

    /* TOP + RIGHT BORDER */

    .get-involved-img::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        height: 85%;
        border-top: 6px solid #fff;
        border-right: 6px solid #fff;
        border-radius: 20px;
        z-index: 1;
    }

.lb-closeContainer {
    position: absolute !important;
    top: 15px !important;
    right: 20px !important;
    z-index: 9999;
}

.lb-close {
    font-size: 30px !important;
    opacity: 1 !important;
    color: #fff !important;
}

.mobile-sticky-donate {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 36px;
    border-radius: 10px;
    background: #000080 !important;
    color: white;
    border: 5px solid yellow !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Mobile spacing fix */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

@media (min-width: 768px) {
    .mobile-sticky-donate {
        position: static;
        transform: none;
    }

    body {
        padding-bottom: 0;
    }
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

        .footer-content p {
            margin-bottom: 5px;
        }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

body {
    padding-top: 130px;
}



.mobile-sticky-donate:hover {
    transform: translateX(-50%);
}
/* ABOUT TABS - TOUCH BAR STYLE */
.about-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

    .about-tabs::-webkit-scrollbar {
        display: none;
    }

    .about-tabs .nav-link {
        border: none;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 12px 22px;
        border-radius: 16px;
        color: #222;
        font-weight: 600;
        white-space: nowrap;
        transition: 0.3s ease;
        box-shadow: inset 0 1px 1px rgba(255,255,255,0.6), 0 4px 12px rgba(0,0,0,0.08);
    }

        /* HOVER */
        .about-tabs .nav-link:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.95);
        }

        /* ACTIVE TAB */
        .about-tabs .nav-link.active {
            background: linear-gradient(135deg, #0E3386, #1d4ed8);
            color: #fff;
            box-shadow: 0 10px 25px rgba(14, 51, 134, 0.3), inset 0 1px 1px rgba(255,255,255,0.2);
        }

/* MOBILE */
@media (max-width: 768px) {
    .about-tabs .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }
}
/* SECTION TAG */
.section-tag {
    display: inline-block;
    background: #dff3fb;
    color: #0E3386;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

/* BORDER LINE */
.border-line {
    width: 80px;
    height: 4px;
    background: #0E3386;
    border-radius: 10px;
    margin-top: 15px;
}

/* IMAGE */
.contact-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CARD */
.contact-card {
    background: #fff;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* INFO WRAPPER */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* INFO BOX */
.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #f7fbff;
    transition: 0.3s ease;
}

    .contact-info-box:hover {
        transform: translateY(-4px);
        background: #eef7ff;
    }

    /* ICON */
    .contact-info-box .icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 16px;
        background: linear-gradient(135deg,#0E3386,#2563eb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
    }

    /* TEXT */
    .contact-info-box h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-info-box p {
        margin: 0;
        color: #666;
        line-height: 1.7;
    }

/* MOBILE */
@media(max-width:768px) {
    .contact-card;

{
    padding: 28px;
}

.contact-info-box {
    padding: 16px;
}

}
/* ===================================
   GALLERY SECTION
=================================== */

.gallery-section {
    overflow: hidden;
}

/* ===================================
   HEADING
=================================== */

.border-line {
    width: 90px;
    height: 4px;
    background: #172b8f;
    margin: 12px auto 0;
    border-radius: 20px;
}

/* ===================================
   WRAPPER
=================================== */

.gallery-wrapper {
    position: relative;
    width: 100%;
}

/* ===================================
   CONTAINER
=================================== */

.gallery-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: none;
}

    .gallery-container::-webkit-scrollbar {
        display: none;
    }

/* ===================================
   ITEM
=================================== */

.gallery-item {
    flex: 0 0 auto;
    width: 320px;
    border-radius: 18px;
    overflow: hidden;
    /* EXTRA GAP REMOVE */
    line-height: 0;
    transition: 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-4px);
    }

    /* ===================================
   IMAGE
=================================== */

    .gallery-item img {
        width: 100%;
        height: auto;
        /* IMAGE FULL SHOW */
        object-fit: contain;
        display: block;
        border-radius: 18px;
        /* GAP REMOVE */
        margin: 0;
        padding: 0;
    }

/* ===================================
   BUTTONS
=================================== */

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .gallery-btn:hover {
        background: #000;
    }

    .gallery-btn.left {
        left: -5px;
    }

    .gallery-btn.right {
        right: -5px;
    }

/* ===================================
   LARGE SCREEN
=================================== */

@media (min-width: 1400px) {

    .gallery-item {
        width: 380px;
    }
}

/* ===================================
   LAPTOP
=================================== */

@media (max-width: 1200px) {

    .gallery-item {
        width: 300px;
    }
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .gallery-item {
        width: 260px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 576px) {

    .gallery-container {
        gap: 12px;
        padding: 0;
    }

    .gallery-item {
        width: 88%;
        border-radius: 14px;
    }

        .gallery-item img {
            border-radius: 14px;
        }

    .gallery-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

        .gallery-btn.left {
            left: 0;
        }

        .gallery-btn.right {
            right: 0;
        }
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .contact-info-box > div:last-child {
        flex: 1;
        min-width: 0;
    }

    .contact-info-box p {
        word-break: break-word;
        overflow-wrap: break-word;
    }

@media (max-width: 576px) {

    .contact-info-box {
        align-items: flex-start;
    }

        .contact-info-box p {
            font-size: 14px;
        }
}
.contact-info-box a{
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}
.donation-chart{

display:grid;

grid-template-columns:
1fr 1fr;

gap:10px;

margin-top:20px;

}


.donation-chart div{

background:#f5f5f5;

padding:12px;

border-radius:10px;

display:flex;

justify-content:
space-between;

font-weight:600;

font-size:14px;

}



.donate-modal{

border-radius:20px;

padding:10px;

}



@media(max-width:576px){

.donation-chart{

grid-template-columns:
1fr;

}

.modal-dialog{

margin:15px;

}

}
/* MODAL */

.donate-modal{

    border-radius: 24px;

    overflow: hidden;

    background: #fff;

}


/* DONATION LIST */

.donation-chart{

    display: flex;

    flex-direction: column;

    gap: 14px;

}


/* SINGLE OPTION */

/* SINGLE OPTION */

.donate-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f8f9fa;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

/* TEXT BOX */

.donate-text {
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    color: #222;
    font-weight: 600;
    line-height: 1.5;
    transition: 0.3s ease;
}

/* PRICE */

.donate-option span {
    color: #198754;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s ease;
}

/* HOVER */

.donate-option:hover {
    background: #198754;
    border-color: #198754;
    transform: translateY(-3px);
}

/* ONLY PRICE WHITE */

.donate-option:hover span {
    color: #fff;
}

/* TEXT BOX STAYS WHITE */

.donate-option:hover .donate-text {
    background: #fff;
    color: #222;
}
/* MOBILE */

@media(max-width:768px){

    .donate-option{
        flex-direction: row;
        align-items: center;
    }

    .donate-text{
        font-size: 14px;
        flex: 1;
    }

    .donate-option span{
        font-size: 16px;
    }
}