*{margin:0;padding:0;box-sizing:border-box;}

body{
font-family:'Poppins',sans-serif;
background:#0A0A0A;
color:#EDEDED;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
border-bottom:1px solid rgba(255,122,0,0.2);
}

.logo img{height:40px;}

.nav-links a{
margin:0 18px;
color:#F5E6C8;
text-decoration:none;
}


/* HERO */
.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to bottom, rgba(0,0,0,0.5), #0A0A0A);
}

/* HERO CONTENT */
.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:90%;
max-width:900px;
padding-top:80px;
}

/* FIXED HEADING */
.main-heading{
font-size:clamp(22px,3vw,38px);
letter-spacing:2px;
font-weight:700;
text-align:center;
margin-bottom:15px;

background:linear-gradient(90deg,#C9A24A,#FF7A00);
-webkit-background-clip:text;
color:transparent;
}

/* TEXT */
.subtext{
font-size:18px;
opacity:0.8;
margin-bottom:10px;
}

/* BADGE */
.badge{
display:inline-block;
padding:10px 20px;
border:1px solid #FF7A00;
border-radius:30px;
color:#FF7A00;
margin-bottom:15px;
font-size:14px;
}

/* COUNTDOWN */
.countdown{
display:flex;
justify-content:center;
gap:15px;
margin:20px 0;
flex-wrap:wrap;
}

.time-box{
padding:12px 18px;
border-radius:10px;
background:rgba(255,122,0,0.1);
border:1px solid #FF7A00;
box-shadow:0 0 15px rgba(255,122,0,0.3);
min-width:70px;
}

/* BUTTON */
.btn{
padding:14px 28px;
border-radius:40px;
text-decoration:none;
color:white;
border:1px solid rgba(255,255,255,0.3);
margin:8px;
display:inline-block;
transition:0.3s;
}

.btn:hover{
background:linear-gradient(90deg,#C9A24A,#FF7A00);
color:black;
}

/* SECTION */
section{
padding:100px 20px;
text-align:center;
}

.stats{
display:flex;
justify-content:center;
gap:60px;
margin-top:40px;
flex-wrap:wrap;
}

/* CTA */
.cta{
background:linear-gradient(90deg,#C9A24A,#FF7A00);
color:black;
padding:80px 20px;
}

/* FOOTER */
footer{
padding:40px;
text-align:center;
background:#000;
}

/* FLOATING */
.floating-social{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-social a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:20px;
}

.whatsapp{background:#25D366;}
.instagram{background:#E1306C;}
.facebook{background:#1877F2;}

/* MOBILE */
@media(max-width:768px){
.nav-links{display:none;}
}