@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

height:100vh;
overflow:hidden;

background:
linear-gradient(-45deg,
#09090f,
#111827,
#0f172a,
#1e1b4b);

background-size:400% 400%;

animation:bg 12s ease infinite;

display:flex;
justify-content:center;
align-items:center;

color:white;

}

@keyframes bg{

0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}

}

.hero{

width:100%;
padding:20px;

display:flex;
justify-content:center;
align-items:center;

z-index:5;

}

.glass{

max-width:850px;
width:100%;

padding:60px;

border-radius:25px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.12);

box-shadow:0 25px 60px rgba(0,0,0,.45);

text-align:center;

}

.logo{

display:flex;
justify-content:center;
align-items:center;
gap:15px;

margin-bottom:30px;

}

.logo i{

font-size:60px;

color:#00d4ff;

}

.logo h1{

font-size:54px;
font-weight:700;

margin:0;

}

h2{

font-size:34px;
font-weight:700;

margin-bottom:20px;

}

p{

font-size:18px;

opacity:.85;

max-width:650px;

margin:auto;

margin-bottom:35px;

}

.services{

display:flex;
justify-content:center;
gap:30px;

flex-wrap:wrap;

margin-bottom:40px;

}

.services div{

display:flex;
align-items:center;
gap:10px;

background:rgba(255,255,255,.05);

padding:12px 22px;

border-radius:40px;

transition:.3s;

}

.services div:hover{

transform:translateY(-5px);

background:#00d4ff22;

}

.services i{

font-size:24px;

color:#00d4ff;

}

#countdown{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

#countdown div{

width:95px;

padding:20px;

background:rgba(255,255,255,.06);

border-radius:15px;

}

#countdown span{

display:block;

font-size:38px;

font-weight:bold;

color:#00d4ff;

}

#countdown small{

font-size:14px;

opacity:.7;

}

.btn-success{

padding:15px 35px;

font-size:18px;

border-radius:50px;

}

#particles{

position:absolute;

width:100%;
height:100%;

overflow:hidden;

top:0;
left:0;

z-index:1;

}

.particle{

position:absolute;

border-radius:50%;

background:#00d4ff55;

animation:float linear infinite;

}

@keyframes float{

from{

transform:translateY(110vh);

}

to{

transform:translateY(-120px);

}

}

@media(max-width:768px){

.glass{

padding:35px 25px;

}

.logo h1{

font-size:40px;

}

h2{

font-size:26px;

}

.services{

gap:15px;

}

#countdown{

gap:10px;

}

#countdown div{

width:75px;

padding:15px;

}

}
.tress{
    color:#00d4ff ;
    font-weight: 900;
}