/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 112px;
    padding-top: 40px;
    height: 400px;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-carousel .carousel-item,
.hero-bg-carousel .carousel-item img {
    width: 100%;
    height: 400px;
}

.hero-bg-carousel .carousel-item img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(11, 44, 138, 0.92) 35%,
            rgba(11, 44, 138, 0.55) 55%,
            rgba(11, 44, 138, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 750px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #FFD54F;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0F9D58, #16c172);
    color: #fff;
    border: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(15, 157, 88, 0.35);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #0B2C8A;
    transform: translateY(-4px);
}

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-arrow {
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.hero-arrow:hover {
    transform: scale(1.1);
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    position: relative;
    padding: 50px 0;
    background: #f8fafc;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(rgba(11, 44, 138, 0.08),
            transparent);
    left: -200px;
    top: -100px;
    border-radius: 50%;
}

.about-images {
    position: relative;
}

.about-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-main-image img {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

.about-main-image:hover img {
    transform: scale(1.06);
}

.about-content h2 {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 800;
    color: #0B2C8A;
    margin: 10px 0;
}

.about-content h2 span {
    color: #0F9D58;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #64748B;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background:
        linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow:
        0 15px 35px rgba(11, 44, 138, 0.18);
}

.btn-about:hover {
    transform: translateY(-5px);
    color: #ffffff;
}

/* =========================
   Current Project section
========================= */
.current-project-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff5f8, #f7fbff);
    position: relative;
    overflow: hidden;
}

.current-project-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ff4f8b20;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float1 6s ease-in-out infinite;
}

.current-project-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: #00b7b320;
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    animation: float2 8s ease-in-out infinite;
}

.project-banner {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .15),
        0 0 30px rgba(233, 30, 99, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-banner img {
    width: 100%;
    display: block;
}

.shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .6),
            transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    z-index: 2;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

@keyframes bannerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float1 {
    50% {
        transform: translateY(30px);
    }
}

@keyframes float2 {
    50% {
        transform: translateY(-30px);
    }
}

@media(max-width:768px) {

    .current-project-section {
        padding: 60px 0;
    }

    .project-banner {
        border-radius: 18px;
    }
}

/* ===================================
   video section after current project
====================================== */
.video-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.sections-heading {
    margin-bottom: 20px;
}

.sections-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0B2C8A;
    display: inline-block;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    transition: .4s;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.info-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #009688, #0f5c8f);
    color: #fff;
}

.info-content {
    padding: 40px;
}

.tag {
    background: #fff;
    color: #e91e63;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.info-content h3 {
    margin: 20px 0;
    font-size: 34px;
    font-weight: 700;
}

.info-content p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.read-btn {
    display: inline-block;
    background: #fff;
    color: #0f5c8f;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.read-btn:hover {
    color: #0f5c8f;
}

/* ==========================
   TOP DONORS SECTION
========================== */
.top-donors-section {
    padding: 60px 0;
    background: #f5f7fb;
}

.top-donors-section .section-header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.top-donors-section .section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #17366d;
    margin-bottom: 10px;
}

.top-donors-section .section-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.top-donors-section .view-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(135deg, #ff4f8b, #d63384);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.top-donors-section .view-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.top-donors-section .donor-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-height: 380px;
    border: 1px solid #ececec;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    transition: .3s;
}

.top-donors-section .donor-card:hover {
    transform: translateY(-6px);
}

.top-donors-section .badge {
    position: absolute;
    top: -8px;
    left: 15px;
    width: 65px;
    height: 65px;
    z-index: 2;
}

.top-donors-section .badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.top-donors-section .donor-card>img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .10);
}

.top-donors-section .donor-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 8px;
}

.top-donors-section .location {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #0b9b7a;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.top-donors-section .location i {
    font-size: 12px;
}

.top-donors-section .donor-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    min-height: 70px;
}

.top-donors-section .impact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px;
    border-radius: 12px;
    background: #eaf8f6;
    color: #0b8d76;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.top-donors-section .impact i {
    font-size: 14px;
}

.top-donors-section .impact.pink {
    background: #fff0f6;
    color: #d63384;
}

.top-donors-section .impact.green {
    background: #eef9eb;
    color: #2e8b57;
}

.top-donors-section .consent-note {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.top-donors-section .consent-note i {
    color: #d63384;
    margin-right: 5px;
}

.top-donors-section .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.top-donors-section .owl-nav button.owl-prev,
.top-donors-section .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #17366d !important;
    color: #fff !important;
    margin: 0 5px;
    font-size: 20px !important;
    transition: .3s;
}

