@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Quicksand:wght@300..700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Nunito', sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}



/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    background:linear-gradient(
        90deg,
        #f7f1e4 0%,
        #f5f8ff 25%,
        #e7f6ff 55%,
        #e5f7df 100%
    );

    backdrop-filter:blur(14px);

    box-shadow:
        0 5px 20px rgba(0,0,0,0.06);

    border-bottom:1px solid rgba(255,255,255,0.5);

    transition:0.4s ease;
}

.header::before{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.08)
    );

    z-index:-1;
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}
.logo {margin:7px 0;}
.logo img{
/*
    width:80px;
*/
}



/* =========================
   MENU
========================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu li a{
    position:relative;
    font-family:'Nunito', sans-serif;
    font-size:16px;
    font-weight:600;
    color:#222;
    transition:0.3s;
    padding-bottom:8px;
    text-transform:uppercase;
}

.nav-menu li a:hover,
.nav-menu li a.active{
    color:#6397ce;
}

.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:3px;
    border-radius:10px;

    background:linear-gradient(
        to right,
        #76d856,
        #65d0ff,
        #5a95ff
    );

    transition:0.4s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after{
    width:100%;
}



/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    width:35px;
    display:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:#222;
    margin:6px 0;
    border-radius:10px;
    transition:0.4s;
}



/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-top:90px;
}

.hero-slide{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:1s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    position:relative;
    z-index:1;
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:-2;
}

.hero-bg img{
    width:100%;
    height:600px;
    object-fit:cover;
}



/* Overlay */

.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(255,248,236,0.65) 20%,
        rgba(255,255,255,0.1) 70%
    );
    z-index:-1;
}



/* Hero Content */

.hero-content{
    min-height:600px;
    display:flex;
    align-items:center;
}

.hero-text{
    max-width:620px;
    padding-top:40px;
}

.hero-text h1{
    font-family:'Bebas Neue', sans-serif;
    font-size:50px;
    line-height:55px;
    font-weight:500;
    color:#1d1d1d;
    margin-bottom:15px;
}

.hero-text p{
    font-size:20px;
    line-height:33px;
    color:#000;
    margin-bottom:35px;
    max-width:560px;
}



/* Hero Button */

.hero-btn{
    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:60px;

    font-size:17px;
    font-weight:600;

    color:#1b1b1b;

    background:
        radial-gradient(
            circle at top left,
            #eefbff 0%,
            #dff8ff 22%,
            #c8f2df 55%,
            #b7e68e 100%
        );

    border:1px solid rgba(255,255,255,0.9);

    box-shadow:
        0 10px 30px rgba(109, 194, 165, 0.25),
        inset 0 2px 3px rgba(255,255,255,0.8);

    overflow:hidden;

    transition:0.45s ease;
}
.hero-btn::before{
    content:"";

    position:absolute;
    top:0;
    left:-120%;

    width:80%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform:skewX(-25deg);

    transition:0.7s;
}

.hero-btn:hover{
    transform:translateY(-5px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(94, 191, 116, 0.28),
        0 10px 25px rgba(92, 166, 173, 0.18);
}

.hero-btn:hover::before{
    left:130%;
}



/* Hero Wave */

.hero-wave{
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    overflow:hidden;
    line-height:0;
}

.hero-wave svg{
    width:100%;
    height:90px;
    display:block;
}



/* =========================
   SLIDER ARROWS
========================= */

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
    z-index:10;
}

.slider-arrow:hover{
    background:#69b54c;
    color:#fff;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}



/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:#69b54c;
    font-weight:600;
    font-size:17px;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    font-family:'Bebas Neue', sans-serif;
    font-size:26px;
    font-weight:600;
}



/* =========================
   PRODUCTS SECTION
========================= */

.products-section{
    padding:110px 0;
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    padding:35px 30px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-image{
    width:130px;
    height:130px;
    margin:auto;
    margin-bottom:25px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-content h3{
    font-family:'Bebas Neue', sans-serif;
    font-size:26px;
    margin-bottom:15px;
}

.product-content p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

.product-btn{
    display:inline-block;
    padding:13px 28px;
    border-radius:40px;
    background:#d8f3cb;
    color:#111;
    font-weight:700;
    transition:0.3s;
}

.product-btn:hover{
    background:#69b54c;
    color:#fff;
}






/* =========================
   MODERN ABOUT SECTION
========================= */

.about-section{
    position:relative;
    padding:50px 0;
    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(215,245,255,0.5),
        transparent 35%),

        radial-gradient(circle at bottom right,
        rgba(211,245,210,0.5),
        transparent 35%),

        #ffffff;
}



/* WRAPPER */

.about-modern-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}



/* IMAGE SIDE */

.about-modern-image{
    position:relative;
}



/* MAIN IMAGE */

.about-image-main{
    position:relative;
    border-radius:40px;
    overflow:hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.10);
}

.about-image-main img{
    width:100%;
    height:650px;
    object-fit:cover;

    transition:0.6s;
}

.about-image-main:hover img{
    transform:scale(1.05);
}



/* FLOATING CARD */

.floating-milk-card{
    position:absolute;

    right:-30px;
    bottom:40px;

    width:260px;

    padding:30px;

    border-radius:30px;

    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(14px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.10);

    animation:floatCard 4s ease-in-out infinite;
}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}



/* ICON */

.milk-icon{
    width:70px;
    height:70px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #dff8ff,
        #bdefff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:20px;
}



/* CARD TEXT */

.floating-milk-card h4{
    font-size:22px;
    margin-bottom:12px;
    font-family:'Bebas Neue', sans-serif;
    font-weight: 600;
}

.floating-milk-card p{
    font-size:17px;
    line-height:1.8;
    color:#555;
}



/* RIGHT CONTENT */

.about-modern-content{
    position:relative;
}



/* TAG */

.about-tag{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:linear-gradient(
        to right,
        #dff8ff,
        #dff7d8
    );

    color:#2f8b56;

    font-weight:700;

    margin-bottom:25px;
}



/* TITLE */

.about-modern-content h2{
    font-family:'Bebas Neue', sans-serif;

    font-size:36px;
    line-height:33px;
    font-weight: 600;
    margin-bottom:10px;

    color:#1b1b1b;
}



/* DESC */

.about-desc{
    font-size:17px;
    line-height:1.9;
    color:#555;

    margin-bottom:40px;
}



/* FEATURES */

.about-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}



/* FEATURE BOX */

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:25px;

    border-radius:25px;

    background:#fff;

    transition:0.4s;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);
}

.feature-box:hover{
    transform:translateX(10px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.10);
}



/* ICON */

.feature-icon{
    min-width:70px;
    width:70px;
    height:70px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #e4f8ff,
        #daf7d6
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
}



/* CONTENT */

.feature-content h4{
    font-size:25px;
    margin-bottom:1px;
    font-weight: 500;
    font-family:'Bebas Neue', sans-serif;
}

.feature-content p{
    font-size:17px;
    line-height:1.8;
    color:#666;
}



/* BUTTON */

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:40px;

    padding:18px 38px;

    border-radius:60px;

    font-weight:700;
    color:#1b1b1b;

    background:
        radial-gradient(
            circle at top left,
            #eefbff 0%,
            #dff8ff 22%,
            #c8f2df 55%,
            #b7e68e 100%
        );

    box-shadow:
        0 10px 30px rgba(109, 194, 165, 0.22);

    transition:0.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .about-modern-wrapper{
        grid-template-columns:1fr;
    }

    .about-modern-content{
        text-align:center;
    }

}



