*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    overflow-x:hidden;
}

/* ======================
   Colors
====================== */

:root{
    --green:#045B36;
    --green-light:#0D7A4A;
    --yellow:#F6C20A;
    --white:#ffffff;
    --text:#222;
}

/* ======================
   Loader Screen
====================== */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    z-index:999999;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:1s;
}

.loader-content{
    text-align:center;
}

.loader-logo{
    width:180px;
}

.loader-bar{
    width:260px;
    height:8px;
    background:#eee;
    border-radius:50px;
    margin:30px auto;
    overflow:hidden;
}

.loader-bar span{
    display:block;
    width:0;
    height:100%;
    background:var(--green);
    animation:loaderBar 2.2s linear forwards;
}

@keyframes loaderBar{

    from{
        width:0;
    }

    to{
        width:100%;
    }

}


/* ======================
   Custom Cursor
====================== */

.cursor{
    width:30px;
    height:30px;

    border:2px solid var(--green);

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:999999;

    transition:
    width .3s,
    height .3s,
    background .3s;
}

.cursor.active{
    width:60px;
    height:60px;
    background:rgba(4,91,54,.15);
}

/* ======================
   Progress bar
====================== */

.progress-bar{
    position:fixed;
    top:0;
    left:0;

    width:0%;
    height:5px;

    background:var(--yellow);

    z-index:999999;
}

/* ======================
   Navbar
====================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:998;
    padding:20px 0;
    transition:all .4s ease;
}

.navbar.scrolled{
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    padding:14px 0;
}

.nav-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:65px;
    display:block;
}


/* ======================
   Menu
====================== */

.nav-menu{
    display:flex;
    align-items:center;
    gap:45px;
}

.nav-menu a{
    text-decoration:none;
    color:var(--green);
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:var(--yellow);
    transition:.4s;
    border-radius:20px;
}

.nav-menu a:hover::after{
    width:100%;
}
.navbar{
    border-bottom:
    1px solid rgba(255,255,255,.15);
}

/*.menu-header {*/
/*    position: absolute;*/
/*    top: 30px;*/
/*    left: 30px;*/
/*    text-align: left;*/
/*    display: none;*/
/*}*/

/*.menu-brand {*/
/*    font-size: 28px;*/
/*    font-weight: 700;*/
/*    color: var(--green);*/
/*    letter-spacing: 2px;*/
/*    display: none;*/
/*}*/

.navbar.scrolled{ background:rgba(255,255,255,.88); backdrop-filter:blur(18px); box-shadow:0 10px 40px rgba(0,0,0,.08); padding:14px 0; }

/* ======================
   Right Side
====================== */

.nav-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-btn{
    text-decoration:none;
    background:var(--green);
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.4s;
}

.nav-btn:hover{
    background:var(--yellow);
    color:#111;
    transform:translateY(-3px);
}


/* ======================
   Hamburger
====================== */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:var(--green);
    border-radius:50px;
    transition:.4s;
}

.hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ======================
   Mobile
====================== */

@media(max-width:992px){

    .nav-menu{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:#fff;

        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:35px;

        box-shadow:-10px 0 50px rgba(0,0,0,.08);
        transition:.5s;
    }

    .nav-menu.active{
        right:0;
    }

    .hamburger{
        display:flex;
    }

    .nav-btn{
        display:none;
    }

    .logo img{
        height:55px;
    }
/*   .menu-header {*/
/*    position: absolute;*/
/*    top: 30px;*/
/*    left: 30px;*/
/*    text-align: left;*/
/*    display: none;*/
/*}*/

/*.menu-brand {*/
/*    font-size: 28px;*/
/*    font-weight: 700;*/
/*    color: var(--green);*/
/*    letter-spacing: 2px;*/
/*    display: none;*/
/*}*/
}

/* Hero Section */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.70);
    z-index:-2;
}

.hero-content{
    width:90%;
    max-width:1400px;
    z-index:2;
}

.hero-subtitle{
    color:var(--green);
    font-size:18px;
    font-weight:600;
}

.hero h1{
    font-size:90px;
    line-height:1;
    color:var(--green);
    margin-top:20px;
}

