/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

/* ==========================
   HEADER
========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(10,15,35,.85);
    backdrop-filter:blur(12px);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    color:#fff;
    font-size:30px;
    font-weight:800;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#00e5ff;
}

/* ==========================
   HERO
========================== */

.hero{
    height:100vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(
        135deg,
        rgba(37,99,235,.8),
        rgba(124,58,237,.7),
        rgba(6,182,212,.7)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:16px 40px;
    background:#fff;
    color:#2563eb;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
}

/* ==========================
   SECTIONS
========================== */

section{
    padding:100px 8%;
}

section h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
    color:#0f172a;
}

/* ==========================
   ABOUT
========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#2563eb;
    margin-bottom:10px;
}

/* ==========================
   COUNTER
========================== */

.counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.counter-box{
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );

    color:#fff;
    text-align:center;
    padding:40px;
    border-radius:25px;
}

.counter-box span{
    display:block;
    font-size:55px;
    font-weight:800;
}

/* ==========================
   PRODUCTS
========================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.product{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.product:hover{
    transform:translateY(-10px);
}

.product img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.product h3{
    padding:20px;
    text-align:center;
}

/* ==========================
   BUYERS
========================== */

.buyers-slider{
    display:flex;
    gap:50px;
    overflow:hidden;
    align-items:center;
    padding:20px;
}

.buyers-slider img{
    height:80px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.4s;
}

.buyers-slider img:hover{
    filter:none;
    transform:scale(1.1);
}

/* ==========================
   GALLERY
========================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ==========================
   CONTACT
========================== */

#contact{
    background:#0f172a;
}

#contact h2{
    color:#fff;
}

form{
    max-width:700px;
    margin:auto;
}

form input,
form textarea{
    width:100%;
    padding:16px;
    margin-bottom:15px;
    border:none;
    border-radius:12px;
}

form button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#06b6d4;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

/* ==========================
   WHATSAPP
========================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:30px;
    z-index:999;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .container{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    section h2{
        font-size:32px;
    }

}