*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* ===== GOOGLE FONT ===== */

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
}

/* ==========================
   HEADER
========================== */

.header{

    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.container{

    width:92%;
    max-width:1400px;

    margin:auto;

    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ==========================
   LOGO
========================== */

.logo img{
    height:65px;
    display:block;
}

/* ==========================
   NAVIGATION
========================== */

.nav-menu ul{

    display:flex;
    align-items:center;
    gap:12px;

    list-style:none;
}

.nav-menu ul li a{

    text-decoration:none;

    color:#374151;

    font-size:15px;
    font-weight:600;

    padding:12px 20px;

    border-radius:50px;

    transition:.35s ease;
}

/* Hover */

.nav-menu ul li a:hover{

    background:#e8f5e9;

    color:#1b5e20;

    transform:translateY(-2px);
}

/* Active */

.nav-menu ul li a.active{

    background:#2e7d32;

    color:#fff;

    box-shadow:
    0 8px 25px rgba(46,125,50,.25);
}

/* ==========================
   BUTTON
========================== */

.nav-actions{

    display:flex;
    align-items:center;
}

.login-btn{

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #2e7d32,
    #43a047);

    color:#fff;

    font-size:14px;
    font-weight:600;

    transition:.35s;
}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 30px rgba(46,125,50,.30);
}






/*======================

Hero Section 

=======================*/




.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 8%;
    min-height:100vh;
    background:linear-gradient(180deg,#fff 0%,#f4faf5 100%);
}

.hero-content{
    flex:1;
}

.hero-image{
    position:relative;
    max-width:550px;
    margin:auto;
}

.hero-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
}

.hero h1{
    font-size:clamp(2.5rem,5vw,5rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero h1 span{
    display:block;
    color:#2e7d32;
}

.hero p{
    line-height:1.8;
    margin-bottom:35px;
}

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

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:50px;
}
.floating-card{
    position:absolute;
    bottom:25px;
    left:25px;

    width:220px;

    background:rgba(255,255,255,.95);
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.floating-card h3{
    font-size:2rem;
    color:#2e7d32;
}

.floating-card p{
    margin:0;
}

@media(max-width:768px){

    .floating-card{
        position:static;
        width:100%;
        margin-top:20px;
    }

}
/* Tablet */
@media (max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-image{
        order:1;
        width:100%;
    }

    .hero-content{
        order:2;
        width:100%;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }
}

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

    .hero{
        padding:50px 20px;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-stats{
        flex-direction:column;
        gap:20px;
    }

    .floating-card{
        position:static;
        margin-top:20px;
    }

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

.footer{

    background:#ffffff;

    border-top:1px solid #edf2ee;

    margin-top:120px;
}
.footer-top{

    max-width:1400px;

    margin:auto;

    padding:80px 8%;

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr
    1.2fr;

    gap:60px;
}
.footer-brand img{

    width:180px;

    margin-bottom:25px;
}

.footer-brand p{

    color:#64748b;

    line-height:1.8;

    max-width:400px;
}

.footer-links h4,
.footer-contact h4{

    color:#1f2937;

    margin-bottom:25px;

    font-size:20px;
}

.footer-links{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-links a{

    text-decoration:none;

    color:#64748b;

    transition:.3s;
}

.footer-links a:hover{

    color:#2e7d32;

    transform:translateX(5px);
}
.footer-contact p{

    color:#64748b;

    margin-bottom:14px;

    line-height:1.7;
}

.social-icons{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.social-icons a{

    width:45px;
    height:45px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#f4faf5;

    color:#2e7d32;

    text-decoration:none;

    transition:.3s;
}

.social-icons a:hover{

    background:#2e7d32;

    color:white;

    transform:translateY(-4px);
}

.footer-newsletter{

    max-width:1400px;

    margin:auto;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    border-radius:30px;

    padding:50px;

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:50px;
}

.footer-newsletter form{

    display:flex;

    gap:15px;
}

.footer-newsletter input{

    width:320px;

    padding:16px 20px;

    border:none;

    border-radius:50px;

    outline:none;
}

.footer-newsletter button{

    padding:16px 30px;

    border:none;

    border-radius:50px;

    background:white;

    color:#2e7d32;

    font-weight:600;

    cursor:pointer;
}

.footer-bottom{

    border-top:1px solid #edf2ee;

    padding:25px 8%;

    display:flex;

    justify-content:space-between;

    color:#64748b;
}


@media(max-width:992px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

    .footer-newsletter{
        flex-direction:column;
        text-align:center;
    }

    .footer-newsletter form{
        flex-direction:column;
        width:100%;
    }

    .footer-newsletter input{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
    }
}





.about-section{
    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7fbf8
    );
}
.about-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}
.about-content h2{

    font-size:clamp(3rem,5vw,4.8rem);

    line-height:1.1;

    color:#1f2937;

    margin:25px 0;
}

.about-content h2 span{
    color:#2e7d32;
}
.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:40px;
}
.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;
}

.feature-card{

    background:white;

    padding:25px;

    border-radius:20px;

    border:1px solid #edf2ee;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#2e7d32;
}

.feature-card h3{

    color:#2e7d32;

    font-size:2rem;

    margin-bottom:8px;
}

.feature-card span{

    color:#64748b;
}
.about-btn{

    display:inline-block;

    padding:16px 35px;

    background:#2e7d32;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.about-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(46,125,50,.25);
}
.about-media{
    position:relative;
}

.media-card{

    position:relative;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);
}

.media-card video{

    width:100%;

    display:block;
}
.achievement-badge{

    position:absolute;

    left:30px;
    bottom:30px;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    padding:20px 25px;

    border-radius:18px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.achievement-badge h4{

    color:#2e7d32;

    font-size:2rem;

    margin-bottom:5px;
}

.achievement-badge p{

    margin:0;

    color:#64748b;
}
@media(max-width:992px){

    .about-container{
        grid-template-columns:1fr;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }
}



/*===========
timeline section
=============*/

.timeline-section{
    padding:140px 8%;
    background:#03110b;
    overflow:hidden;
}

.section-header-timeline{
    text-align:center;
    color:white;
    margin-bottom:100px;
}

.section-header-timeline span{
    color:#59d66d;
    letter-spacing:2px;
    font-weight:700;
}

.section-heade-timeline h2{
    font-size:60px;
    margin:20px 0;
}

.section-header-timeline p{
    color:#b7c7bc;
}


.timeline{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:40px;
    min-height:600px;
}

.timeline::before{
    content:'';
    position:absolute;
    left:10%;
    bottom:40px;
    width:80%;
    height:4px;
    background:linear-gradient(90deg,#1f7a3d,#64ff86);
    box-shadow:0 0 30px #1f7a3d;
}


.timeline-card{
    width:280px;
    height:260px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    color:white;

    transition:.5s;

    position:relative;

    overflow:hidden;
}

.timeline-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(31,122,61,.15),
        transparent
    );

    opacity:0;
    transition:.5s;
}

.timeline-card:hover::before{
    opacity:1;
}

.timeline-card:hover{
    transform:translateY(-25px);
    box-shadow:
    0 25px 70px rgba(31,122,61,.45);
}

.card1{
    margin-bottom:0;
}

.card2{
    margin-bottom:90px;
}

.card3{
    margin-bottom:180px;
}

.card4{
    margin-bottom:270px;
}

.year{
    display:inline-block;

    padding:10px 25px;

    background:
    linear-gradient(
        135deg,
        #1f7a3d,
        #46c05d
    );

    border-radius:40px;

    font-size:22px;
    font-weight:800;

    margin-bottom:30px;

    box-shadow:
    0 0 25px rgba(70,192,93,.5);
}

.timeline-card h3{
    font-size:34px;
    line-height:1.3;
    margin-bottom:20px;
}

.timeline-card p{
    color:#b7c7bc;
    line-height:1.8;
}


.card1{
    animation:float 4s infinite ease-in-out;
}

.card2{
    animation:float 4s infinite ease-in-out .4s;
}

.card3{
    animation:float 4s infinite ease-in-out .8s;
}

.card4{
    animation:float 4s infinite ease-in-out 1.2s;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

}


@media(max-width:992px){

.timeline{
    flex-direction:column;
    min-height:auto;
}

.timeline::before{
    display:none;
}

.card1,
.card2,
.card3,
.card4{
    margin-bottom:0;
}

.timeline-card{
    width:100%;
}
}


/*================

Gallery Section

=================*/


/*==========================
      Gallery Heading
==========================*/

.section-header-gallery{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    position:relative;
    margin-bottom:80px;
}

.section-header-gallery .section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 28px;

    background:rgba(46,125,50,.08);

    border:1px solid rgba(46,125,50,.15);

    border-radius:50px;

    color:#2e7d32;

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;
}

.section-header-gallery .section-tag::before{
    content:'';

    width:10px;
    height:10px;

    background:#2e7d32;

    border-radius:50%;

    box-shadow:
    0 0 0 8px rgba(46,125,50,.08);
}

