*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}

body{
background:#0f1115;
color:white;
overflow-x:hidden;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(15px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
font-size:1.5rem;
font-weight:800;
letter-spacing:2px;
background:linear-gradient(45deg,#ffd700,#ffffff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#ffd700;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1600');
background-size:cover;
background-position:center;
}

.hero-content{
max-width:900px;
}

.badge{
display:inline-block;
padding:10px 20px;
border-radius:50px;
background:rgba(255,215,0,.15);
color:#ffd700;
margin-bottom:20px;
}

.hero h1{
font-size:4rem;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
opacity:.9;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#ffd700;
color:black;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.btn-secondary{
border:1px solid rgba(255,255,255,.3);
padding:15px 35px;
border-radius:50px;
text-decoration:none;
color:white;
}

.products{
padding:120px 8%;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:3rem;
}

.section-title p{
opacity:.7;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.product-card{
background:#171b22;
border-radius:25px;
overflow:hidden;
transition:.4s;
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.product-card:hover{
transform:translateY(-15px);
}

.product-card img{
width:100%;
height:320px;
object-fit:cover;
}

.product-info{
padding:25px;
}

.product-info h3{
margin-bottom:10px;
}

.product-info p{
color:#ffd700;
font-weight:700;
margin-bottom:20px;
}

.product-info button{
width:100%;
padding:15px;
border:none;
border-radius:12px;
background:#ffd700;
font-weight:700;
cursor:pointer;
}

.about{
padding:120px 8%;
}

.about-box{
max-width:900px;
margin:auto;
background:rgba(255,255,255,.05);
backdrop-filter:blur(15px);
padding:60px;
border-radius:30px;
text-align:center;
}

.stats{
padding:100px 8%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
text-align:center;
}

.stat{
background:#171b22;
padding:40px;
border-radius:20px;
}

.stat h3{
font-size:2.5rem;
color:#ffd700;
}

.contact{
padding:120px 8%;
text-align:center;
}

.contact form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact input,
.contact textarea{
padding:18px;
border:none;
border-radius:15px;
background:#171b22;
color:white;
}

.contact textarea{
height:180px;
resize:none;
}

.contact button{
background:#ffd700;
padding:18px;
border:none;
border-radius:15px;
font-weight:700;
cursor:pointer;
}

footer{
padding:30px;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.nav-links{
display:none;
}

.stats{
grid-template-columns:1fr;
}
}
/* =========================
   SOCIAL MEDIA SECTION
========================= */

.social-section{
    padding:100px 8%;
    text-align:center;
}

.social-section h2{
    font-size:42px;
    margin-bottom:10px;
}

.social-section p{
    color:#bdbdbd;
    margin-bottom:40px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.social-icon{
    width:90px;
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    border-radius:50%;
    text-decoration:none;
    transition:0.4s ease;
}

.social-icon:hover{
    transform:translateY(-10px) scale(1.1);
}

/* TikTok Official Style */

.tiktok{
    background:#000000;
    color:#25F4EE;
    box-shadow:
    0 0 20px #25F4EE,
    0 0 40px #FE2C55;
}

.tiktok:hover{
    color:#FE2C55;
}

/* Facebook Official Style */

.facebook{
    background:#1877F2;
    color:#ffffff;
    box-shadow:0 0 25px #1877F2;
}

/* WhatsApp Official Style */

.whatsapp{
    background:#25D366;
    color:white;
    box-shadow:0 0 25px #25D366;
}

@media(max-width:768px){

.social-icon{
    width:75px;
    height:75px;
    font-size:30px;
}

}