.hero-slider {
        width: 100%;
        height: 85vh; /* Responsive height */
        position: relative;
        overflow: hidden;
    }

    .swiper-slide {
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Slider Image with Zoom Effect */
    .slide-img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 6s ease;
        z-index: 1;
    }

    .swiper-slide-active .slide-img {
        transform: scale(1.15); /* Slow Zoom-in animation */
    }

    /* Overlay Gradient */
    .slide-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(20, 83, 45, 0.8), rgba(0, 0, 0, 0.3));
        z-index: 2;
    }

    /* Content Styling */
    .slide-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        color: #ffffff;
        padding: 0 50px;
        text-align: left;
    }

    .slide-content h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: 0.8s ease 0.3s;
        line-height: 1.2;
        color: #4ade80; /* Leaf Green */
    }

    .swiper-slide-active .slide-content h2 {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-btn-box {
        opacity: 0;
        transform: translateY(30px);
        transition: 0.8s ease 0.6s;
    }

    .swiper-slide-active .slide-btn-box {
        opacity: 1;
        transform: translateY(0);
    }

    /* Custom Navigation Buttons */
    .swiper-button-next, .swiper-button-prev {
        color: #fff !important;
        width: 50px;
        height: 50px;
        background: rgba(74, 222, 128, 0.2);
        border-radius: 50%;
        backdrop-filter: blur(5px);
        transition: 0.3s;
    }

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: #4ade80;
        color: #14532d !important;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .slide-content h2 { font-size: 2.5rem; }
        .hero-slider { height: 60vh; }
    }

    @media (max-width: 600px) {
        .slide-content { padding: 0 20px; text-align: center; }
        .slide-content h2 { font-size: 1.8rem; }
        .hero-slider { height: 50vh; }
        .swiper-button-next, .swiper-button-prev { display: none; } /* Hide on small mobile */
    }


    .nature-mission {
    padding: 100px 0;
    background: #f8faf8; /* Light fresh background */
    font-family: 'Poppins', sans-serif;
}

.mission-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #4ade80;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    color: #14532d;
    font-size: 36px;
    font-weight: 800;
    margin-top: 10px;
}

.leaf-divider {
    color: #4ade80;
    font-size: 24px;
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.leaf-divider::before, .leaf-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #4ade80;
}

.leaf-divider::before { right: 40px; }
.leaf-divider::after { left: 40px; }

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Styling */
.mission-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    color: #14532d;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    transition: 0.4s;
}

.mission-card h3 {
    color: #14532d;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Interactive Hover Effects */
.mission-card:hover {
    transform: translateY(-10px);
    background: #14532d;
}

.mission-card:hover h3, .mission-card:hover p {
    color: #fff;
}

.mission-card:hover .card-icon {
    background: #4ade80;
    color: #14532d;
    transform: rotateY(360deg);
}

/* Background Shape in Card */
.card-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: 0.4s;
}

.mission-card:hover .card-shape {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(2);
}

/* Responsive */
@media (max-width: 768px) {
    .nature-mission { padding: 60px 0; }
    .section-title h2 { font-size: 28px; }
}



.about-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image-column, .about-text-column {
    flex: 1;
    min-width: 320px;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    padding: 15px;
}

.main-about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 8px solid #f0fdf4;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #14532d;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(20, 83, 45, 0.3);
    animation: float 3s infinite ease-in-out;
}

.exp-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #4ade80;
}

.exp-text { font-size: 11px; text-transform: uppercase; font-weight: 600; }

