
body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
color:#333;
}

.container{
max-width:1100px;
margin:auto;
padding:0px;
}

.header{
position:sticky;
top:0;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
z-index:1000;
padding:0;
}

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

.logo img{
height:100px;
}

.nav{
display:flex;
align-items:center;
gap:30px;
}

.nav a{
text-decoration:none;
color:#333;
font-weight:600;
}

.nav a:hover{
color:#0A3A7A;
}

.btn-primary{

background:#0A3A7A;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:600;
box-shadow:0 3px 8px rgba(0,0,0,0.15);
transition:all 0.25s ease;

}

.btn-primary:hover{

background:#072a57;
color:#FFD700;
transform:translateY(-2px);

}


.hero{
height:650px;
background:linear-gradient(rgba(10,58,122,0.7),rgba(10,58,122,0.7)),
url('hero 4.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content h1{
font-size:52px;
}

.section{
padding:70px 20px;
}

.alt{
background:#F5F7FB;
}

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

.card{
background:white;
padding:25px;
border-radius:6px;
box-shadow:0 5px 12px rgba(0,0,0,0.08);
}

form{
display:flex;
flex-direction:column;
max-width:500px;
gap:10px;
}

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

button{
background:#0A3A7A;
color:white;
border:none;
padding:12px;
cursor:pointer;
}

footer{
background:#0A3A7A;
color:white;
text-align:center;
padding:30px;
}

@media(max-width:768px){
.nav{
flex-direction:column;
background:white;
position:absolute;
top:70px;
right:0;
padding:20px;
display:none;
}
.nav.active{
display:flex;
}
.menu-toggle{
cursor:pointer;
font-size:24px;
}
}
select{

width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:4px;

}

.driver-banner{

background:#0A3A7A;
color:white;
text-align:center;
padding:60px 20px;

}

.driver-banner h2{

font-size:32px;
margin-bottom:10px;

}

.driver-banner p{

font-size:18px;
margin-bottom:20px;

}