/*==================================================
                    HEADER
==================================================*/


body{
    font-family:'Poppins',sans-serif;
}



html,
body{
    overflow-x: hidden;
    width: 100%;
}

/*==========================
        TOP BAR
===========================*/

.top-bar{
    background:var(--primary);
    color:#fff;
    height:45px;
    display:flex;
    align-items:center;
    font-size:14px;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-contact a:hover{
    color:#d9f5c7;
}

.top-contact i{
    color:#9dd26d;
    margin-right:6px;
}

.top-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:20px;
}

.top-link{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-link:hover{
    color:#d9f5c7;
}

.language-select{
    background:transparent;
    border:none;
    color:#fff;
    cursor:pointer;
    outline:none;
}

.language-select option{
    color:#222;
}



/* 

/////////////////////////////////////////////////// */




/*=========================================
PREMIUM HERO
=========================================*/

.hero-section{
    position:relative;
    background:url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
    min-height:70vh;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(0,0,0,.78),
    rgba(0,0,0,.45));
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.min-vh-70{
    min-height:60vh;
    display:flex;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#2E7D32;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.hero-title{
    font-size:42px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin:8px 0;
}

.hero-text{
    color:#e5e5e5;
    font-size:13px;
    line-height:18px;
    max-width:560px;
    margin-bottom:15px;
}

.hero-btn,
.hero-btn-outline{
    padding:7px 26px;
    font-size:15px;
    font-weight:600;
    border-radius:6px;
    transition:.3s;
}

.hero-btn{
    background:#2E7D32;
    color:#fff;
}

.hero-btn:hover{
    background:#1f6b29;
    color:#fff;
}

.hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#222;
}

/*==========================
Laptop
==========================*/

@media(max-width:1200px){

.hero-title{
    font-size:26px;
}

.hero-section{
    min-height:60vh;
}

}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

.hero-section{
    min-height:460px;
    text-align:center;
}

.min-vh-70{
    min-height:auto;
}

.hero-title{
    font-size:28px;
}

.hero-text{
    margin:0 auto 20px;
}

.hero-section .d-flex{
    justify-content:center;
}

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

.hero-section{
    min-height:400px;
    padding:50px 0;
}

.hero-title{
    font-size:30px;
}

.hero-text{
    font-size:12px;
    line-height:16px;
}

.hero-badge{
    font-size:12px;
    padding:7px 16px;
}

/* .hero-btn,
.hero-btn-outline{
    width:50%;
    padding:12px;
} */



}



/* ==========================
FEATURES
========================== */

.feature-wrapper{

    margin-top:-90px;

    position:relative;

    z-index:50;

}

.feature-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-box i{

    font-size:42px;

    color:#2E7D32;

    margin-bottom:18px;

}

.feature-box h5{

    font-weight:700;

}

.feature-box p{

    color:#777;

}



/* ==========================
STATS
========================== */

.stats-section{

    padding:90px 0;

}

.stat-item h2{

    color:#2E7D32;

    font-size:55px;

    font-weight:800;

}

.stat-item span{

    color:#666;

    font-size:18px;

}



/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

.hero-title{

font-size:36px;

}

.hero-section{

min-height:300px;

}

.feature-wrapper{

margin-top:40px;

}

}



/* 
/.............................. */


/* ==========================
PRODUCTS
========================== */

.products-section{
    padding:100px 0;
    background:#f8faf8;
}

.product-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    border:1px solid #edf2ed;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.14);
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.7s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,0)
    );

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-image::before{

    opacity:1;

}

.product-content{

    padding:28px;

}

.product-content h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:#1c1c1c;

}

.product-content p{

    color:#666;

    line-height:21px;

    margin-bottom:22px;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.product-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:#2E7D32;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.product-btn:hover{

    background:#1d5f23;

    color:#fff;

    transform:translateX(6px);

}

.section-title h2{
    font-size:36px;
    font-weight:800;
}

.section-title p{
    font-size:15px;
    font-weight:400;
    color:#666;

}

.section-tag{

    display:inline-block;

    background:#e8f5e9;

    color:#2E7D32;

    padding:8px 20px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

@media(max-width:768px){

.product-image img{

height:220px;

}

.product-content{

padding:22px;

} 

.section-title h2{

font-size:17px;

}

.section-title p{

    font-size:13px;
    font-weight:400;
    color:#666;

}


}



/*==========================
WHY SECTION
==========================*/

.why-section{

    padding:90px 0;

    background:#fff;

}

.why-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.why-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    transition:.6s;

}

