*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:tahoma;
scroll-behavior:smooth;
}

body{
background:#0b1220;
color:white;
}

header{
position:fixed;
top:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.75);
backdrop-filter:blur(10px);
z-index:100;
}

.logo{
font-size:28px;
}

nav a{
color:white;
margin:0 10px;
text-decoration:none;
}

.hero{
min-height:100vh;
padding:120px 8%;
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

.hero img{
width:500px;
max-width:100%;
border-radius:20px;
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

button{
padding:14px 24px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
cursor:pointer;
}

#services,
#contact{
padding:100px 8%;
}

.title{
text-align:center;
font-size:40px;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.card{
background:#111827;
padding:20px;
border-radius:20px;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:15px;
margin-bottom:15px;
}

#stats{
display:flex;
justify-content:center;
gap:30px;
padding:80px 20px;
flex-wrap:wrap;
}

.box{
background:#111827;
padding:35px;
border-radius:15px;
width:200px;
text-align:center;
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:650px;
margin:auto;
}

input,
textarea{
padding:15px;
border:none;
border-radius:10px;
background:#1f2937;
color:white;
}

footer{
padding:40px;
text-align:center;
background:#111827;
}

@media(max-width:800px){

.hero h1{
font-size:35px;
}

}