/*========== GOOGLE FONT ==========*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/*========== RESET ==========*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font:400 16px/1.6 "Poppins",sans-serif;
    color:#111;
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(92%,1400px);
    margin:auto;
}

@media(max-width:768px){

.container{

    width:94%;

}

}


/*=========================================
                HEADER
=========================================*/

.header{
    position:fixed;
    inset:0 0 auto;
    height:70px;
    background:#fff;
    border-bottom:1px solid #ececec;
    z-index:9999;
    transition:.3s;
}

.header.scrolled{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

body{
    padding-top:70px;
}

.nav{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:145px;
    transition:.3s;
}

.logo:hover img{
    transform:scale(1.03);
}

nav{
    margin-left:auto;
}

.menu{
    display:flex;
    align-items:center;
    gap:clamp(20px,2vw,35px);
}

.menu a{
    position:relative;
    padding:6px 0;
    font:600 15px "Poppins",sans-serif;
    color:#222;
    transition:.3s;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#005BFF;
    transition:.3s;
}

.menu a:hover,
.menu a.active{
    color:#005BFF;
}

.menu a:hover::after,
.menu a.active::after{
    width:100%;
}

.menu-btn{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/*========== MOBILE ==========*/

@media(max-width:768px){

body{
    padding-top:60px;
}

.header,
.nav{
    height:60px;
}

.logo img{
    width:120px;
}

.menu{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    gap:18px;
    padding:20px 0;
    border-top:1px solid #ececec;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.menu.show{
    display:flex;
}

.menu-btn{
    display:block;
}

}
    
/*=========================================
                HERO
=========================================*/

.hero{
    margin-top:18px;
}

.slider{
    position:relative;
    width:100%;
    height:clamp(240px,42vw,640px);
    overflow:hidden;
    border-radius:clamp(16px,2vw,24px);
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .6s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#fff;
}

/*=========================================
            SECTION TITLE
=========================================*/

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin:clamp(20px,3vw,35px) 0;
}

.section-title h2{
    font-size:clamp(22px,2.2vw,32px);
    font-weight:600;
    text-transform:uppercase;
    text-align:center;
    white-space:nowrap;
}

.line{
    width:clamp(80px,10vw,170px);
    flex:0 0 clamp(80px,10vw,170px);
    height:2px;
    background:#005BFF;
}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

    .hero{
        margin-top:10px;
    }

    .slider{
        height:240px;
        border-radius:14px;
    }

    .section-title{
        gap:8px;
    }

    .section-title h2{
        font-size:clamp(16px,4vw,20px);
        white-space:nowrap;
        line-height:1.2;
    }

    .line{
        width:45px;
        flex:0 0 45px;
    }

}
    
/*=========================================
                PRODUCTS
=========================================*/

.products{
    padding:40px 0 80px;
}

.product-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.35s;
    cursor:pointer;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#005BFF;
    box-shadow:0 18px 35px rgba(0,91,255,.15);
}

.product-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    padding:20px;
    transition:.35s;
}

.product-card:hover img{
    transform:scale(1.04);
}

.product-info{
    padding:18px;
    text-align:center;
    border-top:1px solid #f2f2f2;
}

.product-info h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:8px;
    color:#111;
}

.product-info .price{
    font-size:18px;
    font-weight:700;
    color:#005BFF;
}

/*=========================================
            HIDDEN PRODUCTS
=========================================*/

.more-product{
    display:none;
}

.product-grid.show-all .more-product{
    display:flex;
}

/*=========================================
            SEE MORE BUTTON
=========================================*/

.all-products{
    text-align:center;
    margin-top:40px;
}

.all-products button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:210px;
    height:52px;

    border:none;
    outline:none;

    border-radius:50px;

    background:#005BFF;
    color:#fff;

    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,91,255,.25);

}