.hero p{
    max-width:500px;
    margin-top:25px;
    font-size:18px;
    color:#444;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{
    background:var(--green);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
     transition:.4s;
}
.btn-primary:hover{
    transform:
    translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

.btn-secondary{
    border:2px solid var(--green);
    color:var(--green);
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
       transition:.4s;
}
.btn-secondary:hover{
    color:var(--yellow);
    border:2px solid var(--yellow);
    transform:translateY(-3px);
}

.hero-bottle{
    position:absolute;
    right:20%;
    bottom:7%;
    width:220px;
    z-index:200;
}

.hero-bottle img{
    width:150%;
    animation:floatBottle 4s ease-in-out infinite;
}

@keyframes floatBottle{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
    100%{
        transform:translateY(0px);
    }
}

.scroll-indicator{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    color:var(--green);
    font-weight:600;
}

@media(max-width:992px){

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:55px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-bottle{
        visibility:hidden;
        /* width:180px;
        right:50%;
        transform:translateX(50%);
        bottom:30px;
        opacity:.25; */
    }
}

/* Floaing Bubbles */

.bubbles{
    position:absolute;
    width:100%;
    height:100%;
    overflow:hidden;
  
    
}

.bubbles span{
    position:absolute;
    bottom:-100px;

    width:40px;
    height:40px;

    background:
    rgba(255,255,255,.5);

    border-radius:50%;

    animation:
    bubble 12s linear infinite;
}

.bubbles span:nth-child(1){
    left:10%;
    animation-duration:8s;
}

.bubbles span:nth-child(2){
    left:25%;
    width:60px;
    height:60px;
    animation-duration:5s;
}

.bubbles span:nth-child(3){
    left:40%;
      animation-duration:7s;
}

.bubbles span:nth-child(4){
    left:60%;
      animation-duration:9s;
}

.bubbles span:nth-child(5){
    left:75%;
}

.bubbles span:nth-child(6){
    left:85%;
    width:70px;
    height:70px;
}

@keyframes bubble{

    from{
        transform:
        translateY(0)
        scale(.5);
    }

    to{
        transform:
        translateY(-1200px)
        scale(1.3);
    }

}

/* Story Section */

.story{
    padding:150px 0;
    background:#f7fff6;
    overflow:hidden;
}

.story-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.story-image{
    flex:1;
    display:flex;
    justify-content:center;
    /* z-index: 1000; */
}

.story-bottle{
    width:280px;
    transition:.5s;
}

.story-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    color:var(--green);
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.story-content h2{
    font-size:60px;
    color:var(--green);
    line-height:1.1;
    margin-bottom:30px;
}

.story-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.story-btn{
    display:inline-block;
    background:var(--green);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.story-btn:hover{
    background:var(--yellow);
    color:#111;
    transform: translateY(-3px);
}



@media(max-width:992px){

    .story-container{
        flex-direction:column;
        text-align:center;
    }

    .story-content h2{
        font-size:42px;
    }

    .story-bottle{
        width:220px;
    }
}

/* Flavour Universe */
.flavour{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:100px;
    padding:100px 8%;
}

.flavour-text{
    flex:1;
}

.flavour-text span{
    color:var(--green);
    font-weight:700;
}

.flavour-text h2{
    font-size:65px;
    color:var(--green);
    margin:20px 0;
    line-height:1.1;
}

.flavour-text p{
    font-size:18px;
    color:#555;
    max-width:500px;
}

.flavour-text a{
    display:inline-block;
    margin-top:35px;
    background:var(--green);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
       transition:.4s;
    font-weight: 600;
}
.flavour-text a:hover{
    background:var(--yellow);
    color:#111;
    transform:translateY(-3px);
}

.flavour-image{
    flex:1;
    text-align:center;
}

.flavour-image img{
    width:280px;
        animation:floatBottle 4s ease-in-out infinite;

}

.cola{
    background:#ffffff;
}

.keenokit{
    background:#fff9ea;
}

.lemonup{
    background:#f5fff3;
}

.anaar{
    background:#fff2f2;
}

.bull{
    background:#f3f6ff;
}

@media(max-width:992px){

    .flavour{
        flex-direction:column;
        text-align:center;
        gap:50px;
    }

    .flavour-text h2{
        font-size:42px;
    }

    .flavour-image img{
        width:180px;
    }
}

/* Horizontal product */
.products-showcase{
    height:500vh;
    position:relative;
}

.products-sticky{
    position:sticky;
    top:0;
    height:100vh;
    overflow:hidden;
    background:#ffffff;

    display:flex;
    align-items:center;
}

.products-track{
    display:flex;
    gap:80px;
    padding:0 10vw;
    will-change:transform;
}

.product-card{
    width:450px;
    min-width:450px;

    background:#fff;
    border-radius:40px;
    padding:60px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.product-card img{
    width:220px;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.1) rotate(-5deg);
}

.product-card h2{
    color:var(--green);
    margin-top:35px;
    font-size:40px;
}

.product-card p{
    margin-top:15px;
    color:#555;
    line-height:1.8;
}

@media(max-width:992px){

    .products-showcase{
        height:auto;
    }

    .products-sticky{
        position:relative;
        height:auto;
        overflow:auto;
        padding:100px 0;
    }

    .products-track{
        overflow-x:auto;
        padding:0 30px;
    }

    .product-card{
        min-width:320px;
        width:320px;
        padding:40px;
    }

    .product-card img{
        width:160px;
    }

    .product-card h2{
        font-size:28px;
    }
}

/* Manufacturing Count */

.manufacturing{
    padding:140px 8%;
    background:#f7fff6;
}

.manufacturing .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:100px;
}

.manufacturing-left{
    flex:1;
}

.manufacturing-left h2{
    font-size:60px;
    line-height:1.1;
    color:var(--green);
    margin:25px 0;
}

.manufacturing-left p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    max-width:550px;
}

