
*{box-sizing:border-box}
body{
margin:0;
font-family:'Segoe UI',Arial,sans-serif;
background:#0b1220;
color:white;
line-height:1.6;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#020617;
position:sticky;
top:0;
z-index:100;
}

.logo{display:flex;align-items:center;gap:15px}
.logo img{height:80px}
.logo h1{margin:0;font-size:32px}

nav a{color:white;text-decoration:none;margin-left:25px;font-size:16px}
nav a:hover{color:#f97316}

.hero{
padding:160px 20px;
text-align:center;
background:linear-gradient(135deg,#020617,#1e293b);
}

.hero h1{font-size:54px;margin-bottom:20px}
.hero p{max-width:850px;margin:auto;color:#cbd5f5;font-size:18px}

.btn{
display:inline-block;
margin-top:30px;
padding:14px 32px;
background:#f97316;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:600;
}

section{padding:90px 70px}
.section-title{font-size:36px;margin-bottom:20px}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:#1e293b;
padding:30px;
border-radius:10px;
transition:0.3s;
}

.card:hover{transform:translateY(-8px)}
.card h3{color:#f97316;margin-top:0}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
margin-top:40px;
text-align:center;
}

.stat{
background:#1e293b;
padding:25px;
border-radius:10px;
}

.stat h2{margin:0;color:#f97316;font-size:32px}

footer{
text-align:center;
padding:35px;
background:#020617;
color:#94a3b8;
}

.contact-box{
background:#1e293b;
padding:40px;
border-radius:10px;
max-width:650px;
}

input,textarea{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:20px;
border-radius:5px;
border:none;
}

@media(max-width:768px){
header{flex-direction:column;gap:10px}
.hero h1{font-size:40px}
section{padding:70px 25px}
}