@media(max-width:767px){

    .about-section{
        padding:80px 0;
    }

    .about-modern-content h2{
        font-size:42px;
    }

    .about-image-main img{
        height:500px;
    }

    .floating-milk-card{
        position:relative;

        right:auto;
        bottom:auto;

        width:100%;

        margin-top:25px;
    }

    .feature-box{
        flex-direction:column;
        text-align:center;
    }

    

}

@media(max-width:767px){

    .feature-box{
        flex-direction:column;
        align-items:center;
        justify-content:center;

        text-align:center;
    }

    .feature-content{
        width:100%;
        text-align:center;
    }

    .feature-content h4,
    .feature-content p{
        text-align:center;
    }

    .feature-icon{
        margin:0 auto 15px;
    }

}


/* =========================
   FOOTER
========================= */

.footer{
    position:relative;
    overflow:hidden;
}



/* TOP CURVE */

.footer-wave{
    position:relative;
    line-height:0;
}

.footer-wave svg{
    width:100%;
    height:90px;
    display:block;
}



/* FOOTER INNER */

.footer-inner{
    background:#f7efdd;

    padding:40px 0 20px;

    position:relative;
}



/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;

    align-items:flex-start;

    padding-bottom:30px;
}



/* LOGO */

.footer-brand img{
    width:100px;
    margin-bottom:25px;
}



/* SOCIAL */

.footer-social{
    display:flex;
    gap:14px;
    margin-top: 10px;
}

.footer-social a{
    width:38px;
    height:38px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;

    transition:0.4s;
}

.footer-social a:hover{
    transform:translateY(-5px);

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );
}



/* TITLES */

.footer-col h4{
    font-family:'Bebas Neue', sans-serif;

    font-size:20px;
    font-weight: 500;
    margin-bottom:20px;

    color:#1d1d1d;
}



/* LINKS */

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a,
.footer-contact li{
    color:#333;

    font-size:15px;

    line-height:1.7;

    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#59a54a;
}



/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.10);

    padding-top:18px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-bottom p,
.footer-bottom a{
    color:#444;

    font-size:14px;
}

.footer-bottom a:hover{
    color:#59a54a;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:767px){

    .footer-wave svg{
        height:60px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    /* LOGO CENTER */

    .footer-brand{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
    }

    .footer-brand img{
        margin:auto;
        margin-bottom:20px;
    }

    /* SOCIAL ICON CENTER */

    .footer-social{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;

        gap:12px;

        width:100%;
    }

    .footer-social a{
        width:42px;
        height:42px;

        display:flex;
        align-items:center;
        justify-content:center;
    }

    /* FOOTER BOTTOM */

    .footer-bottom{
        flex-direction:column;
        gap:10px;

        text-align:center;
    }

}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .hero-text h1{
        font-size:60px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:991px){

    .menu-toggle{
        display:block;
        z-index:1001;
    }

    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:#fff;
        padding:120px 40px;
        transition:0.5s;
        box-shadow:-5px 0 25px rgba(0,0,0,0.08);
    }

    .navbar.active{
        right:0;
    }

    .nav-menu{
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .hero-content{
        min-height:600px;
    }

    .hero-bg img{
        height:600px;
    }

    .hero-text h1{
        font-size:52px;
    }

    .about-wrapper{
        grid-template-columns:1fr;
    }

}



@media(max-width:767px){

    .header .container{
        min-height:80px;
    }

    .logo img{
        width:130px;
    }

    .hero-slider{
        margin-top:80px;
    }

    .hero-content{
        min-height:520px;
    }

    .hero-bg img{
        height:520px;
    }

    .hero-slide::before{
        background:linear-gradient(
            180deg,
            rgba(255,248,236,0.92) 25%,
            rgba(255,255,255,0.35) 100%
        );
    }

    .hero-text{
        text-align:center;
        max-width:100%;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-text p{
        font-size:17px;
    }

    .hero-btn{
        padding:15px 28px;
        font-size:15px;
    }

    .slider-arrow{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

    .section-title h2{
        font-size:36px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:38px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}



@media(max-width:480px){

    .hero-content{
        min-height:480px;
    }

    .hero-bg img{
        height:480px;
    }

    .hero-text h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero-text p{
        font-size:15px;
        line-height:1.7;
    }

    .section-title h2{
        font-size:30px;
    }

    .about-content h2{
        font-size:32px;
    }

    .product-card{
        padding:30px 20px;
    }

}

.slider-arrow{
    display:none;
}





/* =========================
   STORY SECTION
========================= */

.story-section{
    padding:50px 0;
    background:#fff;
    overflow:hidden;
}

.story-wrapper{
    display:grid;
    grid-template-columns:500px 1fr;

    align-items:center;

    gap:60px;
}



/* LEFT SIDE */

.story-left{
    display:flex;
    align-items:flex-end;
    gap:25px;
}



/* CARD */

.milk-card{
    position:relative;
    border-radius:35px;
    overflow:visible;
	background: #E0F7DD;
	background: linear-gradient(180deg, rgba(224, 247, 221, 1) 0%, rgba(222, 239, 249, 1) 100%);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
    transition:0.4s;
}

.milk-card:hover{
    transform:translateY(-10px);
}

.image-card img{
    border-radius:35px;
}



/* ICON */

.card-icon{
    position:absolute;
    top:-35px;
    left:50%;
    transform:translateX(-50%);

    width:70px;
    height:70px;
    border-radius:50%;

    background:linear-gradient(
        135deg,
        #dff8ff,
        #bdefff
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    z-index:5;
}



/* IMAGE CARD */

.image-card{
    width:220px;
    height:500px;
}

.image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(221,245,255,0.5),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(221,248,214,0.5),
        transparent 30%),

        #ffffff;
}



/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:linear-gradient(
        to right,
        #dff8ff,
        #dff7d8
    );

    color:#2f8b56;

    font-size:17px;
    font-weight:700;

    margin-bottom:20px;
}

.section-title h2{
    font-family:'Bebas Neue', sans-serif;

    font-size:36px;
    font-weight: 500;
    line-height:1.8;

    color:#1c1c1c;
}



/* PRODUCT GRID */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}



/* PRODUCT CARD */

.product-card{
    position:relative;

    padding:40px 30px;

    border-radius:35px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #fffef8 0%,
        #eef9ff 50%,
        #e9f8e4 100%
    );

    box-shadow:
        0 20px 45px rgba(0,0,0,0.06),
        inset 0 1px 1px rgba(255,255,255,0.8);

    transition:0.45s ease;
}



/* GLOW EFFECT */

.product-card::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(183, 239, 255, 0.35);

    border-radius:50%;

    top:-100px;
    right:-80px;

    filter:blur(55px);
}



/* HOVER */

.product-card:hover{
    transform:translateY(-12px);

    box-shadow:
        0 28px 60px rgba(84, 144, 120, 0.15),
        0 15px 35px rgba(85, 164, 210, 0.12);
}



/* CONTENT ABOVE GLOW */

.product-card *{
    position:relative;
    z-index:2;
    justify-self: center;
}



/* PRODUCT IMAGE */

.product-image{
    width:170px;
    height:170px;

    margin:auto;
    margin-bottom:25px;
}

.product-image img{
    width:100%;
    height:100%;

    object-fit:contain;

    filter:
        drop-shadow(0 15px 20px rgba(0,0,0,0.12));

    transition:0.45s;
}

.product-card:hover .product-image img{
    transform:translateY(-10px) scale(1.05);
}



