
/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   ROOT VARIABLES
========================================== */

:root{

    --primary:#0B5ED7;
    --secondary:#20C997;
    --dark:#1E293B;
    --white:#ffffff;
    --text:#475569;
    --border:#E2E8F0;
    --transition:.35s ease;

}

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* ==========================================
   GLOBAL CONTAINER
========================================== */

.container{

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

}

/* ==========================================
   HEADER
========================================== */

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all .35s ease;
    z-index: 1000;
}

/* ==========================================
   HEADER ON SCROLL
========================================== */

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
}

.header.scrolled .nav-menu a {
    color: var(--dark);
}

.header.scrolled .logo {
    color: var(--dark);
}

.header.scrolled .logo img {
    filter: none;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar {
    width: 92%;
    max-width: 1400px;
    height: 90px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   LOGO
========================================== */

/* ==========================================
   LOGO
========================================== */

.logo {
    display: grid;
    width: 210px;
    align-items: center;
}

.logo img {
    grid-area: 1 / 1;

    width: 210px;
    height: auto;

    display: block;
    margin-top: 12px;

    transition: opacity 0.3s ease, transform 0.35s ease;
}

/* Dark hero logo */
.logo-dark {
    opacity: 1;
    visibility: visible;
}

/* White/scrolled logo */
.logo-light {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================
   SCROLLED HEADER LOGO
========================================== */

.header.scrolled .logo-dark {
    opacity: 0;
    visibility: hidden;
}

.header.scrolled .logo-light {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   LOGO HOVER
========================================== */

.logo:hover img {
    transform: scale(1.05);
}

/* ==========================================
   NAVIGATION
========================================== */

.nav-menu {
    display: flex;
    gap: 45px;
}

.nav-menu a {
    position: relative;

    color: #fff;
    font-size: 16px;
    font-weight: 500;

    transition: 0.35s;
    padding: 8px 0;
}

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #20C997;

    transition: 0.35s;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #20C997;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #fff;
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
    background: #fff;
    height: 3px;
}

/* ==========================================
   NAV RIGHT
========================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ==========================================
   SHOP BUTTON
========================================== */

.nav-shop-btn {
    padding: 12px 34px;
    border-radius: 50px;

    background: #4ade80;
    color: #111;

    font-weight: 700;
    font-size: 14px;

    transition: 0.35s;
    text-transform: uppercase;
}

.nav-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}

/* ==========================================
   THEME BUTTON
========================================== */

/* ==========================================
   HAMBURGER
========================================== */

.hamburger {
    display: none;

    flex-direction: column;
    gap: 6px;

    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;

    background: #ffffff !important;
    border-radius: 3px;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled .hamburger span {
    background: #1e293b !important;
    box-shadow: none;
}

/*-------------------------HERO SECTION-------------------------*/

.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(-45deg, #04140e, #0A2E22, #0c3829, #051e15);
    background-size: 400% 400%;
    animation: gradientShift 14s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-video-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.hero-container{
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-product-card {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    animation: floatHeroCard 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.hero-product-card:hover {
    transform: translateY(-8px);
}

.hero-products-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.65));
}

@keyframes floatHeroCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to left,
        rgba(0,0,0,.65),
        rgba(0,0,0,.35),
        rgba(0,0,0,.10)
    );
}

.hero-content{

    width: 100%;
    max-width: 580px;

    color: #fff;

    padding-top: 20px;

}

.hero h1{

    font-size: 3.8rem;

    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 25px;

}

.hero h1 span{

    color:#4fd18c;

}

.hero p{

    max-width: 500px;

    font-size: 1.05rem;

    line-height: 1.8;

    margin: 20px 0 40px;

    color: rgba(255,255,255,.9);

}
/* ----------------------------hero buttons---------------------------- */
.hero-buttons{

    display: flex;

    gap: 25px;

    margin-top: 30px;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(32,201,151,.35);

}

.btn-secondary{

    padding:15px 35px;

    border-radius:50px;

    border:2px solid #fff;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

    transform:translateY(-5px);

}

/* ==========================================
   HERO ANIMATIONS
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s ease forwards;

}

.delay-2{

    animation-delay:.5s;

}

.delay-3{

    animation-delay:.8s;

}

.delay-4{

    animation-delay:1.1s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   TRUST SECTION
========================================== */

.trust{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #F6FFF8 0%,
        #F2FCFF 100%
    );

    position:relative;

    overflow:hidden;

}
.trust::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(32,201,151,.08);

    top:-200px;

    left:-200px;

    filter:blur(100px);

}

.trust::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(37,99,235,.08);

    bottom:-200px;

    right:-150px;

    filter:blur(100px);

}

.section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 40px;

}

.section-title span{

    color:var(--secondary);

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    margin:15px 0;

    font-size:42px;

    color:var(--dark);

}

.section-title p{

    color:var(--text);

    line-height:1.8;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.trust-card{

    background:rgba(255,255,255,0.9);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.5);

    border-radius:28px;

    padding:55px 35px;

    text-align:center;

    border-top:3px solid rgba(32,201,151,.35);

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:all .4s ease;

    position:relative;

    overflow:hidden;

}

.trust-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.5),

        transparent

    );

    transition:.8s;

}

.trust-card:hover::before{

    left:100%;

}

.trust-card:hover{

    transform:translateY(-15px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.08),
        0 0 35px rgba(32,201,151,.15);

}

.trust-icon{

    width:95px;

    height:95px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(37,99,235,.08),
        rgba(32,201,151,.08)
    );

    font-size:42px;

}

