/*==================================================
Aaple Cab Premium Style
Part 1
==================================================*/

:root{

--primary:#0d6efd;
--secondary:#ffc107;
--success:#198754;
--danger:#dc3545;
--dark:#212529;
--light:#f8f9fa;
--gray:#6c757d;
--white:#ffffff;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Segoe UI',sans-serif;
background:#f5f7fa;
color:#333;
overflow-x:hidden;

}

/*======================
Links
=======================*/

a{

text-decoration:none;
transition:.3s;

}

a:hover{

text-decoration:none;

}

/*======================
Buttons
=======================*/

.btn{

border-radius:8px;
padding:12px 24px;
font-weight:600;
transition:.3s;

}

.btn:hover{

transform:translateY(-2px);

}

.btn-primary{

background:var(--primary);
border:none;

}

.btn-warning{

background:var(--secondary);
border:none;
color:#000;

}

.btn-success{

border:none;

}

/*======================
Navbar
=======================*/

.navbar{

background:#fff;
box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.navbar-brand{

font-size:28px;
font-weight:bold;

}

.nav-link{

font-weight:600;
margin-left:10px;
color:#333!important;

}

.nav-link:hover{

color:var(--primary)!important;

}

/*======================
Hero
=======================*/

.hero-section{

min-height:650px;

background:

linear-gradient(

rgba(0,0,0,.60),

rgba(0,0,0,.60)

),

url('../images/hero-taxi.jpg');

background-size:cover;

background-position:center;

display:flex;

align-items:center;

color:#fff;

}

.hero-title{

font-size:60px;

font-weight:700;

line-height:1.2;

}

.hero-text{

font-size:22px;

margin:20px 0;

}

.hero-section .btn{

margin-right:10px;

}

/*======================
Booking Search
=======================*/

.search-card{

background:#fff;

margin-top:-70px;

position:relative;

z-index:100;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

padding:30px;

}

.search-card label{

font-weight:600;

margin-bottom:8px;

}

.search-card input,

.search-card select{

height:52px;

border-radius:10px;

}

/*======================
Section Title
=======================*/

.section-title{

text-align:center;

margin-bottom:50px;

}

.section-title h2{

font-size:40px;

font-weight:bold;

}

.section-title p{

color:#777;

font-size:18px;

}

/*======================
Feature Card
=======================*/

.feature-card{

border:none;

border-radius:15px;

transition:.3s;

overflow:hidden;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.feature-card .icon{

font-size:55px;

margin-bottom:20px;

color:var(--primary);

}

/*======================
Service Card
=======================*/

.service-card{

border:none;

border-radius:15px;

overflow:hidden;

transition:.3s;

}

.service-card img{

height:220px;

object-fit:cover;

}

.service-card:hover{

transform:scale(1.04);

}

.service-card h4{

font-weight:bold;

margin-top:10px;

}

/*======================
Cards
=======================*/

.card{

border:none;

border-radius:15px;

}

.card-body{

padding:30px;

}

/*======================
Images
=======================*/

img{

max-width:100%;

}

/*======================
Spacing
=======================*/

.py-80{

padding:80px 0;

}

.mt-80{

margin-top:80px;

}

.mb-80{

margin-bottom:80px;

}

/*======================
Animation
=======================*/

.fade-up{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*======================
Mobile
=======================*/

@media(max-width:992px){

.hero-title{

font-size:42px;

}

.hero-text{

font-size:18px;

}

.search-card{

margin-top:20px;

}

}

@media(max-width:768px){

.hero-section{

text-align:center;

padding:80px 0;

min-height:auto;

}

.hero-title{

font-size:34px;

}

.hero-text{

font-size:17px;

}

.section-title h2{

font-size:30px;

}

.search-card{

padding:20px;

}

.navbar-brand{

font-size:22px;

}

}

@media(max-width:576px){

.hero-title{

font-size:28px;

}

.btn{

width:100%;

margin-bottom:10px;

}

.search-card{

border-radius:15px;

}

}
/*==================================================
Aaple Cab Premium Style
Part 2
Popular Routes • Pricing • Counter • CTA
Testimonials • Driver Banner
==================================================*/

/*==========================
Popular Routes
===========================*/

.route-card{

background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;

}

.route-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.route-card img{

width:100%;
height:220px;
object-fit:cover;

}

.route-card .card-body{

padding:25px;

}

.route-card h4{

font-weight:700;
margin-bottom:10px;

}

.route-card p{

color:#666;

}


/*==========================
Fare Cards
===========================*/

.fare-card{

background:#fff;
border-radius:18px;
padding:35px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;

}

.fare-card:hover{

transform:translateY(-8px);

}

.fare-card h3{

font-size:42px;
font-weight:700;
color:var(--primary);

}

.fare-card h5{

margin-top:15px;
font-weight:700;

}

.fare-card p{

color:#777;

}


/*==========================
Statistics Counter
===========================*/

.counter-section{

background:linear-gradient(135deg,#0d6efd,#0b5ed7);

color:#fff;

}

.counter-box{

padding:30px;

}

.counter-box h2{

font-size:55px;
font-weight:700;

}

.counter-box p{

font-size:18px;

}


/*==========================
Call To Action
===========================*/

.cta-section{

background:

linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),

url('../images/cta.jpg');

background-size:cover;
background-position:center;

padding:90px 0;

text-align:center;

color:#fff;

}

.cta-section h2{

font-size:48px;
font-weight:700;

}

.cta-section p{

font-size:20px;
margin:25px 0;

}

.cta-section .btn{

padding:15px 35px;

}


/*==========================
Testimonials
===========================*/

.testimonial-card{

background:#fff;

border-radius:18px;

padding:35px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

text-align:center;

}

.testimonial-card img{

width:100px;

height:100px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

}

.testimonial-card h4{

font-weight:700;

}

.testimonial-card p{

color:#666;

font-style:italic;

}

.rating{

font-size:22px;

color:#ffc107;

margin:15px 0;

}


/*==========================
Driver Banner
===========================*/

.driver-banner{

background:linear-gradient(135deg,#198754,#157347);

color:#fff;

border-radius:20px;

padding:60px;

text-align:center;

}

.driver-banner h2{

font-size:42px;

font-weight:700;

}

.driver-banner p{

font-size:20px;

margin:20px 0;

}

.driver-banner .btn{

padding:14px 30px;

}


/*==========================
Download App
===========================*/

.app-section{

background:#fff;

}

.app-section img{

max-height:480px;

}

.store-btn{

display:inline-block;

padding:15px 28px;

border-radius:12px;

font-weight:600;

margin:8px;

}


/*==========================
Utility Classes
===========================*/

.rounded-20{

border-radius:20px;

}

.shadow-lg2{

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.bg-gradient-primary{

background:linear-gradient(135deg,#0d6efd,#0b5ed7);

}

.bg-gradient-success{

background:linear-gradient(135deg,#198754,#157347);

}

.bg-gradient-warning{

background:linear-gradient(135deg,#ffc107,#ffca2c);

}

.text-small{

font-size:14px;

}


/*==========================
Animations
===========================*/

.zoom{

transition:.35s;

}

.zoom:hover{

transform:scale(1.05);

}

.rotate:hover{

transform:rotate(3deg);

transition:.3s;

}

.shadow-hover:hover{

box-shadow:0 25px 45px rgba(0,0,0,.18);

}


/*==========================
Responsive
===========================*/

@media(max-width:992px){

.counter-box h2{

font-size:42px;

}

.driver-banner{

padding:40px;

}

.driver-banner h2{

font-size:34px;

}

.cta-section h2{

font-size:36px;

}

}

@media(max-width:768px){

.route-card img{

height:180px;

}

.counter-box{

padding:20px;

}

.counter-box h2{

font-size:34px;

}

.cta-section{

padding:60px 20px;

}

.cta-section h2{

font-size:30px;

}

.driver-banner{

padding:30px;

}

.driver-banner h2{

font-size:28px;

}

.driver-banner p{

font-size:17px;

}

.fare-card{

margin-bottom:20px;

}

}

@media(max-width:576px){

.cta-section h2{

font-size:26px;

}

.testimonial-card{

padding:25px;

}

.driver-banner h2{

font-size:24px;

}

.store-btn{

display:block;

width:100%;

margin-bottom:10px;

}

}