/* PRODUCT CONTENT */

.product-content{
    text-align:center;
}

.product-content h3{
    font-family:'Bebas Neue', sans-serif;

    font-size:30px;
    line-height:1.2;

    margin-bottom:15px;

    color:#1d1d1d;
}

.product-content p{
    font-size:17px;
    line-height:1.8;

    color:#666;

    margin-bottom:28px;
}



/* PRODUCT BUTTON */

.product-btn{
    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;

    border-radius:60px;

    font-size:15px;
    font-weight:700;

    color:#1b1b1b;

    background:
        radial-gradient(
            circle at top left,
            #eefbff 0%,
            #dff8ff 22%,
            #c8f2df 55%,
            #b7e68e 100%
        );

    border:1px solid rgba(255,255,255,0.8);

    box-shadow:
        0 10px 25px rgba(109, 194, 165, 0.20),
        inset 0 2px 2px rgba(255,255,255,0.8);

    overflow:hidden;

    transition:0.45s ease;
}



/* BUTTON SHINE */

.product-btn::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:80%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform:skewX(-25deg);

    transition:0.7s;
}



/* BUTTON HOVER */

.product-btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 18px 40px rgba(94, 191, 116, 0.25),
        0 10px 25px rgba(92, 166, 173, 0.15);
}

.product-btn:hover::before{
    left:130%;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:767px){

    .products-section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:24px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-card{
        padding:35px 25px;
    }

    .product-content h3{
        font-size:26px;
    }

}





/* RIGHT SIDE */

.story-right h2{
    font-family:'Bebas Neue', sans-serif;
    font-size:36px;
    font-weight: 500;
    line-height:1.1;
    margin-bottom:20px;
}

.story-right p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:40px;
    max-width:650px;
}



/* STORY BOX */

.story-box{
    position:relative;

    background:linear-gradient(
        135deg,
        #fffdf6 0%,
        #eefbe7 35%,
        #dff6ea 65%,
        #d7f0ff 100%
    );

    border-radius:40px;

    padding:55px 45px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.7);

    backdrop-filter:blur(12px);

    box-shadow:
        0 25px 60px rgba(84, 144, 120, 0.15),
        0 10px 30px rgba(85, 164, 210, 0.12),
        inset 0 1px 1px rgba(255,255,255,0.8);
}

.story-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}



.story-bottom{
    display:flex;
    justify-content:center;
    margin-top:25px;
}

.story-box *{
    position:relative;
    z-index:2;
}

.story-box::before{
    content:"";
    position:absolute;

    width:320px;
    height:320px;

    background:rgba(173, 240, 255, 0.45);

    border-radius:50%;

    top:-140px;
    right:-100px;

    filter:blur(70px);

    z-index:0;
}


.story-box::after{
    content:"";
    position:absolute;

    width:260px;
    height:260px;

    background:rgba(183, 240, 168, 0.35);

    border-radius:50%;

    bottom:-100px;
    left:-80px;

    filter:blur(70px);

    z-index:0;
}



/* ITEMS */

.story-item{
    text-align:center;
}
.story-item:hover img{
    transform:translateY(-10px) scale(1.05);
}

.story-item img{
    width:150px;
    height:150px;

    object-fit:contain;

    margin:auto;
    margin-bottom:20px;

    filter:
        drop-shadow(0 12px 20px rgba(0,0,0,0.12));

    transition:0.4s;
}

.story-item h4{
    font-family:'Bebas Neue', sans-serif;
    font-size:28px;
    font-weight:700;
    color:#1b1b1b;

    letter-spacing:-0.5px;
}



/* ARROWS */

.arrow{
    font-size:58px;

    background:linear-gradient(
        to right,
        #5ebf74,
        #5ca6ad
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-top:-20px;
}



/* DOTS */

.story-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:45px;
}

.story-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d2d2d2;
}

.story-dots span.active{
    width:42px;
    border-radius:30px;
    background:#5ca6ad;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .story-wrapper{
        grid-template-columns:1fr;
    }

    .story-left{
        justify-content:center;
    }

    .story-right{
        text-align:center;
    }

    .story-right p{
        margin:auto;
        margin-bottom:40px;
    }

}



@media(max-width:767px){

    .story-section{
        padding:80px 0;
    }

    .story-left{
        flex-direction:column;
        align-items:center;
    }

    .image-card{
        width:100%;
        max-width:320px;
        height:380px;
    }

    .product-card-style{
        width:100%;
        max-width:320px;
    }

    .story-right h2{
        font-size:42px;
    }

    .story-right p{
        font-size:17px;
    }

    .story-top{
        flex-direction:column;
        gap:20px;
    }

    .story-item img{
        width:110px;
    }

    .story-item h4{
        font-size:24px;
    }

    .arrow{
        transform:rotate(90deg);
        margin:0;
        font-size:40px;
    }

    .story-box{
        padding:30px 20px;
    }

}


/* PRODUCT CARD */

.product-card-style{
    width:240px;
    padding:70px 25px 30px;
    text-align:center;
}

.milk-bottle{
    width:90px;
    margin:auto;
    margin-bottom:20px;
}

.product-card-style h3{
    font-family:'Bebas Neue', sans-serif;
    font-size:22px;
    font-weight: 500;
    margin-bottom:15px;
    color:#000;
}

.product-card-style p{
    font-size:17px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.milk-btn{
    display:inline-block;

    padding:13px 35px;

    border-radius:50px;

    color:#1b1b1b;

    font-weight:600;

    background:radial-gradient(
        circle at top left,
        #eefbff 0%,
        #dff8ff 25%,
        #c9f3df 60%,
        #9fe06d 100%
    );

    box-shadow:
        0 10px 25px rgba(109,194,165,0.22),
        inset 0 2px 2px rgba(255,255,255,0.8);

    transition:0.4s ease;
}

.milk-btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 18px 40px rgba(94,191,116,0.25),
        0 10px 25px rgba(92,166,173,0.18);
}




/* STORY IMAGE */

.story-image-box{
    position:relative;

    border-radius:35px;

    overflow:hidden;

    margin-top:35px;

    background:linear-gradient(
        135deg,
        #fffdf8 0%,
        #eefbe7 50%,
        #dff6ea 100%
    );

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);

    padding:20px;
}



/* IMAGE */

.story-image-box img{
    width:100%;

    border-radius:25px;

    display:block;

    transition:0.5s ease;
}



/* HOVER */

.story-image-box:hover img{
    transform:scale(1.03);
}



/* MOBILE */

@media(max-width:767px){

    .story-image-box{
        margin-top:25px;
        padding:15px;
    }

}







/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(214,245,255,0.45),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(220,248,212,0.45),
        transparent 30%),

        #ffffff;
}



/* SLIDER */

.testimonial-slider{
    overflow:hidden;
    position:relative;
}



/* WRAPPER */

.testimonial-wrapper{
    display:flex;
    gap:30px;

    transition:0.6s ease;
}



/* CARD */

.testimonial-card{
    position:relative;

    min-width:calc((100% - 60px) / 3);

    padding:40px 35px;

    border-radius:35px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #fffef9 0%,
        #eef9ff 50%,
        #edf9e8 100%
    );

    box-shadow:
        0 20px 45px rgba(0,0,0,0.06);

    transition:0.45s ease;
}



/* GLOW */

.testimonial-card::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(181,239,255,0.35);

    border-radius:50%;

    top:-100px;
    right:-70px;

    filter:blur(55px);
}



