@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

    body {
        font-size: 14px;
        font-family: "Inter", sans-serif;
    }

    /* Navbar */
    .navbar {
        --bs-navbar-padding-y: 0;
    }
    .navbar-logo {
        height: 90px;        /* FIXED LOGO HEIGHT */
        width: 150px !important;         /* Maintain aspect ratio */
        object-fit: contain;
    }
    .navbar-nav .nav-link {
        font-weight: 400;
        transition: font-weight 0.2s ease, color 0.2s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        font-weight: 600;
        color: #2e7d32; /* optional: green highlight */
    }

    .btn-donate {
        background-color: #2e7d32;
        color: #fff;
        padding: 10px 22px;
        border-radius: 10px;
        font-weight: 500;
    }

    .btn-donate:hover {
        background-color: #256628;
        color: #fff;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 100vh;
        background: url('/images/Cheap-Affordable-Volunteer-Programs-Header.jpg')
                    center center / cover no-repeat;
        display: flex;
        align-items: center;
    }

    /* LEFT → RIGHT GREEN GRADIENT */
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(46, 125, 50, 0.98) 0%,
            rgba(46, 125, 50, 0.9) 40%,
            rgba(46, 125, 50, 0.65) 70%,
            rgba(46, 125, 50, 0.3) 100%
        );
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: #ffffff;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-title span {
        color: #b6e6c3;
    }

    /* Responsive text */
    @media (max-width: 768px) {
        .hero-section {
            min-height: 75vh;
        }
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* LEFT BUTTON */
    .btn-volunteer {
        background: #ffffff;
        color: #2e7d32;
        padding: 14px 26px;
        border-radius: 14px;
        font-weight: 600;
        border: none;
    }

    .btn-volunteer:hover {
        background: #f1f8f3;
        color: #256628;
    }

    /* RIGHT BUTTON */
    .btn-programs {
        background: transparent;
        color: #ffffff;
        padding: 14px 26px;
        border-radius: 14px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.7);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-programs:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    /* PLAY ICON */
    .play-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    .hero-stat-card {
        position: relative;              /* IMPORTANT */
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(8px);
        border-radius: 14px;
        padding: 22px;
        color: #fff;

        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease;

            will-change: transform;          /* GPU hint */
    }

    /* HOVER → CARD MOVES */
    .hero-stat-card:hover {
        transform: translate3d(0, -12px, 0);
        box-shadow: 0 22px 45px rgba(0,0,0,0.25);
    }

    .hero-stat-card h3 {
        font-size: 28px;
        font-weight: 700;
    }

    .hero-stat-card p {
        margin: 0;
        opacity: 0.9;
    }


    .hero-note {
        font-size: 14px;
        opacity: 0.9;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* MOBILE */
    @media (hover: none) {
        .hero-stat-card:hover {
            transform: none;
            box-shadow: none;
        }
    }

    .focus-section {
        padding: 80px 15px;
        background-color: #ffffff;
    }

    .focus-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        border-radius: 30px;
        background: #eaf6ee;
        color: #2e7d32;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .focus-title {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 700;
        color: #222;
    }

    .focus-title span {
        color: #2e7d32;
    }

    .focus-desc {
        max-width: 720px;
        margin: 0 auto;
        font-size: 16px;
        color: #666;
    }

    .pillars-section {
        padding-bottom: 70px;
        background: #ffffff;
    }

    /* CARD */
    .pillar-card {
        background: #f9fdfb;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        transition: all 0.35s ease;
        height: 100%;
    }

    /* HOVER EFFECT */
    .pillar-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

    /* IMAGE */
    .pillar-img {
        position: relative;
    }

    .pillar-img img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .pillar-icon {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        background: #4caf50;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pillar-icon i {
        color: #ffffff;   /* PURE WHITE */
        font-size: 20px;
    }

    /* BODY */
    .pillar-body {
        padding: 25px;
    }

    .pillar-body h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #222;
    }

    .pillar-body p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    /* LINK */
    .pillar-body a {
        font-weight: 600;
        color: #2e7d32;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .pillar-body a:hover {
        text-decoration: underline;
    }

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

    .impact-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(90deg, #2e7d32, #4caf50);
    }

    /* BACKGROUND ICONS */
    .impact-bg-icons i {
        position: absolute;
        color: rgba(255, 255, 255, 0.06);
        z-index: 1;
    }

    /* Individual placements (match reference) */
    .impact-bg-icons i:nth-child(1) {
        font-size: 50px;
        top: 20px;
        left: 59px;
    }

    .impact-bg-icons i:nth-child(2) {
        font-size: 60px;
        top: 79%;
        right: 4%;
    }

    /* Keep content above background */
    .impact-section .container {
        position: relative;
        z-index: 2;
    }

    /* .impact-section {
        padding: 100px 0;
        background: linear-gradient(
            120deg,
            #2e7d32,
            #43a047,
            #66bb6a
        );
        overflow: hidden;
    } */

    .join-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        padding: 14px 32px;
        border-radius: 999px;

        background: linear-gradient(135deg, #5fad62, #4fa64f);

        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;

        text-decoration: none;
        border: none;

        transition: all 0.3s ease;
    }

    .join-btn i {
        font-size: 18px;
        color: #ffffff;
    }

    .join-btn:hover {
        transform: translateY(-2px);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.35),
            0 16px 35px rgba(0,0,0,0.35);
    }


    /* TEXT */
    .impact-title {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
    }

    .impact-text {
        font-size: 16px;
        max-width: 520px;
        opacity: 0.95;
    }

    /* Section background */
    .impact-section {
        background: linear-gradient(135deg, #3e9e43, #4caf50);
        padding: 60px 20px;
    }

    /* Cards wrapper */
    .impact-stats {
        display: flex;
        gap: 24px;
        max-width: 900px;
        margin: auto;
    }

    /* ===============================
    INDIVIDUAL CARD
    ================================= */

    .impact-card {
        flex: 1;
        padding: 20px 32px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: #fff;

        /* TRANSITION */
        transition:
            transform 0.35s ease,
            background-color 0.35s ease,
            box-shadow 0.35s ease;
    }

    /* Hover effect */
    .impact-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.22);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    }

    /* ===============================
    ICON + NUMBER ROW
    ================================= */

    .icon-row {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    /* Icon */
    .icon-row i {
        font-size: 28px;
        opacity: 0.35;

        transition:
            transform 0.35s ease,
            opacity 0.35s ease;
    }

    /* Number */
    .icon-row h3 {
        font-size: 32px;
        font-weight: 700;
        margin: 0;
        opacity: 0.55;

        transition: opacity 0.35s ease;
    }

    /* Hover animation for icon + number */
    .impact-card:hover .icon-row i {
        transform: scale(1.15);
        opacity: 0.9;
    }

    .impact-card:hover .icon-row h3 {
        opacity: 1;
    }

    /* ===============================
    DIVIDER
    ================================= */

    .divider {
        display: block;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.25);
        margin: 14px 0;

        transition: background-color 0.35s ease;
    }

    .impact-card:hover .divider {
        background: rgba(255, 255, 255, 0.5);
    }

    /* ===============================
    LABEL TEXT
    ================================= */

    .impact-card p {
        margin: 0;
        font-size: 15px;
        opacity: 0.9;
    }

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

    @media (max-width: 768px) {
        .impact-stats {
            flex-direction: column;
        }
    }

    /* ===============================
    ACCESSIBILITY
    ================================= */

    @media (prefers-reduced-motion: reduce) {
        .impact-card,
        .icon-row i,
        .icon-row h3,
        .divider {
            transition: none;
        }
    }


    /* BUTTONS */
    .cta-buttons {
        display: flex;
        gap: 16px;
        margin-top: 30px;
    }

    /* Common button styles */
    .cta-buttons a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Primary button */
    .btn-primary {
        background: #ffffff;
        color: #2e7d32;
    }

    .btn-primary i {
        font-size: 14px;
    }

    .btn-primary:hover {
        background: #e8f5e9;
        transform: translateY(-2px);
    }

    /* Outline button */
    .btn-outline {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.6);
        color: #ffffff;
    }

    .btn-outline i {
        font-size: 14px;
        opacity: 0.9;
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 576px) {
        .cta-buttons {
            flex-direction: column;
        }

        .cta-buttons a {
            justify-content: center;
        }
    }

    /* IMAGE CONTAINER (IMPORTANT) */
    .impact-image {
        position: relative;               /* ✅ REQUIRED */
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }

    .impact-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* FLOATING CARDS */
    .impact-float-card {
        position: absolute;
        background: #ffffff;
        padding: 16px 22px;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        width: 220px;
        z-index: 5;
    }

    .impact-float-card h3 {
        margin: 0;
        font-size: 26px;
        font-weight: 700;
        color: #2e7d32;
    }

    .impact-float-card p {
        margin: 4px 0 0;
        font-size: 14px;
        color: #555;
    }

    /* POSITIONS */
    .impact-float-card.bottom {
        bottom: -35px;
        left: 35px;
    }

    .impact-float-card.top {
        top: -35px;
        right: 35px;
    }

    /* HOVER EFFECT */
    .impact-float-card:hover {
        transform: translateY(-6px);
        transition: 0.3s ease;
    }

    /* MOBILE FIX */
    @media (max-width: 768px) {
        .impact-float-card {
            width: 180px;
        }
    }

    .who-we-are {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .badge-custom {
        background-color: #e8f5e9;
        color: #2e7d32;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 16px;
    }

    .who-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .who-text {
        color: #6c757d;
        margin-bottom: 30px;
    }

    .feature-item {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .feature-icon1 {
        width: 45px;
        height: 45px;
        background-color: #67ba6b;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .feature-icon2 {
        width: 45px;
        height: 45px;
        background-color: #2b7d32;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .feature-icon3 {
        width: 45px;
        height: 45px;
        background-color: #398e3c;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .feature-item h6 {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .custom-mosaic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 18px;
    }

    .custom-mosaic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
        display: block;
    }

    /* Different heights using row span */
    .custom-mosaic img:nth-child(1) {
        height: 230px;
    }

    .custom-mosaic img:nth-child(2) {
        margin-top: 20px;
    }
    .custom-mosaic img:nth-child(3) {
        margin-top: 45px;
        height: 190px;
    }

    .custom-mosaic img:nth-child(4) {
        margin-top: 14px;
        height: 250px;
    }

    .btn-custom {
        background-color: #2e7d32;
        color: #fff;
        padding: 12px 26px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
    }

    .btn-custom:hover {
        background-color: #256428;
        color: #fff;
    }

    .support-section {
        padding: 80px 0;
    }

    /* ===============================
    SUPPORT CARDS
    ================================= */

    .support-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 42px 30px;
        text-align: center;
        height: 100%;

        border-top: 4px solid #7acb8b;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
    }

    .support-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
        border-top-color: #2e7d32;
    }

    /* ===============================
    ICON
    ================================= */

    .support-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        margin: 0 auto 25px;
        background-color: #7acb8b;

        transition: transform 0.35s ease;
    }

    .support-card:hover .support-icon {
        transform: scale(1.1);
    }

    /* ===============================
    CARD CONTENT
    ================================= */

    .support-card h5 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .support-card p {
        font-size: 0.95rem;
        color: #6c757d;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    /* ===============================
    CARD LINK
    ================================= */

    .support-card a {
        color: #2e7d32;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;

        transition:
            color 0.3s ease,
            transform 0.3s ease;
    }

    .support-card:hover a {
        color: #1b5e20;
        transform: translateX(4px);
    }


    @media (max-width: 768px) {
        .support-section {
            padding: 60px 0;
        }

        .support-card {
            padding: 36px 26px;
        }
    }

    /* ===============================
    ACCESSIBILITY
    ================================= */

    @media (prefers-reduced-motion: reduce) {
        .support-card,
        .support-icon,
        .support-card a {
            transition: none;
        }
    }

    /* ===============================
    CTA SECTION
    ================================= */

    .cta-section {
        padding: 80px 0;
        background-color: #f6faf8;
    }

    /* CTA Container */
    .cta-box {
        background: linear-gradient(90deg, #2e7d32, #66bb6a);
        border-radius: 20px;
        padding: 70px 20px;
        color: #ffffff;

        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    }

    /* Heading */
    .cta-box h2 {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

    /* Text */
    .cta-box p {
        max-width: 650px;
        margin: 0 auto 35px;
        font-size: 1rem;
        line-height: 1.7;
        opacity: 0.95;
    }

    /* Button */
    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        background-color: #ffffff;
        color: #2e7d32;
        padding: 14px 34px;
        border-radius: 10px;

        font-weight: 600;
        text-decoration: none;

        box-shadow: 0 10px 20px rgba(0,0,0,0.15);

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            background-color 0.3s ease;
    }

    /* Button Hover */
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 30px rgba(0,0,0,0.25);
        background-color: #f1f8f4;
        color: #1b5e20;
    }

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

    @media (max-width: 768px) {
        .cta-box {
            padding: 55px 20px;
        }

        .cta-box h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .cta-box h2 {
            font-size: 1.7rem;
        }

        .cta-box p {
            font-size: 0.95rem;
        }
    }

    /* ===============================
    ACCESSIBILITY
    ================================= */

    @media (prefers-reduced-motion: reduce) {
        .cta-btn {
            transition: none;
        }
    }


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

    .site-footer {
        background: linear-gradient(90deg, #1b5e20, #2e7d32);
        color: #e0f2e9;
        padding: 70px 0 30px;
    }

    /* Logo */
    .footer-brand img {
        width: 70px;
    }

    /* Text */
    .footer-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #cfe9d9;
    }

    /* Section Titles */
    .footer-title {
        font-weight: 600;
        margin-bottom: 18px;
        color: #ffffff;
    }

    /* Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #cfe9d9;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #ffffff;
    }

    /* Contact */
    .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-contact li {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .footer-contact i {
        color: #a5d6a7;
    }

    /* Social Icons */
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: rgba(255,255,255,0.1);
        color: #ffffff;
        border-radius: 50%;
        margin-right: 8px;

        transition:
            transform 0.3s ease,
            background-color 0.3s ease;
    }

    .footer-social a:hover {
        transform: translateY(-4px);
        background-color: rgba(255,255,255,0.25);
    }

    /* Divider */
    .footer-divider {
        border-color: rgba(255,255,255,0.15);
        margin: 35px 0 20px;
    }

    /* Bottom Bar */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: #cfe9d9;
    }

    .footer-bottom-links a {
        margin-left: 15px;
        font-size: 0.9rem;
        color: #cfe9d9;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
        color: #ffffff;
    }

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

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

        .footer-bottom-links a {
            margin-left: 10px;
            margin-right: 10px;
        }
    }

    /* ===============================
    ACCESSIBILITY
    ================================= */

    @media (prefers-reduced-motion: reduce) {
        .footer-social a,
        .footer-links a {
            transition: none;
        }
    }

