/*=================================
  GOOGLE FONT
==================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=================================
  RESET
==================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7f8fc;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*=================================
  HEADER
==================================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:65px;
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-menu a:hover{
    color:#0066ff;
}

.header-icons{
    display:flex;
    gap:20px;
    font-size:20px;
}

.header-icons i{
    cursor:pointer;
}

.header-icons i:hover{
    color:#0066ff;
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/*=================================
 HERO SLIDER
==================================*/

.hero{
    margin-top:95px;
    position:relative;
}

.slider{
    position:relative;
    overflow:hidden;
}

.slide{
    display:none;
    position:relative;
}

.slide.active{
    display:block;
}

.slide img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.caption{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:#fff;
    max-width:550px;
}

.caption h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:15px;
}

.caption p{
    font-size:22px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#0066ff;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#0047b3;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:22px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.dots{
    position:absolute;
    bottom:25px;
    width:100%;
    display:flex;
    justify-content:center;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.5;
    border-radius:50%;
}

.dot.active{
    opacity:1;
    background:#0066ff;
}

/*=================================
 CATEGORY
==================================*/

.category{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    height:220px;
    object-fit:cover;
}

.category-card h3{
    padding:18px;
    text-align:center;
}

/*=================================
  PRODUCTS
==================================*/

.products{
    padding:80px 5%;
    background:#f8f9fc;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-img{
    overflow:hidden;
    background:#fff;
}

.product-img img{
    width:100%;
    height:300px;
    object-fit:contain;
    transition:.5s;
    padding:20px;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:20px;
    text-align:center;
}

.product-info h3{
    font-size:20px;
    color:#222;
    margin-bottom:10px;
    font-weight:600;
}

.price{
    color:#0A63FF;
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
}

.buy-btn{
    display:inline-block;
    width:100%;
    padding:13px;
    background:#0A63FF;
    color:#fff;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.buy-btn:hover{
    background:#0046c7;
    transform:translateY(-2px);
}

/* Product Badge */

.product-card::before{

    content:"NEW";

    position:absolute;

    top:15px;

    left:15px;

    background:#ff3d3d;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:bold;

}

/* Discount Badge */

.product-card::after{

    content:"10% OFF";

    position:absolute;

    top:15px;

    right:15px;

    background:#00b894;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:bold;

}

/*=================================
  PRODUCT SECTION TITLE
==================================*/

.products .section-title{

    margin-bottom:50px;

}

.products .section-title h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:8px;

}

.products .section-title p{

    color:#666;

    font-size:17px;

}

/*=================================
  WHY CHOOSE US
==================================*/

.why-section{
    padding:90px 5%;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:40px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card img{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;
}

.why-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    font-size:15px;
    line-height:25px;
}

/*=================================
  BRAND BANNER
==================================*/

.brand-banner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:90px 5%;
    background:#0A63FF;
    color:#fff;
}

.banner-left{
    flex:1;
}

.banner-left h2{
    font-size:45px;
    margin-bottom:20px;
}

.banner-left p{
    font-size:17px;
    line-height:30px;
    margin-bottom:30px;
}

