*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0b1120;
color:#fff;
overflow-x:hidden;
}

header{
position:fixed;
width:100%;
top:0;
z-index:1000;
background:rgba(11,17,32,.75);
backdrop-filter:blur(15px);
}

nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.logo{
font-size:28px;
font-weight:700;
background:linear-gradient(90deg,#00d4ff,#7b61ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#00d4ff;
}

.hero{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;
background:
radial-gradient(circle at top right,#7b61ff33,transparent),
radial-gradient(circle at bottom left,#00d4ff33,transparent);
}

.hero-content{
max-width:900px;
}

.hero span{
color:#00d4ff;
font-weight:600;
}

.hero h1{
font-size:4rem;
margin:20px 0;
line-height:1.1;
}

.hero p{
font-size:1.2rem;
color:#b8c2d0;
margin-bottom:35px;
}

.buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

.btn-primary{
background:linear-gradient(90deg,#00d4ff,#7b61ff);
color:white;
}

.btn-secondary{
border:1px solid rgba(255,255,255,.2);
color:white;
}

.services{
padding:100px 20px;
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:2.5rem;
margin-bottom:10px;
}

.section-title p{
color:#b8c2d0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:30px;
border-radius:20px;
backdrop-filter:blur(20px);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
border-color:#00d4ff;
}

.card h3{
margin-bottom:15px;
}

.card p{
color:#b8c2d0;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:80px 10%;
background:#111827;
text-align:center;
}

.stat-box h2{
font-size:3rem;
color:#00d4ff;
}

.technology{
padding:100px 20px;
text-align:center;
}

.tech-list{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.tech-list span{
padding:12px 22px;
background:rgba(255,255,255,.08);
border-radius:50px;
}

.cta{
padding:100px 20px;
text-align:center;
background:linear-gradient(
135deg,
#00d4ff,
#7b61ff
);
}

.cta h2{
font-size:3rem;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
}

.cta a{
background:white;
color:#111;
padding:15px 35px;
text-decoration:none;
border-radius:50px;
font-weight:600;
}

footer{
padding:30px;
text-align:center;
background:#050b17;
color:#8a94a6;
}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

nav ul{
display:none;
}
}