.green-btn{
    display:inline-block;
    margin-top:35px;
    background:var(--green);
    color:#fff;
    padding:16px 35px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.manufacturing-right{
    flex:1;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.counter-card{
    background:#fff;
    padding:50px 30px;
    text-align:center;
    border-radius:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.counter-card h3{
    font-size:70px;
    color:var(--green);
}

.counter-card p{
    margin-top:15px;
    color:#666;
    font-size:18px;
}

@media(max-width:992px){

    .manufacturing .container{
        flex-direction:column;
        text-align:center;
    }

    .manufacturing-left h2{
        font-size:42px;
    }

    .manufacturing-right{
        grid-template-columns:1fr;
        width:100%;
    }

    .counter-card h3{
        font-size:55px;
    }
}

/* gallery */

.gallery-section{
    padding:140px 8%;
    background:#ffffff;
}

.gallery-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:80px;
}

.gallery-heading h2{
    font-size:60px;
    color:var(--green);
    margin:20px 0;
}

.gallery-heading p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:300px;
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:35px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.tall{
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:250px;
    }

    .wide,
    .tall{
        grid-column:unset;
        grid-row:unset;
    }

    .gallery-heading h2{
        font-size:42px;
    }
}

/* Light Box */
.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:99999;
}

.lightbox img{
    width:80%;
    max-width:500px;
    border-radius:25px;
}

.lightbox.show{
    display:flex;
}

/* Distributre */

.distributor-section{
    padding:150px 8%;
    background:#f7fff6;
}

.distributor-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:100px;
}

.distributor-left{
    flex:1;
}

.distributor-left h2{
    font-size:60px;
    color:var(--green);
    margin:25px 0;
}

.distributor-left p{
    color:#555;
    line-height:1.9;
    font-size:18px;
    max-width:550px;
}

.distributor-points{
    margin-top:40px;
}

.point{
    margin-bottom:20px;
    font-size:18px;
    color:#333;
    font-weight:500;
}

.distributor-bottle{
    width:220px;
    margin-top:50px;
}



/* Right */

.distributor-right{
    flex:1;
}

.distributor-right form{
    background:#fff;
    padding:50px;
    border-radius:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.distributor-right input,
.distributor-right textarea{
    width:100%;
    padding:18px 25px;
    border:1px solid #ddd;
    border-radius:18px;
    margin-bottom:20px;
    outline:none;
    font-size:16px;
}

.distributor-right input:focus,
.distributor-right textarea:focus{
    border-color:var(--green);
}

.distributor-right button{
    width:100%;
    background:var(--green);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:18px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.distributor-right button:hover{
    background:var(--yellow);
    color:#111;
}

@media(max-width:992px){

    .distributor-container{
        flex-direction:column;
        text-align:center;
    }

    .distributor-left h2{
        font-size:42px;
    }

    .distributor-right form{
        padding:35px;
    }

    .distributor-bottle{
        width:180px;
    }
}

/* Whatsapp button */

.floating-whatsapp{
    position:fixed;
    right:30px;
    bottom:30px;
    text-decoration: none;

    width:65px;
    height:65px;

    background:#25D366;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    z-index:9999;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

    transition:.4s;
}

.floating-whatsapp i {
    font-size: 40px;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

/* Contact */
/* 
.contact-section{
    padding:150px 8%;
    background:#fff;
}

.contact-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:100px;
}

.contact-left{
    flex:1;
}

.contact-left h2{
    font-size:60px;
    color:var(--green);
    margin:25px 0;
}

.contact-left p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.info-item{
    margin-top:40px;
}

.info-item h4{
    color:var(--green);
    margin-bottom:15px;
}

.info-item a{
    color:#555;
    text-decoration:none;
}

.social-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.contact-right{
    flex:1;
    text-align:center;
}

.contact-right img{
    width:260px;
} */

/* Footer */

/* .footer{
    background:var(--green);
    color:#fff;
    text-align:center;
    padding:40px 20px;
}

.footer img{
    height:70px;
    margin-bottom:30px;
}

.footer p{
    margin-bottom:15px;
} */

/*  */

.footer{
    background: var(--green);
    color: #fff;
    padding: 80px 8% 30px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-box{
    flex: 1;
    min-width: 250px;
}

.footer-logo{
    height: 80px;
    margin-bottom: 20px;
}

.footer-text{
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-tagline{
    font-size: 20px;
    font-weight: 600;
}

.footer-box h3{
    margin-bottom: 25px;
    font-size: 24px;
}

.footer-box a{
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}

.contact_FA{
    margin-right: 10px;
}

.footer-box a:hover{
    color: #fff;
    transform: translateX(5px);
}

.social-links{
    display: flex;
    gap: 15px;
}

.social-links a{
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover{
    background: #fff;
    color: var(--green);
    transform: translateY(-5px);
}

.footer-bottom{
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Mobile */
@media (max-width:768px){

    .footer{
        text-align: center;
    }

    .footer-container{
        flex-direction: column;
        gap: 50px;
    }

    .social-links{
        justify-content: center;
    }
}