/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

/* Background Carousel */

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-carousel .carousel-item,
.hero-bg-carousel .carousel-item img {
    height: 100vh;
}

.hero-bg-carousel .carousel-item img {
    width: 100%;
    object-fit: cover;
}

/* Dark + Blue Gradient Overlay */

.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%);
}

/* Content Above Carousel */

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}


/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    animation: floatShape 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 80px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ========================= HERO CONTENT ========================= */
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Small Tag */
.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);
}

/* Heading */
.hero-content h1 {
    font-size: 46px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #FFD54F;
    position: relative;
}

/* Description */
.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

/* ========================= HERO BUTTONS ========================= */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0F9D58, #16c172);
    color: #ffffff;
    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: #ffffff;
}

/* Secondary */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    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: #ffffff;
    color: #0B2C8A;
    transform: translateY(-4px);
}

/* Mobile */

@media(max-width:991px) {

    .hero-section {
        text-align: center;
        margin-top: 80px;
    }

    .hero-bg-carousel .carousel-item,
    .hero-bg-carousel .carousel-item img {
        height: 100vh;
    }

}

@media(max-width:576px) {

    .hero-section {
        min-height: 70vh;
    }

    .hero-bg-carousel .carousel-item,
    .hero-bg-carousel .carousel-item img {
        height: 90vh;
    }

}

/* Vertical Carousel Arrows */

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 5;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-arrow {

    border: none;



    backdrop-filter: blur(10px);



    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: #fff;
    color: #0B2C8A;
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .hero-carousel-controls {
        right: 15px;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}

.current-project-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff5f8, #f7fbff);
    position: relative;
    overflow: hidden;
}

/* Floating circles */
.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 Effect */
.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;
    }
}

/* =========================================================
   DONATION SECTION
========================================================= */

.donation-section {

    position: relative;

    padding: 50px 0;

    overflow: hidden;

    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

}

/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.donation-shape {

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    filter: blur(10px);

}

/* Shape 1 */

.shape-1 {

    width: 350px;
    height: 350px;

    top: -100px;
    left: -100px;

    animation: floatShape 8s ease-in-out infinite;

}

/* Shape 2 */

.shape-2 {

    width: 280px;
    height: 280px;

    bottom: -100px;
    right: -100px;

    animation: floatShape 10s ease-in-out infinite;

}

/* Animation */

@keyframes floatShape {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================================
   CONTENT
========================================================= */

.donation-content {

    position: relative;

    z-index: 2;

    color: #ffffff;

}

/* Tag */

.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;

}

/* Heading */

.donation-content h2 {

    font-size: 44px;

    line-height: 1.3;

    font-weight: 800;

    margin-bottom: 28px;

}

/* Highlight */

.donation-content h2 span {

    color: #FFD54F;

}

/* Description */

.donation-content p {

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255, 255, 255, 0.88);

    margin-bottom: 40px;

}

/* =========================================================
   FEATURES
========================================================= */

.donation-features {

    margin-bottom: 45px;

}

/* Feature Item */

.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;

}

/* Hover */

.donation-feature:hover {

    transform: translateX(10px);

    background: rgba(255, 255, 255, 0.12);

}

/* Icon */

.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;

}

/* Feature Title */

.donation-feature h5 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 10px;

}

/* Feature Text */

.donation-feature p {

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

}

/* =========================================================
   BUTTONS
========================================================= */

.donation-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

/* Donate Button */

.donate-btn {

    background: #ffffff;

    color: #0B2C8A;

    padding: 16px 34px;

    border-radius: 60px;

    font-size: 15px;

    font-weight: 700;

    transition: 0.4s ease;

}

/* Hover */

.donate-btn:hover {

    background: #FFD54F;

    color: #0B2C8A;

    transform: translateY(-4px);

}

/* CSR Button */

.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;

}

/* Hover */

.csr-btn:hover {

    background: #ffffff;

    color: #0B2C8A;

    transform: translateY(-4px);

}

/* =========================================================
   DONATION CARD
========================================================= */

.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);

}

/* Card Top */

.donation-card-top {

    text-align: center;

    margin-bottom: 40px;

}

/* Icon */

.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;

}

/* Pulse Animation */

@keyframes pulseIcon {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

/* Title */

.donation-card h4 {

    font-size: 32px;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 18px;

}

/* Text */

.donation-card p {

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.85);

}

/* =========================================================
   AMOUNT BOXES
========================================================= */

.donation-amounts {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 35px;

}

/* Amount Box */

.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;

}

/* Hover */

.amount-box:hover {

    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.14);

}

/* Active */

.amount-box.active {

    background: #ffffff;

}

/* Amount */

.amount-box h5 {

    font-size: 28px;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 10px;

}

/* Active Text */

.amount-box.active h5 {

    color: #0B2C8A;

}

/* Label */

.amount-box span {

    font-size: 14px;

    color: rgba(255, 255, 255, 0.85);

}

/* Active Label */

.amount-box.active span {

    color: #64748B;

}

/* =========================================================
   MAIN DONATE BUTTON
========================================================= */

