body{
margin:0;
font-family:Arial;
}

/* TOPBAR */

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
background:#f3f3f3;
}

.left{
display:flex;
align-items:center;
gap:15px;
}

.menu-btn{
background:#eaeaea;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

.brand{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
font-size:20px;
}

.logo{
height:40px;
}

.right{
display:flex;
align-items:center;
gap:15px;
}

.playstore{
height:35px;
}

.login{
padding:8px 15px;
border-radius:20px;
border:1px solid #ccc;
background:white;
cursor:pointer;
}

.phone{
background:#e8f0ff;
padding:10px 15px;
border-radius:25px;
font-weight:bold;
}


/* SIDE MENU */

.side-menu{
height:100%;
width:0;
position:fixed;
top:0;
left:0;
background:#111;
overflow-x:hidden;
transition:0.4s;
padding-top:60px;
z-index:1000;
}

.side-menu a{
padding:12px 25px;
text-decoration:none;
font-size:20px;
color:white;
display:block;
}

.side-menu a:hover{
background:#575757;
}

.close-btn{
position:absolute;
top:10px;
right:20px;
font-size:30px;
}


/* HERO */

.hero{
height:600px;
background:url("https://images.unsplash.com/photo-1501785888041-af3ef285b470") center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-overlay{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:15px;
width:85%;
color:white;
}

.hero h1{
font-size:40px;
margin-bottom:20px;
}

.tabs{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
margin-bottom:20px;
}

.tab{
background:#0b2c4a;
color:white;
border:none;
padding:12px 20px;
border-radius:8px;
cursor:pointer;
}

.tab.active{
background:#2ecc71;
}

.booking-box{
background:rgba(0,0,0,0.6);
padding:25px;
border-radius:10px;
}

.form-row{
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:center;
}

.form-row input{
padding:12px;
border:none;
border-radius:6px;
width:180px;
}

.form-buttons{
margin-top:20px;
display:flex;
justify-content:center;
gap:15px;
}

.add{
background:#1abc9c;
border:none;
padding:12px 20px;
border-radius:6px;
color:white;
}

.search{
background:#2ecc71;
border:none;
padding:12px 25px;
border-radius:6px;
color:white;
font-size:16px;
}


/* FLEET */

.fleet{
text-align:center;
padding:60px;
}

.cars{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.car{
width:250px;
}

.car img{
width:100%;
border-radius:10px;
transition:0.4s;
}

.car img:hover{
transform:scale(1.1);
}


/* OFFERS */

/* TOP OFFERS */

.offers{
padding:60px 20px;
background:#f5f5f5;
text-align:center;
}

.offers h2{
font-size:32px;
margin-bottom:40px;
}

.offers-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
width:90%;
margin:auto;
}

.offer-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.offer-card:hover{
transform:translateY(-8px);
}

.offer-card img{
width:100%;
height:200px;
object-fit:cover;
}

.offer-card h3{
padding:15px;
font-size:18px;
}

.offer-card p{
padding:0 15px 20px;
color:#666;
}


/* GALLERY */

.gallery{
text-align:center;
padding:50px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:10px;
width:80%;
margin:auto;
}

.gallery-grid img{
width:100%;
border-radius:10px;
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}


/* FOOTER */

footer{
background:#000;
text-align:center;
padding:20px;
color:white;
}


@media(max-width:768px){

.form-row input{
width:100%;
}

}

/* TAXI PACKAGES */

.packages{
padding:70px 20px;
background:#f7f7f7;
text-align:center;
}

.packages h2{
font-size:32px;
margin-bottom:10px;
}

.package-sub{
color:#666;
max-width:700px;
margin:auto;
margin-bottom:40px;
}

.package-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
width:90%;
margin:auto;
}

.package-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
transition:0.3s;
}

.package-card:hover{
transform:translateY(-10px);
}

.package-card img{
width:100%;
height:200px;
object-fit:cover;
}

.package-card h3{
padding:15px;
font-size:20px;
}

.package-card p{
padding:0 15px 15px;
color:#666;
}

.price-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
border-top:1px solid #eee;
}

.price{
color:#2ecc71;
font-weight:bold;
font-size:18px;
}

.view-btn{
text-decoration:none;
color:#3498db;
font-weight:bold;
}

/* SUPER EASY BOOKING */

.easy-booking{

padding:80px 20px;
background:#f7f4ef;
text-align:center;

}

.booking-sub{

color:#c59d5f;
margin-bottom:40px;

}

.booking-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
width:90%;
margin:auto;

}

.booking-card{

background:white;
padding:40px 20px;
border-radius:15px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:0.3s;

}

.booking-card:hover{

transform:translateY(-8px);

}

.booking-card img{

width:80px;
margin-bottom:20px;

}

.booking-card h3{

margin-bottom:10px;

}