.section-header-gallery h2{
    position:relative;

    font-size:clamp(3rem,5vw,4.8rem);

    font-weight:800;

    color:#101828;

    line-height:1.1;

    margin-bottom:25px;
}

.section-header-gallery h2::after{
    content:'';

    position:absolute;

    left:50%;
    bottom:-15px;

    transform:translateX(-50%);

    width:100px;
    height:5px;

    border-radius:50px;

    background:
    linear-gradient(
    90deg,
    #2e7d32,
    #59c86d);

    box-shadow:
    0 8px 20px rgba(46,125,50,.25);
}

.section-header-gallery p{
    max-width:700px;

    margin:40px auto 0;

    color:#64748b;

    font-size:18px;

    line-height:1.9;
}


/* Tablet */

@media(max-width:768px){

.section-header-gallery{
    margin-bottom:60px;
}

.section-header-gallery h2{
    font-size:42px;
}

.section-header-gallery p{
    font-size:16px;
}

}


/* Mobile */

@media(max-width:480px){

.section-header-gallery h2{
    font-size:34px;
}

.section-header-gallery p{
    font-size:15px;
}

}



.gallery-section{
    padding:120px 8%;
    background:linear-gradient(180deg,#ffffff,#f7fbf8);
}

.gallery-layout{
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:25px;
    align-items:start;
}

.gallery-featured{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.gallery-featured img,
.gallery-featured video{
    width:100%;
    display:block;
    object-fit:cover;
    border-radius:30px;
}

.gallery-featured:hover img,
.gallery-featured:hover video{
    transform:scale(1.05);
}

.gallery-content{
    position:absolute;
    left:30px;
    bottom:30px;
    color:white;
    z-index:2;
}

.gallery-content span{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:40px;
    margin-bottom:15px;
}

.gallery-content h3{
    font-size:38px;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    align-content:start;
}
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    aspect-ratio:1/1;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.gallery-item:hover{
    transform:translateY(-8px);
}



.gallery-item img,
.gallery-item video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.gallery-item video{
    background:black;
}


.gallery-content,
.overlay{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    z-index:2;
}
.gallery-item:hover img{
    transform:scale(1.08);
}

.overlay{
    background:rgba(0,0,0,.4);
    backdrop-filter:blur(10px);
    padding:10px 18px;
    border-radius:15px;
    font-size:14px;
    font-weight:600;
}

.gallery-footer{
    margin-top:70px;

    display:flex;

    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    gap:30px;
}

.gallery-stats{
    display:flex;
    gap:60px;
}

.gallery-stats h3{
    font-size:36px;
    color:#2e7d32;
}

.gallery-stats p{
    color:#64748b;
}

.gallery-btn{
    padding:16px 34px;

    background:#2e7d32;
    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.gallery-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(46,125,50,.25);
}

/* =========================
   Tablet Responsive
========================= */
@media (max-width:992px){

    .gallery-section{
        padding:80px 5%;
    }

    .gallery-layout{
        grid-template-columns:1fr;
        gap:25px;
    }

    .gallery-featured{
        height:500px;
    }

    .gallery-content{
        left:25px;
        bottom:25px;
    }

    .gallery-content h3{
        font-size:32px;
        max-width:100%;
    }

    .gallery-grid{
        grid-template-columns:1fr 1fr;
        gap:18px;
    }

    .gallery-item{
        height:250px;
    }

    .gallery-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .gallery-stats{
        gap:40px;
        flex-wrap:wrap;
    }

    .gallery-stats h3{
        font-size:30px;
    }
}

.gallery-featured::after,
.gallery-item::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:40%;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.7)
    );
}

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

    .gallery-section{
        padding:60px 20px;
    }

    .gallery-layout{
    grid-template-columns:1fr;
}

    .gallery-featured{
        height:350px;
        border-radius:20px;
    }

    .gallery-content{
        left:20px;
        bottom:20px;
    }

    .gallery-content span{
        padding:6px 15px;
        font-size:14px;
    }

    .gallery-content h3{
        font-size:26px;
        line-height:1.3;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .gallery-item{
        height:220px;
        border-radius:18px;
    }

    .overlay{
        left:10px;
        right:10px;
        bottom:10px;
        padding:12px 15px;
        font-size:14px;
    }

    .gallery-footer{
        margin-top:40px;
        text-align:center;
        align-items:center;
    }

    .gallery-stats{
        flex-direction:column;
        gap:25px;
        width:100%;
    }

    .gallery-stats h3{
        font-size:28px;
    }

    .gallery-btn{
        width:100%;
        text-align:center;
        padding:15px;
    }
}


/* =========================
   Small Mobile
========================= */
@media (max-width:480px){

    .gallery-section{
        padding:50px 15px;
    }

    .gallery-featured{
        height:280px;
    }

    .gallery-content h3{
        font-size:22px;
    }

    .gallery-item{
        height:180px;
    }

    .gallery-stats h3{
        font-size:24px;
    }

}








/*================
Testimonial Section 
=================*/


.testimonial-section{
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.testimonial-marquee{
    margin-top:80px;
    overflow:hidden;
}

.testimonial-track{

    display:flex;
    gap:24px;

    width:max-content;

    animation:marquee 25s linear infinite;
}

.review-card{

    width:420px;

    background:#fff;

    border:1px solid #e7efe9;

    border-radius:24px;

    padding:25px;

    display:flex;
    gap:18px;

    align-items:flex-start;

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

    transition:.3s;
}

.review-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.review-card img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #eaf7ed;
}

.review-card h4{

    margin-bottom:4px;

    color:#1f2937;
}

.review-card span{

    color:#2e7d32;

    font-size:14px;

    font-weight:600;
}

.review-card p{

    margin-top:12px;

    color:#64748b;

    line-height:1.7;

    font-size:15px;
}

@keyframes marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}


.contact-location{
    padding:120px 0;
    background:#f8fafc;
}

.location-wrapper{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:40px;
    align-items:center;
}

.map-box{
    overflow:hidden;
    border-radius:24px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:500px;
    border:none;
}

.contact-card{
    background:white;

    padding:45px;

    border-radius:24px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.contact-icon{
    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#fff8e1;

    font-size:28px;

    margin-bottom:25px;
}

.contact-card h3{
    color:#1f2937;
    margin-bottom:20px;
    font-size:28px;
}

.contact-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:15px;

    margin-bottom:35px;

    color:#1f2937;
    font-weight:500;
}

.direction-btn{
    display:inline-block;

    padding:15px 35px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f4d03f
    );

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.direction-btn:hover{
    transform:translateY(-4px);
}







.about-hero{

    display:grid;

    grid-template-columns:
    1.1fr 1fr;

    align-items:center;

    gap:80px;

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}


.about-hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(46,125,50,.15),
        transparent 60%
    );
}

.about-hero-content{

    position:relative;

    z-index:2;

    max-width:1000px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:12px 24px;

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    color:white;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:30px;
}

.about-hero h1{

    font-size:
    clamp(3rem,6vw,5.8rem);

    line-height:1.05;

    color:white;

    font-weight:800;

    margin-bottom:25px;
}

.about-hero p{

    max-width:800px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.9;

    color:
    rgba(255,255,255,.85);

    margin-bottom:60px;
}
.hero-stats{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;
}

.hero-stat{

    min-width:220px;

    padding:30px;

    border-radius:24px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid
    rgba(255,255,255,.15);
}

.hero-stat h3{

    font-size:2.5rem;

    color:#8bc34a;

    margin-bottom:8px;
}

.hero-stat span{

    color:white;

    font-size:.95rem;
}
.about-hero::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(76,175,80,.15);

    top:-200px;
    left:-150px;

    filter:blur(80px);
}

.about-hero::after{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(129,199,132,.15);

    right:-150px;
    bottom:-150px;

    filter:blur(80px);
}


.about-left h1{

    font-size:70px;

    line-height:1.05;

    font-weight:800;

    color:#111827;

    margin:20px 0;
}

.about-left h1 span{
    color:#2e7d32;
}

.about-left p{

    font-size:18px;

    color:#64748b;

    line-height:1.9;

    max-width:650px;
}

.about-right{
    position:relative;
}

.about-right img{

    width:100%;

    border-radius:30px;

    height:600px;

    object-fit:cover;

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}
.floating-badge{

    position:absolute;

    bottom:30px;
    left:-30px;

    background:white;

    padding:22px 28px;

    border-radius:18px;

    font-weight:700;

    color:#2e7d32;

    box-shadow:
    0 15px 40px rgba(0,0,0,.10);
}



/*============
company Overview 
==============*/

.company-overview{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;

    background:#ffffff;
}

.overview-left h2{

    font-size:54px;

    line-height:1.15;

    color:#111827;

    margin:20px 0 30px;
}

.overview-left p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;
}