.all-products button:hover{

    background:#111;

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

/*=========================================
            DESKTOP
=========================================*/

@media(min-width:769px){

    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .product-grid > .product-link:nth-child(n+4){
        display:none;
    }

    .product-grid.show-all > .product-link{
        display:block;
    }

    .product-grid.show-all .more-product{
        display:flex;
    }

}

/*=========================================
            TABLET
=========================================*/

@media(max-width:992px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

    .products{
        padding:35px 0 60px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .product-grid > .product-link:nth-child(n+5){
        display:none;
    }

    .product-grid.show-all > .product-link{
        display:block;
    }

    .product-grid.show-all .more-product{
        display:flex;
    }

    .product-info{
        padding:14px;
    }

    .product-info h3{
        font-size:15px;
    }

    .product-info .price{
        font-size:16px;
    }

    .all-products{
        margin-top:30px;
    }

    .all-products button{
        width:170px;
        height:46px;
        font-size:14px;
    }

}
/*=========================================
        ABOUT
=========================================*/

.about{
    padding:45px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:clamp(35px,5vw,70px);
}

.about-left h2{
    font-size:clamp(30px,3vw,46px);
    line-height:1.2;
    margin-bottom:20px;
}

.about-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:185px;
    height:54px;
    border-radius:50px;
    background:#005BFF;
    color:#fff;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,91,255,.2);
}

.btn:hover{
    background:#111;
    transform:translateY(-4px);
}

.about-right img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

}


/*=========================================
        WHY CHOOSE FJ1
=========================================*/

.benefits{
    padding:40px 0;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:22px;
}

.benefit-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
    border-color:#005BFF;
    box-shadow:0 18px 35px rgba(0,91,255,.15);
}

.benefit-icon{
    width:70px;
    height:70px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#005BFF;
    display:grid;
    place-items:center;
}

.benefit-icon i{
    color:#fff;
    font-size:28px;
}

.benefit-card h3{
    font-size:17px;
    margin-bottom:10px;
}

.benefit-card p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){

.about-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.about-right{
    order:-1;
}

.benefit-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.benefit-card{
    padding:18px 12px;
}

.benefit-icon{
    width:58px;
    height:58px;
    margin-bottom:12px;
}

.benefit-icon i{
    font-size:22px;
}

.benefit-card h3{
    font-size:15px;
}

.benefit-card p{
    font-size:12px;
}

}
    

/*=========================================
        PURE SECTION
=========================================*/

.pure-section{
    padding:45px 0;
}

.pure-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:clamp(35px,5vw,70px);
    align-items:center;
}

.pure-left h2{
    font-size:clamp(28px,2.5vw,34px);
    margin-bottom:25px;
}

.pure-left ul{
    display:grid;
    gap:18px;
}

.pure-left li{
    display:flex;
    align-items:center;
    gap:14px;
    color:#444;
}

.pure-left li i{
    color:#005BFF;
    font-size:18px;
}

/*=========================================
        PURE BOX
=========================================*/

.pure-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.pure-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    min-height:72px;
    background:#005BFF;
    color:#fff;
    border-radius:14px;
    box-shadow:0 8px 18px rgba(0,91,255,.18);
    transition:.3s;
}

.pure-box:hover{
    transform:translateY(-4px);
    background:#0047cc;
}

