*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

background:#071b3a;
color:white;
overflow-x:hidden;

}

.overlay{

position:fixed;
width:100%;
height:100%;
background:

linear-gradient(135deg,#071b3a,#0e2d60);

z-index:-1;

}

.hero{

display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:30px;

}

.card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

padding:50px;

border-radius:20px;

text-align:center;

max-width:900px;

box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.logo{

width:320px;
max-width:90%;
margin-bottom:30px;

}

h1{

font-size:52px;
color:#ff7300;
margin-bottom:10px;

}

h2{

margin-bottom:20px;

}

.tagline{

color:#ffc48d;

font-size:18px;

margin-bottom:15px;

}

.desc{

line-height:1.8;
margin-bottom:40px;

}

#countdown{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-bottom:40px;

}

#countdown div{

background:#ff7300;

padding:20px;

border-radius:12px;

width:100px;

}

#countdown span{

font-size:36px;

font-weight:bold;

display:block;

}

.btn{

display:inline-block;

padding:15px 40px;

background:#ff7300;

color:white;

text-decoration:none;

border-radius:40px;

transition:.3s;

}

.btn:hover{

background:white;

color:#071b3a;

}

.services{

padding:80px 10%;

}

.services h2{

text-align:center;

margin-bottom:50px;

font-size:40px;

}

.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.box{

background:white;

color:#071b3a;

padding:35px;

border-radius:15px;

text-align:center;

transition:.4s;

}

.box:hover{

transform:translateY(-10px);

}

.box i{

font-size:45px;

color:#ff7300;

margin-bottom:20px;

}

footer{

padding:30px;

text-align:center;

background:#05142b;

margin-top:60px;

}