.donation-main-btn {

    width: 100%;

    padding: 18px;

    border-radius: 60px;

    background: #FFD54F;

    color: #0B2C8A;

    font-size: 16px;

    font-weight: 700;

    transition: 0.4s ease;

}

/* Hover */

.donation-main-btn:hover {

    background: #ffffff;

    color: #0B2C8A;

    transform: translateY(-4px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .donation-section {

        padding: 100px 0;

    }

    .donation-content {

        margin-bottom: 60px;

    }

    .donation-content h2 {

        font-size: 38px;

    }

}

@media(max-width:767px) {

    .donation-content h2 {

        font-size: 32px;

    }

    .donation-content p {

        font-size: 16px;

    }

    .donation-amounts {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .donation-card {

        padding: 30px 25px;

    }

    .donation-content h2 {

        font-size: 28px;

    }

    .donation-buttons {

        flex-direction: column;

    }

    .donate-btn,
    .csr-btn {

        width: 100%;

        text-align: center;

    }

}

/* =========================================================
   CSR SECTION
========================================================= */

.csr-section {

    position: relative;

    padding: 50px 0;

    background: #ffffff;

    overflow: hidden;

}

/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.csr-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

}

/* Shape 1 */

.csr-section .shape-1 {

    width: 320px;
    height: 320px;

    background: rgba(11, 44, 138, 0.08);

    top: -100px;
    right: -100px;

}

/* Shape 2 */

.csr-section .shape-2 {

    width: 280px;
    height: 280px;

    background: rgba(15, 157, 88, 0.08);

    bottom: -100px;
    left: -100px;

}

/* =========================================================
   IMAGE WRAPPER
========================================================= */

.csr-image-wrapper {

    position: relative;

    padding-right: 40px;

}

/* Main Image */

.csr-main-image {

    position: relative;

    overflow: hidden;

    border-radius: 35px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);

}

/* Image */

.csr-main-image img {

    width: 100%;

    display: block;

    transition: 0.6s ease;

}

/* Hover */

.csr-main-image:hover img {

    transform: scale(1.08);

}

/* =========================================================
   FLOATING CARD
========================================================= */

.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);

    animation: floatCard 4s ease-in-out infinite;

}

/* Animation */

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* Icon */

.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;

}

/* Text */

.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;

}

/* =========================================================
   CONTENT
========================================================= */

.csr-content {

    position: relative;

    z-index: 2;

}

/* Tag */

.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;

}

/* Heading */

.csr-content h2 {

    font-size: 44px;

    line-height: 1.15;

    font-weight: 800;

    color: #0F172A;

    margin-bottom: 28px;

}

/* Highlight */

.csr-content h2 span {

    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

/* Description */

.csr-content p {

    font-size: 17px;

    line-height: 1.9;

    color: #64748B;

    margin-bottom: 40px;

}

/* =========================================================
   FEATURES
========================================================= */

.csr-features {

    margin-bottom: 45px;

}

/* Feature */

.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);

}

/* Hover */

.csr-feature-item:hover {

    transform: translateX(10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

}

/* Icon */

.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;

}

/* Title */

.csr-feature-item h5 {

    font-size: 22px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 10px;

}

/* Text */

.csr-feature-item p {

    margin: 0;

    font-size: 15px;

    color: #64748B;

    line-height: 1.8;

}

/* =========================================================
   BUTTONS
========================================================= */

.csr-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

/* Primary */

.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;

}

/* Hover */

.csr-primary-btn:hover {

    transform: translateY(-5px);

    color: #ffffff;

    box-shadow: 0 20px 45px rgba(11, 44, 138, 0.20);

}

/* Secondary */

.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;

}

/* Hover */

.csr-secondary-btn:hover {

    background: #0B2C8A;

    color: #ffffff;

    transform: translateY(-5px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .csr-section {

        padding: 100px 0;

    }

    .csr-image-wrapper {

        padding-right: 0;

        margin-bottom: 70px;

    }

    .csr-content {

        text-align: center;

    }

    .csr-content h2 {

        font-size: 38px;

    }

    .csr-feature-item {

        text-align: left;

    }

}

@media(max-width:767px) {

    .csr-content h2 {

        font-size: 32px;

    }

    .csr-content p {

        font-size: 16px;

    }

}

@media(max-width:576px) {

    .csr-section {

        padding: 80px 0;

    }

    .csr-content h2 {

        font-size: 28px;

    }

    .csr-buttons {

        flex-direction: column;

    }

    .csr-primary-btn,
    .csr-secondary-btn {

        width: 100%;

        text-align: center;

    }

    .csr-floating-card {

        position: relative;

        margin-top: 20px;

        bottom: auto;

    }

}

/* =========================================================
   ACTIVITIES SECTION
========================================================= */

.activities-section {

    position: relative;

    padding: 50px 0;

    background: linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);

    overflow: hidden;

}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.activities-bg-circle {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    z-index: 0;

}

/* Circle 1 */

.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 */