.booking-card span{

display:inline-block;
background:#f3e7d3;
padding:8px 15px;
border-radius:20px;
font-size:14px;

}


/* TOP PLACES */

.top-places{
background:#f2f2f2;
padding:60px 20px;
border-radius:10px;
width:90%;
margin:60px auto;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.place-title{
background:#28a745;
color:white;
padding:15px;
font-size:24px;
border-radius:8px;
margin-bottom:40px;
}

.places{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
gap:30px;
}

.place{
text-align:center;
}

.place img{
width:160px;
height:160px;
border-radius:50%;
object-fit:cover;
border:6px solid #ddd;
transition:0.3s;
}

.place img:hover{
transform:scale(1.1);
}

.place p{
margin-top:10px;
font-weight:bold;
font-size:16px;
}


/* TESTIMONIAL */

.testimonial{
padding:80px 20px;
background:#f5f5f5;
text-align:center;
}

.testimonial h2{
font-size:34px;
margin-bottom:50px;
}

.testimonial-wrapper{
display:flex;
gap:30px;
flex-wrap:wrap;
justify-content:center;
width:90%;
margin:auto;
}

.rating-box{
max-width:250px;
text-align:left;
}

.rating-box h3{
font-size:28px;
margin-bottom:10px;
}

.rating-box .stars{
color:#28a745;
font-size:20px;
margin-bottom:10px;
}

.trusted{
font-size:16px;
margin-bottom:10px;
}

.desc{
color:#666;
font-size:14px;
}

.testimonial-card{
background:white;
padding:25px;
border-radius:12px;
width:300px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
border:1px solid #2f5cff;
text-align:left;
}

.user{
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;
}

.user img{
width:50px;
height:50px;
border-radius:50%;
}

.user h4{
margin:0;
font-size:18px;
}

.testimonial-card .stars{
color:#28a745;
font-size:16px;
}

.testimonial-card p{
color:#555;
font-size:14px;
line-height:1.6;
}

/* FAQ SECTION */

.faq-section{
padding:60px 20px;
background:#e8f4fb;
text-align:center;
}

.faq-section h2{
background:#2ea3db;
color:white;
padding:15px;
border-radius:6px;
margin-bottom:30px;
}

.faq-box{
width:80%;
margin:auto;
}

.faq-item{
margin-bottom:10px;
}

.faq-question{
width:100%;
text-align:left;
padding:15px;
font-size:18px;
border:none;
background:#f5f5f5;
cursor:pointer;
}

.faq-answer{
display:none;
background:white;
padding:15px;
border:1px solid #ddd;
}


/* STATES SECTION */

.states-section{
padding:60px 20px;
text-align:center;
}

.states-section h2{
font-size:32px;
margin-bottom:10px;
}

.states-desc{
max-width:700px;
margin:auto;
margin-bottom:40px;
color:#666;
}

.states-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
width:90%;
margin:auto;
}

.states-grid span{
background:#eef2f6;
padding:12px;
border-radius:10px;
font-size:14px;
cursor:pointer;
transition:0.3s;
}

.states-grid span:hover{
background:#d9e6f7;
}


/* FOOTER */

.footer{
background:#111;
color:white;
padding-top:60px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
width:90%;
margin:auto;
}

.footer-logo{
width:80px;
margin-bottom:10px;
}

.footer-about h2{
margin-bottom:10px;
}

.footer-about p{
color:#ccc;
font-size:14px;
margin:5px 0;
}

.footer-links h3{
margin-bottom:15px;
}

.footer-links a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:8px;
font-size:14px;
}

.footer-links a:hover{
color:white;
}

.footer-places h3{
margin-bottom:15px;
}

.places-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

.places-grid img{
width:100%;
border-radius:6px;
height:60px;
object-fit:cover;
}

.places-grid p{
font-size:12px;
margin-top:5px;
text-align:center;
}


/* PAYMENT BAR */

.payment-bar{
margin-top:40px;
background:#eee;
display:flex;
justify-content:center;
gap:30px;
padding:15px;
flex-wrap:wrap;
}

.payment-bar img{
height:30px;
}


/* FOOTER BOTTOM */

.footer-bottom{
text-align:center;
padding:20px;
border-top:1px solid #333;
font-size:14px;
color:#aaa;
}


/* FLOATING BUTTONS */

