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

body{
background:#f7f9fb;
color:#222;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
position:sticky;
top:0;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{
font-size:28px;
font-weight:bold;
}

.logo span{
color:#1a9df0;
}

nav a{
text-decoration:none;
margin-left:20px;
color:#333;
font-weight:600;
}

.hero{
height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(
rgba(0,0,0,.5),
rgba(0,0,0,.5)
),
url('../images/hero.jpg');
background-size:cover;
background-position:center;
color:white;
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:700px;
margin:auto;
}

.btn{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#1a9df0;
color:white;
text-decoration:none;
border-radius:5px;
}

.services{
padding:80px 8%;
}

.services h2{
text-align:center;
margin-bottom:40px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.about{
padding:80px 8%;
background:#eef6fb;
text-align:center;
}

.stats{
display:flex;
justify-content:center;
gap:50px;
margin-top:40px;
flex-wrap:wrap;
}

.quote{
padding:80px 8%;
}

.quote h2{
text-align:center;
margin-bottom:30px;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
border:1px solid #ccc;
border-radius:5px;
}

button{
padding:15px;
background:#1a9df0;
color:white;
border:none;
cursor:pointer;
font-size:16px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:40px;
}

footer a{
color:#1a9df0;
text-decoration:none;
}