.top-donors-section .owl-nav button:hover {
    background: #d63384 !important;
}

/* =====================
   DONATION SECTION
======================== */
.donation-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);
}

.donation-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(10px);
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 280px;
    height: 280px;
    bottom: -100px;
    right: -100px;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.donation-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.donation-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
}

.donation-content h2 {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 28px;

}

.donation-content h2 span {
    color: #FFD54F;
}

.donation-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 40px;
}

.donation-features {
    margin-bottom: 45px;
}

.donation-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: 0.4s ease;
}

.donation-feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.12);
}

.donation-icon {
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFD54F;
    font-size: 30px;
}

.donation-feature h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.7;
}

.donation-feature p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.donation-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.donate-btn {
    background: #ffffff;
    color: #0B2C8A;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}

.donate-btn:hover {
    background: #FFD54F;
    color: #0B2C8A;
    transform: translateY(-4px);
}

.csr-btn {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;

}

.csr-btn:hover {
    background: #ffffff;
    color: #0B2C8A;
    transform: translateY(-4px);
}

.donation-card {
    position: relative;
    z-index: 2;
    padding: 45px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.donation-card-top {
    text-align: center;
    margin-bottom: 40px;
}

.donation-card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFD54F;
    font-size: 42px;
    animation: pulseIcon 3s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.donation-card h4 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.donation-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.amount-box {
    text-align: center;
    padding: 24px 15px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: 0.4s ease;
    cursor: pointer;
}

.amount-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.14);
}

.amount-box.active {
    background: #ffffff;
}

.amount-box h5 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.amount-box.active h5 {
    color: #0B2C8A;
}

.amount-box span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.amount-box.active span {
    color: #64748B;
}

.donation-main-btn {
    width: 100%;
    padding: 18px;
    border-radius: 60px;
    background: #FFD54F;
    color: #0B2C8A;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
}

.donation-main-btn:hover {
    background: #ffffff;
    color: #0B2C8A;
    transform: translateY(-4px);
}

/* ===============
   CSR SECTION
================== */
.csr-section {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
}

.csr-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.csr-section .shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(11, 44, 138, 0.08);
    top: -100px;
    right: -100px;
}

.csr-section .shape-2 {
    width: 280px;
    height: 280px;
    background: rgba(15, 157, 88, 0.08);
    bottom: -100px;
    left: -100px;
}

.csr-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.csr-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.csr-main-image img {
    width: 100%;
    display: block;
    transition: 0.6s ease;
}

.csr-main-image:hover img {
    transform: scale(1.08);
}

.csr-floating-card {

    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

}

.csr-floating-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    color: #ffffff;
    font-size: 34px;
}

.csr-floating-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
}

.csr-floating-card p {
    margin: 0;
    font-size: 14px;
    color: #64748B;
}

.csr-content {
    position: relative;
    z-index: 2;
}

.csr-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 60px;
    background: linear-gradient(135deg,
            rgba(11, 44, 138, 0.08),
            rgba(15, 157, 88, 0.08));

    color: #0F9D58;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;

}

.csr-content h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 28px;

}

.csr-content h2 span {
    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.csr-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748B;
    margin-bottom: 40px;
}

.csr-features {
    margin-bottom: 45px;
}

.csr-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 22px;
    border-radius: 28px;
    background: #ffffff;
    transition: 0.4s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.csr-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.csr-feature-icon {
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(11, 44, 138, 0.12),
            rgba(15, 157, 88, 0.12));

    color: #0F9D58;
    font-size: 30px;
}

.csr-feature-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.csr-feature-item p {
    margin: 0;
    font-size: 15px;
    color: #64748B;
    line-height: 1.8;
}

.csr-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.csr-primary-btn {
    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}

.csr-primary-btn:hover {
    transform: translateY(-5px);
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(11, 44, 138, 0.20);
}

.csr-secondary-btn {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    color: #0B2C8A;
    padding: 16px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}

.csr-secondary-btn:hover {
    background: #0B2C8A;
    color: #ffffff;
    transform: translateY(-5px);
}

/* =========================================================
   ACTIVITIES SECTION
========================================================= */

.activities-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
    overflow: hidden;
}