.pure-box i{
    width:42px;
    height:42px;
    flex-shrink:0;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.pure-box span{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
}

/*=========================================
        TABLET
=========================================*/

@media(max-width:992px){

    .pure-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){

    .pure-section{
        padding:35px 0;
    }

    .pure-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .pure-right{
        grid-template-columns:1fr;
        gap:12px;
    }

    .pure-box{
        min-height:60px;
        padding:12px 14px;
        border-radius:12px;
    }

    .pure-box i{
        width:36px;
        height:36px;
        font-size:15px;
    }

    .pure-box span{
        font-size:13px;
    }

}

/*=========================================
            STATS
=========================================*/

.stats{
    padding:45px 0;
    background:#f8f9fb;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
    margin-bottom:40px;
}

.stat-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h2{
    font-size:clamp(28px,2.5vw,34px);
    color:#005BFF;
    margin-bottom:8px;
}

.stat-card p{
    color:#666;
    line-height:1.6;
}

.trusted-text{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.trusted-text h3{
    font-size:clamp(22px,2vw,28px);
    margin-bottom:15px;
}

.trusted-text p{
    color:#666;
    line-height:1.8;
}

/*========== MOBILE ==========*/

@media(max-width:768px){

.pure-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.pure-right,
.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.pure-box{
    padding:16px 12px;
}

.pure-box i{
    width:42px;
    height:42px;
    font-size:16px;
}

.pure-box span{
    font-size:12px;
}

.stat-card{
    padding:20px 12px;
}

.trusted-text{
    max-width:100%;
}

}
    
/*=========================================
                FOOTER
=========================================*/

.footer{
    margin-top:70px;
    padding:60px 0 0;
    background:#0f172a;
    color:#fff;
}

/*========== GRID ==========*/

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:40px;
    padding-bottom:40px;
    align-items:start;
}

.footer-logo{
    width:150px;
    margin-bottom:18px;
    background:#fff;
    padding:10px 15px;
    border-radius:12px;
}

.footer-box h3{
    font-size:18px;
    margin-bottom:15px;
}

.footer-box p,
.footer-box a{
    color:#cbd5e1;
    font-size:14px;
    line-height:1.8;
    transition:.3s;
}

.footer-box a:hover{
    color:#fff;
}

.footer-box .btn{
    width:100%;
    max-width:210px;
    height:46px;
    margin-top:15px;
    background:#25D366;
    border-radius:50px;
    box-shadow:none;
}

.footer-box .btn:hover{
    background:#1ebc59;
}

/*=========================================
            FEATURES
=========================================*/

.footer-feature{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-feature div{
    text-align:center;
    padding:10px;
}

.footer-feature i{
    font-size:22px;
    color:#0ea5ff;
    margin-bottom:8px;
}

.footer-feature h4{
    font-size:14px;
    margin-bottom:4px;
}

.footer-feature p{
    font-size:12px;
    color:#cbd5e1;
    line-height:1.4;
}

/*=========================================
            FOOTER BOTTOM
=========================================*/

.footer-bottom{
    padding:25px 0;
    text-align:center;
}

.disclaimer{
    font-size:12px;
    color:#94a3b8;
    line-height:1.7;
    margin-bottom:18px;
}

.copyright{
    font-size:13px;
    font-weight:500;
    margin-bottom:18px;
}

/*=========================================
            SOCIAL
=========================================*/

.social-icons{
    display:flex;
    justify-content:center;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1e293b;
    transition:.3s;
}

.social-icons a:hover{
    background:#005BFF;
    transform:translateY(-4px);
}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

    .footer{
        margin-top:50px;
        padding-top:45px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
        text-align:left;
    }

    .footer-logo{
        width:120px;
        margin-bottom:15px;
    }

    .footer-box h3{
        font-size:16px;
    }

    .footer-box p,
    .footer-box a{
        font-size:13px;
    }

    .footer-box .btn{
        width:100%;
        max-width:170px;
        height:40px;
        font-size:13px;
        margin-top:12px;
    }

    .footer-feature{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .footer-feature div{
        padding:8px;
    }

    .footer-feature i{
        font-size:18px;
    }

    .footer-feature h4{
        font-size:12px;
    }

    .footer-feature p{
        font-size:10px;
        line-height:1.3;
    }

}
    
/*=========================================
        SCROLL BUTTON
=========================================*/

#topBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:48px;
    aspect-ratio:1;
    display:none;
    place-items:center;
    border:none;
    border-radius:50%;
    background:#005BFF;
    color:#fff;
    cursor:pointer;
    z-index:999;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,91,255,.25);
}

#topBtn:hover{
    background:#111;
    transform:translateY(-4px);
}

/*=========================================
        ANIMATION
=========================================*/

.hidden{
    opacity:0;
    transform:translateY(35px);
    transition:.6s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){

    #topBtn{
        width:44px;
        right:15px;
        bottom:15px;
    }

}
