body{

margin:0;
font-family:Arial, sans-serif;
background:#f5f6f7;

}

/* NAVBAR */

.nav{

background:#1F2F44;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;

position:sticky;
top:0;
z-index:1000;

}

.nav a{

color:white;
margin-left:20px;
text-decoration:none;

}

.logo{

height:40px;

}

/* HERO */

.hero{

background:#1F2F44;
color:white;
text-align:center;
padding:120px 20px;

}

.hero h1{

font-size:48px;
margin-bottom:10px;

}

.hero p{

font-size:20px;

}

.hero-buttons{

margin-top:30px;

}

.btn-primary{

background:#FF6A2A;
padding:15px 30px;
color:white;
text-decoration:none;
border-radius:6px;
margin-right:10px;

}

.btn-secondary{

border:2px solid white;
padding:15px 30px;
color:white;
text-decoration:none;
border-radius:6px;

}

/* HOW IT WORKS */

.how-it-works{

padding:80px 40px;
text-align:center;

}

.steps{

display:flex;
justify-content:space-around;
margin-top:40px;

}

.step{

width:250px;

}

/* FOOTER */

footer{

background:#111;
color:white;
text-align:center;
padding:20px;

}
/* SERVICES */

.services{

padding:80px 40px;
text-align:center;
background:white;

}

.service-grid{

display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;

}

.service-card{

background:#f5f6f7;
padding:30px;
border-radius:8px;
width:220px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);

}

.service-card h3{

margin-bottom:10px;

}
/* MECHANICS */

.mechanics{

padding:80px 40px;
text-align:center;
background:#f5f6f7;

}

.mechanic-grid{

display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;

}

.mechanic-card{

background:white;
padding:25px;
border-radius:8px;
width:220px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);

}
/* BOOKING PAGE */

.booking{

padding:80px 20px;
text-align:center;

}

.booking-form{

max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;

}

.booking-form input,
.booking-form select{

padding:12px;
border-radius:5px;
border:1px solid #ccc;

}

.booking-form button{

margin-top:20px;

}
.floating-book{

position:fixed;
bottom:20px;
right:20px;
background:#FF6A2A;
color:white;
padding:15px 25px;
border-radius:30px;
text-decoration:none;
font-weight:bold;

}
.testimonials{

padding:80px 40px;
text-align:center;
background:white;

}
.cta-box{

margin-top:40px;
padding:30px;
background:#1F2F44;
color:white;
border-radius:10px;

}

.cta-box h3{

margin-bottom:20px;

}