.banner-btn{
    display:inline-block;
    background:#fff;
    color:#0A63FF;
    padding:15px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.banner-btn:hover{
    background:#111;
    color:#fff;
}

.banner-right{
    flex:1;
}

.banner-right img{
    width:100%;
}

/*=================================
 CUSTOMER REVIEW
==================================*/

.reviews{
    padding:90px 5%;
    background:#f8f9fc;
}

.reviews h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-card p{
    margin:20px 0;
    color:#555;
    line-height:28px;
}

.review-card h4{
    color:#0A63FF;
}

/*=================================
 FAQ
==================================*/

.faq{
    padding:90px 5%;
    background:#fff;
}

.faq h2{
    text-align:center;
    font-size:40px;
    margin-bottom:45px;
}

.faq-item{
    background:#f8f9fc;
    border-radius:12px;
    margin-bottom:20px;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-item h3{
    margin-bottom:12px;
    color:#111;
}

.faq-item p{
    color:#666;
    line-height:28px;
}

/*=================================
  SUPPORT SECTION
==================================*/

.support{
    padding:90px 5%;
    background:#0A63FF;
    color:#fff;
    text-align:center;
}

.support h2{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.support p{
    font-size:18px;
    margin-bottom:30px;
}

.support a{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.support a:hover{
    background:#1aa34a;
    transform:translateY(-4px);
}


/*=================================
  FOOTER
==================================*/

.footer{
    background:#111827;
    color:#ddd;
    padding:70px 5% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr 1fr;
    gap:40px;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer-about p{
    line-height:28px;
    color:#bbb;
}

.footer h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li a{
    color:#bbb;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#0A63FF;
    padding-left:6px;
}

.footer-contact p{
    margin-bottom:12px;
    color:#bbb;
}


/*=================================
 SOCIAL ICONS
==================================*/

.footer-social a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1f2937;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
    font-size:18px;
}

.footer-social a:hover{
    background:#0A63FF;
    transform:translateY(-5px);
}


/*=================================
 COPYRIGHT
==================================*/

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#999;
}


/*=================================
 FLOATING WHATSAPP
==================================*/

.whatsapp-float{

    position:fixed;

    right:20px;

    bottom:90px;

    width:60px;

    height:60px;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:28px;

    box-shadow:0 10px 20px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}


/*=================================
 BACK TO TOP
==================================*/

#topBtn{

    position:fixed;

    right:20px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0A63FF;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    box-shadow:0 10px 20px rgba(0,0,0,.25);

}

#topBtn:hover{

    background:#003bb3;

}

/*=================================
        RESPONSIVE CSS
==================================*/

/* Laptop */
@media (max-width:1200px){

.container{
    width:95%;
}

.caption h1{
    font-size:48px;
}

.product-grid{
    grid-template-columns:repeat(3,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}


/* Tablet */

@media (max-width:992px){

.nav-menu{
    display:none;
}

.menu-btn{
    display:block;
}

.header-icons{
    display:none;
}

.slide img{
    height:500px;
}

.caption{
    left:40px;
}

.caption h1{
    font-size:38px;
}

.caption p{
    font-size:18px;
}

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

.review-grid{
    grid-template-columns:repeat(2,1fr);
}

.brand-banner{
    flex-direction:column;
    text-align:center;
}

.banner-left,
.banner-right{
    width:100%;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    margin:auto;
    margin-bottom:20px;
}

}


/* Mobile */

@media (max-width:768px){

.hero{
    margin-top:80px;
}

.slide img{
    height:300px;
}

.caption{
    left:20px;
    max-width:260px;
}

.caption h1{
    font-size:24px;
}

.caption p{
    font-size:14px;
}

.btn{
    padding:10px 20px;
    font-size:14px;
}

.prev,
.next{
    width:38px;
    height:38px;
    font-size:16px;
}

.section-title h2{
    font-size:28px;
}

.category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.category-card img{
    height:140px;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.product-img img{
    height:180px;
}

.product-info{
    padding:12px;
}

.product-info h3{
    font-size:15px;
}

.price{
    font-size:18px;
}

.buy-btn{
    padding:10px;
    font-size:14px;
}

.why-grid{
    grid-template-columns:1fr;
}

.review-grid{
    grid-template-columns:1fr;
}

.support h2{
    font-size:30px;
}

.footer{
    padding:50px 20px;
}

.whatsapp-float{
    width:55px;
    height:55px;
    font-size:24px;
}

#topBtn{
    width:50px;
    height:50px;
}

}


/* Small Mobile */

@media (max-width:480px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

.product-grid{

grid-template-columns:repeat(2,1fr);

}

.caption h1{

font-size:20px;

}

.caption p{

display:none;

}

.btn{

padding:8px 18px;

}

.logo img{

height:50px;

}

}

/*==========================
Mobile Menu
==========================*/

.mobile-menu{
    display:none;
    background:#fff;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.mobile-menu ul{
    display:flex;
    flex-direction:column;
}

.mobile-menu ul li{
    border-bottom:1px solid #eee;
}

.mobile-menu ul li a{
    display:block;
    padding:16px 20px;
    color:#222;
    font-weight:600;
}

.mobile-menu.active{
    display:block;
}