*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#090d16;
color:white;
overflow-x:hidden;
}

.bg-glow{
position:fixed;
border-radius:50%;
filter:blur(150px);
z-index:-1;
}

.glow1{
width:400px;
height:400px;
background:#00bfff;
top:-150px;
left:-150px;
}

.glow2{
width:400px;
height:400px;
background:#ff8c00;
right:-150px;
bottom:-150px;
}

.hero{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:80px 20px;
position:relative;
}

.logo{
width:550px;
max-width:95%;
margin-bottom:25px;
animation:float 4s ease-in-out infinite;
filter:drop-shadow(0 0 25px rgba(0,191,255,.5));
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}

h1{
font-size:4rem;
font-weight:800;
margin-bottom:15px;
}

.subtitle{
font-size:1.4rem;
opacity:.9;
}

.description{
max-width:700px;
margin-top:20px;
opacity:.75;
}

.countdown{
display:flex;
gap:20px;
margin-top:50px;
flex-wrap:wrap;
justify-content:center;
}

.time-box{
width:120px;
height:120px;
background:rgba(255,255,255,.05);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.1);
border-radius:20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.time-box span{
font-size:2.5rem;
font-weight:700;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

.primary{
background:#00bfff;
color:white;
}

.secondary{
background:#ff8c00;
color:white;
}

.services,
.offer,
.why,
.location{
padding:100px 20px;
text-align:center;
}

.service-grid,
.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:50px;
max-width:1200px;
margin-left:auto;
margin-right:auto;
}

.card{
background:rgba(255,255,255,.05);
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.offer-card{
max-width:700px;
margin:auto;
background:linear-gradient(135deg,#00bfff,#ff8c00);
padding:50px;
border-radius:25px;
}

.offer-card button{
margin-top:20px;
padding:15px 30px;
border:none;
border-radius:50px;
cursor:pointer;
font-weight:700;
}

.footer-logo{
width:220px;
}

footer{
padding:50px 20px;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){

.logo{
width:280px;
}

h1{
font-size:2.5rem;
}

.time-box{
width:90px;
height:90px;
}

.time-box span{
font-size:1.6rem;
}
}