*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f5f5;
color:#222;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:1000;
}
/* HEADER */
header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:1000;
    width:100%;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

.logo img{
    width:170px;
    height:auto;
}

/* Desktop Menu */

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
    margin:0;
    padding:0;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#009245;
}

/* Hamburger */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
}

/* ======================
   MOBILE
====================== */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:0;
    }

    nav ul li{
        border-bottom:1px solid #eee;
    }

    nav ul li a{
        display:block;
        padding:18px 20px;
    }

    .logo img{
        width:140px;
    }

}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:50px;
    width:auto;
}

nav ul li a{
    color:#222;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#6CBF2A;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}


.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.35s ease;
}

.whatsapp-float:hover{

    background:#1EBE5D;

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.whatsapp-float::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border-radius:50%;

    background:#25D366;

    animation:whatsappPulse 2s infinite;

    z-index:-1;

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

        opacity:.7;

    }

    70%{

        transform:scale(1.7);

        opacity:0;

    }

    100%{

        opacity:0;

    }

}

@media(max-width:768px){

.whatsapp-float{

width:58px;

height:58px;

font-size:30px;

right:18px;

bottom:18px;

}

}


/* HERO */

.hero{
min-height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.75)
),
url('../images/hero-bg.jpg');
background-size:cover;
background-position:center;
color:#fff;
padding:50px 20px;
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:58px;
line-height:1.2;
margin-bottom:25px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#6CBF2A;
color:#fff;
text-decoration:none;
padding:15px 30px;
border-radius:5px;
font-weight:600;
transition:.3s;
}

.btn-primary:hover

.btn-secondary{
border:2px solid #fff;
color:#fff;
text-decoration:none;
padding:15px 30px;
border-radius:5px;
font-weight:600;
}

.btn-secondary:hover

/* SECTIONS */

services-preview{
    height:10%;
}

section{
padding:50px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#009245;
}

.about-preview{
background:#fff;
}

.about-preview p{
max-width:900px;
margin:0 auto 20px;
text-align:center;
}

.read-more{
display:block;
text-align:center;
margin-top:20px;
text-decoration:none;
color:#6CBF2A;
font-weight:700;
}

/* ===========================
   PRODUCT GALLERY
=========================== */

.product-gallery{
    padding:90px 8%;
    background:#f8fafc;
}

.product-gallery .section-title{
    text-align:center;
    margin-bottom:50px;
}

.product-gallery .section-title h2{
    font-size:2.3rem;
    color:#009245;
    margin-bottom:15px;
}

.product-gallery .section-title p{
    max-width:700px;
    margin:auto;
    color:#555;
    line-height:1.7;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-info{
    padding:25px;
}

.product-info h3{
    color:#009245;
    margin-bottom:15px;
}

.product-info p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.product-btn{
    display:inline-block;
    background:#009245;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    background:#009245;
}

/* Mobile */

@media(max-width:768px){

.product-gallery{
    padding:70px 20px;
}

.product-card img{
    height:220px;
}

.product-gallery .section-title h2{
    font-size:1.8rem;
}

}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
color:#6CBF2A;
margin-bottom:15px;
}

/* BRANDS */

.brands-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:20px;
    align-items:center;
}

.brands-grid img{
    max-width:100%;
    height:50px;
    object-fit:contain;
    transition:.3s;
}

.brands-grid img:hover{
    filter:grayscale(0%);
    opacity:1;
}


/* WHY US */

.why-us{
background:#111;
}

.why-us .section-title h2{
color:#fff;
}

.why-us .card{
text-align:center;
}

/* CONTACT */

/*=========================
CONTACT
=========================*/

.contact-section{

padding:90px 8%;

background:#f8fafc;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1.2fr;

gap:60px;

margin-top:50px;

}

.contact-info{

background:#009245;

color:#fff;

padding:40px;

border-radius:12px;

}

.contact-info h3{

margin-bottom:30px;

font-size:28px;

}

.contact-item{

display:flex;

align-items:flex-start;

gap:15px;

margin-bottom:25px;

font-size:17px;

}

.contact-item i{

font-size:20px;

margin-top:3px;

color:#FFD54F;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:12px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:18px;

}

.contact-form input,

.contact-form textarea{

padding:15px;

font-size:16px;

border:1px solid #ddd;

border-radius:8px;

font-family:Poppins,sans-serif;

}

.contact-form input:focus,

.contact-form textarea:focus{

outline:none;

border-color:#009245;

}

.contact-form button{

padding:16px;

background:#009245;

color:#fff;

font-size:17px;

font-weight:600;

border:none;

border-radius:8px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#009245;

}

@media(max-width:900px){

.contact-wrapper{

grid-template-columns:1fr;

}

}


.map-section{

width:100%;

}

.map-section iframe{

width:100%;

height:450px;

border:0;

display:block;

}



/* FOOTER */

footer{
background:#009245;
color:#fff;
text-align:center;
padding:25px;
}

/* MOBILE */

@media(max-width:768px){

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

.hero h1{
font-size:36px;
}

.hero p{
font-size:16px;
}

.section-title h2{
font-size:30px;
}

.logo a{
font-size:24px;
}

}
