/*=========================================
  ZENVITA WEBSITE
  Bootstrap 5 Premium Theme
==========================================*/

:root{

    --primary:#2E7D32;
    --secondary:#FF9800;
    --dark:#263238;
    --light:#ffffff;
    --gray:#777;
    --bg:#f8faf8;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.4s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:#333;

    overflow-x:hidden;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

section{
    padding:100px 0;
}

.container{
    position:relative;
    z-index:2;
}

/*==================================
Navbar
===================================*/

.navbar{

    padding:18px 0;

    transition:.4s;

    background:#fff;

    box-shadow:0 5px 30px rgba(0,0,0,.05);

}

.navbar-brand img{

    height:65px;

}

.navbar-nav .nav-link{

    color:#333 !important;

    font-weight:600;

    margin-left:18px;

    letter-spacing:.5px;

    position:relative;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:var(--primary)!important;

}

/* Sticky */

.navbar.scrolled{

    padding:10px 0;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

/*==================================
Buttons
===================================*/

.btn-success{

    background:var(--primary);

    border:none;

    padding:14px 34px;

    font-weight:600;

    border-radius:40px;

    transition:.3s;

}

.btn-success:hover{

    background:#1b5e20;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:14px 34px;

    border-radius:40px;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================
Hero
===================================*/

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    linear-gradient(135deg,#f3fff0,#ffffff);

}

.hero::before{

    content:"";

    position:absolute;

    right:-180px;

    top:-180px;

    width:650px;

    height:650px;

    border-radius:50%;

    background:#eaf7e8;

}

.hero::after{

    content:"";

    position:absolute;

    left:-150px;

    bottom:-150px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#fff6e6;

}

.hero h1{

    font-size:65px;

    font-weight:800;

    line-height:80px;

    color:#222;

}

.hero p{

    margin-top:30px;

    color:#666;

    line-height:32px;

    font-size:18px;

}

.hero .btn{

    margin-top:35px;

}

.hero-product{

    width:95%;

    animation:float 5s infinite ease-in-out;

    position:relative;

    z-index:10;

}

/*==================================
Floating Leaves
===================================*/

.leaf{

    position:absolute;

    animation:rotateLeaf 12s infinite linear;

    opacity:.8;

}

.leaf1{

    width:90px;

    top:100px;

    left:120px;

}

.leaf2{

    width:70px;

    right:140px;

    top:170px;

}

.leaf3{

    width:80px;

    bottom:120px;

    left:45%;

}

/*==================================
Hero Bottom Wave
===================================*/

.hero-bottom{

    position:absolute;

    bottom:0;

    width:100%;

    left:0;

    line-height:0;

}

.hero-bottom svg{

    display:block;

    width:100%;

}

/*==================================
Features
===================================*/

.features{

    margin-top:-60px;

    position:relative;

    z-index:5;

}

.feature-box{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    box-shadow:var(--shadow);

    transition:.4s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-box i{

    width:75px;

    height:75px;

    line-height:75px;

    border-radius:50%;

    background:#e8f5e9;

    color:var(--primary);

    font-size:28px;

    margin-bottom:20px;

}

.feature-box h6{

    font-weight:700;

    margin-bottom:0;

}

/*==================================
Heading
===================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#222;

    margin-top:10px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#777;

    margin-top:20px;

}

/*==================================
Animations
===================================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

@keyframes rotateLeaf{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

/*====================================================
                ABOUT SECTION
====================================================*/

.about-section{
    background:#fff;
    position:relative;
}

.about-img{
    position:relative;
}

.about-img img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.about-shape{
    position:absolute;
    width:180px;
    height:180px;
    background:#e8f5e9;
    border-radius:50%;
    top:-40px;
    left:-40px;
    z-index:-1;
}

.about-content h6{
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    color:#222;
    margin-bottom:25px;
}

.about-content p{
    color:#666;
    line-height:32px;
    margin-bottom:20px;
}

.about-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.about-list li{
    margin-bottom:15px;
    font-weight:500;
    color:#444;
}

.about-list i{
    color:var(--primary);
    margin-right:10px;
}

/*=========================================
        PRODUCT SECTION
=========================================*/

.products-section{
    padding:100px 0;
    background:linear-gradient(180deg,#f9fdf8 0%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

/* Heading */

.product-section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#edf8ef;
    color:#2E7D32;
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.product-section-title{
    font-size:48px;
    font-weight:800;
    color:#183A1D;
    margin-bottom:18px;
}

.product-section-text{
    max-width:750px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:60px;
}

/*=========================================
        PRODUCT CARD
=========================================*/

.product-card{

    background:#fff;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    transition:.45s;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    border:1px solid #eef3ef;

}

.product-card::before{

    content:"";

    position:absolute;
    left:0;
    top:0;

    width:100%;
    height:6px;

    background:linear-gradient(90deg,#2E7D32,#72C45C);

}

.product-card:hover{

    transform:translateY(-15px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);

}

/*=========================================
        IMAGE
=========================================*/

.product-image{

    background:linear-gradient(180deg,#f7fcf7,#eef8ef);

    padding:45px;
    position:relative;
    overflow:hidden;

}

.product-image img{

    width:100%;
    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08) rotate(-2deg);

}

/*=========================================
        BADGE
=========================================*/

.product-badge{

    position:absolute;
    top:20px;
    right:20px;

    background:#FF9800;
    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;
    font-weight:700;

    box-shadow:0 8px 18px rgba(255,152,0,.35);

}

.badge-organic{

    background:#43A047;

}

.badge-water{

    background:#2196F3;

}

/*=========================================
        CONTENT
=========================================*/

.product-content{

    padding:35px;
    text-align:center;
    position:relative;

}

/* Floating Icon */

.product-icon{

    width:75px;
    height:75px;

    border-radius:50%;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:-72px auto 25px;

    color:#2E7D32;

    font-size:28px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

    border:5px solid #f4faf4;

}

.product-card:hover .product-icon{

    background:#2E7D32;
    color:#fff;
    transition:.4s;

}

.product-content h3{

    font-size:30px;
    font-weight:800;
    color:#1C3D1C;
    margin-bottom:15px;

}

.product-content p{

    color:#666;
    line-height:1.8;
    font-size:16px;

}

/*=========================================
        LIST
=========================================*/

.product-list{

    list-style:none;
    margin:30px 0;
    padding:0;

}

.product-list li{

    margin-bottom:14px;

    color:#444;

    font-weight:500;

    display:flex;
    align-items:center;

}

.product-list i{

    width:28px;
    height:28px;

    border-radius:50%;

    background:#edf8ef;

    color:#2E7D32;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-right:12px;

    font-size:13px;

}

/*=========================================
        STATS
=========================================*/

.product-stats{

    display:flex;
    justify-content:center;
    gap:12px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.product-stats span{

    background:#F7F7F7;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    color:#555;

    font-weight:600;

}

.product-stats i{

    color:#2E7D32;
    margin-right:5px;

}

/*=========================================
        BUTTON
=========================================*/

.btn-product{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:13px 28px;

    border-radius:50px;

    background:#2E7D32;

    color:#fff;
    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-product:hover{

    background:#1F5B26;
    color:#fff;

    transform:translateY(-3px);

}

.btn-product i{

    transition:.35s;

}

.btn-product:hover i{

    transform:translateX(5px);

}

/*=========================================
        DECORATION
=========================================*/

.product-card::after{

    content:"";

    width:120px;
    height:120px;

    position:absolute;

    top:-60px;
    right:-60px;

    background:rgba(46,125,50,.05);

    border-radius:50%;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.product-section-title{

    font-size:38px;

}

.product-content{

    padding:30px;

}

}

@media(max-width:767px){

.products-section{

    padding:70px 0;

}

.product-section-title{

    font-size:30px;

}

.product-content h3{

    font-size:24px;

}

.product-image{

    padding:30px;

}

.product-icon{

    width:65px;
    height:65px;
    font-size:24px;

}

.product-list li{

    font-size:15px;

}

}

/*====================================================
              CATEGORY GRID
====================================================*/

.category-box{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:35px 20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.category-box:hover{

    transform:translateY(-10px);

    background:var(--primary);

}

.category-box img{

    width:90px;

    margin-bottom:20px;

    transition:.4s;

}

.category-box h5{

    font-weight:700;

    margin-bottom:12px;

    color:#222;

}

.category-box p{

    color:#777;

    font-size:15px;

    line-height:26px;

}

.category-box:hover h5,

.category-box:hover p{

    color:#fff;

}

/*====================================================
           PRODUCT HOVER OVERLAY
====================================================*/

.product-overlay{

    position:absolute;

    inset:0;

    background:rgba(46,125,50,.82);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-overlay{

    opacity:1;

}

.product-overlay a{

    width:55px;

    height:55px;

    line-height:55px;

    text-align:center;

    background:#fff;

    color:var(--primary);

    border-radius:50%;

    font-size:20px;

    transition:.3s;

}

.product-overlay a:hover{

    background:var(--secondary);

    color:#fff;

}

/*====================================================
              PRODUCT BUTTON
====================================================*/

.btn-products{

    background:var(--secondary);

    color:#fff;

    border:none;

    padding:14px 34px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.btn-products:hover{

    background:#ef6c00;

    color:#fff;

    transform:translateY(-3px);

}

/*====================================================
          PRODUCT DECORATIVE SHAPES
====================================================*/

.circle-shape{

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(255,152,0,.15);

}

.circle-one{

    top:50px;

    right:120px;

}

.circle-two{

    bottom:60px;

    left:100px;

}

.leaf-shape{

    position:absolute;

    width:80px;

    opacity:.25;

}

.leaf-left{

    left:20px;

    top:180px;

}

.leaf-right{

    right:30px;

    bottom:150px;

}

/*==================================
        OUR PROMISE
==================================*/

.our-promise-section{

    background:#ffffff;
    position:relative;
    overflow:hidden;

}

.promise-image{

    position:relative;
    text-align:center;

}

.promise-image img{

    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.4s;

}

.promise-image:hover img{

    transform:scale(1.03);

}

.promise-card{

    background:#ffffff;
    border-radius:18px;
    padding:28px;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eef3ef;

}

.promise-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.promise-icon{

    width:65px;
    height:65px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin-bottom:20px;

}

.promise-card h5{

    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#222;

}

.promise-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:0;

}

@media(max-width:991px){

    .promise-image{

        margin-bottom:40px;

    }

}

/*====================================================
                 ICON CARDS
====================================================*/

.promise-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;
}

.promise-card:hover{

    transform:translateY(-10px);

    background:var(--primary);

}

.promise-card i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#e8f5e9;

    color:var(--primary);

    font-size:32px;

    margin-bottom:20px;

}

.promise-card:hover i{

    background:#fff;

}

.promise-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.promise-card p{

    color:#777;

    line-height:28px;

}

.promise-card:hover h4,

.promise-card:hover p{

    color:#fff;

}

/*====================================================
                CTA BUTTONS
====================================================*/

.btn-light-custom{

    background:#fff;

    color:var(--primary);

    padding:15px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    display:inline-block;

}

.btn-light-custom:hover{

    transform:translateY(-4px);

    color:#fff;

    background:var(--secondary);

}

.btn-outline-light-custom{

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:700;

    margin-left:15px;

}

.btn-outline-light-custom:hover{

    background:#fff;

    color:var(--primary);

}

/*====================================================
                COUNTERS
====================================================*/

.counter-section{

    margin-top:70px;

}

.counter-box{

    text-align:center;

}

.counter-box h2{

    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.5px;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.35),
        0 4px 16px rgba(0,0,0,0.20);

}

.counter-box span{

    display:block;

    margin-top:10px;

    font-size:16px;

    letter-spacing:1px;

}

/*====================================================
                 NEWSLETTER
====================================================*/

.newsletter{

    background:#fff;

    margin-top:-80px;

    border-radius:25px;

    padding:50px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

    position:relative;

    z-index:5;

}

.newsletter h3{

    font-weight:800;

    color:#222;

}

.newsletter input{

    height:60px;

    border-radius:40px;

    border:1px solid #ddd;

    padding-left:25px;

}

.newsletter button{

    height:60px;

    border-radius:40px;

    border:none;

    padding:0 35px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

}

/*==================================
            FOOTER
==================================*/

.footer-section{

    background:#1d1d1d;
    color:#ddd;
    padding:90px 0 30px;

}

.footer-logo{

    max-width:190px;

}

.footer-about{

    color:#bbb;
    line-height:1.9;

}

.footer-section h4{

    color:#fff;
    margin-bottom:25px;
    font-weight:600;

}

.footer-section ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-section ul li{

    margin-bottom:14px;

}

.footer-section ul li a{

    color:#bbb;
    text-decoration:none;
    transition:.3s;

}

.footer-section ul li a:hover{

    color:#28a745;
    padding-left:6px;

}

.footer-contact li{

    display:flex;
    gap:12px;
    margin-bottom:18px;

}

.footer-contact i{

    color:#28a745;
    margin-top:5px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2d2d2d;
    color:#fff;
    margin-right:10px;
    transition:.3s;

}

.footer-social a:hover{

    background:#28a745;
    transform:translateY(-4px);

}

.newsletter-form{

    display:flex;
    overflow:hidden;
    border-radius:50px;
    margin-top:15px;

}

.newsletter-form input{

    flex:1;
    border:none;
    padding:14px 18px;
    outline:none;

}

.newsletter-form button{

    width:60px;
    border:none;
    background:#28a745;
    color:#fff;
    cursor:pointer;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    color:#999;
    margin-top:20px;

}

.footer-bottom a{

    color:#28a745;
    text-decoration:none;

}

.back-to-top{

    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:#28a745;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;

}

.back-to-top.show{

    opacity:1;
    visibility:visible;

}

.back-to-top:hover{

    background:#198754;
    color:#fff;

}

/*====================================================
                SOCIAL ICONS
====================================================*/

.social-icons{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#2c3e50;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

/*====================================================
               FOOTER BOTTOM
====================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    margin-top:50px;

    padding-top:25px;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom a{

    color:#fff;

}

.footer-bottom a:hover{

    color:var(--secondary);

}

/*==========================================
        SCROLL TO TOP BUTTON
==========================================*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    transition:.35s;
    opacity:0;
    visibility:hidden;
    z-index:9999;
}

.scroll-top.active{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

/*==========================================
        WHATSAPP FLOAT
==========================================*/

.whatsapp{
    position:fixed;
    left:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:9999;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
    transition:.35s;
}

.whatsapp:hover{
    color:#fff;
    transform:scale(1.08);
}

/*==========================================
            PRELOADER
==========================================*/

.preloader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.loader{
    width:70px;
    height:70px;
    border-radius:50%;
    border:6px solid #e5e5e5;
    border-top:6px solid var(--primary);
    animation:spin 1s linear infinite;
}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

/*==========================================
        GLASS EFFECT
==========================================*/

.glass{
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,.25);
    border:1px solid rgba(255,255,255,.35);
}

/*==========================================
            IMAGE EFFECT
==========================================*/

.zoom-img{
    overflow:hidden;
    border-radius:20px;
}

.zoom-img img{
    transition:.6s;
}

.zoom-img:hover img{
    transform:scale(1.1);
}

/*==========================================
        COMMON HOVER
==========================================*/

.hover-up{
    transition:.35s;
}

.hover-up:hover{
    transform:translateY(-10px);
}

/*==========================================
          SHADOWS
==========================================*/

.shadow-sm{
    box-shadow:0 8px 25px rgba(0,0,0,.06)!important;
}

.shadow-md{
    box-shadow:0 20px 45px rgba(0,0,0,.10)!important;
}

.shadow-lg{
    box-shadow:0 30px 70px rgba(0,0,0,.16)!important;
}

/*==========================================
            RADIUS
==========================================*/

.radius-10{
    border-radius:10px;
}

.radius-20{
    border-radius:20px;
}

.radius-30{
    border-radius:30px;
}

.radius-50{
    border-radius:50px;
}

/*==========================================
            BACKGROUNDS
==========================================*/

.bg-primary-soft{
    background:#f2fbf3;
}

.bg-orange-soft{
    background:#fff5e9;
}

.bg-gray{
    background:#fafafa;
}

.bg-gradient-green{
    background:linear-gradient(135deg,#2E7D32,#43A047);
}

.bg-gradient-orange{
    background:linear-gradient(135deg,#ff9800,#ffb74d);
}

/*==========================================
          SPACING HELPERS
==========================================*/

.pt-120{
    padding-top:120px;
}

.pb-120{
    padding-bottom:120px;
}

.mt-120{
    margin-top:120px;
}

.mb-120{
    margin-bottom:120px;
}

/*==========================================
          TITLE DECORATION
==========================================*/

.title-line{

    width:80px;

    height:5px;

    border-radius:10px;

    background:var(--secondary);

    margin:20px auto;

}

/*==========================================
          ICON CIRCLE
==========================================*/

.icon-circle{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#f1f8e9;

    color:var(--primary);

    text-align:center;

    font-size:32px;

}

/*==========================================
        CUSTOM SCROLLBAR
==========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#1b5e20;
}

/*==========================================
        TEXT COLORS
==========================================*/

.text-primary-custom{
    color:var(--primary)!important;
}

.text-orange{
    color:var(--secondary)!important;
}

.text-gray{
    color:#777!important;
}

/*==========================================
        BORDER HELPERS
==========================================*/

.border-light-custom{
    border:1px solid #e9ecef;
}

.border-radius{
    border-radius:20px;
}

/*==========================================
        OPACITY
==========================================*/

.opacity-75{
    opacity:.75;
}

.opacity-50{
    opacity:.5;
}

/*==========================================
        SELECTION
==========================================*/

::selection{
    background:var(--primary);
    color:#fff;
}

/*==========================================
        FADE ANIMATION
==========================================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/*==========================================
        PULSE BUTTON
==========================================*/

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(46,125,50,.5);
}

70%{
box-shadow:0 0 0 18px rgba(46,125,50,0);
}

100%{
box-shadow:0 0 0 0 rgba(46,125,50,0);
}

}

/*==========================================
        END OF FILE
==========================================*/

/*==================================
      LET'S GROW TOGETHER
==================================*/

.grow-section{

padding:50px 0;

background:linear-gradient(135deg,#0d8b47,#19b36b);

position:relative;

overflow:hidden;

}

.grow-tag{

display:inline-block;

background:rgba(255,255,255,.15);

padding:10px 20px;

border-radius:50px;

font-weight:600;

letter-spacing:1px;

}

.grow-tag i{

margin-right:8px;

color:#FFD54F;

}

.grow-image{

position:relative;

}

.grow-image img{

max-width:100%;

animation:floatImage 5s ease-in-out infinite;

}

.grow-icon{

position:absolute;

width:70px;

height:70px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.icon-1{

top:15%;

left:0;

color:#28a745;

}

.icon-2{

top:50%;

right:0;

color:#ff9800;

}

.icon-3{

bottom:8%;

left:25%;

color:#2196f3;

}

.grow-shape{

position:absolute;

border-radius:50%;

opacity:.15;

background:#fff;

}

.grow-shape-1{

width:280px;

height:280px;

top:-120px;

left:-120px;

}

.grow-shape-2{

width:180px;

height:180px;

bottom:-70px;

right:15%;

}

.grow-shape-3{

width:120px;

height:120px;

top:20%;

right:-40px;

}

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

/*=============================
          FOOTER
==============================*/

.footer-section{
background:#0c3d2e;
color:#fff;
padding:80px 0 30px;
position:relative;
}

.footer-logo{
height:70px;
}

.footer-about{
color:#d8d8d8;
line-height:1.8;
}

.footer-section h4{
margin-bottom:25px;
font-weight:700;
color:#fff;
}

.footer-section ul{
padding:0;
margin:0;
list-style:none;
}

.footer-section ul li{
margin-bottom:12px;
}

.footer-section ul li a{
color:#d8d8d8;
text-decoration:none;
transition:.3s;
}

.footer-section ul li a:hover{
color:#ffc107;
padding-left:5px;
}

.footer-contact li{
display:flex;
gap:12px;
margin-bottom:18px;
color:#d8d8d8;
}

.footer-contact i{
color:#ffc107;
margin-top:4px;
}

.footer-social a{
width:42px;
height:42px;
display:inline-flex;
align-items:center;
justify-content:center;
background:#1b5e43;
color:#fff;
border-radius:50%;
margin-right:10px;
transition:.3s;
text-decoration:none;
}

.footer-social a:hover{
background:#ffc107;
color:#222;
transform:translateY(-5px);
}

.newsletter-form{
display:flex;
margin-top:15px;
overflow:hidden;
border-radius:50px;
background:#fff;
}

.newsletter-form input{
border:none;
flex:1;
padding:14px 20px;
outline:none;
}

.newsletter-form button{
width:60px;
border:none;
background:#28a745;
color:#fff;
font-size:18px;
}

.newsletter-form button:hover{
background:#198754;
}

.footer-bottom{
margin-top:40px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.footer-bottom p{
margin:8px 0;
color:#cfcfcf;
}

.footer-bottom a{
color:#ffc107;
text-decoration:none;
}

.back-to-top{
position:fixed;
right:25px;
bottom:25px;
width:50px;
height:50px;
background:#28a745;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.25);
transition:.3s;
z-index:999;
}

.back-to-top:hover{
background:#ffc107;
color:#222;
transform:translateY(-5px);
}


/* Sticky Navbar */
.header-area.sticky{
background:#ffffff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

/* Active Menu */
.navbar .nav-link.active{
color:#28a745 !important;
font-weight:600;
}

/* Back To Top */
.back-to-top{
opacity:0;
visibility:hidden;
transition:.4s;
}

.back-to-top.show{
opacity:1;
visibility:visible;
}

/* Product Hover */
.active-card{
transform:translateY(-10px);
transition:.4s;
}

/* ===========================
   HERO RIGHT
=========================== */

.hero-image{
    position:relative;
    text-align:center;
    z-index:2;
}

.hero-main-image{
    max-width:100%;
    animation:floatImage 4s ease-in-out infinite;
    position:relative;
    z-index:5;
}

.hero-circle{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.hero-circle-orange{
    width:170px;
    height:170px;
    background:#ffb347;
    top:40px;
    right:40px;
    opacity:.35;
}

.hero-circle-green{
    width:140px;
    height:140px;
    background:#35b56a;
    left:40px;
    bottom:50px;
    opacity:.25;
}

.hero-blob{
    position:absolute;
    width:280px;
    height:280px;
    background:#ffd86b;
    border-radius:58% 42% 60% 40%;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    opacity:.25;
    z-index:0;
}

.floating-leaf,
.floating-product{
    position:absolute;
    z-index:6;
    animation:float 5s ease-in-out infinite;
}

.leaf-1{
    top:20px;
    left:30px;
    width:45px;
}

.leaf-2{
    top:120px;
    right:0;
    width:40px;
}

.leaf-3{
    bottom:30px;
    left:60px;
    width:35px;
}

.chips{
    width:70px;
    top:60%;
    left:-20px;
}

.bottle{
    width:60px;
    top:15%;
    right:-20px;
}

.jaggery{
    width:65px;
    bottom:0;
    right:25px;
}

.hero-wave{
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    line-height:0;
}

.hero-wave svg{
    display:block;
    width:100%;
    height:120px;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}


/*==================================
        PRODUCT SECTION
==================================*/

.product-section{

    background:#f8fbf7;

}

.section-subtitle{

    display:inline-block;

    background:#e8f8ef;

    color:#28a745;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

/* ===========================
   HERO SUBTITLE
=========================== */

.hero-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 22px;
    margin-bottom: 25px;

    background: rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: 50px;

    color: #2E7D32;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.08);
}

.hero-subtitle i{
    color: #43A047;
    font-size: 16px;
}

.section-title{

    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.5px;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.35),
        0 4px 16px rgba(0,0,0,0.20);

}

.section-description{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.product-image{

    position:relative;

    padding:30px;

    background:#f7fdf8;

    text-align:center;

}

.product-image img{

    height:230px;

    object-fit:contain;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}
.product-badge{

    position:absolute;
    top:16px;
    right:16px;

    padding:5px 12px;

    font-size:10px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    border-radius:30px;

    color:#fff;
}

.badge-organic{

    background:#43A047;
    box-shadow:0 5px 12px rgba(67,160,71,.25);

}

.badge-water{

    background:#2196F3;
    box-shadow:0 5px 12px rgba(33,150,243,.25);

}

.product-content{

    padding:30px;

}

.product-icon{

    width:70px;

    height:70px;

    background:#28a745;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:20px;

}

.product-content h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.product-content p{

    color:#666;

    line-height:1.8;

}

.product-list{

    margin:25px 0;

    padding:0;

    list-style:none;

}

.product-list li{

    margin-bottom:12px;

    color:#444;

}

.product-list i{

    color:#28a745;

    margin-right:10px;

}

.product-content .btn{

    padding:12px 30px;

    font-weight:600;

}

/*==============================
        FEATURE STRIP
===============================*/

.feature-strip{

    background:#fff;
    padding:23px 0;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;

}

.feature-box{

    transition:.35s;
    cursor:pointer;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#f4fbf4;
    border:2px solid #dbeedb;

    display:flex;
    align-items:center;
    justify-content:center;

}

.feature-icon i{

    color:#1f6f2d;
    font-size:28px;

}

.feature-box h6{

    font-weight:700;
    color:#1f3d1f;
    margin-bottom:6px;

}

.feature-box p{

    color:#666;
    font-size:14px;
    margin:0;

}
.feature-title{
    font-size: 24px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-description{
    font-size:12px;
    color:#666;
    line-height:1.8;
    max-width:720px;
    margin:0 auto;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:#eef8ef;
    color:#2e7d32;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

/*==============================
        ZENVITA ABOUT
==============================*/

.zen-about-wrap{
    padding:100px 0;
    background:#ffffff;
}

.zen-about-label{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:#eef8ee;
    color:#2E7D32;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.zen-about-label i{
    margin-right:8px;
}

.zen-about-heading{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin:20px 0;
    line-height:1.2;
}

.zen-about-heading span{
    color:#2E7D32;
}

.zen-about-description{
    color:#666;
    font-size:17px;
    line-height:30px;
    margin-bottom:18px;
}

.zen-about-img-box{
    position:relative;
}

.zen-about-img-box img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.zen-about-badge-box{
    position:absolute;
    bottom:25px;
    right:-20px;
    background:#2E7D32;
    color:#fff;
    padding:18px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.zen-about-badge-box h3{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.zen-about-badge-box span{
    font-size:14px;
}

.zen-about-card{
    background:#f8f9fa;
    border-left:4px solid #2E7D32;
    padding:15px 18px;
    margin-bottom:15px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.zen-about-card i{
    color:#2E7D32;
    margin-right:10px;
}

.zen-about-card:hover{
    background:#2E7D32;
    color:#fff;
    transform:translateY(-5px);
}

.zen-about-card:hover i{
    color:#fff;
}

@media(max-width:991px){

    .zen-about-wrap{
        padding:70px 0;
    }

    .zen-about-heading{
        font-size:36px;
    }

    .zen-about-badge-box{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
        display:inline-block;
    }

}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    height:60px;
    width:auto;
}

.logo-text h4{
    margin:0;
    font-size:34px;
    font-weight:700;
    color:#0b7a3b;
    line-height:1;
}

.logo-text span{
    display:block;
    font-size:13px;
    color:#6abf4b;
    font-weight:600;
    letter-spacing:.5px;
}

@media(max-width:991px){

    .logo-img{
        height:48px;
    }

    .logo-text h4{
        font-size:26px;
    }

    .logo-text span{
        font-size:11px;
    }

}

/*==============================
        ZENVITA SERVICES
===============================*/

.zv-service-section{
    padding:100px 0;
    background:#f8faf8;
}

.zv-service-badge{
    display:inline-block;
    background:#eaf8ed;
    color:#2e7d32;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
}

.zv-service-title{
    font-size:46px;
    font-weight:700;
    margin:20px 0;
    color:#222;
}

.zv-service-title span{
    color:#2e7d32;
}

.zv-service-subtitle{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:17px;
}

.zv-service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    height:100%;
    border:1px solid #edf2ed;
}

.zv-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.zv-service-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#2e7d32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.zv-service-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.zv-service-card p{
    color:#666;
    line-height:28px;
    margin:0;
}

.zv-service-card:hover .zv-service-icon{
    background:#198754;
}

@media(max-width:991px){

    .zv-service-section{
        padding:70px 0;
    }

    .zv-service-title{
        font-size:34px;
    }

}

/*=========================
      PARTNER SECTION
==========================*/

.zv-partner-section{
    padding:100px 0;
    background:#fff;
}

.zv-partner-badge{
    display:inline-block;
    background:#edf9ef;
    color:#2E7D32;
    padding:10px 24px;
    border-radius:50px;
    font-weight:600;
}

.zv-partner-title{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
}

.zv-partner-title span{
    color:#2E7D32;
}

.zv-partner-text{
    color:#666;
    line-height:30px;
    font-size:17px;
}

.zv-partner-box{
    background:#2E7D32;
    padding:40px;
    border-radius:20px;
    color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.zv-partner-box h3{
    margin-bottom:30px;
    font-weight:700;
}

.zv-partner-item{
    background:rgba(255,255,255,.1);
    padding:16px 20px;
    margin-bottom:15px;
    border-radius:10px;
    transition:.3s;
    font-weight:600;
}

.zv-partner-item:hover{
    background:#fff;
    color:#2E7D32;
}

.zv-partner-item i{
    width:30px;
    font-size:20px;
}

/*=========================
      PARTNER TYPES
==========================*/

.zv-partner-types{
    padding:90px 0;
    background:#f8faf8;
}

.zv-partner-heading{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.zv-type-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}

.zv-type-card:hover{
    background:#2E7D32;
    color:#fff;
    transform:translateY(-8px);
}

.zv-type-card i{
    font-size:40px;
    color:#2E7D32;
    margin-bottom:20px;
}

.zv-type-card:hover i{
    color:#fff;
}

.zv-type-card h4{
    font-size:20px;
    font-weight:600;
}

@media(max-width:991px){

    .zv-partner-section{
        padding:70px 0;
    }

    .zv-partner-title{
        font-size:34px;
    }

    .zv-partner-heading{
        font-size:32px;
    }

}


.footer-contact-form .form-control{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    border-radius:10px;
    padding:12px 15px;
    transition:.3s;
}

.footer-contact-form .form-control::placeholder{
    color:rgba(255,255,255,.7);
}

.footer-contact-form .form-control:focus{
    background:rgba(255,255,255,.12);
    border-color:#8BC34A;
    box-shadow:none;
    color:#fff;
}

.footer-contact-form select.form-control option{
    color:#333;
    background:#fff;
}

.footer-contact-form textarea{
    resize:none;
}

.footer-contact-form .btn{
    padding:12px;
    font-weight:600;
    font-size:16px;
}

.footer-contact-form h5{
    color:#fff;
    font-weight:600;
    margin-bottom:20px;
}

.logo-text h4{
    font-weight:700;
}

em{
    font-style:italic;
    font-weight:700;
    margin-left: -2px;
}

.product-note-new{
    background:#f8f9fa;
    border-left:4px solid #198754;
    color:#555;
    padding:12px 18px;
    border-radius:8px;
    font-size:15px;
    margin:0 auto 25px;
    max-width:900px;
}