*{
    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 */

/*==========================================
            HERO SECTION
==========================================*/

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    animation:heroSlider 18s infinite;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.45)
    );
    z-index:1;
}

.hero-overlay{
    display:none;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:750px;
    animation:fadeUp 1.2s ease;
}

.hero small{
    display:inline-block;
    color:#9be15d;
    font-size:17px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:18px;
}

.hero h1{
    color:#ffffff;
    font-size:68px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
    text-shadow:0 5px 18px rgba(0,0,0,.35);

    background:none !important;
    -webkit-text-fill-color:#fff !important;
}

.hero p{
    color:#f3f3f3;
    font-size:20px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:650px;
}

.hero-btn{
    display:inline-block;
    padding:16px 42px;
    background:#198754;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 10px 30px rgba(25,135,84,.35);
}

.hero-btn:hover{
    background:#146c43;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(25,135,84,.45);
}

/*==============================
        HERO SLIDER
==============================*/

@keyframes heroSlider{

    0%,30%{
        background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1600");
    }

    33%,63%{
        background-image:url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1600");
    }

    66%,96%{
        background-image:url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?q=80&w=1600");
    }

    100%{
        background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1600");
    }
}

/*==============================
        TEXT ANIMATION
==============================*/

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.hero{
    min-height:90vh;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:52px;
}

.hero p{
    font-size:18px;
}

}

@media(max-width:768px){

.hero{
    min-height:80vh;
    text-align:center;
    padding:120px 0 80px;
}

.hero small{
    font-size:14px;
}

.hero h1{
    font-size:38px;
    line-height:1.3;
}

.hero p{
    font-size:16px;
    margin:auto;
    margin-bottom:30px;
}

.hero-btn{
    padding:14px 34px;
    font-size:15px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

.hero-btn{
    width:100%;
    text-align:center;
}

}
/* Sections */

.quick-section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title small{
    letter-spacing:2px;
    font-weight:700;
    color:#198754;
}

.section-title h2{
    font-size:50px;
    font-weight:700;
    margin-top:15px;
    color:#132a13;
}

.section-title p{
    font-size:18px;
    color:#666;
    margin-top:15px;
}

.category-card{
    background:white;
    border-radius:24px;
    padding:35px;
    height:100%;
    border:1px solid #e7ece7;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.icon-circle{
    width:70px;
    height:70px;
    background:#f3f7f3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.category-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.category-card p{
    line-height:1.9;
    color:#666;
}

/* Product */

.product-showcase{
    padding:80px 0;
    background:#fff;
}

.product-showcase img{
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
}

/* Activities */

.activities{
    padding-bottom:100px;
}

.carousel-item img{
    height:580px;
    object-fit:cover;
    border-radius:30px;
}

.carousel-caption{
    background:rgba(0,0,0,.45);
    padding:35px;
    border-radius:25px;
    bottom:40px;
    backdrop-filter:blur(6px);
}

.carousel-caption h2{
    font-weight:700;
}

/* Stats */

.stats{
    background:#14532d;
    padding:80px 0;
    color:#fff;
}

.stats h2{
    font-size:58px;
    font-weight:700;
}

.stats p{
    font-size:18px;
    margin-top:10px;
}

/* Footer */

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 20px;
}

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

.footer a:hover{
    color:#fff;
}

/* WhatsApp */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#fff;
    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,.3);
}

/* Responsive */

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.carousel-item img{
    height:350px;
}

.carousel-caption{
    bottom:10px;
    padding:12px;
    border-radius:12px;
    background:rgba(0,0,0,.40);
}

.carousel-caption h2{
    font-size:18px;
    margin-bottom:5px;
}

.carousel-caption p{
    font-size:12px;
    line-height:1.5;
    margin-bottom:0;
}

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

}

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

.section-title h2{
    font-size:34px;
}

.carousel-item img{
    height:350px;
}

.carousel-caption{
    bottom:10px;
    padding:12px;
    border-radius:12px;
    background:rgba(0,0,0,.40);
}

.carousel-caption h2{
    font-size:18px;
    margin-bottom:5px;
}

.carousel-caption p{
    font-size:12px;
    line-height:1.5;
    margin-bottom:0;
}

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


/* ==========================
   PRELOADER
========================== */

#preloader{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:0.6s ease;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
}

.loader{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.loader img{
    width:110px;
    animation:pulse 1.5s infinite;
}

.loader span{
    width:55px;
    height:55px;
    border:5px solid #e5e5e5;
    border-top:5px solid #1b8f3d;
    border-radius:50%;
    margin-top:20px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
}