.floating-buttons{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-buttons a,
.top-btn,
.chat{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
cursor:pointer;
}

.whatsapp{
background:#25D366;
}

.call{
background:#007bff;
}

.top-btn{
background:#ff4444;
color:white;
font-size:20px;
border:none;
}

.chat{
background:#0dcaf0;
}

.floating-buttons img{
width:28px;
}

/* LIVE BOOKING */

.live-booking{
padding:60px;
text-align:center;
background:#f5f5f5;
}

.booking-form{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
margin-top:20px;
}

.booking-form input{
padding:12px;
border-radius:6px;
border:1px solid #ccc;
width:200px;
}

.booking-form button{
background:#25D366;
border:none;
padding:12px 25px;
color:white;
border-radius:6px;
cursor:pointer;
}

/* FARE CALCULATOR */

.fare-calculator{
padding:60px;
text-align:center;
background:#fff;
}

.fare-calculator input{
padding:12px;
width:200px;
margin-right:10px;
}

.fare-calculator button{
padding:12px 20px;
background:#2ecc71;
color:white;
border:none;
border-radius:6px;
}

/* MAP */

.map-section{
padding:60px;
text-align:center;
background:#f2f2f2;
}


/* CAR SLIDER */

.car-slider{
overflow:hidden;
width:90%;
margin:auto;
}

.slide-track{
display:flex;
gap:30px;
animation:scrollCars 20s linear infinite;
}

@keyframes scrollCars{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.car{
min-width:250px;
text-align:center;
}

.car img{
width:100%;
border-radius:10px;
transition:0.4s;
}

.car img:hover{
transform:scale(1.1);
}

.hero h1{
font-size:42px;
margin-bottom:20px;
animation:fadeInDown 1.5s ease;
}

.booking-box{
animation:fadeInUp 2s ease;
}

@keyframes fadeInDown{

from{
opacity:0;
transform:translateY(-40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes fadeInUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.whatsapp-btn{
background:#25D366;
border:none;
padding:12px 20px;
border-radius:6px;
color:white;
font-size:16px;
cursor:pointer;
}

.call-btn{
background:#007bff;
border:none;
padding:12px 20px;
border-radius:6px;
color:white;
font-size:16px;
cursor:pointer;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

.call-btn:hover{
background:#0056b3;
}


.fare-note{
margin-top:15px;
color:#d9534f;
font-size:15px;
font-weight:bold;
}


/* TRAVEL GALLERY */

.travel-gallery{
padding:70px 20px;
text-align:center;
background:#f5f5f5;
}

.gallery-buttons{
margin-bottom:30px;
}

.gallery-buttons button{
padding:10px 20px;
margin:5px;
border:none;
background:#28a745;
color:white;
border-radius:6px;
cursor:pointer;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
width:90%;
margin:auto;
}

.gallery-grid img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
}



html{
scroll-behavior:smooth;
}

/* FLOATING BAR */

.floating-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:999;
}

.float-btn{
flex:1;
text-align:center;
padding:14px;
color:white;
text-decoration:none;
font-weight:bold;
font-size:16px;
}

.whatsapp{
background:#25D366;
}

.call{
background:#007bff;
}

.book{
background:#ff9800;
}

.float-btn:hover{
opacity:0.9;
}


.footer{
text-align:center;
background:#111;
color:white;
padding:20px;
}

.social-icons{
margin-top:10px;
}

.social-icons img{
width:28px;
margin:0 8px;
cursor:pointer;
transition:0.3s;
}

.social-icons img:hover{
transform:scale(1.2);
}



.side-menu{
height:100%;
width:0;
position:fixed;
top:0;
left:0;
background:#111;
overflow-x:hidden;
transition:0.3s;
padding-top:60px;
z-index:999;
}

.side-menu a{
padding:10px 25px;
text-decoration:none;
font-size:18px;
color:white;
display:block;
}

.side-menu a:hover{
background:#575757;
}

.close-btn{
position:absolute;
top:10px;
right:20px;
font-size:30px;
}


/* MOBILE RESPONSIVE FIX */

@media(max-width:768px){

.topbar{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.right{
flex-wrap:wrap;
gap:10px;
}

.hero{
height:auto;
padding:40px 10px;
}

.booking-box{
width:100%;
padding:15px;
}

.form-row{
flex-direction:column;
}

.form-row input{
width:100%;
}

.form-buttons{
flex-direction:column;
}

.form-buttons button,
.form-buttons a{
width:100%;
}

.booking-form{
flex-direction:column;
}

.booking-form input{
width:100%;
}

.booking-form button{
width:100%;
}

.fleet{
padding:30px 10px;
}

.car{
min-width:200px;
}

.testimonial-wrapper{
flex-direction:column;
align-items:center;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.places{
flex-direction:column;
align-items:center;
}

.place img{
width:120px;
height:120px;
}

}










.email-btn{
background:#ff5722;
border:none;
padding:12px 20px;
border-radius:6px;
color:white;
font-size:16px;
cursor:pointer;
}

.email-btn:hover{
background:#e64a19;
}




.ride-tabs{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:20px;
flex-wrap:wrap;
}

.ride-tabs .tab{
background:rgba(0,0,0,0.6);
color:white;
border:none;
padding:10px 18px;
border-radius:25px;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.ride-tabs .tab:hover{
background:#2ecc71;
}

.ride-tabs .tab.active{
background:#2ecc71;
color:white;
}