/* CONTENT */

.testimonial-card *{
    position:relative;
    z-index:2;
}



/* HOVER */

.testimonial-card:hover{
    transform:translateY(-12px);

    box-shadow:
        0 28px 60px rgba(84,144,120,0.14),
        0 15px 35px rgba(85,164,210,0.12);
}



/* QUOTE */

.quote-icon{
    font-size:70px;

    line-height:1;

    margin-bottom:20px;

    color:#63b3ba;
}



/* TEXT */

.testimonial-card p{
    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:30px;
}



/* USER */

.testimonial-user{
    display:flex;
    align-items:center;

    gap:18px;
}



/* IMAGE */

.testimonial-user img{
    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid rgba(255,255,255,0.9);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.10);
}



/* USER NAME */

.testimonial-user h4{
    font-family:'Bebas Neue', sans-serif;

    font-size:18px;
    font-weight: 500;

    margin-bottom:5px;

    color:#1c1c1c;
}



/* LOCATION */

.testimonial-user span{
    color:#69a15f;

    font-size:15px;
}



/* DOTS */

.testimonial-dots{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:10px;

    margin-top:50px;
}

.testimonial-dots span{
    width:12px;
    height:12px;

    border-radius:50%;

    background:#cfcfcf;

    transition:0.4s;
}

.testimonial-dots span.active{
    width:45px;

    border-radius:30px;

    background:linear-gradient(
        to right,
        #63b3ba,
        #7ed957
    );
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .testimonial-card{
        min-width:calc((100% - 30px) / 2);
    }

}



@media(max-width:767px){

    .testimonial-section{
        padding:80px 0;
    }

    .testimonial-card{
        min-width:100%;

        padding:35px 25px;
    }

    .testimonial-user h4{
        font-size:20px;
    }

}













/* =========================
   MEDIA BREADCRUMB
========================= */

.media-breadcrumb{
    position:relative;

    margin-top:95px;

    height:100px;

    overflow:hidden;
}



/* BACKGROUND */

.media-breadcrumb-bg{
    position:absolute;
    inset:0;
}

.media-breadcrumb-bg img{
    width:100%;
    height:100%;

    object-fit:cover;
}



/* OVERLAY */

.media-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.70),
        rgba(0,0,0,0.35)
    );

    display:flex;
    align-items:center;
}



/* CONTENT */

.media-breadcrumb-content{
    text-align:center;
}



/* TITLE */

.media-breadcrumb-content h1{
    font-family:'Bebas Neue', sans-serif;

    font-size:20px;
    font-weight: 600;

    color:#fff;

    margin-bottom:0px;
}



/* BREADCRUMB */

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:15px;

    flex-wrap:wrap;
}

.breadcrumb li{
    position:relative;

    color:#fff;

    font-size:17px;
}

.breadcrumb li a{
    color:#c7f0ff;

    font-weight:600;

    transition:0.3s;
}

.breadcrumb li a:hover{
    color:#7ed957;
}



/* ARROW */

.breadcrumb li:not(:last-child)::after{
    content:">";

    margin-left:15px;

    color:#fff;
}



/* =========================
   MEDIA SECTION
========================= */

.media-section{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(214,245,255,0.45),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(220,248,212,0.45),
        transparent 30%),

        #ffffff;
}



/* FEATURED VIDEO */

.featured-video{
    position:relative;

    border-radius:40px;

    overflow:hidden;

    margin-bottom:70px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.10);
}



/* IFRAME */

.featured-video iframe{
    width:100%;
    height:550px;

    border:none;

    display:block;
}



/* OVERLAY */

.featured-overlay{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:50px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        transparent
    );
}



/* CONTENT */

.featured-content span{
    background:linear-gradient(
        135deg,
        rgba(126,217,87,0.95),
        rgba(105,198,255,0.95)
    );

    color:#fff;

    font-weight:600;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);
}

.featured-content h3{
    font-size:26px;

    color:#fff;

    text-shadow:
        0 4px 15px rgba(0,0,0,0.35);
}


.featured-overlay{
    padding:60px;
}



/* CONTENT WRAPPER */

.featured-content{
    display:flex;
    flex-direction:column;

    gap:18px;
}



/* BADGE */

.featured-content span{
    display:inline-flex;

    width:max-content;

    padding:12px 22px;

    border-radius:50px;
}



/* TITLE */

.featured-content h3{
    margin:0;

    line-height:1.2;
}


@media(max-width:767px){

    .featured-overlay{
        padding:25px;
    }

    .featured-content{
        gap:12px;
    }

}



/* PLAY BUTTON */

.play-btn{
    width:110px;
    height:110px;

    border-radius:50%;

    background:rgba(255,255,255,0.18);

    backdrop-filter:blur(12px);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

    color:#fff;

    margin-bottom:30px;

    transition:0.45s;
}

.play-btn:hover{
    transform:scale(1.12);

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );
}







/* GRID */

.media-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}



/* CARD */

.media-card{
    position:relative;

    border-radius:32px;

    overflow:hidden;

    background:#fff;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.06);

    transition:0.45s;
}

.media-card:hover{
    transform:translateY(-12px);

    box-shadow:
        0 30px 60px rgba(84,144,120,0.14),
        0 15px 35px rgba(85,164,210,0.12);
}
.media-thumb iframe{
    width:100%;
    height:270px;

    border:none;

    display:block;
}


/* IMAGE */
.media-thumb{
    position:relative;

    overflow:hidden;

    border-radius:25px 25px 0 0;
}

.media-thumb img{
    width:100%;
    height:270px;

    object-fit:cover;

    transition:0.5s;
}

.media-card:hover .media-thumb img{
    transform:scale(1.08);
}







/* CONTENT */

.media-content{
    padding:28px;
}

.media-content span{
    color:#69a15f;

    font-weight:700;

    font-size:14px;
}

.media-content h4{
    font-family:'Bebas Neue', sans-serif;

    font-size:18px;
    font-weight: 600;

    line-height:1.5;

    margin-top:14px;

    color:#1c1c1c;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .media-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:767px){

    .media-breadcrumb{
        margin-top:80px;
        height:300px;
    }

    .media-breadcrumb-content h1{
        font-size:48px;
    }

    .breadcrumb li{
        font-size:15px;
    }

    .media-section{
        padding:80px 0;
    }

    .featured-video img{
        height:380px;
    }

    .featured-content h3{
        font-size:34px;
    }

    .play-btn{
        width:85px;
        height:85px;

        font-size:32px;
    }

    .media-grid{
        grid-template-columns:1fr;
    }

    .media-content h4{
        font-size:22px;
    }

}



/* REMOVE YOUTUBE ICONS */

.featured-video iframe{
    pointer-events:none;
}



/* DARK PREMIUM OVERLAY */

.featured-overlay{
    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.15) 100%
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:50px;
}













/* =========================
   MEDIA HERO
========================= */

.media-hero{
    position:relative;

    margin-top:110px;

    height:100px;

    overflow:hidden;
}

.media-hero img{
    width:100%;
    height:100%;

    object-fit:cover;
}



/* OVERLAY */

.media-hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.40)
    );

    display:flex;
    align-items:center;
}



/* CONTENT */

.media-hero-content{
    text-align:center;
}

.media-hero-content h1{
    font-family:'Bebas Neue', sans-serif;

    font-size:18px;
    font-weight: 500;
    color:#fff;

    margin-bottom:5px;
}



/* BREADCRUMB */

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:15px;

    flex-wrap:wrap;
}

