/* =====================================================
        NAMMA ARANYA CSS
        PART 4A
=====================================================*/

:root{

    --primary:#2E7D32;
    --secondary:#1B5E20;
    --light:#F8FBF6;
    --accent:#8BC34A;
    --dark:#17351d;
    --text:#3d3d3d;
    --white:#ffffff;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Segoe UI",sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

.container{

    width:90%;
    max-width:1320px;
    margin:auto;

}

/*==============================
        HERO
==============================*/

.adopt-hero{

    position:relative;
    overflow:hidden;

    min-height:760px;

    display:flex;
    align-items:center;

    background:url("../images/adopt_forest/hero.png")
    center center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );

}

.hero-container{

    position:relative;

    z-index:10;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding:90px 0;
    transform: translateX(-8%);

}

.hero-content{

    color:white;

}

.hero-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    margin-bottom:22px;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:72px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:12px;

}

.hero-content h1 span{

    color:#9bd949;

}

.hero-content h2{

    font-size:42px;

    margin-bottom:25px;

    color:#ffffff;

    font-weight:600;

}

.hero-content p{

    max-width:620px;

    color:#ececec;

    font-size:18px;

    margin-bottom:40px;

}

/*==============================
        BUTTONS
==============================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-green{

    background:#7CB342;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-green:hover{

    background:#689F38;

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid white;

    color:white;

    text-decoration:none;

    padding:15px 28px;

    border-radius:50px;

    transition:.35s;

}

.btn-outline:hover{

    background:white;

    color:#2E7D32;

}

.btn-light{

    background:#fff;

    color:#2E7D32;

    text-decoration:none;

    padding:15px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-light:hover{

    transform:translateY(-3px);

}

/*==============================
        HERO IMAGE
==============================*/

.hero-image{

    display: none;

}

.hero-image img{

    width:100%;

    max-width:600px;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

/*==============================
    SECTION TITLES
==============================*/

.section-title,
.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#ffffff;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-heading span{
    color: #1a591e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2,
.section-heading h2{

    font-size:42px;

    margin-top:10px;

    color:#1d3a20;

}

.section-title p,
.section-heading p{

    max-width:800px;

    margin:20px auto 0;

    color:#666;

    font-size:18px;

}

/*==============================
        WHY ADOPT
==============================*/

.why-adopt{

    background:#FAFCF8;

    padding:6px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.why-card{

    background:white;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#E8F5E9;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:36px;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    color:#2E7D32;

    font-size:23px;

}

.why-card p{

    color:#666;

}

/*==============================
        COUNTER
==============================*/

.counter-preview{

    padding:6px 0;

    background:white;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.counter-card{

    background:#F7FAF4;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.3s;

    border:1px solid #edf3e7;

}

.counter-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.counter-card h3{

    font-size:42px;

    color:#2E7D32;

    margin-bottom:10px;

}

.counter-card span{

    color:#666;

    font-weight:600;

}

/*=====================================================
            PART 4B
    CHANGE SECTION + CTA
=====================================================*/

.change-section{

    padding:6px 0;
    background:#ffffff;

}

.change-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;

}

.change-card{

    position:relative;
    overflow:hidden;

    height:360px;

    border-radius:22px;

    cursor:pointer;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.change-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.change-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.change-card:hover img{

    transform:scale(1.08);

}

.change-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.15)
    );

    z-index:1;

}

.overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    z-index:5;

    padding:25px;

    color:#fff;

}

.overlay h3{

    font-size:28px;

    margin-bottom:12px;

    font-weight:700;

}

.overlay p{

    font-size:15px;

    line-height:1.7;

    margin-bottom:22px;

    opacity:.95;

}

.card-btn{

    display:inline-block;

    padding:12px 24px;

    background:#8BC34A;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.card-btn:hover{

    background:#689F38;

    transform:translateY(-3px);

}



/*======================================
        CTA SECTION
======================================*/

