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

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

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#081c3a;
padding:20px 0;
position:fixed;
width:100%;
z-index:1000;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:white;
}

.logo h1{
font-size:32px;
}

.logo span{
letter-spacing:6px;
}

nav a{
color:white;
margin:0 15px;
text-decoration:none;
}

.call-btn{
background:#0d6efd;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
color:white;
font-weight:bold;
}

.hero{

height:100vh;

background:url('../images/hero-car.jpg') center/cover;

position:relative;

display:flex;

align-items:center;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;

color:white;

}

.hero h1{

font-size:60px;

margin-bottom:20px;

}

.hero p{

font-size:24px;

margin-bottom:30px;

}

.btn{

background:#0d6efd;

padding:15px 35px;

color:white;

text-decoration:none;

border-radius:6px;

margin-right:15px;

}

.btn-outline{

border:2px solid white;

padding:15px 35px;

color:white;

text-decoration:none;

border-radius:6px;

}

.services{

padding:100px 0;

}

.services h2{

text-align:center;

margin-bottom:60px;

font-size:40px;

}

.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:white;

padding:40px;

text-align:center;

font-size:22px;

border-radius:12px;

box-shadow:0 10px 25px rgba(0,0,0,.1);

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.about{

padding:100px 0;

background:#081c3a;

color:white;

}

.about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about img{

width:100%;

border-radius:12px;

}

.cta{

padding:80px;

background:#0d6efd;

text-align:center;

color:white;

}

.cta a{

display:inline-block;

margin-top:20px;

font-size:45px;

color:white;

text-decoration:none;

font-weight:bold;

}

footer{

background:#081c3a;

color:white;

padding:50px;

text-align:center;

}