.breadcrumb li{
    color:#fff;
    font-size:16px;
}

.breadcrumb li a{
    color:#c7f0ff;

    font-weight:600;
}

.breadcrumb li:not(:last-child)::after{
    content:">";

    margin-left:15px;
}



/* =========================
   MEDIA PAGE
========================= */

.media-page{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(214,245,255,0.45),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(220,248,212,0.45),
        transparent 30%),

        #ffffff;
}



/* FEATURE AREA */

.video-feature-area{
    position:relative;

    display:grid;
    grid-template-columns:58% 42%;

    align-items:stretch;

    overflow:hidden;

    border-radius:38px;

    margin-bottom:90px;

    background:#071018;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.16);
}



/* VIDEO SIDE */

.video-player-side{
    position:relative;

    min-height:620px;

    overflow:hidden;
}

/* VIDEO */

.video-player-side iframe{
    position:absolute;

    top:50%;
    left:50%;

    width:140%;
    height:140%;

    transform:translate(-50%,-50%);

    border:none;

    pointer-events:none;

    filter:
        brightness(0.65)
        contrast(1.05)
        saturate(1.05);
}


.video-dark-layer{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.55)
        ),

        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            transparent 35%
        );

    z-index:2;
}



/* DARK LAYER */

.video-dark-layer{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(15,17,21,0.05),
        rgba(15,17,21,0.35)
    );
}



/* CONTENT SIDE */

.video-content-side{
    position:relative;

    z-index:5;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:70px 60px;

    background:
        radial-gradient(
            circle at top left,
            rgba(126,217,87,0.10),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(105,198,255,0.12),
            transparent 35%
        ),

        #05070c;
}



/* TAG */

.video-tag{
    display:inline-flex;

    width:max-content;

    padding:12px 24px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );

    color:#fff;

    font-size:14px;
    font-weight:700;

    margin-bottom:28px;
}



/* TITLE */

.video-content-side h2{
    font-family:'Bebas Neue', sans-serif;

    font-size:30px;
    line-height:1.1;

    color:#fff;

    margin-bottom:25px;
}



/* TEXT */

.video-content-side p{
    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,0.78);

    margin-bottom:40px;
}



/* BUTTONS */

.video-buttons{
    display:flex;
    gap:18px;

    flex-wrap:wrap;
}



/* BUTTON */

.video-btn{
    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );

    color:#fff;

    font-weight:700;

    transition:0.4s;
}

.video-btn:hover{
    transform:translateY(-5px);
}



/* OUTLINE BUTTON */

.video-outline-btn{
    padding:16px 34px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,0.18);

    background:rgba(255,255,255,0.05);

    color:#fff;
}



/* VIDEO GRID */

.media-videos{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}



/* CARD */

.video-card{
    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.06);

    transition:0.4s;
}

.video-card:hover{
    transform:translateY(-10px);
}



/* THUMB */

.video-thumb iframe{
    width:100%;
    height:250px;

    border:none;
}



/* INFO */

.video-info{
    padding:28px;
}

.video-info span{
    color:#69a15f;

    font-size:14px;
    font-weight:700;
}

.video-info h4{
    font-family:'Bebas Neue', sans-serif;

    font-size:20px;
    font-weight: 500;

    line-height:1.5;

    margin-top:12px;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .media-videos{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:991px){

    .video-feature-area{
        grid-template-columns:1fr;
    }

    .video-player-side iframe{
        min-height:320px;
    }

}



@media(max-width:767px){

    .media-hero{
        margin-top:115px;
        height:100px;
    }

    .media-hero-content h1{
        font-size:20px;
    }

    .media-page{
        padding:80px 0;
    }

    .video-player-side iframe{
        min-height:260px;
    }

    .video-content-side{
        padding:35px 25px;
    }

    .video-content-side h2{
        font-size:32px;
    }

    .video-content-side p{
        font-size:15px;
    }

    .media-videos{
        grid-template-columns:1fr;
    }

    .video-buttons{
        flex-direction:column;
    }

    .video-btn,
    .video-outline-btn{
        width:100%;
        text-align:center;
    }

}









/* =========================
   MODERN FLOAT VIDEO SECTION
========================= */

.float-video-section{
    position:relative;

    margin-bottom:100px;
}



/* VIDEO BOX */

.float-video-box{
    position:relative;

    overflow:hidden;

    border-radius:40px;

    box-shadow:
        0 35px 80px rgba(0,0,0,0.14);

    background:#000;

    height:714px;
}






/* FULL VIDEO */

.float-video-box iframe{
    width:100%;
    height:100%;

    border:none;

    display:block;
}



/* REMOVE OVERLAY */

.float-video-box::before{
    display:none;
}



/* FLOAT CARD */

.float-video-card{
    position:absolute;

    left:60px;
    bottom:60px;

    width:430px;

    padding:45px;

    border-radius:35px;

    background:rgba(8,12,18,0.72);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.25);

    z-index:5;

    overflow:hidden;
}



/* GLOW EFFECT */

.float-video-card::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(126,217,87,0.15);

    top:-80px;
    right:-80px;

    filter:blur(45px);
}



/* TAG */

.float-video-tag{
    position:relative;

    display:inline-flex;

    padding:12px 24px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );

    color:#fff;

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;

    z-index:2;
}



/* TITLE */

.float-video-card h2{
    position:relative;

    font-family:'Bebas Neue', sans-serif;

    font-size:52px;

    line-height:1.05;

    color:#fff;

    margin-bottom:25px;

    z-index:2;
}



/* TEXT */

.float-video-card p{
    position:relative;

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,0.82);

    margin-bottom:35px;

    z-index:2;
}



/* BUTTON */

.float-video-btn{
    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );

    color:#fff;

    font-weight:700;

    transition:0.4s;

    z-index:2;
}

.float-video-btn:hover{
    transform:translateY(-5px);

    box-shadow:
        0 18px 40px rgba(105,198,255,0.28);
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .float-video-card{
        width:380px;
    }

    .float-video-card h2{
        font-size:42px;
    }

}



@media(max-width:991px){

    .float-video-box{
        height:520px;
    }

    .float-video-card{
        left:30px;
        bottom:30px;
    }

}



@media(max-width:767px){

    .float-video-box{
        height:260px;

        border-radius:28px;
    }

    .float-video-card{
        position:relative;

        left:auto;
        bottom:auto;

        width:100%;

        margin-top:25px;

        padding:30px;

        border-radius:25px;
    }

    .float-video-card h2{
        font-size:30px;

        line-height:1.2;
    }

    .float-video-card p{
        font-size:15px;
    }

}













/* =========================
   BENEFIT SECTION
========================= */

.benefit-section{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        radial-gradient(
            circle at top left,
            rgba(105,198,255,0.12),
            transparent 30%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(126,217,87,0.12),
            transparent 30%
        ),

        #fff;
}



/* GRID */

.benefit-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:25px;
}



/* CARD */

.benefit-card{
    position:relative;

    overflow:hidden;

    border-radius:35px;

    min-height:260px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.08);

    transition:0.5s;
}



/* LARGE CARD */

.large-card{
    grid-column:span 2;
    min-height:320px;
}



/* WIDE CARD */

.wide-card{
    grid-column:span 2;
}



/* IMAGE */

.benefit-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s;
}



/* OVERLAY */

.benefit-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.78),
            rgba(0,0,0,0.12)
        );

    display:flex;
    align-items:flex-end;

    padding:35px;
}



/* CONTENT */

