@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;
    }

    .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;
    }

    .stats {
        margin-top: 3rem;
    }

    /* 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;
        margin-top: 1.5rem;
    }

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

    /* Responsive text */
    @media (max-width: 768px) {
        .navbar-logo
        {
            height: 70px;
            width: 130px !important;
            object-fit: contain;
        }

        .hero-section {
            min-height: 75vh;
        }

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

        .hero-section h1 {
            font-size: 26px;
        }

        .hero-section p {
            font-size: 12px !important;
        }

        .btn-volunteer {
            font-size: 12px !important;
        }

        .btn-programs {
            font-size: 12px !important;
        }

        .stats {
            margin-top: 1rem;
        }

        .hero-stat-card {
            position: relative;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border-radius: 14px;
            padding: 15px;
            color: #fff;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            will-change: transform;
        }

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

        .hero-note {
            font-size: 10px;
            opacity: 0.9;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }
    }

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


    /* Focus section */
    .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;
    }

    @media (max-width: 768px) {

        .focus-section {
            padding: 40px 15px;
        }

        .focus-badge {
            font-size: 11px;
        }

        .focus-title {
            font-size: 26px;
        }

        .focus-section p {
            font-size: 12px;
        }

        .pillar-body h4 {
            font-size: 16px;
        }

        .pillar-body p {
            font-size: 12px;
        }
    }

    /* ================= 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;
    }

    /* ===============================
    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;
    }

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

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

        .impact-section {
            padding: 40px 20px;
        }

        .join-btn {
            font-size: 11px;
        }

        .impact-title {
            font-size: 20px;
        }

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

        .impact-card {
            padding: 10px 32px;
        }

        .icon-row h3 {
            font-size: 25px;
        }

        .impact-card p {
            font-size: 12px;
        }

        .cta-buttons a {
            font-size: 12px;
        }

        .impact-float-card {
            display: none;
        }
    }

    .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;
    }
    /* ===============================
        RESPONSIVE
    ================================= */

    @media (max-width: 768px) {

        .who-we-are {
            padding: 40px 0;
        }

        .badge-custom
        {
            margin-top: 10px;
            font-size: 12px;
        }

        .who-title {
            font-size: 26px;
        }

        .who-text {
            font-size: 12px;
        }

        .feature-item p {
            font-size: 12px;
        }
    }

    .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: 40px 0;
        }

        .support-section p {
            font-size: 12px;
        }

        .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;
        }
    }

    .tribute-section {
        padding: 60px 20px;
        background: #ffffff;
        font-family: "Inter", sans-serif;
        text-align: center;
    }

    .tribute-badge {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1px solid #9ad7b2;
        color: #2f8f5b;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .tribute-heading {
        font-size: 34px;
        font-weight: 700;
        color: #222;
        margin-bottom: 40px;
    }

    .tribute-heading span {
        color: #2f8f5b;
    }

    .tribute-card {
        /* max-width: 900px; */
        margin: 0 auto;
        background: #ffffff;
        border-radius: 20px;
        display: flex;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    /* LEFT SIDE */
    .tribute-left {
        width: 35%;
        background: linear-gradient(180deg, #e9f7ef, #f6fffa);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .tribute-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* RIGHT SIDE */
    .tribute-right {
        width: 65%;
        padding: 40px;
        text-align: left;
    }

    .tribute-right h3 {
        font-size: 26px;
        margin-bottom: 5px;
        color: #222;
    }

    .role {
        font-weight: 600;
        color: #2f8f5b;
        margin-bottom: 10px;
    }

    .years {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
    }

    .description {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 25px;
    }

    .quote {
        font-style: italic;
        color: #333;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

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

        .tribute-section {
            padding: 0 20px;
        }

        .tribute-heading {
            font-size: 26px;
        }

        .me-3
        {
            margin-bottom: 10px;
        }

        .btn-donate {
            background-color: #2e7d32;
            color: #fff;
            padding: 8px 22px;
            border-radius: 10px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        .tribute-card {
            flex-direction: column;
        }

        .tribute-left,
        .tribute-right {
            width: 100%;
            text-align: center;
        }

        .tribute-right {
            text-align: center;
        }

        .cta-section {
            padding: 40px 0;
        }
    }

    .gallery-section {
        padding: 80px 0;
        background: #f4f6f5;
    }

    .gallery-pill {
        display: inline-block;
        width: 60px;
        height: 10px;
        background: #2e7d32;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .gallery-title {
        font-size: 38px;
        font-weight: 800;
        color: #111;
    }

    .gallery-subtitle {
        max-width: 650px;
        margin: 10px auto 0;
        color: #666;
    }

    /* GRID */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
        gap: 26px;
    }

    /* CARD */
    .gallery-card {
        position: relative;
        height: 260px;
        border-radius: 18px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* OVERLAY */
    .gallery-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.1));
        z-index: 1;
    }

    .gallery-card .overlay {
        position: absolute;
        bottom: 18px;
        left: 18px;
        right: 18px;
        z-index: 2;
        color: #fff;
    }

    .gallery-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0,0,0,.25);
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

    .tag {
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 20px;
        color: #fff;
        font-weight: 600;
    }

    .tag.counselling { background: #e65100; }
    .tag.cleanliness { background: #2e7d32; }
    .tag.awareness { background: #0277bd; }

    /* =======================
    AWARENESS SECTION
    ======================= */
    .awareness-section {
        padding: 90px 0;
        background: #f6fdfb;
    }

    .awareness-image {
        position: relative;
        border-radius: 20px;
    }

    .awareness-image img {
        width: 100%;
        border-radius: 20px;
        display: block;
    }

    .image-bulb {
        position: absolute;
        top: -22px;
        right: -22px;
        width: 70px;
        height: 70px;
        background: #00a8ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(0,168,255,.45);
        z-index: 10;
    }

    .image-bulb i {
        color: #fff;
        font-size: 26px;
    }

    .awareness-stat {
        position: absolute;
        bottom: -28px;
        left: 20px;
        background: #fff;
        padding: 14px 20px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,.15);
    }

    .awareness-stat h3 {
        margin: 0;
        font-weight: 800;
        color: #00a8ff;
    }

    /* =======================
    CLEANLINESS SECTION
    ======================= */
    .cleanliness-section {
        padding: 90px 0;
    }

    .section-pill {
        width: 80px;
        height: 14px;
        background: #ff5722;
        border-radius: 30px;
        display: inline-block;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 40px;
        font-weight: 800;
    }

    .btn-clean {
        background: #4caf50;
        color: #fff;
        padding: 12px 22px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
    }

    .clean-image-box {
        position: relative;
    }

    .image-inner {
        border-radius: 18px;
        overflow: hidden;
    }

    .image-inner img {
        width: 100%;
    }

    .floating-icon {
        position: absolute;
        top: -22px;
        left: -22px;
        width: 70px;
        height: 70px;
        background: #4caf50;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 35px rgba(76,175,80,.4);
    }

    .floating-icon i {
        color: #fff;
        font-size: 26px;
    }

    .floating-stat {
        position: absolute;
        bottom: -20px;
        right: 20px;
        background: #fff;
        padding: 14px 20px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,.15);
    }

    /* =======================
    SUPPORT SECTION
    ======================= */
    .support-section {
        padding: 90px 0;
        background: #f2fbf7;
    }

    .support-section .container {
        display: flex;
        gap: 60px;
        align-items: center;
        flex-wrap: wrap;
    }

    .service-image-box {
        position: relative;
        flex: 1;
    }

    .service-image-inner {
        border-radius: 24px;
        overflow: hidden;
    }

    .service-image-inner img {
        width: 100%;
    }

    .service-icon {
        position: absolute;
        top: -28px;
        right: -20px;
        width: 72px;
        height: 72px;
        background: #ff5722;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 18px 35px rgba(0,0,0,.25);
    }

    .service-icon i {
        color: #fff;
        font-size: 28px;
    }

    .service-stat {
        position: absolute;
        bottom: -50px;
        left: 25px;
        background: #fff;
        padding: 6px 18px;
        border-radius: 14px;
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

    .content-col {
        flex: 1;
    }

    /* .highlight-box {
        background: #ff5722;
        color: #fff;
        padding: 18px 22px;
        border-radius: 10px;
        margin: 25px 0;
    } */

    .primary-btn {
        background: #ff5722;
        color: #fff;
        padding: 14px 26px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 992px) {
        .support-section .container {
            flex-direction: column;
        }

        .gallery-section {
            padding: 40px 0;
            background: #f4f6f5;
        }

        .gallery-title {
            font-size: 26px;
        }

        .gallery-title {
            font-size: 26px;
        }

        .gallery-grid  h4 {
            font-size: 12px;
            margin-top: 10px;
        }

        .awareness-section {
            padding: 40px 0;
        }

        .image-bulb {
            display: none;
        }

        .awareness-stat {
            display: none;
        }

        .awareness-section h2 {
            font-size: 23px;
        }

        .awareness-section p {
            font-size: 12px;
        }

        .cleanliness-section {
            padding: 0 0;
        }

        .cleanliness-section .section-title {
            font-size: 26px;
        }

        .cleanliness-section .p {
            font-size: 12px;
        }

        .floating-icon {
            display: none;
        }

        .floating-stat {
            display: none;
        }

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

        .service-icon {
            display: none;
        }

        .service-stat {
            display: none;
        }
    }

    .contact-section {
        padding: 90px 20px;
        background: radial-gradient(circle at left, #eaf7ec, #f7fcf8);
        font-family: 'Segoe UI', sans-serif;
    }

    .contact-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-pill {
        display: inline-block;
        width: 80px;
        height: 10px;
        background: #4caf50;
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .contact-info h2 {
        font-size: 38px;
        font-weight: 800;
    }

    .contact-info h2 span {
        color: #4caf50;
    }

    .contact-info p {
        color: #7a7a7a;
        margin: 15px 0 30px;
        line-height: 1.7;
    }

    .info-card {
        display: flex;
        gap: 15px;
        background: #fff;
        padding: 18px;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }

    .info-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .info-icon.green { background: #4caf50; }
    .info-icon.blue { background: #03a9f4; }
    .info-icon.orange { background: #ff6f00; }

    .info-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .info-card p {
        font-size: 14px;
        color: #777;
    }

    .follow-us {
        margin-top: 25px;
    }

    .follow-us h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .social-icons {
        display: flex;
        gap: 12px;
    }

    .social-box {
        width: 44px;
        height: 44px;
        background: #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9e9e9e;
        font-size: 16px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-box:hover {
        color: #4caf50;
        transform: translateY(-3px);
    }


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

    .contact-form h3 {
        font-size: 22px;
        font-weight: 700;
    }

    .form-subtitle {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
    }

    .contact-form label {
        font-size: 13px;
        font-weight: 600;
        margin-top: 15px;
        display: block;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-top: 6px;
        border-radius: 8px;
        border: 1px solid #cde6d0;
        outline: none;
    }

    .privacy-note {
        margin: 15px 0;
        font-size: 13px;
        color: #6aa84f;
        background: #eef8ee;
        padding: 10px;
        border-radius: 8px;
    }

    .contact-form button {
        width: 100%;
        padding: 14px;
        background: #4caf50;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(76,175,80,0.35);
    }

    .contact-form button:hover {
        background: #43a047;
    }

    /* RESPONSIVE */
    @media(max-width: 900px) {
        .contact-container {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .info-card {
            flex-direction: column;
            align-items: flex-start;
        }
        .info-icon {
            margin-bottom: 10px;
        }
        .contact-section {
            padding: 30px 20px;
            background: radial-gradient(circle at left, #eaf7ec, #f7fcf8);
            font-family: 'Segoe UI', sans-serif;
        }
        .contact-info h2 {
            font-size: 26px;
        }
    }

    /* =========================
    GLOBAL
    ========================= */
    .about-section,
    .values-section {
        font-family: 'Segoe UI', sans-serif;
    }

    .container,
    .values-container {
        max-width: 1200px;
        margin: auto;
    }

    /* =========================
    ABOUT SECTION
    ========================= */
    .about-section {
        padding: 90px 20px;
        background: radial-gradient(circle at right, #eaf7ec, #f5fbf6);
    }

    .about-header {
        text-align: center;
        max-width: 900px;
        margin: auto;
        margin-bottom: 60px;
    }

    .about-header .pill {
        display: inline-block;
        width: 90px;
        height: 12px;
        background: #4caf50;
        border-radius: 30px;
        margin-bottom: 15px;
    }

    .about-header h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .about-header h2 span {
        color: #4caf50;
    }

    .about-header p {
        color: #7a7a7a;
        line-height: 1.7;
        font-size: 16px;
    }

    /* Cards Grid */
    .about-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Card */
    .about-card {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        position: relative;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border: 2px solid #d8efd9;
        width: 100%;
        box-sizing: border-box;
    }

    .about-card::after {
        content: "";
        position: absolute;
        right: 25px;
        bottom: 25px;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(76, 175, 80, 0.08);
    }

    .about-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .about-card p {
        color: #7a7a7a;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    /* Icon */
    .icon {
        position: absolute;
        top: -22px;
        left: -22px;
        width: 55px;
        height: 55px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #fff;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .icon.green { background: #4caf50; }
    .icon.orange { background: #ff7a18; }

    /* =========================
    VALUES SECTION
    ========================= */
    .values-section {
        padding: 90px 20px;
        background: radial-gradient(circle at left, #eaf7ec, #f7fcf8);
        text-align: center;
    }

    .values-title {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 60px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #fff;
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .value-icon.green {
        background: linear-gradient(135deg, #4caf50, #2e7d32);
    }
    .value-icon.blue {
        background: linear-gradient(135deg, #29b6f6, #0288d1);
    }
    .value-icon.orange {
        background: linear-gradient(135deg, #ff9800, #f57c00);
    }
    .value-icon.gradient {
        background: linear-gradient(135deg, #ff2fcf, #7b2cff);
    }

    .value-card h4 {
        font-size: 18px;
        font-weight: 700;
        margin: 18px 0 8px;
    }

    .value-card p {
        font-size: 14px;
        color: #8a8a8a;
        line-height: 1.6;
    }

    .values-btn {
        display: inline-block;
        margin-top: 40px;
        padding: 14px 30px;
        background: #4caf50;
        color: #fff;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
    }

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

    /* Tablet */
    @media (max-width: 992px) {
        .about-header h2 { font-size: 32px; }
        .about-cards { grid-template-columns: 1fr; }
    }

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

        .about-section,
        .values-section {
            padding: 60px 16px;
        }

        .about-header h2 {
            font-size: 26px;
        }

        .about-header p {
            font-size: 14px;
        }

        .about-card {
            padding: 24px 20px;
        }

        /* Move icon inside */
        .about-card .icon {
            position: relative;
            top: 0;
            left: 0;
            margin-bottom: 14px;
            width: 42px;
            height: 42px;
            font-size: 20px;
        }

        .about-card::after {
            display: none;
        }

        .values-title {
            font-size: 24px;
        }
    }

    /* Small Phones */
    @media (max-width: 480px) {
        .about-card {
            padding: 20px 16px;
            border-radius: 16px;
        }

        .about-card h3 {
            font-size: 18px;
        }
    }