.overview-right{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.overview-card{

    background:#f7fbf8;

    padding:35px;

    border-radius:24px;

    border-left:5px solid #2e7d32;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.overview-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.overview-card h3{

    color:#2e7d32;

    margin-bottom:15px;

    font-size:24px;
}

.overview-card p{

    color:#64748b;

    line-height:1.8;
}




.mission-vision-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #f8fcf9,
        #ffffff
    );
}

.mission-vision-grid{

    max-width:1300px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;
}






.purpose-card{

    position:relative;

    background:white;

    padding:50px;

    border-radius:32px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.purpose-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

.purpose-icon{

    width:75px;
    height:75px;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

    border-radius:20px;

    background:#eaf7ed;

    margin-bottom:25px;
}

.purpose-label{

    display:inline-block;

    color:#2e7d32;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;
}

.purpose-card h3{

    font-size:32px;

    color:#111827;

    margin-bottom:20px;

    line-height:1.2;
}

.purpose-card p{

    color:#64748b;

    line-height:1.9;

    font-size:16px;
}

.vision-card::before{

    content:'';

    position:absolute;

    top:-120px;
    right:-120px;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(46,125,50,.07);
}

.mission-card::before{

    content:'';

    position:absolute;

    bottom:-120px;
    left:-120px;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(102,187,106,.08);
}





.impact-section{
    padding:120px 8%;
    background:#ffffff;
    overflow:hidden;
}

.impact-grid{
    max-width:1400px;
    margin:70px auto 0;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.impact-card{
    background:#fff;
    border-radius:28px;
    padding:45px 30px;
    text-align:center;

    border:1px solid #e5efe7;

    transition:.35s ease;

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

    min-height:320px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.impact-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}

.impact-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    border-radius:50%;

    background:#eaf7ed;

    font-size:34px;
}

.impact-card h3{
    font-size:clamp(2.2rem,4vw,3rem);
    color:#2e7d32;
    margin-bottom:12px;
    font-weight:800;
    line-height:1.1;
}

.impact-card p{
    color:#64748b;
    line-height:1.7;
    max-width:220px;
}

@media(max-width:992px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .impact-grid{
        grid-template-columns:1fr;
    }

}






.why-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.why-flow{

    margin-top:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.why-card{

    flex:1;

    min-width:250px;

    max-width:300px;

    background:white;

    padding:40px 30px;

    border-radius:28px;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 12px 35px rgba(0,0,0,.05);
}

.why-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}

.why-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#eaf7ed;

    border-radius:22px;

    font-size:34px;
}

.why-card h3{

    color:#111827;

    font-size:22px;

    margin-bottom:15px;
}

.why-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;
}

.flow-arrow{

    font-size:36px;

    color:#2e7d32;

    font-weight:700;
}





.process-section{

    padding:120px 8%;

    background:#ffffff;
}

.process-flow{

    margin-top:80px;

    display:flex;

    justify-content:center;
    align-items:flex-start;

    gap:20px;

    flex-wrap:wrap;
}

.process-step{

    flex:1;

    min-width:220px;

    max-width:240px;

    text-align:center;

    background:white;

    padding:35px 25px;

    border-radius:28px;

    position:relative;

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);
}

.process-step:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}

.process-icon{

    width:85px;
    height:85px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#eaf7ed;

    border-radius:24px;

    font-size:38px;
}

.step-number{

    display:inline-block;

    margin-bottom:15px;

    color:#2e7d32;

    font-weight:700;

    font-size:.9rem;

    letter-spacing:1px;
}

.process-step h3{

    color:#111827;

    margin-bottom:15px;

    font-size:1.25rem;
}

.process-step p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;
}

.process-arrow{

    font-size:38px;

    color:#2e7d32;

    margin-top:90px;

    font-weight:700;
}







.leadership-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.leadership-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}

.leader-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.leader-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(46,125,50,.12);
}

.leader-image{

    height:380px;

    overflow:hidden;
}

.leader-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.leader-card:hover img{

    transform:scale(1.08);
}

.leader-content{

    padding:35px;
}

.leader-role{

    display:inline-block;

    background:#eaf7ed;

    color:#2e7d32;

    padding:8px 16px;

    border-radius:50px;

    font-size:.8rem;

    font-weight:600;

    margin-bottom:18px;
}

.leader-content h3{

    font-size:1.7rem;

    color:#111827;

    margin-bottom:12px;
}

.leader-content p{

    color:#64748b;

    line-height:1.8;
}




.solutions-hero{

    position:relative;

    display:grid;

    grid-template-columns:1.1fr 1fr;

    align-items:center;

    gap:80px;

    padding:120px 8%;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

/* Decorative background */

.solutions-hero::before{

    content:'';

    position:absolute;

    width:550px;
    height:550px;

    border-radius:50%;

    background:
    rgba(46,125,50,.06);

    top:-250px;
    right:-150px;

    filter:blur(40px);
}

.solutions-content{

    position:relative;
    z-index:2;
}

.hero-tag{

    display:inline-flex;

    padding:12px 24px;

    border-radius:50px;

    background:#eaf7ed;

    color:#2e7d32;

    font-weight:600;

    margin-bottom:25px;
}

.solutions-content h1{

    font-size:clamp(3rem,6vw,5.5rem);

    line-height:1.05;

    color:#111827;

    font-weight:800;

    margin-bottom:25px;

    max-width:700px;
}

.solutions-content p{

    color:#64748b;

    line-height:1.9;

    font-size:18px;

    max-width:650px;

    margin-bottom:40px;
}
.solution-highlights{
    display:flex;
    gap:25px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.highlight-item{
    background:white;
    padding:22px 28px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

    min-width:180px;
}

.highlight-item strong{
    display:block;
    font-size:2rem;
    color:#2e7d32;
    margin-bottom:8px;
}

.highlight-item span{
    color:#64748b;
    font-size:.95rem;
}
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#2e7d32;
    color:white;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid #2e7d32;
    color:#2e7d32;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#2e7d32;
    color:white;
}
.solutions-image{
    position:relative;
}

.solutions-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}
.floating-solution-card{
    position:absolute;

    left:-40px;
    bottom:40px;

    background:white;

    padding:25px 30px;

    border-radius:22px;

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

    max-width:280px;
}

.floating-solution-card h3{
    color:#2e7d32;
    margin-bottom:10px;
    font-size:1.4rem;
}

.floating-solution-card p{
    color:#64748b;
    line-height:1.7;
    font-size:.95rem;
}
@media(max-width:991px){

    .solutions-hero{
        grid-template-columns:1fr;
    }

    .solutions-image img{
        height:500px;
    }

    .floating-solution-card{
        left:20px;
        bottom:20px;
    }

}






.solutions-overview{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:80px;

    align-items:center;

    background:#ffffff;
}

.overview-content h2{

    font-size:3.5rem;

    line-height:1.15;

    color:#111827;

    margin:20px 0;
}

.overview-content p{

    color:#64748b;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

    max-width:550px;
}

.overview-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 30px;

    border-radius:50px;

    background:#2e7d32;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.overview-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 30px rgba(46,125,50,.25);
}
.solutions-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}
.solution-card{

    background:#fff;

    padding:40px 35px;

    border-radius:28px;

    border:1px solid #e7efe8;

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

    transition:.35s;
}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}
.solution-icon{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#eaf7ed;

    border-radius:22px;

    font-size:34px;

    margin-bottom:25px;
}
.solution-card h3{

    color:#111827;

    font-size:1.4rem;

    margin-bottom:15px;
}
.solution-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;
}
@media(max-width:992px){

    .solutions-overview{

        grid-template-columns:1fr;

        gap:60px;
    }

    .solutions-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .solutions-grid{

        grid-template-columns:1fr;
    }

}









.core-solutions{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fcf9
    );
}

.solution-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-top:100px;
}

.solution-row.reverse{

    direction:rtl;
}

.solution-row.reverse > *{

    direction:ltr;
}
.solution-image{
    position:relative;
}

.solution-image img{
    width:100%;
    height:500px;

    

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}
.solution-content{
    max-width:600px;
}
.solution-number{

    display:inline-flex;

    width:70px;
    height:70px;

    align-items:center;
    justify-content:center;

    background:#eaf7ed;

    border-radius:50%;

    color:#2e7d32;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:30px;
}
.solution-content h3{

    font-size:2.5rem;

    line-height:1.2;

    color:#111827;

    margin-bottom:25px;
}
.solution-content p{

    color:#64748b;

    line-height:1.9;

    font-size:17px;

    margin-bottom:30px;
}
.solution-content ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:18px;
}
.solution-content ul li{

    position:relative;

    padding-left:35px;

    color:#374151;

    font-weight:500;
}
.solution-content ul li::before{

    content:'✓';

    position:absolute;

    left:0;

    color:#2e7d32;

    font-weight:700;
}
.solution-row{

    transition:.4s;
}

.solution-row:hover .solution-image img{

    transform:scale(1.03);
}

