*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f7fb;
    color:#333;
}

header{
    background:#0d6efd;
    color:white;
    text-align:center;
    padding:30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1{
    font-size:40px;
}

header p{
    margin-top:10px;
    font-size:20px;
}

section{
    text-align:center;
    padding:80px 20px;
}
.hero{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    text-shadow:2px 2px 8px rgba(0,0,0,.5);
}
}

section p{
font-size:24px;
line-height:1.8;
text-shadow:1px 1px 6px rgba(0,0,0,.5);
}

button{
    background:#0d6efd;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;

    transition: 0.3s;
    margin: 10px;
    display: inline-block;
    width: auto;
}

button:hover{
    background:#084db5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.services {
    background: #f5f5f5;
    padding: 60px 20px;
}

.services h2 {
    margin-bottom: 30px;
}

.card {
    background: white;
    width: 250px;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}.services{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card{
    width: 220px;
}
nav{
    margin-top:15px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:yellow;
}
.about{
    background:#f8f9fa;
    padding:60px 20px;
    text-align:center;
}

.about h2{
    font-size:36px;
    color:#0d6efd;
    margin-bottom:30px;
}

.about p{
    background:white;
    max-width:500px;
    margin:15px auto;
    padding:15px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    font-size:20px;
    transition:0.3s;
}

.about p:hover{
    transform:translateY(-5px);
    background:#0d6efd;
    color:white;
}
.vehicles{
    background:#f8f9fa;
    padding:60px 20px;
    text-align:center;
}

.vehicles h2{
    color:#0d6efd;
    font-size:36px;
    margin-bottom:30px;
}

.vehicles .card{
    background:white;
    max-width:350px;
    margin:15px auto;
    padding:18px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    font-size:20px;
    transition:.3s;
}

.vehicles .card:hover{
    transform:translateY(-5px);
}
.vehicles{
    padding:60px 20px;
    background:#f8f9fa;
    text-align:center;
}

.vehicle-card{
    display:inline-block;
    width:300px;
    margin:15px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.vehicle-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.vehicle-card h3{
    padding:15px;
}
.gallery{
    padding:60px 20px;
    background:#f8f9fa;
    text-align:center;
}

.gallery h2{
    color:#0d6efd;
    font-size:36px;
    margin-bottom:30px;
}

.gallery-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.gallery-card{
    width:320px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-5px);
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-card h3{
    padding:15px;
    font-size:22px;
}
@media (max-width:768px){
.hero{
    padding:80px 15px;
}

.hero h2{
    font-size:30px;
    line-height:40px;
}

.hero p{
    font-size:18px;
    line-height:30px;
}
header h1{
    font-size:28px;
}

nav a{
    display:block;
    margin:10px 0;
}

.hero h2{
    font-size:60px;
}

.hero button{
    display:block;
    width:220px;
    margin:10px auto;

    background:#007bff;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.hero button:hover{
    background:#0056d2;
    transform:translateY(-3px);
}
}

.services{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.card,
.vehicle-card,
.gallery-card{
    width:90%;
    margin:15px auto;
}

.vehicle-card img,
.gallery-card img{
    width:100%;
    height:250px;
    object-fit: cover;
    background: #fff;
}
.vehicle-card{
    max-width:400px;
    margin:20px auto;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}
.gallery-card{
    max-width:400px;
    margin:20px auto;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.gallery-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

























.vehicles{
    padding:70px 20px;
    background:#f8f9fa;
    text-align:center;
}

.vehicle-card{
    width:320px;
    display:inline-block;
    margin:15px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.vehicle-card:hover{
    transform:translateY(-8px);
}

.vehicle-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.vehicle-card h3{
    padding:15px;
}
<section class="testimonials">
    <h2>What Our Customers Say</h2>

    <div class="testimonial-container">

        <div class="testimonial-card">
            ⭐⭐⭐⭐⭐
            <p>"Excellent service. Clean car and professional driver."</p>
            <h4>- Rahul Patil</h4>
        </div>

        <div class="testimonial-card">
            ⭐⭐⭐⭐⭐
            <p>"Best taxi service in Pune. Highly recommended."</p>
            <h4>- Sneha Joshi</h4>
        </div>

        <div class="testimonial-card">
            ⭐⭐⭐⭐⭐
            <p>"On-time pickup and comfortable journey."</p>
            <h4>- Amit Deshmukh</h4>
        </div>

    </div>
</section>
.vehicles h2{
    text-align: center;
    font-size: 42px;
    color: #007bff;
    margin-bottom: 40px;
}
.vehicles{
    text-align: center:
}
.vehicles{
    padding: 80px 20px;
    text-align: center;
}

.vehicle-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vehicle-card{
    width: 320px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.vehicle-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}
 .booking{
    padding:80px 20px;
    background:#f5f7fb;
    text-align:center;
}

.booking h2{
    font-size:42px;
    margin-bottom:30px;
    color:#007bff;
}

#bookingForm{
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

#bookingForm input,
#bookingForm select{
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

#bookingForm button{
    padding:15px;
    background:#007bff;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

#bookingForm button:hover{
    background:#0056b3;
} 