/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================
   COLORS
========================================== */

:root{

    --primary:#2E7D32;
    --secondary:#43A047;
    --dark:#1B5E20;
    --light:#F1F8E9;
    --white:#ffffff;
    --text:#444;
    --shadow:0 15px 40px rgba(0,0,0,.12);

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.nav-container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:60px;

}

.logo h2{

    color:var(--primary);

    font-size:30px;

    font-weight:700;

}

.logo span{

    color:#777;

    font-size:15px;

    letter-spacing:2px;

}

/* MENU */

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    color:#333;

    font-weight:600;

    transition:.3s;

}

nav ul li a:hover{

    color:var(--primary);

}

/* MENU ICON */

.menu-btn{

    display:none;

    font-size:30px;

    color:var(--primary);

    cursor:pointer;

}

/* ==========================================
   HERO
========================================== */

.hero{

    padding-top:90px;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(135deg,#F7FFF7,#E8F5E9);

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

/* LEFT */

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#E8F5E9;

    color:var(--dark);

    padding:10px 18px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:30px;

}

.badge i{

    color:#4CAF50;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:20px;

    color:#222;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:18px;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

    max-width:560px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.btn{

    background:var(--primary);

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:var(--dark);

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* FEATURES */

.hero-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.hero-features div{

    background:#fff;

    padding:18px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow);

}

.hero-features i{

    font-size:30px;

    color:var(--primary);

    margin-bottom:12px;

}

.hero-features p{

    margin:0;

    font-size:14px;

    color:#555;

}

/* RIGHT */

.hero-right{

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;

    max-width:560px;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-right{

order:-1;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.nav-container{

height:80px;

}

.menu-btn{

display:block;

}

nav{

display:none;

position:absolute;

top:80px;

left:0;

width:100%;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

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;

}

.hero{

padding-top:120px;

padding-bottom:60px;

}

.hero h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.btn,
.btn-outline{

width:100%;

text-align:center;

}

.hero-features{

grid-template-columns:1fr 1fr;

}

.hero-right img{

max-width:350px;

}

.logo h2{

font-size:24px;

}

.logo img{

width:50px;

}

}

@media(max-width:480px){

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-right img{

max-width:280px;

}

}

/* ================= ABOUT SECTION ================= */

.about{

    padding:100px 0;
    background:#ffffff;

}


.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}



.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}


/* IMAGE */

.about-image{

    position:relative;

}


.about-image img{

    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;

    box-shadow:var(--shadow);

}



.experience-box{

    position:absolute;
    bottom:30px;
    right:30px;

    background:var(--primary);
    color:white;

    padding:25px;
    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}


.experience-box h2{

    font-size:40px;
    margin:0;

}



.experience-box p{

    margin:5px 0 0;

}


/* CONTENT */


.section-tag{

    color:var(--primary);
    font-weight:700;
    font-size:16px;

}



.about-content h2{

    font-size:42px;
    line-height:1.2;
    margin:20px 0;

    color:var(--dark);

}



.about-content p{

    color:var(--gray);
    line-height:1.8;
    margin-bottom:15px;

}




/* FEATURES */


.about-features{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;

    margin:30px 0;

}



.feature-item{

    display:flex;
    align-items:center;
    gap:10px;

}


.feature-item span{

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--light);

    color:var(--primary);

    border-radius:50%;

    font-weight:bold;

}



.feature-item p{

    margin:0;
    color:#333;

}



/* BUTTON */

.primary-btn{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:14px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}


.primary-btn:hover{

    background:var(--dark);

    transform:translateY(-3px);

}




/* STATS */


.stats{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.stat-card{

    background:var(--light);

    padding:35px 20px;

    text-align:center;

    border-radius:20px;

    transition:.3s;

}



.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}



.stat-card h3{

    color:var(--primary);

    font-size:40px;

    margin:0;

}



.stat-card p{

    color:var(--text);

}

/* ================= MOBILE ================= */


@media(max-width:992px){


.about-wrapper{

    grid-template-columns:1fr;

}



.about-image img{

    height:400px;

}



.about-content h2{

    font-size:32px;

}



.stats{

    grid-template-columns:repeat(2,1fr);

}



}



@media(max-width:576px){


.about{

    padding:60px 0;

}



.about-features{

    grid-template-columns:1fr;

}



.stats{

    grid-template-columns:1fr;

}



.experience-box{

    right:15px;
    bottom:15px;

    padding:18px;

}



.experience-box h2{

    font-size:30px;

}


}

/* ================= PRODUCTS SECTION ================= */


.products{

    padding:100px 0;

    background:#F8FFF4;

}



.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:60px;

}



.section-heading h2{

    font-size:42px;

    color:var(--dark);

    margin:15px 0;

}



.section-heading p{

    color:var(--gray);

    line-height:1.7;

}






/* PRODUCT GRID */


.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}




.product-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.4s;

}



.product-card:hover{

    transform:translateY(-12px);

}




.product-image{

    position:relative;

    height:280px;

    overflow:hidden;

}



.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}




.product-card:hover img{

    transform:scale(1.1);

}




.price{

    position:absolute;

    top:20px;

    right:20px;


    background:var(--primary);

    color:white;


    padding:10px 18px;

    border-radius:30px;

    font-weight:600;

}





.product-content{

    padding:25px;

}



.product-content h3{

    color:var(--dark);

    font-size:22px;

    margin-bottom:12px;

}