.trust-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

.trust-card p{

    color:var(--text);

    line-height:1.7;

}

/* ==========================================
   ABOUT PREVIEW SECTION
========================================== */

.about-preview{

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.95) 0%,
            rgba(255,255,255,.88) 45%,
            rgba(255,255,255,.45) 75%,
            rgba(255,255,255,.15) 100%
        ),
        var(--about-bg-img, url("../assets/about_preview.png"));

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

.section-tag{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}
.about-content{

    max-width:580px;

}

.about-content h2{

    font-size:56px;

    line-height:1.1;

    font-weight:700;

    letter-spacing:-1px;

    margin-bottom:30px;

}

.about-content p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:20px;

}

.about-features{

    margin:35px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.feature span{

    width:34px;

    height:34px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:15px;

    flex-shrink:0;

}

.feature p{

    margin:0;

    font-weight:600;

}

.about-btn{

    display:inline-block;

    padding:15px 36px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(37,99,235,.25);

}

/*==========================================
FEATURED PRODUCTS
==========================================*/

/*==========================================
FLAGSHIP PRODUCT
==========================================*/

.features span:hover{

    background:#19c37d;

    color:#fff;

}
/*==========================================
POPULAR PRODUCTS (DARK THEME)
==========================================*/
.popular-products-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.popular-products-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dark-card {
    display: flex;
    flex-direction: column;
}

.dark-card-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

.dark-card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.overlay-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.shop-btn {
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 6px 20px;
    color: #ffffff;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
}

.shop-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.dark-card-content h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Popular Section Explore Button */
.popular-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.explore-products-btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 50px;
    background: linear-gradient(135deg, #20C997 0%, #0B5ED7 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(32, 201, 151, 0.3);
    text-decoration: none;
}

.explore-products-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(32, 201, 151, 0.5);
    color: #ffffff;
}

.dark-card-content p {
    color: #a0abc0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================
   REDESIGNED FOOTER (GLOBAL)
========================================== */

/* Footer CTA Banner */

/* Footer Main Content */
.main-footer {
    background: #0f172a;
    padding: 0;
}

.footer-main {
    background: #0f172a;
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3.5fr 2fr 2.5fr 3fr 2fr;
    gap: 45px;
    margin-bottom: 0;
}

/* Footer Brand Column */
.footer-brand .footer-logo img {
    width: 180px;
    margin-bottom: 20px;
    display: block;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.75;
    font-size: 0.92rem;
    margin-bottom: 5px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #20C997, #10b981);
}

/* Footer Socials */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.35s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -18px;
    opacity: 0;
    color: #20C997;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #20C997;
    padding-left: 18px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.6;
}

.contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(32, 201, 151, 0.1);
    border: 1px solid rgba(32, 201, 151, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-contact a {
    color: #94a3b8;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #20C997;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #0a1128;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-compliance {
    font-size: 0.82rem;
    color: #475569;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
/* ==========================================
   PAGE LOADER
========================================== */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #05080a;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* ==========================================
   BACKGROUND EFFECT
========================================== */

.page-loader__background {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(22, 119, 184, 0.10) 0%,
            rgba(22, 119, 184, 0.03) 30%,
            transparent 65%
        ),
        radial-gradient(
            circle at 30% 70%,
            rgba(22, 166, 111, 0.05),
            transparent 40%
        );

    animation: loaderBackgroundPulse 4s ease-in-out infinite;
}


/* ==========================================
   LOADER CONTENT
========================================== */

.page-loader__content {
    position: relative;
    z-index: 2;

    width: min(88%, 560px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    animation: loaderContentEnter 0.7s ease-out both;
}


/* ==========================================
   LOGO
========================================== */

.page-loader__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    animation: loaderLogoFloat 3s ease-in-out infinite;
}

.page-loader__logo {
    display: block;

    width: min(100%, 480px);
    height: auto;

    object-fit: contain;

    user-select: none;
    -webkit-user-drag: none;
}


/* ==========================================
   PROGRESS BAR
========================================== */

.page-loader__progress {
    width: min(220px, 65vw);

    margin-top: 38px;
}

.page-loader__progress-track {
    position: relative;

    width: 100%;
    height: 3px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.10);
}

.page-loader__progress-bar {
    position: absolute;
    top: 0;
    left: 0;

    width: 40%;
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #8bd600,
        #18a56f,
        #1677b8
    );

    box-shadow:
        0 0 12px rgba(22, 119, 184, 0.45);

    animation: loaderProgressMove 1.5s ease-in-out infinite;
}


/* ==========================================
   LOADING TEXT
========================================== */

.page-loader__text {
    margin: 16px 0 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* ==========================================
   ANIMATED DOTS
========================================== */

.page-loader__dots::after {
    content: "";

    display: inline-block;

    width: 1.2em;

    text-align: left;

    animation: loaderDots 1.4s steps(4, end) infinite;
}


/* ==========================================
   HIDDEN STATE
========================================== */

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes loaderContentEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes loaderLogoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes loaderProgressMove {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(360%);
    }
}


@keyframes loaderDots {
    0% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: "..";
    }

    75%,
    100% {
        content: "...";
    }
}


@keyframes loaderBackgroundPulse {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}


/* ==========================================
   ACCESSIBILITY
========================================== */

@media (prefers-reduced-motion: reduce) {

    .page-loader,
    .page-loader__background,
    .page-loader__content,
    .page-loader__logo-wrapper,
    .page-loader__progress-bar,
    .page-loader__dots::after {
        animation: none;
        transition: none;
    }

}