*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f6f8f5;
overflow-x:hidden;
}

/* Navbar */

.navbar{
background:#ffffff;
padding:16px 0;
box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.navbar-brand{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
}

.navbar-brand img{
height:48px;
}

.brand-text{
font-size:28px;
font-weight:700;
color:#14532d;
}

.navbar-nav .nav-link{
font-size:16px;
font-weight:600;
color:#1e3a2f !important;
margin-left:28px;
transition:0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
color:#198754 !important;
}

/* Hero */

.product-hero{
padding:180px 0 110px;
text-align:center;
background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1600');
background-size:cover;
background-position:center;
color:white;
}

.product-hero small{
letter-spacing:2px;
font-weight:700;
color:#9be15d;
}

.product-hero h1{
font-size:62px;
font-weight:700;
margin-top:18px;
}

.product-hero p{
font-size:20px;
color:#e9ecef;
margin-top:20px;
line-height:1.9;
max-width:700px;
margin-inline:auto;
}

/*==============================
    CATEGORY SECTION
==============================*/

.category-section{
    padding:80px 0;
    background:#f7faf7;
}

/* Section Heading */

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#146c43;
    margin-bottom:12px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

/* Link */

.category-link{
    text-decoration:none;
    color:inherit;
}

/* Card */

.category-card{
    background:#fff;
    border-radius:22px;
    padding:35px 20px;
    height:100%;

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

    text-align:center;

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

    transition:.4s ease;
    border:1px solid #e9ecef;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Icon */

.icon-circle{
    width:90px;
    height:90px;

    border-radius:50%;

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

    background:linear-gradient(135deg,#198754,#44c767);

    margin-bottom:22px;

    transition:.4s;
}

.icon-circle i{
    color:#fff;
    font-size:38px;
}

.category-card:hover .icon-circle{
    transform:rotate(10deg) scale(1.1);
}

/* Heading */

.category-card h4{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

/* Paragraph */

.category-card p{
    font-size:15px;
    color:#666;
    line-height:1.6;
    min-height:52px;
    margin-bottom:25px;
}

/* Button */

.category-card .btn{

    background:#198754;
    border:none;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    padding:10px 25px;
}

.category-card:hover .btn{

    background:#146c43;

    transform:scale(1.05);

}

/* Mobile */

@media(max-width:991px){

.section-title h2{

font-size:30px;

}

.category-card{

padding:30px 18px;

}

.icon-circle{

width:80px;

height:80px;

}

.icon-circle i{

font-size:34px;

}

.category-card h4{

font-size:20px;

}

}

@media(max-width:767px){

.category-section{

padding:60px 0;

}

.section-title h2{

font-size:26px;

}

.section-title p{

font-size:15px;

}

.category-card{

padding:25px 15px;

}

.icon-circle{

width:70px;

height:70px;

}

.icon-circle i{

font-size:30px;

}

.category-card h4{

font-size:18px;

}

.category-card p{

font-size:14px;
min-height:45px;

}

.category-card .btn{

font-size:13px;

padding:8px 20px;

}

}

/* Footer */

.footer{
background:#0f172a;
color:white;
padding:70px 0 20px;
margin-top:80px;
}

.footer a{
color:#cbd5e1;
text-decoration:none;
display:block;
margin-bottom:12px;
}

.footer a:hover{
color:white;
}

/* WhatsApp */

.whatsapp-float{
position:fixed;
width:60px;
height:60px;
bottom:25px;
right:25px;
background:#25d366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
z-index:9999;
box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive */

@media(max-width:768px){

.product-hero{
padding:150px 20px 90px;
}

.product-hero h1{
font-size:42px;
}

.navbar-nav .nav-link{
margin-left:0;
padding:10px 0;
}

}