.product-content p{

    color:var(--gray);

    line-height:1.7;

    font-size:15px;

}





.order-btn{

    display:inline-block;

    margin-top:15px;


    background:var(--primary);

    color:white;

    padding:12px 28px;


    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}



.order-btn:hover{

    background:var(--dark);

}
/* ================= PRODUCT RESPONSIVE ================= */


@media(max-width:1100px){


.product-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){


.products{

    padding:60px 0;

}



.section-heading h2{

    font-size:30px;

}



.product-grid{

    grid-template-columns:1fr;

}



.product-image{

    height:250px;

}



}



/* ================= GALLERY SECTION ================= */


.gallery{

    padding:100px 0;

    background:white;

}




.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.gallery-item{

    height:280px;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

}



.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.gallery-item:hover img{

    transform:scale(1.12);

}






/* PROCESS SECTION */


.process{

    margin-top:100px;

    text-align:center;

}



.process h2{

    font-size:40px;

    color:var(--dark);

    margin-bottom:50px;

}



.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}




.process-card{

    background:var(--light);

    padding:35px 25px;

    border-radius:25px;

    transition:.3s;

}



.process-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}



.process-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;


    display:flex;

    justify-content:center;

    align-items:center;


    background:var(--primary);

    color:white;


    border-radius:50%;

    font-size:22px;

    font-weight:bold;

}



.process-card h3{

    color:var(--dark);

    margin-bottom:15px;

}



.process-card p{

    color:var(--gray);

    line-height:1.7;

}

/* ================= GALLERY RESPONSIVE ================= */


@media(max-width:992px){


.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}


.process-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){


.gallery{

    padding:60px 0;

}



.gallery-grid{

    grid-template-columns:1fr;

}



.gallery-item{

    height:240px;

}



.process h2{

    font-size:30px;

}



.process-grid{

    grid-template-columns:1fr;

}


}


/* ================= CONTACT SECTION ================= */


.contact{

padding:100px 0;

background:#F8FFF4;

}




.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}





.contact-card{

display:flex;

align-items:center;

gap:20px;

background:white;

padding:25px;

border-radius:20px;

margin-bottom:20px;

box-shadow:var(--shadow);

}




.contact-icon{

font-size:35px;

}





.contact-card h3{

margin:0;

color:var(--dark);

}



.contact-card p{

margin-top:8px;

color:var(--gray);

}





/* FORM */


.contact-form{

background:white;

padding:35px;

border-radius:25px;

box-shadow:var(--shadow);

}



.contact-form input,
.contact-form textarea{


width:100%;

padding:15px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:12px;

font-size:15px;

}




.contact-form textarea{

height:130px;

resize:none;

}




.contact-form button{


width:100%;

padding:15px;


border:none;

background:var(--primary);

color:white;

font-size:17px;

font-weight:600;


border-radius:50px;

cursor:pointer;


}




.contact-form button:hover{

background:var(--dark);

}





/* MAP */


.map{

margin-top:60px;

}



.map iframe{

width:100%;

height:400px;

border:0;

border-radius:25px;

}


/* ================= FOOTER ================= */


.footer{

background:#1B5E20;

color:white;

padding:70px 0 20px;

}



.footer-grid{


display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:40px;


}




.footer h2,
.footer h3{

margin-bottom:20px;

}



.footer p{

line-height:1.8;

color:#e8f5e9;

}




.footer a{

display:block;

color:#ffffff;

text-decoration:none;

margin-bottom:12px;

}



.footer a:hover{

color:#FFC107;

}




.copyright{

text-align:center;

border-top:1px solid rgba(255,255,255,.2);

margin-top:40px;

padding-top:20px;

}


@media(max-width:900px){


.contact-wrapper{

grid-template-columns:1fr;

}



.footer-grid{

grid-template-columns:1fr;

}



}



@media(max-width:600px){


.contact{

padding:60px 0;

}



.map iframe{

height:300px;

}



.contact-form{

padding:20px;

}


}

/* ================= WHATSAPP BUTTON ================= */

/* ================= WHATSAPP FLOATING BUTTON ================= */


.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;


    background:#25D366;

    color:white;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    font-size:35px;


    text-decoration:none;


    box-shadow:0 10px 30px rgba(0,0,0,0.25);


    z-index:999;


    transition:.3s;

}



.whatsapp-btn:hover{

    background:#128C7E;

    transform:scale(1.1);

}


.whatsapp-btn i{

    font-size:38px;

}


@keyframes pulse{


0%{

transform:scale(1);

}


50%{

transform:scale(1.1);

}


100%{

transform:scale(1);

}


}

/* MOBILE MENU */


@media(max-width:768px){


.nav-links{


position:absolute;

top:80px;

left:0;

width:100%;


background:white;


flex-direction:column;


padding:30px;


display:none;


}



.nav-links.active{


display:flex;


}



.menu-btn{


display:block;


font-size:30px;


cursor:pointer;


}


}



/* Scroll Animation */


.product-card,
.about-image,
.about-content,
.gallery-item,
.process-card,
.contact-card{


animation:fadeUp .8s ease;


}




@keyframes fadeUp{


from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}


}



/* FOOTER SOCIAL ICONS */


.social-link{

    display:flex !important;

    align-items:center;

    gap:12px;

    font-size:16px;

}


.social-link i{

    font-size:22px;

}



.whatsapp-footer i{

    color:#25D366;

}



.social-link:hover i{

    transform:scale(1.2);

    transition:.3s;

}