.activities-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.circle-1 {
    width: 350px;
    height: 350px;
    background: rgba(15, 157, 88, 0.10);
    top: -100px;
    left: -120px;
    animation: floatCircle 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(11, 44, 138, 0.08);
    bottom: -100px;
    right: -100px;
    animation: floatCircle 10s ease-in-out infinite;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 60px;
    background: linear-gradient(135deg,
            rgba(11, 44, 138, 0.08),
            rgba(15, 157, 88, 0.08));
    border: 1px solid rgba(15, 157, 88, 0.12);
    color: #0F9D58;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.4s ease;
}

.section-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 157, 88, 0.10);
}

.section-heading h2 {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.section-heading h2 span {
    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.9;
    color: #64748B;
    max-width: 850px;
    margin: auto;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
    width: 120px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg,
            #0B2C8A,
            #0F9D58);
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

.animate-card {
    animation: cardFade 1s ease forwards;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    transition: 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);
}

.activity-image {
    position: relative;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.6s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 44, 138, 0.72),
            rgba(15, 157, 88, 0.62));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s ease;

}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-overlay a {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0B2C8A;
    font-size: 28px;
    text-decoration: none;
    transform: scale(0.7);
    transition: 0.4s ease;
}

.activity-card:hover .activity-overlay a {
    transform: scale(1);
}

.activity-content {
    position: relative;
    padding: 35px;

}

/* Icon */

.activity-icon {

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background: linear-gradient(135deg,
            rgba(11, 44, 138, 0.10),
            rgba(15, 157, 88, 0.10));

    color: #0F9D58;

    font-size: 34px;

    margin-bottom: 25px;

    transition: 0.5s ease;

}

/* Hover Icon */

.activity-card:hover .activity-icon {

    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    color: #ffffff;

    transform: rotateY(180deg);

}

/* Title */

.activity-content h4 {

    font-size: 28px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 18px;

    transition: 0.4s ease;

}

/* Description */

.activity-content p {

    font-size: 15px;

    line-height: 1.9;

    color: #64748B;

    margin: 0;

    transition: 0.4s ease;

}

/* Hover Text */

.activity-card:hover h4 {

    color: #0B2C8A;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .activities-section {

        padding: 100px 0;

    }

    .section-heading h2 {

        font-size: 38px;

    }

}

@media(max-width:767px) {

    .section-heading h2 {

        font-size: 32px;

        line-height: 1.25;

    }

    .section-heading p {

        font-size: 16px;

    }

}

@media(max-width:576px) {

    .activities-section {

        padding: 20px 0;

    }

    .section-heading {

        margin-bottom: 50px;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .activity-content {

        padding: 28px;

    }

    .activity-content h4 {

        font-size: 24px;

    }

    .activity-image img {

        height: 240px;

    }

    .activity-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

    }

}

/* =========================================================
   SUCCESS STORIES SECTION
========================================================= */

.success-section {

    position: relative;

    padding: 50px 0 0;

    background: #f8fafc;

    overflow: hidden;

}

/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.success-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

}

/* Shape 1 */

.success-section .shape-1 {

    width: 320px;
    height: 320px;

    background: rgba(11, 44, 138, 0.08);

    top: -100px;
    left: -100px;

}

/* Shape 2 */

.success-section .shape-2 {

    width: 280px;
    height: 280px;

    background: rgba(15, 157, 88, 0.08);

    bottom: -100px;
    right: -100px;

}

/* =========================================================
   SUCCESS CARD
========================================================= */

.success-card {

    position: relative;

    background: #ffffff;

    border-radius: 35px;

    overflow: hidden;

    transition: 0.5s ease;

    height: 100%;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

}

/* Hover */

.success-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);

}

/* =========================================================
   IMAGE
========================================================= */

.success-image {

    position: relative;

    overflow: hidden;

}

/* Image */

.success-image img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: 0.6s ease;

}

/* Zoom */

.success-card:hover .success-image img {

    transform: scale(1.1);

}

/* Overlay */

.success-overlay {

    position: absolute;

    left: 20px;
    top: 20px;

}

/* Label */

.success-overlay span {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.90);

    color: #0B2C8A;

    font-size: 13px;

    font-weight: 700;

    backdrop-filter: blur(10px);

}

/* =========================================================
   CONTENT
========================================================= */

.success-content {

    padding: 35px;

}

/* Icon */

.success-icon {

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background: linear-gradient(135deg,
            rgba(11, 44, 138, 0.10),
            rgba(15, 157, 88, 0.10));

    color: #0F9D58;

    font-size: 34px;

    margin-bottom: 25px;

    transition: 0.5s ease;

}

/* Hover */

.success-card:hover .success-icon {

    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    color: #ffffff;

    transform: rotateY(180deg);

}