.solution-image img{

    transition:.5s;
}
@media(max-width:991px){

    .solution-row{

        grid-template-columns:1fr;

        gap:50px;
    }

    .solution-row.reverse{

        direction:ltr;
    }

    .solution-content h3{

        font-size:2rem;
    }

    .solution-image img{

        height:400px;
    }

}








.technology-section{

    padding:120px 8%;

    display:grid;

    grid-template-columns:
    0.9fr 1.1fr;

    gap:80px;

    align-items:start;

    background:
    linear-gradient(
        180deg,
        #f8fcf9,
        #ffffff
    );
}

.technology-content{

    position:sticky;
    top:120px;
}

.technology-content h2{

    font-size:3.5rem;

    line-height:1.15;

    color:#111827;

    margin:20px 0;
}

.technology-content p{

    color:#64748b;

    line-height:1.9;

    font-size:17px;
}
.technology-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}
.tech-card{

    background:white;

    padding:40px 35px;

    border-radius:28px;

    border:1px solid #e7efe8;

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

    transition:.35s;
}

.tech-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}
.tech-card.featured{

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;
}
.tech-icon{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:#eaf7ed;

    font-size:34px;

    margin-bottom:25px;
}
.tech-card.featured .tech-icon{

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(10px);
}
.tech-card h3{

    font-size:1.4rem;

    color:#111827;

    margin-bottom:15px;

    line-height:1.4;
}
.tech-card.featured h3{

    color:white;
}
.tech-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;
}
.tech-card.featured p{

    color:rgba(255,255,255,.85);
}
@media(max-width:991px){

    .technology-section{

        grid-template-columns:1fr;

        gap:60px;
    }

    .technology-content{

        position:static;
    }

}

@media(max-width:576px){

    .technology-grid{

        grid-template-columns:1fr;
    }

}






.benefits-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.benefits-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}
.benefit-card{

    background:white;

    padding:45px 35px;

    border-radius:28px;

    border:1px solid #e5efe7;

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

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}
.benefit-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #2e7d32,
        #66bb6a
    );
}
.benefit-icon{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#eaf7ed;

    border-radius:22px;

    font-size:34px;

    margin-bottom:25px;
}
.benefit-card h3{

    font-size:1.4rem;

    color:#111827;

    margin-bottom:18px;

    line-height:1.4;
}
.benefit-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;
}
@media(max-width:992px){

    .benefits-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .benefits-grid{

        grid-template-columns:1fr;
    }

}











.impact-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #f4faf5,
        #ffffff
    );
}
.impact-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}
.impact-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}
.impact-card{

    background:white;

    padding:40px 30px;

    border-radius:30px;

    border:1px solid #e6efe8;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.impact-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}
.impact-card.large{

    grid-column:span 2;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #388e3c
    );

    color:white;
}

.impact-card.wide{

    grid-column:span 2;
}
.impact-card h3{

    font-size:4rem;

    font-weight:800;

    color:#2e7d32;

    margin-bottom:15px;

    line-height:1;
}

.impact-card.large h3{

    color:white;
}

.impact-card span{

    display:block;

    font-size:1.1rem;

    font-weight:600;

    margin-bottom:15px;

    color:#111827;
}

.impact-card.large span{

    color:white;
}

.impact-card p{

    color:#64748b;

    line-height:1.8;

    margin-top:15px;
}

.impact-card.large p{

    color:
    rgba(255,255,255,.85);
}
.impact-card.large{

    position:relative;

    overflow:hidden;
}

.impact-card.large::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-120px;
    right:-100px;
}
@media(max-width:991px){

    .impact-grid{

        grid-template-columns:1fr;
    }

    .impact-card.large,
    .impact-card.wide{

        grid-column:span 1;
    }

    .impact-card h3{

        font-size:3rem;
    }
}












.stakeholders-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}
.stakeholders-grid{

    max-width:1200px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    align-items:center;
}
.stakeholder-card{

    background:white;

    padding:35px;

    border-radius:28px;

    text-align:center;

    border:1px solid #e7efe9;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.stakeholder-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}
.center-card{

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;

    transform:scale(1.08);

    position:relative;
}

.center-card h3{

    color:white;
}

.center-card p{

    color:
    rgba(255,255,255,.9);
}
.stakeholder-icon{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:auto;

    margin-bottom:25px;

    background:#eaf7ed;

    border-radius:24px;

    font-size:34px;
}

.center-logo{

    width:110px;
    height:110px;

    margin:auto;

    margin-bottom:20px;

    background:white;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;
}

.center-logo img{

    width:70px;
}
.stakeholder-card h3{

    font-size:1.4rem;

    color:#111827;

    margin-bottom:15px;
}

.stakeholder-card p{

    color:#64748b;

    line-height:1.8;
}
@media(max-width:991px){

    .stakeholders-grid{

        grid-template-columns:1fr;
    }

    .center-card{

        transform:none;
    }
}








.sustainability-section{

    position:relative;

    padding:140px 8%;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #1b5e20,
        #2e7d32,
        #388e3c
    );
}
.sustainability-section::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    top:-250px;
    left:-150px;
}

.sustainability-section::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);

    bottom:-250px;
    right:-150px;
}
.sustainability-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;
}

.sustainability-content{

    text-align:center;

    max-width:850px;

    margin:auto;
}

.sustainability-content h2{

    font-size:clamp(3rem,5vw,5rem);

    color:white;

    line-height:1.1;

    margin:25px 0;
}

.sustainability-content p{

    color:
    rgba(255,255,255,.85);

    line-height:1.9;

    font-size:18px;
}
.commitment-grid{

    margin-top:80px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.commitment-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid
    rgba(255,255,255,.12);

    border-radius:28px;

    padding:35px;

    transition:.35s;
}

.commitment-card:hover{

    transform:
    translateY(-10px);

    background:
    rgba(255,255,255,.12);
}
.commitment-icon{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    border-radius:22px;

    background:
    rgba(255,255,255,.12);

    font-size:34px;
}
.commitment-card h3{

    color:white;

    margin-bottom:15px;

    font-size:1.3rem;
}

.commitment-card p{

    color:
    rgba(255,255,255,.8);

    line-height:1.8;
}
@media(max-width:991px){

    .commitment-grid{

        grid-template-columns:1fr;
    }

    .sustainability-section{

        padding:100px 8%;
    }
}










.cta-section{

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        #1b5e20,
        #2e7d32,
        #388e3c
    );

    position:relative;

    overflow:hidden;
}
.cta-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    top:-200px;
    left:-150px;
}

.cta-section::after{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);

    bottom:-200px;
    right:-100px;
}
.cta-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.2fr .8fr;

    gap:80px;

    align-items:center;
}
.cta-tag{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,.12);

    color:white;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;
}

.cta-content h2{

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1.1;

    color:white;

    margin-bottom:25px;
}

.cta-content p{

    color:
    rgba(255,255,255,.85);

    line-height:1.9;

    font-size:18px;

    max-width:700px;

    margin-bottom:40px;
}
.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.cta-btn-primary{

    background:white;

    color:#2e7d32;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-primary:hover{

    transform:translateY(-4px);
}

.cta-btn-outline{

    border:2px solid white;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.cta-btn-outline:hover{

    background:white;

    color:#2e7d32;
}
.cta-stats{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.cta-stat{

    background:
    rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    border:1px solid
    rgba(255,255,255,.12);

    border-radius:24px;

    padding:30px;
}

.cta-stat h3{

    font-size:2.5rem;

    color:white;

    margin-bottom:10px;
}

.cta-stat span{

    color:
    rgba(255,255,255,.85);
}
@media(max-width:991px){

    .cta-container{

        grid-template-columns:1fr;

        gap:50px;
    }

    .cta-content{

        text-align:center;
    }

    .cta-buttons{

        justify-content:center;
    }
}









.impact-hero{

    position:relative;

    min-height:100vh;

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    align-items:center;

    gap:80px;

    padding:120px 8%;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}
.impact-hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(46,125,50,.05);

    top:-300px;
    right:-250px;
}

.impact-hero::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(102,187,106,.05);

    bottom:-250px;
    left:-150px;
}
.impact-content{

    position:relative;

    z-index:2;
}

.impact-content h1{

    font-size:
    clamp(3.5rem,6vw,6rem);

    line-height:1.05;

    color:#111827;

    margin:25px 0;
}

.impact-content h1 span{

    color:#2e7d32;
}

.impact-content p{

    max-width:650px;

    color:#64748b;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;
}
.impact-actions{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.btn-primary{

    padding:16px 34px;

    background:#2e7d32;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 30px rgba(46,125,50,.25);
}

.btn-secondary{

    padding:16px 34px;

    border:2px solid #2e7d32;

    color:#2e7d32;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{

    background:#2e7d32;

    color:white;
}
.impact-visual{

    position:relative;
}

.impact-visual img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:32px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.10);
}

