*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050816;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#08101f;
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:28px;
font-weight:700;
color:#00ff88;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 8%;
}

.hero-left{
max-width:550px;
}

.hero h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
color:#ccc;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#00ff88;
color:black;
font-weight:700;
border-radius:10px;
text-decoration:none;
}

.hero-right img{
width:350px;
}

section{
padding:80px 8%;
}

h2{
text-align:center;
font-size:40px;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#0c1326;
padding:30px;
border-radius:20px;
text-align:center;
border:1px solid #00ff88;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:20px;
}

.stats{
display:flex;
justify-content:center;
gap:100px;
text-align:center;
}

.stats h3{
font-size:45px;
color:#00ff88;
}

form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
background:#0c1326;
border:none;
color:white;
border-radius:10px;
}

button{
padding:15px;
border:none;
background:#00ff88;
color:black;
font-weight:700;
border-radius:10px;
cursor:pointer;
}

footer{
text-align:center;
padding:50px;
background:#08101f;
}

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero h1{
font-size:42px;
}

.hero-right img{
width:280px;
margin-top:40px;
}

.stats{
flex-direction:column;
gap:30px;
}
}