.green-cta{

    padding:70px 0;

    background:linear-gradient(
        90deg,
        #1B5E20,
        #2E7D32
    );

}

.cta-grid{

    display:grid;

    grid-template-columns:1.4fr 1fr auto;

    align-items:center;

    gap:45px;

}

.cta-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.cta-left .icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:34px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.cta-left h2{

    color:white;

    font-size:34px;

    line-height:1.35;

}

.cta-center{

    color:#e8f5e9;

    font-size:18px;

    line-height:1.8;

}

.cta-button{

    display:inline-block;

    background:#8BC34A;

    color:white;

    text-decoration:none;

    padding:18px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}

.cta-button:hover{

    background:#AED581;

    color:#1B5E20;

}



/*======================================
        BENEFITS
======================================*/

.programme-benefits{

    padding:55px 0;

    background:#F8FBF7;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.benefit-box{

    background:white;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.benefit-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.benefit-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#E8F5E9;

    color:#2E7D32;

    font-size:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

}

.benefit-box h3{

    color:#2E7D32;

    margin-bottom:15px;

    font-size:24px;

}

.benefit-box p{

    color:#666;

    line-height:1.8;

}

/*=====================================================
            PART 4C
        HOW IT WORKS + FAQ + CONTACT
=====================================================*/


/*======================================
        HOW IT WORKS
======================================*/

.how-it-works{

    padding:6px 0;
    background:#ffffff;

}