.impact-card-sec{

    position:absolute;

    background:white;

    padding:22px 28px;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}

.impact-card-sec h3{

    color:#2e7d32;

    font-size:2rem;

    margin-bottom:5px;
}

.impact-card-sec span{

    color:#64748b;

    font-size:14px;
}

.card-1{

    top:40px;
    left:-40px;
}

.card-2{

    bottom:40px;
    right:-30px;
}
@media(max-width:991px){

    .impact-hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:50px;
    }

    .impact-content p{

        margin:auto auto 40px;
    }

    .impact-actions{

        justify-content:center;
    }

    .impact-visual img{

        height:450px;
    }

    .card-1,
    .card-2{

        position:static;

        margin-top:20px;
    }
}







.impact-overview{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;

    padding:120px 8%;

    background:#ffffff;
}

.impact-overview-left h2{

    font-size:3rem;

    line-height:1.2;

    color:#111827;

    margin:20px 0 25px;
}

.impact-overview-left p{

    color:#64748b;

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:20px;
}

.impact-overview-right{

    display:grid;

    gap:25px;
}

.impact-highlight{

    background:#f7fbf7;

    padding:35px;

    border-radius:24px;

    border:1px solid #e4efe5;

    transition:.35s;
}

.impact-highlight:hover{

    transform:translateY(-8px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 40px rgba(46,125,50,.08);
}

.impact-highlight h3{

    color:#2e7d32;

    font-size:1.4rem;

    margin-bottom:12px;
}

.impact-highlight p{

    color:#64748b;

    line-height:1.8;
}






.environment-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.environment-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:70px;
}

.environment-card{

    background:white;

    padding:40px 30px;

    border-radius:28px;

    text-align:center;

    border:1px solid #e6efe7;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.environment-card:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 25px 50px rgba(46,125,50,.10);
}

.impact-icon{

    width:80px;
    height:80px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    border-radius:50%;

    background:#eaf7ed;

    margin-bottom:25px;
}

.environment-card h3{

    color:#111827;

    font-size:1.3rem;

    margin-bottom:15px;
}

.environment-card p{

    color:#64748b;

    line-height:1.8;
}
@media(max-width:991px){

    .environment-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:576px){

    .environment-grid{

        grid-template-columns:1fr;
    }
}





.social-impact-section{

    padding:120px 8%;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

    background:#ffffff;
}

.social-impact-content h2{

    font-size:3rem;

    line-height:1.2;

    color:#111827;

    margin:20px 0 25px;
}

.social-impact-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

    font-size:1.05rem;
}

.social-impact-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;
}

.social-card{

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fcf8
    );

    padding:35px;

    border-radius:24px;

    border:1px solid #e7efe8;

    transition:.35s;
}

.social-card:hover{

    transform:
    translateY(-8px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 40px rgba(46,125,50,.08);
}

.social-card h3{

    color:#2e7d32;

    margin-bottom:15px;

    font-size:1.3rem;
}

.social-card p{

    color:#64748b;

    line-height:1.8;
}
@media(max-width:991px){

    .social-impact-section{

        grid-template-columns:1fr;
    }

    .social-impact-grid{

        grid-template-columns:1fr;
    }
}







.impact-stats-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #f4faf5,
        #ffffff
    );
}

.impact-stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:70px;
}

.impact-stat-card{

    background:white;

    padding:45px 30px;

    border-radius:28px;

    text-align:center;

    border:1px solid #e5efe6;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.impact-stat-card::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #2e7d32,
        #66bb6a
    );
}

.impact-stat-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(46,125,50,.12);
}

.impact-stat-card h3{

    font-size:3.2rem;

    font-weight:800;

    color:#2e7d32;

    margin-bottom:12px;

    line-height:1;
}

.impact-stat-card span{

    display:block;

    font-size:1.1rem;

    font-weight:700;

    color:#111827;

    margin-bottom:15px;
}

.impact-stat-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}
@media(max-width:991px){

    .impact-stats-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:576px){

    .impact-stats-grid{

        grid-template-columns:1fr;
    }
}











.landfill-section{

    padding:120px 8%;

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:80px;

    align-items:center;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.landfill-content h2{

    font-size:3rem;

    line-height:1.2;

    color:#111827;

    margin:20px 0 25px;
}

.landfill-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

    font-size:1.05rem;
}
.landfill-benefits{

    margin-top:35px;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;
}

.benefit-item{

    background:white;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid #e5efe6;

    font-weight:600;

    color:#2e7d32;

    box-shadow:
    0 5px 15px rgba(0,0,0,.04);
}
.landfill-visual{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.impact-box{

    background:white;

    padding:35px;

    border-radius:24px;

    border:1px solid #e5efe6;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.impact-box:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 40px rgba(46,125,50,.10);
}

.impact-box.large{

    grid-column:
    span 2;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;
}

.impact-box.large h3{

    color:white;
}

.impact-box.large span{

    color:
    rgba(255,255,255,.9);
}
.impact-box h3{

    font-size:2rem;

    color:#2e7d32;

    margin-bottom:10px;
}

.impact-box span{

    color:#64748b;

    font-size:.95rem;
}
@media(max-width:991px){

    .landfill-section{

        grid-template-columns:1fr;
    }

    .landfill-visual{

        grid-template-columns:1fr;
    }

    .impact-box.large{

        grid-column:auto;
    }

    .landfill-benefits{

        grid-template-columns:1fr;
    }
}








.energy-section{

    padding:120px 8%;

    background:#ffffff;
}
.energy-process{

    margin-top:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}
.process-card{

    width:260px;

    background:white;

    padding:35px 25px;

    border-radius:24px;

    text-align:center;

    border:1px solid #e7efe8;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.process-card:hover{

    transform:
    translateY(-8px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 40px rgba(46,125,50,.10);
}
.process-icon{

    width:80px;
    height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:auto;

    margin-bottom:20px;

    background:#eaf7ed;

    border-radius:22px;

    font-size:34px;
}
.process-card h3{

    color:#111827;

    margin-bottom:12px;

    font-size:1.2rem;
}

.process-card p{

    color:#64748b;

    line-height:1.7;

    font-size:.95rem;
}
.process-arrow{

    font-size:2rem;

    color:#2e7d32;

    font-weight:700;
}
.energy-highlight{

    margin-top:80px;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    border-radius:32px;

    padding:50px;

    display:grid;

    grid-template-columns:
    280px 1fr;

    gap:50px;

    align-items:center;
}

.energy-stat{

    text-align:center;
}

.energy-stat h3{

    font-size:4rem;

    color:white;

    margin-bottom:10px;
}

.energy-stat span{

    color:
    rgba(255,255,255,.85);
}

.energy-text h4{

    color:white;

    font-size:2rem;

    margin-bottom:15px;
}

.energy-text p{

    color:
    rgba(255,255,255,.9);

    line-height:1.9;
}
@media(max-width:991px){

    .energy-highlight{

        grid-template-columns:1fr;

        text-align:center;
    }

    .process-arrow{

        display:none;
    }
}







.community-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}
.community-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    1.3fr 1fr 1fr;

    gap:25px;
}
.community-feature{

    grid-row:
    span 2;

    border-radius:32px;

    padding:50px;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;

    display:flex;

    align-items:center;
}
.community-feature h3{

    font-size:2.2rem;

    line-height:1.3;

    margin-bottom:20px;
}

.community-feature p{

    color:
    rgba(255,255,255,.9);

    line-height:1.9;

    margin-bottom:25px;
}

.community-feature ul{

    list-style:none;
}

.community-feature li{

    margin-bottom:12px;

    position:relative;

    padding-left:25px;
}

.community-feature li::before{

    content:'✓';

    position:absolute;

    left:0;

    color:#c8e6c9;

    font-weight:700;
}
.community-card{

    background:white;

    padding:35px;

    border-radius:24px;

    border:1px solid #e7efe8;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.community-card:hover{

    transform:
    translateY(-8px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 40px rgba(46,125,50,.10);
}
.community-icon{

    width:75px;
    height:75px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#eaf7ed;

    border-radius:20px;

    font-size:30px;

    margin-bottom:20px;
}
.community-card h3{

    color:#111827;

    margin-bottom:12px;

    font-size:1.25rem;
}

.community-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}

@media(max-width:991px){

    .community-grid{

        grid-template-columns:1fr;
    }

    .community-feature{

        grid-row:auto;
    }
}








.sdg-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.sdg-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:70px;
}

.sdg-card{

    background:white;

    padding:35px;

    border-radius:28px;

    border:1px solid #e7efe8;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;
}

.sdg-card:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 45px rgba(46,125,50,.12);
}

.sdg-card::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #2e7d32,
        #66bb6a
    );
}

.sdg-number{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:75px;
    height:75px;

    border-radius:20px;

    background:#eaf7ed;

    color:#2e7d32;

    font-size:1.3rem;

    font-weight:800;

    margin-bottom:25px;
}