/* Title */

.success-content h4 {

    font-size: 28px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 18px;

}

/* Text */

.success-content p {

    font-size: 15px;

    line-height: 1.9;

    color: #64748B;

    margin-bottom: 30px;

}

/* =========================================================
   USER
========================================================= */

.success-user {

    display: flex;

    align-items: center;

    gap: 16px;

}

/* Logo */

.success-user img {

    width: 70px;
    height: 70px;

    border-radius: 20px;

    object-fit: contain;

    background: #ffffff;

    padding: 10px;

    border: 1px solid #E2E8F0;

}

/* Name */

.success-user h5 {

    font-size: 18px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 5px;

}

/* Role */

.success-user span {

    font-size: 14px;

    color: #64748B;

}

/* =========================================================
   OWL CAROUSEL
========================================================= */

.success-carousel {

    margin-top: 60px;

}

/* Equal Height */

.success-carousel .owl-stage {

    display: flex;

}

.success-carousel .owl-item {

    display: flex;

    height: auto;

}

.success-carousel .success-card {

    width: 100%;

}

/* =========================================================
   DOTS
========================================================= */

.success-carousel .owl-dots {

    text-align: center;

}

/* Dot */

.success-carousel .owl-dot {

    margin: 0 6px;

}

.success-carousel .owl-dot span {

    width: 14px !important;
    height: 14px !important;

    background: #CBD5E1 !important;

    border-radius: 50px;

    transition: 0.4s ease;

}

/* Active */

.success-carousel .owl-dot.active span {

    width: 40px !important;

    background: linear-gradient(90deg,
            #0B2C8A,
            #0F9D58) !important;

}

/* =========================================================
   NAVIGATION
========================================================= */

.success-carousel .owl-nav {

    margin-top: 45px;

    text-align: center;

}

/* Buttons */

.success-carousel .owl-nav button {

    width: 58px;
    height: 58px;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #0B2C8A !important;

    font-size: 24px !important;

    margin: 0 10px;

    transition: 0.4s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

}

/* Hover */

.success-carousel .owl-nav button:hover {

    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58) !important;

    color: #ffffff !important;

    transform: translateY(-5px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .success-section {

        padding: 40px 0;

    }

}

@media(max-width:576px) {

    .success-section {

        padding: 20px 0;

    }

    .success-content {

        padding: 28px;

    }

    .success-content h4 {

        font-size: 24px;

    }

    .success-image img {

        height: 220px;

    }

}





.volunteer-modal .modal-dialog {
    max-width: 900px;
}

.volunteer-modal .modal-content {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.volunteer-modal .modal-header {
    background: linear-gradient(135deg, #0f766e, #16a34a);
    color: #fff;
    padding: 35px 40px;
    border: none;
}

.modal-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
}

.volunteer-modal .modal-header h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.volunteer-modal .modal-header p {
    margin: 0;
    opacity: .9;
}

.volunteer-modal .modal-body {
    padding: 40px;
}

.volunteer-info {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.volunteer-info h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.info-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.volunteer-modal .form-control {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 15px 20px;
    box-shadow: none;
}

.volunteer-modal textarea.form-control {
    height: 140px;
    resize: none;
}

.volunteer-modal .form-control:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .15);
}

.submit-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #16a34a, #0f766e);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.modal-backdrop.show {
    opacity: .75;
}

/* ==========================
   VOLUNTEER CTA SECTION
========================== */

.volunteer-cta-section {
    padding: 20px 0;
}

.volunteer-cta {
    background:
        linear-gradient(rgba(21, 155, 6, 0.88),
            rgba(17, 163, 9, 0.88)),
        url('assets/images/volunteers-bg.jpg');

    background-size: cover;
    background-position: center;

    border-radius: 16px;
    padding: 40px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    overflow: hidden;
    position: relative;
}

.volunteer-cta::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -120px;
    left: -80px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    margin: 0;
    max-width: 600px;
}

.btn-volunteer {
    background: #fff;
    color: #008060;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.btn-volunteer:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    color: #008060;
}

/* Responsive */

@media(max-width:991px) {

    .volunteer-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

}

@media(max-width:576px) {

    .cta-content h2 {
        font-size: 28px;
    }

    .btn-volunteer {
        width: 100%;
    }

}

.activities-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.activities-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #0d6efd !important;
    color: #fff !important;
    margin: 0 8px;
    font-size: 22px !important;
}

.activities-carousel .owl-nav button:hover {
    background: #0b5ed7 !important;
}