.image-decor-leaf {
    position: absolute;
    top: 0;
    left: 0;
    background: #4ade80;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #14532d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Text Content Styling */
.section-subtitle {
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-main-title {
    color: #14532d;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-description {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon { color: #4ade80; font-size: 20px; }

.feature-text h4 { color: #14532d; font-size: 17px; margin-bottom: 3px; font-weight: 700; }
.feature-text p { font-size: 13px; color: #777; }

.read-more-btn {
    display: inline-block;
    background: #14532d;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.read-more-btn:hover {
    background: #4ade80;
    color: #14532d;
    transform: translateX(10px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-row { flex-direction: column; text-align: center; }
    .feature-item { text-align: left; }
    .about-image-column { width: 100%; max-width: 500px; }
    .section-main-title { font-size: 28px; }
}

.impact-stats {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=1920') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.9), rgba(6, 78, 59, 0.85));
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: 0.4s;
}

.stat-icon {
    font-size: 45px;
    color: #4ade80;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulseIcon 2s infinite;
}

.stat-item h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
}

.stat-item p {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e2e8f0;
}

.stat-divider {
    display: block;
    width: 50px;
    height: 3px;
    background: #4ade80;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Animations */
@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .impact-stats { padding: 60px 0; }
    .stat-item h2 { font-size: 32px; }
}


.projects-section {
    padding: 100px 0;
    background: #f0fdf4; /* Very light green */
    font-family: 'Poppins', sans-serif;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #4ade80;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header .title {
    color: #14532d;
    font-size: 36px;
    font-weight: 800;
    margin-top: 10px;
}

.header-line {
    width: 70px;
    height: 4px;
    background: #4ade80;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card Styling */
.project-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid #e2e8f0;
}

.project-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 83, 45, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.view-icon {
    width: 50px;
    height: 50px;
    background: #4ade80;
    color: #14532d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transform: translateY(20px);
    transition: 0.4s;
}

.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .view-icon { transform: translateY(0); }
.project-card:hover .project-img-box img { transform: scale(1.1); }

/* Content Styling */
.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 22px;
    color: #14532d;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-read-more {
    color: #14532d;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.project-read-more:hover {
    color: #4ade80;
    gap: 12px;
}

/* Footer Button */
.view-all-box {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    padding: 15px 40px;
    background: #14532d;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(20, 83, 45, 0.2);
}

.view-all-btn:hover {
    background: #4ade80;
    color: #14532d;
}

/* Responsive */
@media (max-width: 600px) {
    .section-header .title { font-size: 28px; }
    .project-card { margin: 0 10px; }
}


.join-movement {
    padding: 60px 0 100px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-box {
    background: linear-gradient(135deg, #14532d, #064e3b);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(20, 83, 45, 0.3);
}

/* Background Decorations */
.cta-leaf-1, .cta-leaf-2 {
    position: absolute;
    color: rgba(74, 222, 128, 0.1);
    z-index: 1;
}
.cta-leaf-1 { font-size: 150px; top: -30px; right: -30px; transform: rotate(20deg); }
.cta-leaf-2 { font-size: 100px; bottom: -20px; left: 10%; transform: rotate(-15deg); }

.cta-content {
    flex: 2;
    position: relative;
    z-index: 2;
}

.cta-image {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 2;
}

.cta-image img {
    width: 280px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: floating 3s infinite ease-in-out;
}

.cta-subtitle {
    color: #4ade80;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.cta-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    color: #e2e8f0;
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.6;
}

/* Buttons Styling */
.cta-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.btn-primary {
    background: #4ade80;
    color: #14532d;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #14532d;
    transform: translateY(-5px);
}

/* Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Logic */
@media (max-width: 992px) {
    .cta-box { flex-direction: column; text-align: center; padding: 50px 30px; }
    .cta-image { margin-top: 40px; order: -1; }
    .cta-image img { width: 200px; }
    .cta-title { font-size: 32px; }
    .cta-btn-group { justify-content: center; }
    .cta-desc { margin-left: auto; margin-right: auto; }
    
}



.gallery-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .sub-text {
    color: #4ade80;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.gallery-header .main-title {
    color: #14532d;
    font-size: 34px;
    font-weight: 800;
    margin-top: 10px;
}

.title-bar {
    width: 60px;
    height: 4px;
    background: #4ade80;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Gallery Grid System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 15px;
}

/* For Masonry Look: Every 2nd or 3rd image can be larger */
.gallery-item:nth-child(3n) { grid-column: span 2; }
@media (max-width: 768px) { .gallery-item:nth-child(3n) { grid-column: span 1; } }

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect */
.gallery-hover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

.hover-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s;
}

.lightbox-btn {
    width: 45px;
    height: 45px;
    background: #4ade80;
    color: #14532d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transform: translateY(20px);
    transition: 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-item:hover .hover-content h4, 
.gallery-item:hover .lightbox-btn { transform: translateY(0); }
.gallery-item:hover .gallery-img-box img { transform: scale(1.1); }

/* More Gallery Button */
.more-gallery-wrap {
    text-align: center;
    margin-top: 50px;
}

.btn-more-gallery {
    padding: 14px 35px;
    background: #14532d;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(20, 83, 45, 0.2);
}

.btn-more-gallery:hover {
    background: #4ade80;
    color: #14532d;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .main-title { font-size: 26px; }
}