.sdg-card h3{

    font-size:1.25rem;

    color:#111827;

    line-height:1.4;

    margin-bottom:15px;
}

.sdg-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}
@media(max-width:991px){

    .sdg-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:576px){

    .sdg-grid{

        grid-template-columns:1fr;
    }
}









.impact-timeline-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.impact-timeline{

    max-width:1000px;

    margin:80px auto 0;

    position:relative;
}

.impact-timeline::before{

    content:'';

    position:absolute;

    left:120px;

    top:0;
    bottom:0;

    width:4px;

    background:
    linear-gradient(
        #2e7d32,
        #66bb6a
    );

    border-radius:20px;
}
.timeline-item{

    display:flex;

    gap:50px;

    position:relative;

    margin-bottom:60px;
}
.timeline-year{

    min-width:90px;
    height:90px;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:700;

    font-size:1.1rem;

    position:relative;

    z-index:2;

    box-shadow:
    0 15px 35px rgba(46,125,50,.25);
}
.timeline-content{

    flex:1;

    background:white;

    padding:35px;

    border-radius:24px;

    border:1px solid #e5efe6;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.35s;
}

.timeline-content:hover{

    transform:
    translateY(-8px);

    border-color:#2e7d32;

    box-shadow:
    0 25px 45px rgba(46,125,50,.10);
}

.timeline-content h3{

    color:#111827;

    margin-bottom:12px;

    font-size:1.4rem;
}

.timeline-content p{

    color:#64748b;

    line-height:1.8;
}
@media(max-width:768px){

    .impact-timeline::before{

        left:40px;
    }

    .timeline-item{

        gap:20px;
    }

    .timeline-year{

        min-width:70px;
        height:70px;

        font-size:.9rem;
    }

    .timeline-content{

        padding:25px;
    }
}






.future-impact-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}
.future-goals-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:70px;
}
.goal-card{

    position:relative;

    background:white;

    padding:40px 30px;

    border-radius:28px;

    border:1px solid #e6efe7;

    transition:.35s;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.goal-card:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 25px 50px rgba(46,125,50,.10);
}
.goal-number{

    font-size:4rem;

    font-weight:800;

    line-height:1;

    color:#eaf7ed;

    margin-bottom:20px;
}
.goal-card h3{

    color:#111827;

    font-size:1.3rem;

    margin-bottom:15px;

    line-height:1.4;
}

.goal-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}
.future-vision{

    margin-top:80px;

    border-radius:36px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    padding:70px;
}
.future-vision span{

    display:inline-block;

    color:
    rgba(255,255,255,.8);

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;
}

.future-vision h3{

    color:white;

    font-size:3rem;

    max-width:800px;

    line-height:1.2;

    margin-bottom:25px;
}

.future-vision p{

    color:
    rgba(255,255,255,.9);

    max-width:800px;

    line-height:1.9;

    font-size:1.05rem;
}
@media(max-width:991px){

    .future-goals-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .future-vision{

        padding:50px 35px;
    }

    .future-vision h3{

        font-size:2.2rem;
    }
}

@media(max-width:576px){

    .future-goals-grid{

        grid-template-columns:1fr;
    }
}




.impact-cta{

    margin:120px 8%;

    padding:80px;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        #1b5e20,
        #2e7d32,
        #43a047
    );

    display:grid;

    grid-template-columns:
    1.3fr .7fr;

    gap:60px;

    align-items:center;

    position:relative;

    overflow:hidden;
}
.impact-cta::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-250px;
    right:-150px;
}

.impact-cta::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    bottom:-150px;
    left:-100px;
}
.cta-content{

    position:relative;

    z-index:2;
}

.cta-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:
    rgba(255,255,255,.15);

    color:white;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;
}

.cta-content h2{

    font-size:3.5rem;

    color:white;

    line-height:1.15;

    margin-bottom:25px;
}

.cta-content p{

    color:
    rgba(255,255,255,.9);

    font-size:1.1rem;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;
}
.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.cta-primary{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    background:white;

    color:#2e7d32;

    font-weight:700;

    transition:.35s;
}

.cta-primary:hover{

    transform:
    translateY(-4px);
}

.cta-secondary{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.3);

    color:white;

    font-weight:600;

    transition:.35s;
}

.cta-secondary:hover{

    background:white;

    color:#2e7d32;
}
.cta-stats{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    gap:20px;
}

.cta-stat{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:30px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.15);
}

.cta-stat h3{

    color:white;

    font-size:2rem;

    margin-bottom:8px;
}

.cta-stat span{

    color:
    rgba(255,255,255,.85);
}
.cta-stats{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    gap:20px;
}

.cta-stat{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:30px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.15);
}

.cta-stat h3{

    color:white;

    font-size:2rem;

    margin-bottom:8px;
}

.cta-stat span{

    color:
    rgba(255,255,255,.85);
}



.insights-hero{

    display:grid;

    grid-template-columns:
    1fr 550px;

    gap:70px;

    align-items:center;

    min-height:100vh;

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f4faf5 100%
    );

    position:relative;

    overflow:hidden;
}
.insights-hero::before{

    content:'';

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    rgba(46,125,50,.06);

    right:-250px;
    top:-250px;
}
.insights-content{

    position:relative;

    z-index:2;
}

.insights-content h1{

    font-size:
    clamp(3rem,6vw,5.8rem);

    line-height:1.05;

    color:#111827;

    margin:25px 0;
}

.insights-content h1 span{

    color:#2e7d32;
}

.insights-content p{

    font-size:1.1rem;

    line-height:1.9;

    color:#64748b;

    max-width:650px;

    margin-bottom:40px;
}
.featured-insight{

    background:white;

    border-radius:32px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    z-index:2;
}

.featured-insight:hover{

    transform:
    translateY(-10px);
}
.featured-image img{

    width:100%;

    height:280px;

    

    display:block;
}
.featured-content{

    padding:35px;
}

.article-category{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#eaf7ed;

    color:#2e7d32;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:18px;
}

.featured-content h3{

    font-size:1.7rem;

    color:#111827;

    line-height:1.4;

    margin-bottom:15px;
}

.featured-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:20px;
}

.featured-content a{

    color:#2e7d32;

    text-decoration:none;

    font-weight:700;
}
@media(max-width:991px){

    .insights-hero{

        grid-template-columns:1fr;

        text-align:center;
    }

    .insights-content p{

        margin:auto auto 40px;
    }

    .featured-insight{

        max-width:650px;

        margin:auto;
    }
}


.knowledge-overview{

    padding:120px 8%;

    background:#ffffff;
}

.knowledge-container{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

    max-width:1400px;

    margin:auto;
}
.knowledge-left h2{

    font-size:3rem;

    color:#111827;

    line-height:1.2;

    margin:20px 0 25px;
}

.knowledge-left p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

    font-size:1rem;
}
.knowledge-right{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;
}
.knowledge-card{

    background:white;

    padding:35px;

    border-radius:28px;

    border:1px solid #e6efe7;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.knowledge-card:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 40px rgba(46,125,50,.10);
}
.knowledge-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:#eaf7ed;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.8rem;

    margin-bottom:20px;
}
.knowledge-card h3{

    color:#111827;

    margin-bottom:12px;

    font-size:1.2rem;
}

.knowledge-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}
@media(max-width:991px){

    .knowledge-container{

        grid-template-columns:1fr;
    }

    .knowledge-right{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:576px){

    .knowledge-right{

        grid-template-columns:1fr;
    }

    .knowledge-left h2{

        font-size:2.2rem;
    }
}

.featured-insights{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.insight-layout{

    display:grid;

    grid-template-columns:
    1.4fr .8fr;

    gap:35px;

    margin-top:70px;

    max-width:1400px;

    margin-inline:auto;
}
.main-insight{

    background:white;

    border-radius:32px;

    overflow:hidden;

    border:1px solid #e6efe7;

    transition:.35s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.main-insight:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px rgba(46,125,50,.12);
}
.main-insight img{

    width:100%;

    height:420px;

  

    display:block;
}
.main-insight-content{

    padding:40px;
}

.insight-category{

    display:inline-block;

    padding:8px 18px;

    background:#eaf7ed;

    color:#2e7d32;

    border-radius:50px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;
}

.main-insight-content h3{

    font-size:2rem;

    line-height:1.3;

    color:#111827;

    margin-bottom:18px;
}

.main-insight-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:25px;
}

.main-insight-content a{

    text-decoration:none;

    color:#2e7d32;

    font-weight:700;
}
.side-insights{

    display:flex;

    flex-direction:column;

    gap:25px;
}
.mini-insight{

    background:white;

    padding:30px;

    border-radius:24px;

    border:1px solid #e6efe7;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.mini-insight:hover{

    transform:
    translateX(8px);

    border-color:#2e7d32;
}
.mini-insight span{

    color:#2e7d32;

    font-size:.85rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;
}

.mini-insight h4{

    margin:15px 0;

    font-size:1.2rem;

    line-height:1.5;

    color:#111827;
}

.mini-insight a{

    text-decoration:none;

    color:#2e7d32;

    font-weight:700;
}
@media(max-width:991px){

    .insight-layout{

        grid-template-columns:1fr;
    }

    .main-insight img{

        height:320px;
    }
}

@media(max-width:576px){

    .main-insight-content{

        padding:25px;
    }

    .main-insight-content h3{

        font-size:1.5rem;
    }
}


.latest-articles{

    padding:120px 8%;

    background:#ffffff;
}

.articles-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:35px;

    margin-top:70px;
}
.article-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    border:1px solid #e7efe8;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.article-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(46,125,50,.12);

    border-color:#2e7d32;
}
.article-image{

    overflow:hidden;
}