.benefit-content{
    color:#fff;
}

.benefit-content span{
    display:inline-flex;

    width:65px;
    height:65px;

    border-radius:50%;

    background:rgba(255,255,255,0.16);

    backdrop-filter:blur(10px);

    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:20px;
}



/* TITLE */

.benefit-content h3{
    font-family:'Bebas Neue', sans-serif;

    font-size:20px;

    line-height:1.2;
}



/* HOVER */

.benefit-card:hover{
    transform:translateY(-12px);
}

.benefit-card:hover img{
    transform:scale(1.08);
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .large-card,
    .wide-card{
        grid-column:span 1;
    }

}



@media(max-width:767px){

    .benefit-section{
        padding:80px 0;
    }

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .benefit-card{
        min-height:220px;
    }

    .large-card{
        min-height:250px;
    }

    .benefit-content h3{
        font-size:24px;
    }

}













/* =========================
   VELAN JOURNEY SECTION
========================= */

.velan-journey-section{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fcff
        );
}



/* WRAPPER */

.journey-wrapper{
    position:relative;

    display:flex;
    flex-direction:column;

    gap:80px;
}



/* CENTER LINE */

.journey-wrapper::before{
    content:"";

    position:absolute;

    left:50%;
    top:0;

    width:3px;
    height:100%;

    background:
        linear-gradient(
            to bottom,
            #7ed957,
            #69c6ff
        );

    transform:translateX(-50%);
}



/* ITEM */

.journey-item{
    position:relative;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}



/* REVERSE */

.reverse-item .journey-image{
    order:2;
}

.reverse-item .journey-content{
    order:1;
}



/* IMAGE */

.journey-image{
    position:relative;
}

.journey-image img{
    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.10);

    transition:0.5s;
}



/* HOVER */

.journey-item:hover .journey-image img{
    transform:scale(1.03);
}



/* CONTENT */

.journey-content{
    position:relative;

    padding:50px;

    border-radius:35px;

    background:#fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.06);
}



/* NUMBER */

.journey-number{
    position:absolute;

    top:-25px;

    left:50px;

    width:70px;
    height:70px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #7ed957,
        #69c6ff
    );

    color:#fff;

    font-size:28px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
        0 15px 35px rgba(105,198,255,0.25);
}



/* TITLE */

.journey-content h3{
    font-family:'Bebas Neue', sans-serif;
    font-size:25px;
    font-weight: 500;
    margin-bottom:10px;
	color:#000;
    margin-top:20px;
}



/* TEXT */

.journey-content p{
    font-size:17px;

    line-height:1.9;

    color:#666;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .journey-wrapper::before{
        display:none;
    }

    .journey-item{
        grid-template-columns:1fr;
    }

    .reverse-item .journey-image,
    .reverse-item .journey-content{
        order:unset;
    }

}



@media(max-width:767px){

    .velan-journey-section{
        padding:80px 0;
    }

    .journey-wrapper{
        gap:50px;
    }

    .journey-image img{
        height:260px;

        border-radius:25px;
    }

    .journey-content{
        padding:35px 25px;
    }

    .journey-number{
        width:60px;
        height:60px;

        font-size:24px;

        left:25px;
    }

    .journey-content h3{
        font-size:28px;
    }

    .journey-content p{
        font-size:15px;
    }

}
















/* =========================
   PRODUCTS PAGE
========================= */

.products-page-section{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fcff
        );
}



/* GRID */

.products-grid{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:35px;
    margin-left: 30px;
    margin-right: 30px;
}



/* CARD */

.product-card{
    position:relative;

    overflow:hidden;

    border-radius:40px;

    background:#fff;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.08);

    transition:0.5s;
}



/* HOVER */

.product-card:hover{
    transform:translateY(-12px);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.12);
}



/* IMAGE AREA */

.product-image-area{
    position:relative;

    height:520px;

    overflow:hidden;

    border-radius:32px 32px 0 0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #eef8f0,
            #e7f5ff
        );
}




/* =========================
   PRODUCT IMAGE AREA
========================= */

.product-image-area{
    position:relative;

    height:auto;

    overflow:hidden;

    border-radius:32px 32px 0 0;

    background:
        linear-gradient(
            135deg,
            #eef8f0,
            #e7f5ff
        );

    padding:40px 20px 10px;
}



/* IMAGE */

.product-image-area img{
    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    transition:0.5s;
}



/* HOVER */

.product-card:hover
.product-image-area img{
    transform:scale(1.03);
}



/* CONTENT */

.product-content{
    width:100%;

    padding:0;

    margin:0;
}



/* TITLE */

.product-content h3{
    font-family:'Bebas Neue', sans-serif;

    font-size:34px;

    margin-bottom:15px;
}



/* TEXT */

.product-content p{
    font-size:17px;

    line-height:1.8;

    color:#666;

    margin-bottom:28px;
}



/* FEATURES */

.product-features{
    display:flex;
    flex-direction:column;

    gap:14px;

    margin-bottom:30px;
}

.product-features li{
    padding:15px 18px;

    border-radius:18px;

    background:#f8fbff;

    font-weight:600;
}



/* INFO */

.product-info{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:25px;
}



/* BOX */

.info-box{
    padding:18px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #f8fff5,
            #f0f8ff
        );

    text-align:center;
}



/* LABEL */

.info-box span{
    display:block;

    font-size:14px;

    color:#666;

    margin-bottom:8px;
}



/* VALUE */

.info-box h4{
    font-family:'Bebas Neue', sans-serif;

    font-size:24px;
}



/* =========================
   NUTRITION
========================= */

.nutrition-box{
    border-radius:22px;

    overflow:hidden;

    border:1px solid #edf2f7;
}



/* BUTTON */

.nutrition-toggle{
    width:100%;

    border:none;

    padding:20px 25px;

    background:
        linear-gradient(
            135deg,
            #f8fff5,
            #f0f8ff
        );

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    font-size:17px;
    font-weight:700;
}



/* =========================
   ALWAYS SHOW NUTRITION
========================= */

.always-show{
    position:relative;

    width:100%;

    margin:0;

    padding:0;

    border:none;

    border-radius:0 0 40px 40px;

    overflow:hidden;

    background:#fff;
}



/* HEADER */

.nutrition-header{
    width:100%;

    padding:38px 25px;

    margin:0;

    background:
        linear-gradient(
            135deg,
            #eef8f0,
            #e7f5ff
        );

    text-align:center;
}

.nutrition-content.show-content{
    width:100%;

    padding:0 35px 35px;

    box-sizing:border-box;
}

.nutrition-table{
    width:100%;
}

.nutrition-header h4{
    font-size:25px;
    font-weight: 600;
    font-family:'Bebas Neue', sans-serif;
    color:#111;
}



/* CONTENT */

.show-content{
    display:block;

    padding:10px 35px 30px;
}


/* TABLE */

.nutrition-table{
    width:100%;

    border-collapse:collapse;
}

.nutrition-table tr{
    border-bottom:
        1px solid #edf2f7;
}

.nutrition-table td{
    padding:14px 0;
    font-size:14px;
    color:#555;
    text-align: left;
}

.nutrition-table td:last-child{
    text-align:right;

    font-weight:600;

    color:#111;
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .products-grid{
        grid-template-columns:1fr;
    }

}



@media(max-width:767px){

    .products-page-section{
        padding:80px 0;
    }

    .product-content{
        padding:28px 22px;
    }

    .product-content h3{
        font-size:28px;
    }

    .product-content p{
        font-size:15px;
    }

    .product-image-area{
        height:360px;
    }

    .product-image-area img{
        width:100%;
        height:100%;
    }

}