.why-image:hover img{

    transform:scale(1.06);

}

.why-card{

    background:#fff;

    border:1px solid #eef2ef;

    border-radius:18px;

    text-align:center;

    padding:28px 20px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    background:#215732;

    color:#fff;

}

.why-card i{

    font-size:34px;

    color:#2E7D32;

    margin-bottom:15px;

    transition:.35s;

}

.why-card:hover i{

    color:#fff;

}

.why-card h6{

    margin:0;

    font-weight:700;

}

@media(max-width:992px){

.why-image img{

height:320px;

}

}
















/*==================================================
ABOUT PAGE
==================================================*/

/* ==========================
HERO
========================== */

.about-hero{
    position: relative;
    background: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1800&auto=format&fit=crop") center center/cover no-repeat;
    padding: 120px 0 90px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.55));
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:#2E7D32;
    color:#fff;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
}

.about-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin:20px 0;
}

.about-hero h1 span{
    color:#77d04b;
}

.about-hero p{
    color:#eee;
    max-width:700px;
    margin:auto;
    line-height:30px;
    font-size:17px;
}

.breadcrumb-area{
    margin-top:25px;
}

.breadcrumb-area a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-area span{
    color:#ddd;
    margin:0 8px;
}


/* ==========================
ABOUT COMPANY
========================== */

.about-company{
    padding:80px 0;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#2E7D32;
    color:#fff;
    padding:18px 26px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 12px 30px rgba(46,125,50,.35);
}

.experience-box h2{
    font-size:38px;
    font-weight:700;
    margin:0;
}

.experience-box span{
    font-size:14px;
}

.section-badge{
    display:inline-block;
    background:#edf7ed;
    color:#2E7D32;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    font-size:13px;
}

.about-company h2{
    font-size:40px;
    font-weight:700;
    margin:18px 0;
}

.about-company p{
    color:#666;
    line-height:30px;
    font-size:16px;
}

.about-feature{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.about-feature div{
    background:#f8faf8;
    border:1px solid #edf2ed;
    border-radius:12px;
    padding:16px 18px;
    font-weight:600;
    transition:.35s;
}

.about-feature div:hover{
    background:#2E7D32;
    color:#fff;
    transform:translateY(-4px);
}

.about-feature i{
    color:#2E7D32;
    margin-right:10px;
}

.about-feature div:hover i{
    color:#fff;
}


/* ==========================
TABLET
========================== */

@media (max-width:991px){

.about-hero{
    padding:90px 0 70px;
}

.about-hero h1{
    font-size:42px;
}

.about-hero p{
    font-size:16px;
}

.about-company{
    padding:60px 0;
}

.about-image{
    margin-bottom:40px;
}

.about-company h2{
    font-size:32px;
}

.about-feature{
    grid-template-columns:repeat(2,1fr);
}

.experience-box{
    left:15px;
    bottom:15px;
    padding:15px 20px;
}

.experience-box h2{
    font-size:30px;
}

}


/* ==========================
MOBILE
========================== */

@media (max-width:767px){

.about-hero{
    padding:70px 0 55px;
}

.hero-tag{
    font-size:12px;
    padding:8px 16px;
}

.about-hero h1{
    font-size:32px;
    line-height:1.3;
}

.about-hero p{
    font-size:15px;
    line-height:26px;
}

.breadcrumb-area{
    font-size:14px;
}

.about-company{
    padding:50px 0;
}

.about-company h2{
    font-size:28px;
}

.about-company p{
    font-size:15px;
    line-height:28px;
}

.about-feature{
    grid-template-columns:1fr;
}

.about-feature div{
    padding:14px 16px;
}

.experience-box{
    left:12px;
    bottom:12px;
    padding:14px 18px;
}

.experience-box h2{
    font-size:24px;
}

.experience-box span{
    font-size:12px;
}

.btn-success{
    width:100%;
}

}


/* ==========================
SMALL MOBILE
========================== */

@media (max-width:480px){

.about-hero h1{
    font-size:28px;
}

.about-company h2{
    font-size:24px;
}

.hero-tag{
    font-size:11px;
}

.about-company{
    padding:40px 0;
}

}






















/*==========================
Gallery Hero
==========================*/

.gallery-hero{

padding:110px 0;

background:url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1800&auto=format&fit=crop") center/cover;

position:relative;

}

.gallery-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.65);

}