.article-image img{

    width:100%;

    height:280px;

    

    transition:.6s;
}

.article-card:hover img{

    transform:scale(1.08);
}
.article-content{

    padding:30px;
}

.article-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#eaf7ed;

    color:#2e7d32;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:18px;
}

.article-content h3{

    font-size:1.5rem;

    color:#111827;

    line-height:1.4;

    margin-bottom:15px;
}

.article-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;
}
.article-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:20px;

    border-top:1px solid #eef3ef;
}

.article-footer span{

    color:#94a3b8;

    font-size:.9rem;
}

.article-footer a{

    text-decoration:none;

    color:#2e7d32;

    font-weight:700;
}
@media(max-width:991px){

    .articles-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .article-image img{

        height:220px;
    }

    .article-content h3{

        font-size:1.25rem;
    }

    .article-footer{

        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }
}





.knowledge-hub{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #f4faf5,
        #ffffff
    );
}
.knowledge-process{

    margin-top:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}
.process-step{

    flex:1;

    min-width:250px;

    background:white;

    padding:35px;

    border-radius:28px;

    text-align:center;

    border:1px solid #e5efe6;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.35s;
}

.process-step:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 45px rgba(46,125,50,.10);
}
.step-number{

    width:80px;
    height:80px;

    margin:auto auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.4rem;

    font-weight:700;
}
.process-step h3{

    color:#111827;

    margin-bottom:15px;

    font-size:1.3rem;
}

.process-step p{

    color:#64748b;

    line-height:1.8;
}
.process-arrow{

    font-size:2rem;

    color:#2e7d32;

    font-weight:700;
}
.knowledge-highlight{

    margin-top:80px;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    border-radius:32px;

    padding:60px;

    display:grid;

    grid-template-columns:
    1fr auto;

    gap:50px;

    align-items:center;
}
.highlight-content h3{

    color:white;

    font-size:2rem;

    margin-bottom:15px;
}

.highlight-content p{

    color:
    rgba(255,255,255,.9);

    line-height:1.9;

    max-width:700px;
}
.highlight-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.mini-stat{

    min-width:160px;

    text-align:center;

    padding:25px;

    border-radius:20px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(10px);
}

.mini-stat h4{

    color:white;

    font-size:2rem;

    margin-bottom:8px;
}

.mini-stat span{

    color:
    rgba(255,255,255,.85);

    font-size:.9rem;
}
@media(max-width:991px){

    .knowledge-highlight{

        grid-template-columns:1fr;
    }

    .highlight-stats{

        justify-content:center;
    }

    .process-arrow{

        display:none;
    }
}

@media(max-width:576px){

    .knowledge-highlight{

        padding:40px 25px;
    }

    .highlight-content h3{

        font-size:1.7rem;
    }
}






.industry-trends{

    padding:120px 8%;

    background:#ffffff;
}

.trends-layout{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    1.2fr 1fr 1fr;

    gap:30px;
}
.featured-trend{

    grid-row:span 2;

    padding:50px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;

    display:flex;

    flex-direction:column;

    justify-content:center;

    position:relative;

    overflow:hidden;
}

.featured-trend::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-100px;
    right:-100px;
}
.trend-badge{

    display:inline-block;

    width:max-content;

    padding:10px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,.15);

    font-size:.85rem;

    font-weight:600;

    margin-bottom:25px;
}

.featured-trend h3{

    font-size:2.4rem;

    line-height:1.25;

    margin-bottom:20px;
}

.featured-trend p{

    line-height:1.9;

    margin-bottom:30px;

    color:
    rgba(255,255,255,.9);
}

.featured-trend a{

    color:white;

    text-decoration:none;

    font-weight:700;
}
.trend-card{

    background:white;

    padding:35px;

    border-radius:28px;

    border:1px solid #e5efe6;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.trend-card:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 40px rgba(46,125,50,.10);
}
.trend-icon{

    width:75px;
    height:75px;

    border-radius:22px;

    background:#eaf7ed;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:2rem;

    margin-bottom:20px;
}
.trend-card h4{

    color:#111827;

    margin-bottom:12px;

    font-size:1.2rem;
}

.trend-card p{

    color:#64748b;

    line-height:1.8;

    font-size:.95rem;
}
@media(max-width:991px){

    .trends-layout{

        grid-template-columns:
        repeat(2,1fr);
    }

    .featured-trend{

        grid-column:span 2;
        grid-row:auto;
    }
}

@media(max-width:576px){

    .trends-layout{

        grid-template-columns:1fr;
    }

    .featured-trend{

        grid-column:auto;
    }

    .featured-trend h3{

        font-size:1.8rem;
    }
}






.reports-section{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.reports-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}
.report-card{

    background:white;

    padding:35px;

    border-radius:28px;

    border:1px solid #e6efe7;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    display:flex;

    flex-direction:column;
}

.report-card:hover{

    transform:
    translateY(-10px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 45px rgba(46,125,50,.12);
}
.report-icon{

    width:75px;
    height:75px;

    border-radius:20px;

    background:#eaf7ed;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:2rem;

    margin-bottom:20px;
}
.report-type{

    color:#2e7d32;

    font-size:.85rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:12px;
}

.report-card h3{

    color:#111827;

    font-size:1.3rem;

    line-height:1.4;

    margin-bottom:15px;
}

.report-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;

    flex:1;
}
.report-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:20px;

    border-top:1px solid #eef3ef;
}

.report-footer span{

    color:#94a3b8;

    font-size:.9rem;
}

.report-footer a{

    text-decoration:none;

    color:#2e7d32;

    font-weight:700;

    transition:.3s;
}

.report-footer a:hover{

    transform:translateX(4px);
}
@media(max-width:1200px){

    .reports-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .reports-grid{

        grid-template-columns:1fr;
    }
}








.media-coverage{

    padding:120px 8%;

    background:#ffffff;
}

.media-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr;

    gap:30px;
}
.featured-news{

    grid-row:span 2;

    background:white;

    border-radius:32px;

    overflow:hidden;

    border:1px solid #e6efe7;

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);

    transition:.35s;
}

.featured-news:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(46,125,50,.12);
}
.featured-news img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;
}
.featured-content{

    padding:35px;
}

.featured-content span{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#eaf7ed;

    color:#2e7d32;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;
}

.featured-content h3{

    font-size:2rem;

    line-height:1.35;

    color:#111827;

    margin-bottom:18px;
}

.featured-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:25px;
}

.featured-content a{

    color:#2e7d32;

    text-decoration:none;

    font-weight:700;
}
.media-card{

    background:white;

    padding:30px;

    border-radius:24px;

    border:1px solid #e6efe7;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.media-card:hover{

    transform:
    translateY(-8px);

    border-color:#2e7d32;

    box-shadow:
    0 20px 45px rgba(46,125,50,.10);
}
.media-date{

    display:inline-block;

    padding:8px 16px;

    border-radius:50px;

    background:#f4faf5;

    color:#2e7d32;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:18px;
}

.media-card h4{

    color:#111827;

    font-size:1.2rem;

    line-height:1.5;

    margin-bottom:15px;
}

.media-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:20px;
}

.media-card a{

    text-decoration:none;

    color:#2e7d32;

    font-weight:700;
}
@media(max-width:991px){

    .media-grid{

        grid-template-columns:1fr;
    }

    .featured-news{

        grid-row:auto;
    }
}




.newsletter-section{

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        #f4faf5 0%,
        #ffffff 100%
    );
}

.newsletter-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:80px;

    align-items:center;
}
.newsletter-content h2{

    font-size:3rem;

    line-height:1.2;

    color:#111827;

    margin:20px 0 25px;
}

.newsletter-content p{

    color:#64748b;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;
}
.newsletter-benefits{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;
}

.benefit-item{

    background:white;

    padding:18px 22px;

    border-radius:16px;

    border:1px solid #e6efe7;

    font-weight:600;

    color:#111827;

    transition:.3s;
}