.circle-2 {

    width: 300px;
    height: 300px;

    background: rgba(11, 44, 138, 0.08);

    bottom: -100px;
    right: -100px;

    animation: floatCircle 10s ease-in-out infinite;

}

/* Floating Animation */

@keyframes floatCircle {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 70px;

}

/* Small Tag */

.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: 28px;

    transition: 0.4s ease;

}

/* Tag Hover */

.section-tag:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(15, 157, 88, 0.10);

}

/* Main Heading */

.section-heading h2 {

    font-size: 44px;

    line-height: 1.3;

    font-weight: 800;

    color: #0F172A;

    margin-bottom: 28px;

    letter-spacing: -1px;

}

/* Highlight */

.section-heading h2 span {

    background: linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    position: relative;

}

/* Description */

.section-heading p {

    font-size: 18px;

    line-height: 1.9;

    color: #64748B;

    max-width: 850px;

    margin: auto;

}

/* Bottom Line */

.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);

}

/* =========================================================
   ANIMATIONS
========================================================= */

.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;

}

/* Fade Up */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* Card Fade */

@keyframes cardFade {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* =========================================================
   ACTIVITY CARD
========================================================= */

.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;

}

/* Top Gradient Border */

.activity-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg,
            #0B2C8A,
            #0F9D58);

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.5s ease;

    z-index: 3;

}

/* Hover Border */

.activity-card:hover::before {

    transform: scaleX(1);

}

/* Hover Effect */

.activity-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);

}

/* =========================================================
   IMAGE
========================================================= */

.activity-image {

    position: relative;

    overflow: hidden;

}

/* Image */

.activity-image img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: 0.6s ease;

}

/* Zoom Effect */

.activity-card:hover .activity-image img {

    transform: scale(1.1);

}

/* =========================================================
   OVERLAY
========================================================= */

.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;

}

/* Show Overlay */

.activity-card:hover .activity-overlay {

    opacity: 1;

}

/* Plus Button */

.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;

}

/* Hover */

.activity-card:hover .activity-overlay a {

    transform: scale(1);

}

/* =========================================================
   CONTENT
========================================================= */

.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: 80px 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 {

    margin-top: 45px !important;

    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: 100px 0;

    }

}

@media(max-width:576px) {

    .success-section {

        padding: 80px 0;

    }

    .success-content {

        padding: 28px;

    }

    .success-content h4 {

        font-size: 24px;

    }

    .success-image img {

        height: 220px;

    }

}

.video-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.sections-heading {
    margin-bottom: 30px;
}

.sections-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    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;
}

.video-content {
    padding: 25px;
}

.video-content h4 {
    font-size: 28px;
    margin-bottom: 10px;
}

.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: 36px;
    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;
}

@media(max-width:991px) {

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card iframe {
        height: 300px;
    }

    .section-heading h2 {
        font-size: 28px;
    }
}

/* ==========================================
   TOP DONORS SECTION
========================================== */

/* ==========================
   TOP DONORS SECTION
========================== */

.top-donors-section {
    padding: 70px 0;
    background: #f5f7fb;
}

/* ==========================
   HEADER
========================== */

.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: 15px;
    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);
}

/* ==========================
   DONOR CARD
========================== */

.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);
}

/* ==========================
   BADGE
========================== */

.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;
}

/* ==========================
   PROFILE IMAGE
========================== */

.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);
}

/* ==========================
   NAME
========================== */

.top-donors-section .donor-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* ==========================
   LOCATION
========================== */

.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;
}

/* ==========================
   DESCRIPTION
========================== */

.top-donors-section .donor-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    min-height: 70px;
}

/* ==========================
   IMPACT BOX
========================== */

.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;
}

/* ==========================
   CONSENT NOTE
========================== */

.top-donors-section .consent-note {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.top-donors-section .consent-note i {
    color: #d63384;
    margin-right: 5px;
}

/* ==========================
   OWL NAV
========================== */

.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;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px) {

    .top-donors-section .section-header h2 {
        font-size: 28px;
    }

    .top-donors-section .view-btn {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }

    .top-donors-section .donor-card {
        min-height: auto;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px) {

    .top-donors-section {
        padding: 50px 0;
    }

    .top-donors-section .section-header h2 {
        font-size: 24px;
    }

    .top-donors-section .section-header p {
        font-size: 14px;
    }

    .top-donors-section .donor-card {
        padding: 35px 15px 15px;
    }

    .top-donors-section .badge {
        width: 55px;
        height: 55px;
        left: 10px;
    }

    .top-donors-section .donor-card>img {
        width: 80px;
        height: 80px;
    }

    .top-donors-section .donor-card h4 {
        font-size: 16px;
    }

    .top-donors-section .location {
        font-size: 12px;
    }

    .top-donors-section .donor-card p {
        font-size: 13px;
        min-height: auto;
    }

    .top-donors-section .impact {
        font-size: 13px;
        padding: 10px;
    }
}

.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: 40px 0;
}

.volunteer-cta {
    background:
        linear-gradient(rgba(0, 120, 90, .88),
            rgba(0, 120, 90, .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%;
    }

}