*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8f2;
    color:#222;
}



/* NAVBAR */

.navbar{
    background:#16651f;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height: 55px;
    width: auto;
    display: block;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:40px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#b7ff9f;
}



/* HERO SECTION */

.hero{
    min-height: 100vh;

    background:
    linear-gradient(
        rgba(0, 80, 0, 0.55),
        rgba(0, 80, 0, 0.55)
    ),
    url("images/JAC\ BG.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}
.hero-content{
    max-width:750px;
    color:white;
}

.hero-content h1{
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p{
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
}
.hero-btn{
    display:inline-block;
    padding:18px 45px;
    background:#20b436;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    background:#167a26;
    transform:translateY(-3px);
}
.hero{
    height: 100vh;
    display: flex;
    align-items: center;
}


/* ABOUT SECTION */

.about{
    padding:120px 8%;
    text-align:center;
    background:white;
}

.about h2{
    font-size:50px;
    color:#16651f;
    margin-bottom:25px;
}

.about p{
    max-width:950px;
    margin:auto;
    font-size:22px;
    line-height:1.9;
}



/* CATEGORY SECTION */

.categories{
    padding:120px 8%;
}

.categories h2{
    text-align:center;
    font-size:50px;
    color:#16651f;
    margin-bottom:70px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.category-card{
    background:white;
    border-radius:25px;
    padding:50px 35px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.category-card:hover{
    transform:translateY(-12px);
}

.category-card h3{
    font-size:34px;
    color:#16651f;
    margin-bottom:20px;
}

.category-card p{
    font-size:18px;
    line-height:1.7;
}



/* PRODUCT HERO */

.product-hero{
    background:linear-gradient(135deg,#145c1d,#2d9b3f);
    color:white;
    text-align:center;
    padding:120px 20px;
}

.product-hero h1{
    font-size:70px;
    margin-bottom:25px;
}

.product-hero p{
    font-size:24px;
}



/* PRODUCTS */

.all-products{
    padding:90px 6%;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.product-box{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-box:hover{
    transform:translateY(-10px);
}

.product-image{
    width:100%;
    height:340px;
    object-fit:contain;
    background:#eef7ea;
    padding:25px;
}

.product-info{
    padding:30px;
}

.product-category{
    display:inline-block;
    background:#d9f1d2;
    color:#16651f;
    padding:10px 20px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.product-info h3{
    font-size:34px;
    color:#16651f;
    margin-bottom:15px;
}

.product-info p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:28px;
}

.product-info button{
    border:none;
    background:#16651f;
    color:white;
    padding:15px 30px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.product-info button:hover{
    background:#0f4517;
}



/* FOOTER */

footer{
    background:#16651f;
    color:white;
    text-align:center;
    padding:30px;
    font-size:18px;
    margin-top:60px;
}



/* RESPONSIVE */

@media(max-width:900px){

    .hero-content h1{
        font-size:60px;
    }

    .hero-content p{
        font-size:20px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        gap:20px;
    }

    .product-hero h1{
        font-size:50px;
    }

}

@media(max-width:600px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-btn{
        padding:15px 30px;
        font-size:18px;
    }

    .about h2,
    .categories h2{
        font-size:38px;
    }

}/* CONTACT PAGE */

.contact-hero{
    background:linear-gradient(135deg,#145c1d,#2d9b3f);
    color:white;
    text-align:center;
    padding:120px 20px;
}

.contact-hero h1{
    font-size:70px;
    margin-bottom:20px;
}

.contact-hero p{
    font-size:24px;
}



/* CONTACT SECTION */

.contact-section{
    padding:100px 8%;
    background:#f5f8f2;
}

.contact-container{
    display:flex;
    gap:60px;
    justify-content:space-between;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:320px;
}

.contact-info h2{
    font-size:50px;
    color:#16651f;
    margin-bottom:25px;
}

.contact-info p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-box h3{
    color:#16651f;
    font-size:28px;
    margin-bottom:10px;
}

.contact-box p{
    margin:0;
    font-size:18px;
}



/* FORM */

.contact-form{
    flex:1;
    min-width:320px;
}

.contact-form form{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:10px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    background:#16651f;
    color:white;
    font-size:18px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#0f4517;
}



/* MOBILE */

@media(max-width:768px){

    .contact-hero h1{
        font-size:45px;
    }

    .contact-info h2{
        font-size:38px;
    }

}/* SEARCH BAR */

.search-box{
    text-align:center;
    margin-bottom:50px;
}

.search-box input{
    width:100%;
    max-width:500px;

    padding:18px 25px;

    border:2px solid #16651f;
    border-radius:50px;

    font-size:18px;
    font-family:'Poppins',sans-serif;

    outline:none;
}
/* DETAILS PAGE */

.details-section{
    padding:80px 8%;
}

.details-container{
    display:flex;
    gap:70px;
    align-items:flex-start;
    flex-wrap:wrap;
}



/* LEFT SIDE */

.details-left{
    flex:1;
    min-width:320px;
    max-width:420px;
}

.details-image{
    width:100%;
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}



/* RIGHT SIDE */

.details-right{
    flex:2;
    min-width:320px;
}

.details-right h1{
    font-size:52px;
    color:#16651f;
    margin-bottom:20px;
    line-height:1.2;
}

.details-text{
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}



/* CATEGORY */

.product-category{
    display:inline-block;
    background:#d9f1d2;
    color:#16651f;

    padding:10px 22px;

    border-radius:30px;

    font-size:16px;
    font-weight:600;

    margin-bottom:20px;
}



/* HEADINGS */

.details-right h2{
    font-size:34px;
    color:#16651f;
    margin-top:35px;
    margin-bottom:20px;
}



/* LIST */

.details-list{
    padding-left:25px;
}

.details-list li{
    font-size:19px;
    line-height:1.9;
    margin-bottom:10px;
}



/* TABLE */

.details-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    margin-bottom:30px;
    background:white;
}

.details-table th{
    background:#16651f;
    color:white;
    padding:18px;
    text-align:left;
    font-size:18px;
}

.details-table td{
    padding:18px;
    border:1px solid #ddd;
    font-size:18px;
}



/* BUTTON */

.hero-btn{
    display:inline-block;
    padding:18px 40px;
    background:#20b436;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-size:20px;
    font-weight:600;
    margin-top:20px;
    transition:0.3s;
}

.hero-btn:hover{
    background:#168a29;
}



/* MOBILE */

@media(max-width:900px){

.details-container{
    flex-direction:column;
}

.details-right h1{
    font-size:40px;
}

.details-right h2{
    font-size:28px;
}

}
/* ABOUT PAGE */

.about-section{
    padding:80px 8%;
    background:#f8faf8;
}

.about-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:60px;
    max-width:1200px;
    margin:auto;
}

.about-text{
    flex:1;
    max-width:650px;
}

.about-text h1{
    font-size:50px;
    color:#145c1d;
    margin-bottom:15px;
}

.about-tagline{
    font-size:22px;
    color:#666;
    margin-bottom:30px;
}

.about-text h2{
    font-size:34px;
    color:#145c1d;
    margin-bottom:15px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:15px;
    text-align:justify;
}

.mission-box{
    margin-top:30px;
    background:white;
    padding:25px;
    border-left:5px solid #20b436;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.mission-box h3{
    color:#145c1d;
    margin-bottom:10px;
}

.founder-image{
    flex:0 0 400px;
}

.founder-image img{
    width:400px;
    height:auto;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

@media(max-width:900px){

    .about-container{
        flex-direction:column-reverse;
        text-align:center;
    }

    .about-text{
        max-width:100%;
    }

    .founder-image img{
        width:100%;
        max-width:350px;
    }

}