.benefit-item:hover{

    transform:translateY(-4px);

    border-color:#2e7d32;
}
.newsletter-card{

    background:white;

    padding:50px;

    border-radius:32px;

    border:1px solid #e6efe7;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);
}
.newsletter-icon{

    width:80px;
    height:80px;

    border-radius:24px;

    background:#eaf7ed;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:2rem;

    margin-bottom:25px;
}

.newsletter-card h3{

    font-size:2rem;

    color:#111827;

    margin-bottom:15px;
}

.newsletter-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:30px;
}
.newsletter-form{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.newsletter-form input{

    height:60px;

    border:1px solid #dfe8e0;

    border-radius:16px;

    padding:0 20px;

    font-size:1rem;

    outline:none;

    transition:.3s;
}

.newsletter-form input:focus{

    border-color:#2e7d32;

    box-shadow:
    0 0 0 4px rgba(46,125,50,.08);
}

.newsletter-form button{

    height:60px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #2e7d32,
        #43a047
    );

    color:white;

    font-size:1rem;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.newsletter-form button:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(46,125,50,.25);
}
.newsletter-card small{

    display:block;

    margin-top:20px;

    color:#94a3b8;

    text-align:center;
}
@media(max-width:991px){

    .newsletter-container{

        grid-template-columns:1fr;
    }

    .newsletter-content h2{

        font-size:2.4rem;
    }
}

@media(max-width:576px){

    .newsletter-benefits{

        grid-template-columns:1fr;
    }

    .newsletter-card{

        padding:35px 25px;
    }

    .newsletter-content h2{

        font-size:2rem;
    }
}
.newsletter-section{
    position:relative;
    overflow:hidden;
}

.newsletter-section::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(46,125,50,.05);

    top:-200px;
    right:-150px;
}







.insights-cta{

    position:relative;

    overflow:hidden;

    margin:120px 8%;

    padding:90px 70px;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        #1b5e20,
        #2e7d32,
        #43a047
    );

    display:grid;

    grid-template-columns:
    1.2fr .8fr;

    gap:60px;

    align-items:center;
}
.insights-cta::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    top:-180px;
    right:-120px;
}

.insights-cta::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    bottom:-120px;
    left:-120px;
}
.cta-content{

    position:relative;
    z-index:2;
}

.cta-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,.15);

    color:white;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;
}

.cta-content h2{

    color:white;

    font-size:3.4rem;

    line-height:1.15;

    margin-bottom:25px;
}

.cta-content p{

    color:
    rgba(255,255,255,.88);

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;
}
.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.cta-btn-primary{

    text-decoration:none;

    background:white;

    color:#2e7d32;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-primary:hover{

    transform:translateY(-4px);
}

.cta-btn-secondary{

    text-decoration:none;

    border:2px solid rgba(255,255,255,.3);

    color:white;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-secondary:hover{

    background:
    rgba(255,255,255,.12);
}
.cta-stats{

    position:relative;
    z-index:2;

    display:flex;

    flex-direction:column;

    gap:20px;
}

.cta-stat{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid
    rgba(255,255,255,.15);

    padding:25px;

    border-radius:24px;
}

.cta-stat h3{

    color:white;

    font-size:2rem;

    margin-bottom:8px;
}

.cta-stat span{

    color:
    rgba(255,255,255,.85);
}
@media(max-width:991px){

    .insights-cta{

        grid-template-columns:1fr;

        padding:70px 35px;
    }

    .cta-content h2{

        font-size:2.5rem;
    }

    .cta-stats{

        flex-direction:row;

        flex-wrap:wrap;
    }
}

@media(max-width:576px){

    .cta-content h2{

        font-size:2rem;
    }

    .cta-buttons{

        flex-direction:column;
    }

    .cta-btn-primary,
    .cta-btn-secondary{

        text-align:center;
    }
}



.contact-hero{

    padding:140px 8% 100px;

    text-align:center;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f4faf5
    );
}

.contact-hero h1{

    font-size:
    clamp(3rem,6vw,5.5rem);

    line-height:1.05;

    margin:25px 0;
}

.contact-hero h1 span{

    color:#2e7d32;
}

.contact-hero p{

    max-width:800px;

    margin:auto;

    color:#64748b;

    line-height:1.9;

    font-size:1.1rem;
}

.hero-contact-stats{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:50px;

    flex-wrap:wrap;
}

.hero-stat{

    background:white;

    padding:25px 35px;

    border-radius:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.hero-stat h3{

    color:#2e7d32;

    font-size:2rem;
}







.contact-info-section{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    margin-top:-30px;
}

.info-card{

    background:white;

    padding:35px;

    border-radius:24px;

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

    transition:.3s;
}

.info-card:hover{

    transform:translateY(-8px);
}

.info-card h3{

    color:#2e7d32;

    margin-bottom:15px;
}






.map-wrapper{

    width:90%;
    max-width:1400px;

    margin:auto;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.map-wrapper iframe{

    width:100%;

    height:500px;

    border:none;
}


/* =========================
   CONTACT FORM SECTION
========================= */

.contact-form-section{
    width:90%;
    max-width:1400px;
    margin:100px auto;
    
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:40px;
}

.contact-form{
    background:#fff;
    padding:50px;
    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.06);
}

.contact-form h2{
    font-size:42px;
    color:#111827;
    margin-bottom:35px;
}

.contact-form form{
    display:grid;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:18px 22px;

    border:1px solid #e5e7eb;

    border-radius:14px;

    font-size:16px;

    outline:none;

    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#2e7d32;
    box-shadow:
    0 0 0 4px rgba(46,125,50,.08);
}

.contact-form textarea{
    min-height:180px;
    resize:none;
}

.contact-form button{
    width:max-content;

    padding:16px 36px;

    border:none;
    cursor:pointer;

    border-radius:50px;

    background:#2e7d32;
    color:white;

    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-4px);

    box-shadow:
    0 15px 30px rgba(46,125,50,.25);
}

/* =========================
   SIDE INFO
========================= */

.contact-side{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    border-left:5px solid #2e7d32;
}

.contact-box h3{
    color:#111827;
    margin-bottom:15px;
    font-size:24px;
}

.contact-box p{
    color:#64748b;
    line-height:1.8;
}

/* =========================
   OFFICE SECTION
========================= */

.offices-section{
    padding:100px 0;
    background:#f8fafc;
}

.office-grid{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.office-card{
    background:white;

    padding:40px;

    border-radius:24px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.35s;
}

.office-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

.office-card h3{
    font-size:26px;
    color:#2e7d32;
    margin-bottom:20px;
}

.office-card p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

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

@media(max-width:992px){

    .contact-form-section{
        grid-template-columns:1fr;
    }

    .office-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-form{
        padding:35px;
    }

    .contact-form h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .office-grid{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:25px;
    }

    .contact-form h2{
        font-size:28px;
    }

    .office-card{
        padding:30px;
    }
}




/* Modal Background */
.login-modal{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

/* Show Modal */
.login-modal.active{
    display:flex;
}

/* Form Box */
.login-box{
    width:350px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    position:relative;
}

/* Close button */
.close-login{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
}


.login-box{
    width:90%;
    max-width:430px;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.login-box h2{
    font-size:28px;
    color:#2e7d32;
    margin-bottom:5px;
}

.login-box p{
    color:#64748b;
    margin-bottom:20px;
    font-size:14px;
}

.input-group{
    margin-bottom:15px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:13px 16px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    font-size:14px;
    font-family:Poppins,sans-serif;
}

.input-group textarea{
    resize:none;
    height:90px;
}

.input-group input:focus,
.input-group textarea:focus{
    outline:none;
    border-color:#2e7d32;
}

.login-box button{
    width:100%;
    padding:14px;
    border:none;
    background:#2e7d32;
    color:white;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.close-login{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#777;
}





.captcha-container{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.captcha-box{
    flex:1;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#f1f5f9;
    border-radius:12px;

    font-size:22px;
    font-weight:700;
    letter-spacing:4px;
    color:#2e7d32;
    user-select:none;
}

.refresh-captcha{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#2e7d32;
    color:white;
    text-decoration:none;

    border-radius:12px;
    font-size:24px;

    transition:.3s;
}

.refresh-captcha:hover{
    background:#1b5e20;
}


html{
    scroll-behavior: smooth;
}


.hero-slider{
    position:relative;
}

.slide{
    position:relative;
}

.slide img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.slide-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:white;
    max-width:600px;
}

.slide-content h1{
    font-size:55px;
    margin-bottom:20px;
}

.slide-content p{
    font-size:18px;
    line-height:1.7;
}

.slide-content a{
    display:inline-block;
    background:#0A7A5A;
    color:white;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    margin-top:20px;
}

.mySlider{
    width:100%;
    height:90vh;
}

.swiper-slide{
    position:relative;
}

.swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:white;
    z-index:10;
}

.slide-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.slide-content p{
    font-size:18px;
    width:500px;
    line-height:1.8;
    margin-bottom:30px;
}

.slider-btn{
    background:#0A7A5A;
    color:white;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
}
.section-header{
    color:black;
}