    .hero-container {
        position: relative;
        height: 85vh;
        min-height: 600px;
        background-color: #0b2519;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-slider {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
    }

    .hero-slide {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }
    
    .hero-slide.active {
        opacity: 1; /* Fully visible, overlay handles darkening */
    }

    /* Dark Overlay for Readability */
    .hero-overlay-dark {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(11, 37, 25, 0.7); /* Soft dark green overlay */
        z-index: 2;
    }

    /* Play/Pause Button */
    .hero-controls {
        position: absolute;
        top: 120px;
        right: 5%;
        z-index: 10;
    }

    .btn-hero-play {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.4);
        color: white;
        padding: 8px 20px;
        border-radius: 4px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .btn-hero-play:hover {
        border-color: #f37021;
        color: #f37021;
    }

    /* Bottom Bar */
    .hero-bottom-bar {
        position: relative;
        z-index: 10;
        background-color: #0c1a14;
        padding: 40px 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .hero-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-bottom-title {
        color: white;
        font-size: 2.2rem;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
        margin: 0;
        letter-spacing: -1px;
    }

    .btn-hero-cta {
        background: transparent;
        border: 1px solid #f37021;
        color: white;
        padding: 12px 25px;
        border-radius: 4px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: border-color 0.3s ease;
        font-size: 1.1rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn-hero-cta:hover {
        border-color: transparent;
    }

    .btn-hero-cta::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 300%;
        background: conic-gradient(from 0deg, transparent 70%, #fff 80%, #f37021 100%);
        top: -100%;
        left: -25%;
        animation: spin 1.2s linear infinite;
        z-index: -2;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-hero-cta:hover::before {
        opacity: 1;
    }

    .btn-hero-cta::after {
        content: '';
        position: absolute;
        inset: 1px;
        background: #0c1a14;
        border-radius: 3px;
        z-index: -1;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Centered Intro Text */
    .hero-center-content {
        position: relative;
        z-index: 5;
        flex-grow: 1;
        display: flex;
        align-items: center;
        padding-top: 180px; /* Increased padding to clear navbar */
    }

    /* Typing cursor animation */
    .type-cursor {
        display: inline-block;
        width: 3px;
        height: 1em;
        background-color: #f37021;
        animation: blink 1s step-end infinite;
        vertical-align: text-bottom;
        margin-left: 5px;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }

    @media (max-width: 991px) {
        .hero-controls { right: 20px; top: 100px; }
    }

    @media (max-width: 768px) {
        .hero-bottom-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 25px;
        }
        .hero-bottom-title {
            font-size: 1.8rem;
        }
        .btn-hero-cta {
            width: 100%;
            justify-content: center;
        }
    }



    .why-transform-section {
        background: #fff;
        padding: 60px 5%;
    }
    .why-transform-inner {
        display: flex;
        min-height: 550px;
        max-width: 1300px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }
    .why-transform-text {
        background-color: #0c3220;
        color: white;
        padding: 60px 55px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .why-transform-text .accent-line {
        width: 50px;
        height: 3px;
        background: #f37021;
        margin-bottom: 30px;
    }
    .why-transform-text h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 2.6rem;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 25px;
    }
    .why-transform-text p {
        font-size: 1.05rem;
        line-height: 1.85;
        opacity: 0.85;
        margin-bottom: 20px;
    }
    .why-transform-text .btn-read-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
        padding: 12px 28px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        transition: border-color 0.3s ease;
        width: fit-content;
        margin-top: 10px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .why-transform-text .btn-read-more:hover {
        border-color: transparent;
    }
    .why-transform-text .btn-read-more::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 300%;
        background: conic-gradient(from 0deg, transparent 70%, #fff 80%, #f37021 100%);
        top: -100%;
        left: -25%;
        animation: spinBtn 1.2s linear infinite;
        z-index: -2;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .why-transform-text .btn-read-more:hover::before {
        opacity: 1;
    }
    .why-transform-text .btn-read-more::after {
        content: '';
        position: absolute;
        inset: 1px;
        background: #0c3220;
        border-radius: 3px;
        z-index: -1;
    }
    @keyframes spinBtn {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    .why-transform-image {
        flex: 1;
        background-size: cover;
        background-position: center;
        min-height: 400px;
    }

    @media (max-width: 991px) {
        .why-transform-inner {
            flex-direction: column-reverse;
            margin: 0;
            border-radius: 0;
        }
        .why-transform-image {
            min-height: 350px;
        }
        .why-transform-text {
            padding: 45px 30px;
        }
        .why-transform-text h2 {
            font-size: 2rem;
        }
    }



                        .engagements-grid {
                            display: grid;
                            grid-template-columns: repeat(2, 1fr);
                            gap: 0;
                        }
                        .engagements-grid > div {
                            min-height: 250px;
                        }
                        @media (max-width: 991px) {
                            .engagements-grid {
                                margin-left: 0 !important;
                                margin-right: auto;
                            }
                        }
                        @media (max-width: 575px) {
                            .engagements-grid > div {
                                min-height: 200px;
                            }
                        }
                    


                        .impact-stats-grid {
                            grid-template-columns: repeat(2, 1fr);
                        }
                        .impact-stats-grid > div {
                            min-height: 250px;
                        }
                        .stat-num {
                            font-size: 3rem;
                            font-weight: 700;
                            letter-spacing: -1px;
                            line-height: 1;
                            margin-bottom: 0.5rem;
                        }
                        .stat-text {
                            font-size: 1.1rem;
                            font-weight: 500;
                            line-height: 1.3;
                        }
                        @media (max-width: 575px) {
                            .impact-stats-grid > div {
                                min-height: 200px;
                            }
                            .stat-num { font-size: 2.2rem; }
                            .stat-text { font-size: 0.95rem; }
                        }
                    


        .latest-news-card:hover {
            transform: translateY(-5px);
        }
        .latest-news-card:hover img {
            transform: scale(1.05) !important;
        }
        .latest-news-card:hover .news-title {
            color: #fd7e14 !important; /* Orange accent */
            text-decoration: underline;
        }
        #latestTabs .nav-link.active {
            border-bottom: 3px solid #fd7e14 !important;
            font-weight: 700 !important;
        }
        #latestTabs .nav-link {
            border-bottom: 3px solid transparent !important;
        }


    .newsletter-section {
        background: #ffffff;
        padding: 80px 5%;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .newsletter-section::before {
        content: '';
        position: absolute;
        top: -60%;
        left: -10%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(25, 135, 84, 0.05);
    }
    .newsletter-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(243, 112, 33, 0.05);
        z-index: 0;
    }
    .newsletter-inner {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .newsletter-inner .nl-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(25, 135, 84, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        box-shadow: 0 4px 15px rgba(25, 135, 84, 0.1);
    }
    .newsletter-inner .nl-icon i {
        font-size: 1.8rem;
        color: #198754;
    }
    .newsletter-inner h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 2.4rem;
        color: #0c3220;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }
    .newsletter-inner > p {
        color: #666666;
        font-size: 1.1rem;
        margin-bottom: 40px;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    .newsletter-form {
        display: flex;
        gap: 0;
        max-width: 550px;
        margin: 0 auto;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,0,0,0.05);
        background: #ffffff;
    }
    .newsletter-form input {
        flex: 1;
        padding: 18px 25px;
        border: none;
        font-size: 1.05rem;
        font-family: 'Inter', sans-serif;
        outline: none;
        background: transparent;
        color: #333;
    }
    .newsletter-form input::placeholder {
        color: #999;
    }
    .newsletter-form button {
        background: #f37021;
        color: white;
        border: none;
        padding: 18px 35px;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        font-size: 1.05rem;
    }
    .newsletter-form button:hover {
        background: #e05e10;
        transform: translateY(-2px);
    }
    .newsletter-trust {
        margin-top: 25px;
        font-size: 0.9rem;
        color: #888888;
        font-weight: 500;
    }
    .newsletter-trust i {
        color: #198754;
    }
    @media (max-width: 576px) {
        .newsletter-form {
            flex-direction: column;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .newsletter-form input {
            border-radius: 8px 8px 0 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .newsletter-form button {
            border-radius: 0 0 8px 8px;
            width: 100%;
        }
    }

    .donate-cta-banner {
        background: #0c3220;
        padding: 60px 5%;
        position: relative;
        overflow: hidden;
    }
    .donate-cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(243, 112, 33, 0.08);
    }
    .donate-cta-banner::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,0.03);
    }
    .donate-cta-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    .donate-cta-text h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 2.4rem;
        color: white;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }
    .donate-cta-text p {
        color: rgba(255,255,255,0.7);
        font-size: 1.1rem;
        margin: 0;
        max-width: 550px;
    }
    .donate-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #f37021;
        color: white;
        padding: 16px 35px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        white-space: nowrap;
        border: 2px solid #f37021;
    }
    .donate-cta-btn:hover {
        background: transparent;
        color: #f37021;
    }
    @media (max-width: 768px) {
        .donate-cta-inner {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }
        .donate-cta-text h2 {
            font-size: 1.8rem;
        }
        .donate-cta-text p {
            max-width: 100%;
        }
        .donate-cta-btn {
            width: 100%;
            justify-content: center;
        }
    }