/* =========================
   PRODUCT CARD ANIMATION
========================= */

.product-card{
    position:relative;

    overflow:hidden;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}



/* HOVER LIFT */

.product-card:hover{
    transform:
        translateY(-15px);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.15);
}



/* GLOW EFFECT */

.product-card::before{
    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(105,198,255,0.18),
            transparent 70%
        );

    opacity:0;

    transition:0.5s;

    z-index:1;
}



/* SHOW GLOW */

.product-card:hover::before{
    opacity:1;
}







/* FLOAT KEYFRAME */

@keyframes floatingProduct{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}



/* =========================
   PRODUCT IMAGE ANIMATION
========================= */

.product-image-area img{
    position:relative;

    transition:0.5s ease;

    animation:
        productFloat 3s ease-in-out infinite;
}



/* FLOATING */

@keyframes productFloat{

    0%{
        top:0;
    }

    50%{
        top:-12px;
    }

    100%{
        top:0;
    }

}



/* HOVER */

.product-card:hover
.product-image-area img{
    scale:1.05;
}


.product-card{
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.product-card:hover{
    transform:
        translateY(-12px);

    box-shadow:
        0 35px 70px rgba(0,0,0,0.14);
}




/* =========================
   PRODUCT CARD HOVER
========================= */

.product-card{
    position:relative;

    overflow:hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}



/* CARD HOVER */

.product-card:hover{
    transform:
        translateY(-14px);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.14);
}



/* IMAGE EFFECT */

.pb{
    overflow:hidden;
}

.pb img{
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}



/* IMAGE HOVER */

.product-card:hover .pb img{
    transform:
        scale(1.05);

    filter:
        drop-shadow(
            0 25px 35px rgba(0,0,0,0.12)
        );
}



/* SOFT GLOW */

.product-card::before{
    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(105,198,255,0.16),
            transparent 70%
        );

    opacity:0;

    transition:0.5s;
}



/* SHOW GLOW */

.product-card:hover::before{
    opacity:1;
}



/* SHINE EFFECT */

.product-image-area::after{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transform:skewX(-20deg);
}



/* SHINE ON HOVER */

.product-card:hover
.product-image-area::after{
    animation:
        shineMove 1s ease;
}



/* KEYFRAME */

@keyframes shineMove{

    100%{
        left:160%;
    }

}

.product-card{
    backdrop-filter:blur(10px);
}


.pb{
    padding-bottom: 25px;
}











/* =========================
   RECIPES SECTION
========================= */

.recipes-showcase{
    padding:100px 0;

    background:
        linear-gradient(
            180deg,
            #f8fcff,
            #ffffff
        );
}



/* HEADER */

.recipes-header{
    text-align:center;

    margin-bottom:70px;
}

.recipes-label{
    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:
        linear-gradient(
            135deg,
            #c9f3b3,
            #9fd9ff
        );

    color:#24552c;

    font-weight:700;

    margin-bottom:25px;
}

.recipes-header h2{
    font-size:36px;
    font-weight: 500;
    line-height:1.2;
    color:#111;
    font-family:'Bebas Neue', sans-serif;
    margin-bottom:10px;
}

.recipes-header p{
    max-width:760px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.9;
}



/* GRID */

.recipes-grid{
    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:40px;

    align-items:start;
}



/* CARD */

.recipe-card{
    background:#fff;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.06);

    transition:0.5s;

    position:relative;
}



/* HOVER */

.recipe-card:hover{
    transform:
        translateY(-10px);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.12);
}



/* IMAGE */

.recipe-image{
    position:relative;

    height:320px;

    overflow:hidden;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:15px;
}

.recipe-image img{
    width:100%;
    height:100%;

    object-fit:contain;

    background:#fff;
}

.recipe-card:hover
.recipe-image img{
    transform:scale(1.08);
}



/* BADGE */

.recipe-badge{
    position:absolute;

    top:25px;
    left:25px;

    padding:10px 22px;

    border-radius:50px;

    background:
        linear-gradient(
            135deg,
            #7ed957,
            #69c6ff
        );

    color:#fff;

    font-size:14px;

    font-weight:700;
}



/* CONTENT */

.recipe-content{
    padding:35px;
}

.recipe-content h3{
    font-size:20px;
    font-weight: 500;
    text-align: center;
    line-height:1.35;

    font-family:'Bebas Neue', sans-serif;

    color:#111;

    margin-bottom:18px;

    min-height:40px;
}

.recipe-content{
    display:flex;

    flex-direction:column;

    height:100%;
}

@media(max-width:767px){

    .recipe-content h3{
        font-size:24px;

        min-height:auto;
    }

}



/* META */

.recipe-meta{
    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:20px;
}

.recipe-meta span{
    font-size:15px;

    font-weight:600;

    color:#555;
}



/* TEXT */

.recipe-content p{
    color:#666;

    line-height:1.9;

    margin-bottom:28px;
}



/* BUTTON */

.recipe-btn{
    border:none;
    padding:15px 32px;
    border-radius:60px;
    background:
        linear-gradient(
            135deg,
            #7ed957,
            #69c6ff
        );
    color:#000;
	font-size:17px;
    font-weight:500;
    cursor:pointer;
    transition:0.4s;
}

.recipe-btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 18px 40px rgba(105,198,255,0.28);
}



/* DETAILS */

.recipe-details{
    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
        max-height 0.5s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;

    margin-top:0;
}



/* ACTIVE */

.recipe-card.active
.recipe-details{
    max-height:600px;

    opacity:1;

    margin-top:30px;
}



/* DETAILS TITLE */

.recipe-details h4{
    font-size:24px;

    margin-bottom:15px;

    color:#111;

    font-family:'Bebas Neue', sans-serif;
}



/* LIST */

.recipe-details ul{
    padding-left:20px;

    margin-bottom:25px;
}

.recipe-details ul li{
    margin-bottom:10px;

    color:#555;

    line-height:1.7;
}



/* RESPONSIVE */

@media(max-width:991px){

    .recipes-grid{
        grid-template-columns:1fr;
    }

    .recipes-header h2{
        font-size:42px;
    }

}



@media(max-width:767px){

    .recipes-showcase{
        padding:70px 0;
    }

    .recipes-header h2{
        font-size:32px;
    }

    .recipe-image{
        height:240px;
    }

    .recipe-content{
        padding:28px;
    }

    .recipe-content h3{
        font-size:26px;
    }

}







/* =========================
   CONTACT SECTION
========================= */

.contact-modern-section{
    padding:50px 0;

    background:
        linear-gradient(
            180deg,
            #f8fcff,
            #ffffff
        );
}



/* HEADING */

.contact-heading{
    text-align:center;

    margin-bottom:70px;
}

.contact-tag{
    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:
        linear-gradient(
            135deg,
            #c9f3b3,
            #9fd9ff
        );

    color:#24552c;

    font-weight:700;

    margin-bottom:25px;
}

.contact-heading h2{
    font-size:36px;
    font-weight: 500;
    line-height:1.2;
    margin-bottom:10px;
    font-family:'Bebas Neue', sans-serif;
    color:#111;
}

.contact-heading p{
    max-width:760px;

    margin:auto;

    font-size:17px;

    line-height:1.9;

    color:#666;
}



/* WRAPPER */

.contact-wrapper{
    display:grid;

    grid-template-columns:
        420px 1fr;

    gap:50px;
}