.hero-content{

position:relative;

z-index:2;

}

.gallery-tag{

background:#2E7D32;

padding:10px 22px;

border-radius:40px;

color:#fff;

font-size:14px;

display:inline-block;

}

.gallery-hero h1{

color:#fff;

font-size:55px;

font-weight:700;

margin:20px 0;

}

.gallery-hero p{

color:#ddd;

max-width:650px;

margin:auto;

}



/*==========================
Gallery
==========================*/

.gallery-section{

padding:20px 0;

background:#fafafa;

}

.section-title span{

color:#2E7D32;

font-weight:600;

}

.product-image3{
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px){
    .product-image3{
        height: 280px;
    }
}

.section-title h2{

    font-size:16px;
    font-weight:700;
    margin-bottom:22px;
    
    }
    
    .gallery-card{
    
    position:relative;
    
    overflow:hidden;
    
    border-radius:16px;
    
    cursor:pointer;
    
    }
    
    .gallery-card img{
    
    width:100%;
    
    height:250px;
    
    object-fit:cover;
    
    transition:.5s;
    
    }
    
    .gallery-hover{
    
    position:absolute;
    
    inset:0;
    
    background:rgba(33,87,50,.72);
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    opacity:0;
    
    transition:.4s;
    
    }
    
    .gallery-hover i{
    
    font-size:35px;
    
    color:#fff;
    
    }
    
    .gallery-card:hover img{
    
    transform:scale(1.08);
    
    }
    
    .gallery-card:hover .gallery-hover{
    
    opacity:1;
    
    }
    
    
    
    /*==========================
    CTA
    ==========================*/
    
    .gallery-cta{
    
    padding:80px 0;
    
    background:#215732;
    
    color:#fff;
    
    }
    
    .gallery-cta h2{
    
    font-size:40px;
    
    font-weight:700;
    
    }
    
    .gallery-cta p{
    
    margin:20px 0;
    
    color:#ddd;
    
    }



/*==========================
Responsive
==========================*/

@media(max-width:991px){

.gallery-hero{

padding:90px 0;

}

.gallery-hero h1{

font-size:40px;

}

.gallery-card img{

height:200px;

}

}

@media(max-width:576px){

.gallery-card img{

height:160px;

}

.gallery-cta h2{

font-size:28px;

}

}








/*==================================
CERTIFICATIONS
==================================*/

.certifications{
    padding:80px 0;
    background:#f8faf8;
}

.section-tag{
    display:inline-block;
    background:#e8f5e9;
    color:#2E7D32;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#222;
}

.section-subtitle{
    max-width:600px;
    margin:auto;
    color:#666;
    line-height:28px;
}

.certificate-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    border:1px solid #eee;
    transition:.3s;
    height:100%;
}

.certificate-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.certificate-icon{
    width:70px;
    height:70px;
    margin:0 auto 2px;
    border-radius:50%;
    background:#2E7D32;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.certificate-card h5{
    font-size:17px;
    font-weight:700;
    color:#222;
}

.certificate-card p{
    color:#666;
    font-size:13px;
    line-height:16px;
    margin:0;
}

/*==========================
Responsive
==========================*/

@media(max-width:768px){
 
.section-title{
    font-size:28px;
}

.section-subtitle{
    font-size:15px;
}

.certificate-card{
    padding:10px;
}

.certificate-icon{
    width:50px;
    height:50px;
    font-size:24px;
}

}




/* Tablet */
@media (max-width: 991px){

    .feature-box{
        padding: 22px 15px;
    }

    .feature-box h5{
        font-size: 18px;
    }

    .feature-box p{
        font-size: 13px;
    }

    .feature-box i{
        font-size: 30px;
    }

}
 

/* Mobile */
@media (max-width: 576px){

    .feature-box{
        padding: 15px 7px;
    }

    .feature-box h5{
        font-size: 15px;
    }

    .feature-box p{
        font-size: 10px !important;
        margin-top: -5px !important;
    }

    .feature-box i{
        font-size: 24px;
        margin-bottom: 10px;
    }

}