.steps{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

.step{

    position:relative;
    background:#F8FBF7;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.step:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.step-number{

    width:70px;
    height:70px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:#2E7D32;

    color:#fff;

    font-size:28px;
    font-weight:700;

    display:flex;
    justify-content:center;
    align-items:center;

}

.step h3{

    color:#2E7D32;
    margin-bottom:15px;
    font-size:22px;

}

.step p{

    color:#666;
    line-height:1.8;

}


/*======================================
            FAQ
======================================*/

.faq-section{

    padding:100px 0;
    background:#F5FAF4;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;

    background:#fff;

    border:none;

    cursor:pointer;

    padding:25px 30px;

    text-align:left;

    font-size:20px;

    font-weight:600;

    color:#2E7D32;

    transition:.3s;

}

.faq-question:hover{

    background:#EDF7EB;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}


/*======================================
        CONTACT
======================================*/

.contact-green{

    padding:90px 0;

    background:linear-gradient(
    90deg,
    #1B5E20,
    #2E7D32);

}

.contact-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.contact-wrapper h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

.contact-wrapper p{

    color:#E8F5E9;

    max-width:700px;

    font-size:18px;

}

.contact-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


/*======================================
        FOOTER
======================================*/

.footer-adopt{

    background:#16321A;

    color:#fff;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-grid h3{

    margin-bottom:20px;

}

.footer-grid ul{

    list-style:none;

}

.footer-grid li{

    margin-bottom:12px;

}

.footer-grid a{

    color:#d8e7d5;

    text-decoration:none;

    transition:.3s;

}

.footer-grid a:hover{

    color:#8BC34A;

}

.footer-bottom{

    margin-top:40px;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    text-align:center;

    color:#ddd;

}


/*======================================
        RESPONSIVE
======================================*/

@media(max-width:1200px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:50px;

}

.change-grid{

grid-template-columns:repeat(2,1fr);

}

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

.steps{

grid-template-columns:repeat(2,1fr);

}

.counter-grid{

grid-template-columns:repeat(3,1fr);

}

.cta-grid{

grid-template-columns:1fr;

text-align:center;

}

.contact-wrapper{

flex-direction:column;

text-align:center;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

}



@media(max-width:768px){

.hero-content h1{

font-size:48px;

}

.hero-content h2{

font-size:28px;

}

.section-title h2,
.section-heading h2{

font-size:34px;

}

.change-grid{

grid-template-columns:1fr;

}

.benefits-grid{

grid-template-columns:1fr;

}

.steps{

grid-template-columns:1fr;

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:1fr;

}

.contact-buttons{

justify-content:center;

}

}



@media(max-width:500px){

.counter-grid{

grid-template-columns:1fr;

}

.hero-buttons{

flex-direction:column;

}

.btn-green,
.btn-light,
.btn-outline{

width:100%;

text-align:center;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:16px;

}

.section-title h2,
.section-heading h2{

font-size:30px;

}

.contact-wrapper h2{

font-size:30px;

}

}

/*==========================
Student & Citizen Corner
==========================*/

.volunteer-section{

padding:6px 20px;

background:#f5fbf3;

}

.volunteer-section .container{

max-width:1300px;

margin:auto;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-badge{

display:inline-block;

background:#2e7d32;

color:#fff;

padding:8px 18px;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.section-title h2{

font-size:42px;

color:#1b5e20;

margin-bottom:20px;

font-weight:700;

}

.section-title p{

max-width:850px;

margin:auto;

font-size:18px;

line-height:1.8;

color:#555;

}

.volunteer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:50px;

}

.volunteer-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.volunteer-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.volunteer-card .icon{

font-size:55px;

margin-bottom:20px;

}

.volunteer-card h3{

font-size:24px;

color:#1b5e20;

margin-bottom:15px;

}

.volunteer-card p{

font-size:16px;

color:#666;

line-height:1.7;

}

.volunteer-btn{

margin-top:60px;

text-align:center;

}

.btn-volunteer{

display:inline-block;

padding:18px 45px;

background:#2e7d32;

color:#fff;

text-decoration:none;

font-size:18px;

font-weight:600;

border-radius:50px;

transition:.3s;

}

.btn-volunteer:hover{

background:#1b5e20;

transform:translateY(-3px);

}

.leaderboard-section{
    padding:80px 0;
    background:#f7fbf6;
}

.leaderboard-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.leaderboard-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.rank{
    font-size:40px;
    margin-bottom:15px;
}

.leaderboard-card h3{
    margin-bottom:10px;
}

/* Forest Hero Wrapper */
.hero-heroes{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

    transform: translateX(55%);
}

/* Main Card */
.heroes-card{
    width:100%;
    max-width:470px;
    background:rgba(18,55,24,.45);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    border:1px solid rgba(255,255,255,.18);
    border-radius:22px;
    padding:16px;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.30);
}

/* Title */
.heroes-title{
    color:#d6ff8a;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
    text-transform:uppercase;
}

/* Hero Item */
.hero-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
}

/* Image */
.hero-item img{
    width:95px;
    height:95px;
    object-fit:cover;
    border-radius:12px;
}

/* Content */
.hero-info{
    flex:1;
}

/* Label */
.hero-label{
    font-size:12px;
    color:#d8f39b;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:6px;
}

.hero-label.community{
    color:#8cf7a6;
}

/* Heading */
.hero-info h4{
    margin:0;
    font-size:22px;
    color:#fff;
}

/* Role / Place */
.hero-info p{
    margin:4px 0;
    color:#e8e8e8;
    font-size:15px;
    font-weight:500;
}

/* Description */
.hero-info small{
    display:block;
    color:#d0d0d0;
    line-height:1.5;
    margin:8px 0 12px;
}

/* Button */
.hero-info a{
    color:#8CFF95;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.hero-info a:hover{
    color:#fff;
    letter-spacing:.5px;
}

/* Divider */
.hero-divider{
    height:1px;
    background:rgba(255,255,255,.18);
    margin:18px 0;
}

@media (max-width:768px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content h2{
        font-size:30px;
    }

    .hero-content p{
        font-size:16px;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-container{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .hero-heroes{
    width:100%;
    transform: translateX(0);   /* അല്ലെങ്കിൽ transform:none */
    display:flex;
    justify-content:center;
    align-items:center;
}

.heroes-card{
    width:90%;
    max-width:380px;
    margin:0 auto;
}

    

    .hero-item img{
        width:80px;
        height:80px;
    }

    .hero-info h4{
        font-size:20px;
    }

    .hero-info p{
        font-size:14px;
    }

    .hero-info small{
        font-size:13px;
    }
}

/* ==========================================
   NAMMA ARANYA HERO - MOBILE RESPONSIVE FIX
========================================== */

@media (max-width:768px){

    /* HERO SECTION */
    .adopt-hero{
        min-height:auto;
        height:auto;
        padding:60px 0;
        align-items:flex-start;
        overflow:hidden;
        background-position:center center;
    }


    /* MAIN HERO CONTAINER */
    .hero-container{
        width:90%;
        max-width:100%;
        margin:0 auto;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        gap:45px;

        padding:40px 0;

        transform:none !important;
        text-align:center;
    }


    /* =========================
       LEFT HERO CONTENT
    ========================= */

    .hero-content{
        width:100%;
        max-width:520px;
        margin:0 auto;
        text-align:center;
    }


    .hero-tag{
        font-size:11px;
        padding:7px 14px;
        margin-bottom:18px;
        letter-spacing:.7px;
    }


    .hero-content h1{
        font-size:42px;
        line-height:1.08;
        margin-bottom:18px;
        text-align:center;
    }


    .hero-content h2{
        font-size:28px;
        line-height:1.25;
        margin-bottom:22px;
        text-align:center;
    }


    .hero-content p{
        width:100%;
        max-width:500px;

        margin:0 auto 30px;

        font-size:16px;
        line-height:1.75;

        text-align:center;
    }


    /* BUTTONS */

    .hero-buttons{
        width:100%;

        display:flex;
        flex-direction:column;

        align-items:center;
        justify-content:center;

        gap:14px;
    }


    .hero-buttons .btn-green,
    .hero-buttons .btn-outline,
    .hero-buttons .btn-light{

        width:100%;
        max-width:330px;

        min-height:54px;

        padding:14px 20px;

        display:flex;
        align-items:center;
        justify-content:center;

        text-align:center;

        margin:0 auto;

        font-size:15px;
        line-height:1.3;
    }


    /* =========================
       FOREST HERO SECTION
    ========================= */

    .hero-heroes{

        width:100%;

        transform:none !important;

        display:flex;
        align-items:center;
        justify-content:center;

        margin:0 auto;
    }


    /* HERO CARD */

    .heroes-card{

        width:100%;
        max-width:390px;

        margin:0 auto;

        padding:22px 18px;

        border-radius:20px;
    }


    /* CARD TITLE */

    .heroes-title{

        width:100%;

        text-align:center;

        font-size:14px;

        margin-bottom:25px;

        letter-spacing:.8px;
    }


    /* EACH HERO */

    .hero-item{

        width:100%;

        display:flex;

        align-items:flex-start;

        justify-content:flex-start;

        gap:16px;

        text-align:left;
    }


    /* HERO IMAGE */

    .hero-item img{

        width:82px;
        height:82px;

        min-width:82px;

        object-fit:cover;

        border-radius:12px;

        flex-shrink:0;
    }


    /* HERO TEXT */

    .hero-info{

        flex:1;

        min-width:0;

        text-align:left;
    }


    .hero-label{

        font-size:11px;

        line-height:1.4;

        margin-bottom:5px;
    }


    .hero-info h4{

        font-size:19px;

        line-height:1.25;

        margin:0 0 5px;

        text-align:left;
    }


    .hero-info p{

        font-size:13px;

        line-height:1.4;

        margin:3px 0 7px;

        text-align:left;
    }


    .hero-info small{

        font-size:12px;

        line-height:1.5;

        margin:6px 0 10px;

        text-align:left;
    }


    .hero-info a{

        display:inline-block;

        font-size:13px;

        line-height:1.4;

        text-align:left;
    }


    /* DIVIDER */

    .hero-divider{

        width:100%;

        margin:20px 0;

    }

}



/* ==========================================
   EXTRA SMALL MOBILE
========================================== */

@media (max-width:480px){

    .adopt-hero{
        padding:35px 0 45px;
    }


    .hero-container{

        width:92%;

        padding:25px 0;

        gap:38px;
    }


    /* HERO TITLE */

    .hero-content h1{

        font-size:36px;

        line-height:1.1;
    }


    .hero-content h2{

        font-size:25px;

    }


    .hero-content p{

        font-size:15px;

        line-height:1.7;
    }


    /* BUTTON */

    .hero-buttons .btn-green,
    .hero-buttons .btn-outline,
    .hero-buttons .btn-light{

        max-width:310px;

        min-height:52px;

        font-size:14px;

        padding:13px 18px;
    }


    /* HERO CARD */

    .heroes-card{

        width:100%;

        max-width:350px;

        padding:20px 15px;
    }


    .heroes-title{

        font-size:13px;

        margin-bottom:22px;
    }


    /* HERO ITEMS */

    .hero-item{

        gap:13px;

    }


    .hero-item img{

        width:74px;

        height:74px;

        min-width:74px;
    }


    .hero-label{

        font-size:10px;

    }


    .hero-info h4{

        font-size:17px;

    }


    .hero-info p{

        font-size:12px;

    }


    .hero-info small{

        font-size:11px;

    }


    .hero-info a{

        font-size:12px;

    }

}


/*<!-- ===============================*/
/*        DRAGGER SLIDER*/
/*================================ -->*/

/* ===========================================
   BEFORE & AFTER COMPARISON SECTION
=========================================== */

.comparison-section{
    padding:2px 0;
    background:#f7f9f5;
}

.comparison-section .section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.comparison-section .section-heading span{
    color:#5e9b3c;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.comparison-section .section-heading h2{
    margin:14px 0;
    font-size:42px;
    color:#17351c;
}

.comparison-section .section-heading p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* =======================
      SLIDE
======================= */

.comparison-slide{
    display:none;
}

.comparison-slide.active{
    display:block;
}

.comparison-slide h3{
    text-align:center;
    margin-bottom:22px;
    color:#24552d;
    font-size:26px;
}

/* =======================
      IMAGE COMPARISON
======================= */

.img-compare{

    position:relative;

    width:100%;

    max-width:950px;

    height:520px;

    margin:auto;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    user-select:none;

    cursor:ew-resize;

}

/* AFTER */

.img-after{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    pointer-events:none;
}

/* BEFORE WRAPPER */

.img-before-wrapper{

    position:absolute;

    left:0;

    top:0;

    width:50%;

    height:100%;

    overflow:hidden;

}

/* BEFORE IMAGE */

.img-before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    pointer-events:none;
}

/* LABELS */

.compare-label{
    position:absolute;
    top:18px;
    padding:8px 14px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:700;
    z-index:20;
    transition:.3s;
}

.before-label{
    left:18px;
    background:rgba(0,0,0,.6);
}

.after-label{
    right:18px;
    background:#76c043;
}
/* LINE */

.slider-line{

    position:absolute;

    left:50%;

    top:0;

    width:3px;

    height:100%;

    background:#fff;

    transform:translateX(-50%);

    z-index:6;

}

/* HANDLE */

.slider-button{

    position:absolute;

    left:50%;

    top:50%;

    width:56px;

    height:56px;

    border-radius:50%;

    background:#76c043;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    transform:translate(-50%,-50%);

    z-index:7;

    box-shadow:0 10px 25px rgba(0,0,0,.35);
    cursor:ew-resize;

}

/* =======================
      NAVIGATION
======================= */

.comparison-nav{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:18px;

}

.comparison-nav button{

    border:none;

    background:#2d6d35;

    color:#fff;

    padding:14px 28px;

    border-radius:35px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.comparison-nav button:hover{

    background:#76c043;

}

/* =======================
      RESPONSIVE
======================= */

@media(max-width:992px){

    .comparison-section{

        padding:70px 0;

    }

    .comparison-section .section-heading h2{

        font-size:34px;

    }

    .img-compare{

        height:420px;

    }

}

@media(max-width:768px){

    .comparison-section{

        padding:60px 0;

    }

    .comparison-section .section-heading{

        margin-bottom:35px;

        padding:0 15px;

    }

    .comparison-section .section-heading h2{

        font-size:28px;

    }

    .comparison-slide h3{

        font-size:21px;

    }

    .img-compare{

        height:270px;

        border-radius:16px;

    }

    .img-before{

        width:100%;
    }

    .slider-button{

        width:46px;

        height:46px;

        font-size:18px;

    }

}

@media(max-width:480px){

    .comparison-section .section-heading h2{

        font-size:24px;

    }

    .comparison-section .section-heading p{

        font-size:15px;

    }

    .img-compare{

        height:220px;

    }

}

/*STATISTICS NEW */

/* ===============================
        IMPACT SECTION
================================ */

.impact-section{

    padding:90px 0;

    background:#f9feda14;

}

.impact-heading{

    text-align:center;

    margin-bottom:55px;

}

.impact-heading span{

    color:#63A844;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.impact-heading h2{

    margin:14px 0;

    font-size:40px;

    color:#1F4F2A;

}

.impact-heading p{

    color:#666;

    font-size:17px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* Grid */

.impact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

/* Card */

.impact-card{

 background: #ffffff80;
    border-radius: 18px;
    padding: 12px 14px;
    text-align: center;
    transition: .35s;
    box-shadow: -1px 2px 30px rgb(27 26 26 / 21%);
    border: 1px solid #eaece8;

}

.impact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/* Icon */

.impact-icon{

    width:70px;

    height:70px;

    margin:auto auto 18px;

    border-radius:50%;

    background:#ECF8E9;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

}

/* Number */

.impact-card h3{

    font-size:40px;

    color:#2C8C3A;

    margin-bottom:10px;

    font-weight:700;

}

/* Text */

.impact-card p{

    color:#555;

    font-size:16px;

    line-height:1.6;

    margin:0;

}

/* ===============================
        TABLET
================================ */

@media(max-width:992px){

.impact-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* ===============================
        MOBILE
================================ */

@media(max-width:768px){

.impact-section{

padding:70px 0;

}

.impact-heading h2{

font-size:30px;

}

.impact-grid{

grid-template-columns:1fr;

gap:20px;

}

.impact-card{

padding:28px 20px;

}

.impact-card h3{

font-size:34px;

}

}


/* ===================================
        LEADERBOARD
=================================== */

.leaderboard-section{
    padding:80px 0;
    background:#f7fbf6;
}

.leaderboard-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.leaderboard-card{
    background:#fff;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #edf3e7;
}

.leaderboard-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

.rank{
    font-size:52px;
    margin-bottom:18px;
}

.leaderboard-card h3{
    font-size:38px;
    color:#1f4f2a;
    margin-bottom:12px;
    font-weight:700;
}

.leaderboard-card p{
    font-size:22px;
    color:#555;
    margin:0;
}

/* ===========================
        Tablet
=========================== */

@media (max-width:992px){

    .leaderboard-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .leaderboard-card{
        padding:35px 24px;
    }

    .leaderboard-card h3{
        font-size:32px;
    }

    .leaderboard-card p{
        font-size:20px;
    }

}

/* ===========================
        Mobile
=========================== */

@media (max-width:768px){

    .leaderboard-section{
        padding:60px 0;
    }

    .leaderboard-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .leaderboard-card{
        padding:30px 20px;
        border-radius:18px;
    }

    .rank{
        font-size:42px;
        margin-bottom:15px;
    }

    .leaderboard-card h3{
        font-size:28px;
        line-height:1.3;
        word-break:break-word;
    }

    .leaderboard-card p{
        font-size:18px;
        line-height:1.5;
    }

}

/* ===========================
      Small Mobile
=========================== */

@media (max-width:480px){

    .leaderboard-section .section-heading{
        margin-bottom:35px;
    }

    .leaderboard-section .section-heading h2{
        font-size:30px;
    }

    .leaderboard-section .section-heading p{
        font-size:15px;
    }

    .leaderboard-card{
        padding:25px 18px;
    }

    .rank{
        font-size:38px;
    }

    .leaderboard-card h3{
        font-size:24px;
    }

    .leaderboard-card p{
        font-size:16px;
    }

}


/* ==========================================
   LEADERBOARD SECTION
========================================== */

.leaderboard-section {
    padding: 90px 20px;
    background: #f7faf6;
}


/* SECTION HEADING */

.leaderboard-section .section-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.leaderboard-section .section-heading span {
    display: inline-block;
    margin-bottom: 18px;

    color: #0d5b35;

    font-size: 18px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.leaderboard-section .section-heading h2 {
    margin: 0 0 22px;

    color: #173d25;

    font-size: 52px;
    font-weight: 700;

    line-height: 1.15;
}

.leaderboard-section .section-heading p {
    margin: 0;

    color: #66706a;

    font-size: 21px;
    line-height: 1.6;
}


/* ==========================================
   GRID
========================================== */

.leaderboard-grid {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 38px;
}


/* ==========================================
   CARD
========================================== */

.leaderboard-card {
    min-height: 360px;

    padding: 70px 35px 45px;

    background: #ffffff;

    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(20, 60, 35, 0.08);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.leaderboard-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(20, 60, 35, 0.14);
}


/* ==========================================
   TROPHY ICON
========================================== */

.leaderboard-card .rank {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 32px;
}

.leaderboard-card .trophy-icon {
    width: 30px;
    height: 30px;

    display: block;

    fill: currentColor;
}


/* Trophy colours */

.leaderboard-card.first .rank {
    color: #d99a24;
}

.leaderboard-card.second .rank {
    color: #9b8bb7;
}

.leaderboard-card.third .rank {
    color: #b8734b;
}


/* ==========================================
   CARD TITLE
========================================== */

.leaderboard-card h3 {
    margin: 0 0 18px;

    color: #18552f;

    font-size: 34px;
    font-weight: 800;

    line-height: 1.2;
}


/* ==========================================
   CARD DESCRIPTION
========================================== */

.leaderboard-card p {
    margin: 0;

    color: #5f6368;

    font-size: 23px;

    line-height: 1.5;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .leaderboard-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leaderboard-section .section-heading h2 {
        font-size: 42px;
    }

}


@media (max-width: 700px) {

    .leaderboard-section {
        padding: 60px 18px;
    }

    .leaderboard-section .section-heading {
        margin-bottom: 45px;
    }

    .leaderboard-section .section-heading h2 {
        font-size: 34px;
    }

    .leaderboard-section .section-heading p {
        font-size: 17px;
    }

    .leaderboard-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .leaderboard-card {
        min-height: 280px;

        padding: 45px 25px 35px;
    }

    .leaderboard-card h3 {
        font-size: 28px;
    }

    .leaderboard-card p {
        font-size: 18px;
    }

    .leaderboard-card .trophy-icon {
        width: 28px;
        height: 28px;
    }
}



/* =========================================
   FOREST EVENTS & STORIES
========================================= */

.forest-events-section{
    padding:80px 0;
    background:#f7fbf6;
}


/* SECTION HEADING */

.forest-events-section .section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.forest-events-section .section-heading span{
    color:#2e7d32;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.forest-events-section .section-heading h2{
    margin:12px 0;
    font-size:42px;
    color:#17351c;
}

.forest-events-section .section-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}


/* =========================================
   FOREST EVENTS CAROUSEL
========================================= */

.forest-events-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* =========================================
   FOREST EVENTS SLIDER
========================================= */

.forest-events-grid{
    width:100%;
    overflow:hidden;
    position:relative;
}


/* Slider viewport */

.forest-events-slider{
    width:100%;
    overflow:hidden;
}


/* Slider track */

.forest-events-track{
    display:flex;
    gap:28px;
    transition:transform .5s ease;
    will-change:transform;
}


/* Cards */

.forest-events-track .forest-event-card{

    flex:0 0 calc(
        (100% - 56px) / 3
    );

    min-width:0;

}


/* Navigation */

.forest-events-navigation{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:15px;

    margin-top:35px;

}


/* Buttons */

.forest-events-navigation button{

    border:none;

    background:#2e7d32;

    color:#fff;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}


.forest-events-navigation button:hover{

    background:#1b5e20;

    transform:translateY(-2px);

}


/* =========================================
   TABLET
========================================= */

@media(max-width:1000px){

    .forest-events-track .forest-event-card{

        flex:0 0 calc(
            (100% - 28px) / 2
        );

    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .forest-events-track{

        gap:20px;

    }


    .forest-events-track .forest-event-card{

        flex:0 0 100%;

    }


    .forest-events-navigation button{

        padding:10px 20px;

        font-size:14px;

    }

}

/* Three cards visible on desktop */
.forest-event-card{
    flex:0 0 calc((100% - 56px) / 3);
    min-width:0;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.forest-event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.14);
}


/* IMAGE */

.forest-event-image{
    position:relative;
    height:250px;
    overflow:hidden;
}

.forest-event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.forest-event-card:hover
.forest-event-image img{
    transform:scale(1.06);
}


/* DATE */

.forest-event-date{
    position:absolute;
    top:16px;
    left:16px;

    background:#2e7d32;
    color:#fff;

    padding:8px 14px;
    border-radius:30px;

    font-size:12px;
    font-weight:700;

    letter-spacing:.5px;
}


/* CONTENT */

.forest-event-content{
    padding:25px;
}

.forest-event-location{
    display:block;

    color:#6a9d45;

    font-size:13px;
    font-weight:600;

    margin-bottom:10px;
}

.forest-event-content h3{
    margin:0 0 12px;

    color:#18552f;

    font-size:24px;
    line-height:1.3;
}

.forest-event-content p{
    margin:0 0 20px;

    color:#666;

    font-size:15px;
    line-height:1.7;
}


/* BUTTON */

.forest-event-btn{
    display:inline-block;

    color:#2e7d32;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.3s;
}

.forest-event-btn:hover{
    color:#1b5e20;
    transform:translateX(4px);
}


/* =========================================
   TABLET
========================================= */

/* =========================================
   CAROUSEL NAVIGATION
========================================= */

.forest-events-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:30px;
}

.forest-events-nav button{
    width:46px;
    height:46px;
    border:1px solid #d7e6d4;
    border-radius:50%;
    background:#fff;
    color:#2e7d32;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s ease;
}

.forest-events-nav button:hover{
    background:#2e7d32;
    color:#fff;
    border-color:#2e7d32;
    transform:translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .forest-event-card{
        flex-basis:calc((100% - 28px) / 2);
    }

    .forest-events-section .section-heading h2{
        font-size:36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .forest-events-section{
        padding:60px 20px;
    }

    .forest-event-card{
        flex-basis:100%;
    }

    .forest-events-section .section-heading h2{
        font-size:30px;
    }

    .forest-events-section .section-heading p{
        font-size:15px;
    }

    .forest-event-image{
        height:220px;
    }

    .forest-events-nav{
        margin-top:24px;
    }

    .forest-events-nav button{
        width:42px;
        height:42px;
        font-size:20px;
    }

}

.events-loading,
.events-empty,
.events-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: #666;
}

.event-no-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3e8;
    font-size: 55px;
}