/* LEFT BOX */

.contact-info-box{
    padding:45px;

    border-radius:35px;
background: #E0F7DD;
	background: linear-gradient(180deg, rgba(224, 247, 221, 1) 0%, rgba(222, 239, 249, 1) 100%);
    color:#000;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.12);
}

.contact-info-box h3{
    font-size:26px;
    font-weight: 500;
    margin-bottom:20px;

    font-family:'Bebas Neue', sans-serif;
}

.contact-info-box > p{
    color:#000;
    line-height:1.9;
    margin-bottom:40px;
}



/* ITEM */

.contact-info-item{
    display:flex;

    gap:18px;

    margin-bottom:35px;
}

.contact-icon{
    width:60px;
    height:60px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #7ed957,
            #69c6ff
        );

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:24px;

    flex-shrink:0;
}

.contact-info-item h4{
    margin-bottom:8px;
    font-weight: 600;
    font-size:20px;
}

.contact-info-item p{
    color:#000;

    line-height:1.8;
}



/* FORM */

.contact-form-box{
    padding:50px;

    border-radius:35px;

    background:#fff;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.06);
}



/* FORM GROUP */

.form-group{
    margin-bottom:25px;
}

.form-group input,
.form-group textarea{
    width:100%;

    border:none;

    background:#f4f8fb;

    border-radius:18px;

    padding:18px 22px;

    font-size:17px;

    color:#222;

    outline:none;

    transition:0.3s;
}



/* FOCUS */

.form-group input:focus,
.form-group textarea:focus{
    background:#fff;

    box-shadow:
        0 0 0 3px rgba(105,198,255,0.15);
}



/* SECURITY */

.security-box{
    background:#f4f8fb;

    padding:22px;

    border-radius:18px;

    margin-bottom:30px;
}

.security-box label{
    display:block;

    margin-bottom:15px;

    font-size:17px;

    color:#111;
}

.security-box strong{
    font-size:24px;

    color:#69c6ff;
}

.security-box input{
    width:100%;

    border:none;

    background:#fff;

    padding:16px 18px;

    border-radius:14px;

    outline:none;
}



/* BUTTON */

.contact-btn{
    border:none;
    padding:18px 40px;
    border-radius:60px;
    background:
        linear-gradient(
            135deg,
            #7ed957,
            #69c6ff
        );

    color:#000;
    font-size:17px;
    font-weight:500;
    cursor:pointer;
    transition:0.4s;
}

.contact-btn:hover{
    transform:translateY(-5px);

    box-shadow:
        0 18px 40px rgba(105,198,255,0.28);
}



/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}



@media(max-width:767px){

    .contact-modern-section{
        padding:70px 0;
    }

    .contact-heading h2{
        font-size:34px;
    }

    .contact-info-box,
    .contact-form-box{
        padding:30px;
    }

}






/* SUCCESS */

.success-message{
    background:#e8fff0;

    color:#1b8f46;

    padding:18px 22px;

    border-radius:16px;

    margin-bottom:25px;

    font-weight:600;
}



/* ERROR */

.error-message{
    background:#fff1f1;

    color:#d92c2c;

    padding:18px 22px;

    border-radius:16px;

    margin-bottom:25px;

    font-weight:600;
}

.black1{
    color: #000!important;
    font-weight: 600;
}
.black{
    color: #000!important;
}














/* =========================
   SHOWCASE PRODUCTS
========================= */

.showcase-products{
    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fcff
        );
}



/* PRODUCT ITEM */

.showcase-product-item{
    display:grid;

    grid-template-columns:
        50% 50%;

    align-items:center;

    gap:70px;

    margin-bottom:110px;
}



/* REVERSE */

.reverse-showcase .showcase-product-image{
    order:2;
}

.reverse-showcase .showcase-product-content{
    order:1;
}



/* IMAGE AREA */

.showcase-product-image{
    position:relative;

    min-height:650px;

    border-radius:45px;

    overflow:hidden;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:60px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.08);

    transition:0.5s;
}



/* THEMES */

.green-showcase{
    background:
        linear-gradient(
            135deg,
            #eefbef,
            #edf8ff
        );
}

.red-showcase{
    background:
        linear-gradient(
            135deg,
            #fff2f2,
            #fff8f3
        );
}

.blue-showcase{
    background:
        linear-gradient(
            135deg,
            #edf4ff,
            #eefaff
        );
}



/* IMAGE */

.showcase-product-image img{
    width:100%;

    max-width:420px;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}



/* HOVER */

.showcase-product-item:hover
.showcase-product-image{
    transform:
        translateY(-10px);

    box-shadow:
        0 40px 90px rgba(0,0,0,0.14);
}



/* IMAGE HOVER */

.showcase-product-item:hover
.showcase-product-image img{
    transform:
        scale(1.05);

    filter:
        drop-shadow(
            0 30px 40px rgba(0,0,0,0.12)
        );
}



/* CONTENT */

.showcase-product-content{
    width:100%;
}



/* TAG */

.showcase-tag{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:12px 26px;

    border-radius:60px;

    background:
        linear-gradient(
            135deg,
            #7ed957,
            #69c6ff
        );

    color:#fff;

    font-size:15px;
    font-weight:700;

    margin-bottom:30px;

    box-shadow:
        0 15px 35px rgba(105,198,255,0.20);
}



/* TITLE */

.showcase-product-content h2{
    font-size:62px;

    line-height:1.1;

    color:#111;

    margin-bottom:25px;

    font-family:'Poppins', sans-serif;
}



/* DESCRIPTION */

.showcase-desc{
    font-size:18px;

    line-height:2;

    color:#666;

    margin-bottom:40px;

    max-width:90%;
}



/* TABLE WRAP */

.showcase-table-wrap{
    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:#fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.05);
}



/* TABLE */

.showcase-table{
    width:100%;

    border-collapse:collapse;
}



/* ROW */

.showcase-table tr{
    border-bottom:
        1px solid #edf2f7;

    transition:0.3s;
}



/* HOVER */

.showcase-table tr:hover{
    background:#f9fcff;
}



/* CELL */

.showcase-table td{
    padding:14px 30px;

    font-size:14px;

    color:#444;
}



/* LAST CELL */

.showcase-table td:last-child{
    text-align:right;

    font-weight:700;

    color:#111;
}



/* LAST ROW */

.showcase-table tr:last-child{
    border-bottom:none;
}



/* RESPONSIVE */

@media(max-width:1200px){

    .showcase-product-content h2{
        font-size:52px;
    }

}



@media(max-width:991px){

    .showcase-product-item{
        grid-template-columns:1fr;

        gap:40px;
    }

    .reverse-showcase .showcase-product-image,
    .reverse-showcase .showcase-product-content{
        order:unset;
    }

    .showcase-product-image{
        min-height:500px;
    }

    .showcase-product-content h2{
        font-size:46px;
    }

    .showcase-desc{
        max-width:100%;
    }

}



@media(max-width:767px){

    .showcase-products{
        padding:70px 0;
    }

    .showcase-product-item{
        gap:30px;

        margin-bottom:70px;
    }

    .showcase-product-image{
        min-height:320px;

        padding:35px;

        border-radius:30px;
    }

    .showcase-product-image img{
        max-width:220px;
    }

    .showcase-product-content h2{
        font-size:34px;
    }

    .showcase-desc{
        font-size:17px;

        line-height:1.8;
    }

    .showcase-table td{
        padding:15px 18px;

        font-size:14px;
    }

}
