*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
overflow-x:hidden;
}

.nav-link{
font-weight:500;
color:#1d1d1d;
}

.nav-link.active{
color:#0057ff !important;
}

/* HERO */

.hero-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.25)),url('https://callforcab.in/call-for-cab1.jpeg');
    background-size: cover;
    background-position: center;
}
.service-badge{
display:inline-flex;
align-items:center;
gap:10px;
background:#0057ff;
color:white;
padding:8px 18px;
border-radius:30px;
font-size:14px;
margin-bottom:20px;
}

.hero-title{
font-size:62px;
font-weight:800;
color:white;
line-height:1.1;
}

.hero-title span{
color:#ffc400;
}

.hero-text{
color:white;
font-size:20px;
margin-top:20px;
}

.hero-tags{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:25px;
}

.hero-tags div{
background:white;
padding:10px 18px;
border-radius:30px;
font-size:14px;
font-weight:600;
}

.hero-tags i{
color:#0057ff;
margin-right:8px;
}

.stats-box{
display:flex;
background:#0038b8;
margin-top:35px;
border-radius:12px;
overflow:hidden;
}

.stats-box div{
flex:1;
padding:20px;
text-align:center;
border-right:1px solid rgba(255,255,255,.15);
}

.stats-box h4{
color:#ffc400;
font-weight:700;
}

.stats-box p{
color:white;
font-size:13px;
margin:0;
}

.hero-car{
margin-top:30px;
max-width:520px;
}

/* BOOKING FORM */

.booking-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 10px 35px rgba(0,0,0,.12);
}

.booking-card h3{
font-weight:700;
margin-bottom:25px;
}

.booking-tabs{
display:flex;
gap:10px;
margin-bottom:25px;
}

.booking-tabs button{
flex:1;
padding:12px;
border:none;
border-radius:10px;
background:#f5f5f5;
font-weight:600;
}

.booking-tabs .active{
background:#0057ff;
color:white;
}

.form-control{
height:52px;
border-radius:12px;
}

.vehicle-box{
display:flex;
gap:12px;
}

.vehicle{
flex:1;
border:1px solid #ddd;
padding:18px;
text-align:center;
border-radius:12px;
cursor:pointer;
}

.vehicle.active{
border:2px solid #0057ff;
}

.vehicle i{
font-size:22px;
color:#0057ff;
margin-bottom:10px;
}

.vehicle p{
margin:0;
font-size:14px;
font-weight:600;
}

.book-btn{
width:100%;
border:none;
height:58px;
border-radius:12px;
background:
linear-gradient(
90deg,
#0057ff,
#ffc400
);

color:white;
font-size:18px;
font-weight:600;
margin-top:15px;
}



/* ================= NAVBAR ================= */

.navbar{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #f1f1f1;
    transition:all .3s ease;
}

.navbar-brand img{
    height:80px;
    width:auto;
}

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-link{
    color:#1a1a1a;
    font-size:15px;
    font-weight:600;
    position:relative;
    padding:8px 0 !important;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#0057ff;
}

.navbar-nav .nav-link.active{
    color:#0057ff !important;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after{
    width:100%;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#0057ff;
    transition:.3s;
}

.contact-number{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:600;
    color:#1a1a1a;
}

.contact-number i{
    width:42px;
    height:42px;
    background:#eef4ff;
    color:#0057ff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:16px;
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler-icon{
    width:1.3em;
    height:1.3em;
}

/* Navbar Hover Button Effect */

.book-now-nav{
    background:linear-gradient(90deg,#0057ff,#ffc400);
    color:#fff;
    padding:10px 22px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.book-now-nav:hover{
    transform:translateY(-2px);
    color:#fff;
}

/* ================= FEATURES ================= */

.features-section{
    margin-top:-60px;
    position:relative;
    z-index:10;
    padding-bottom:80px;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:65px;
    height:65px;
    margin:auto;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.feature-icon i{
    color:#0057ff;
    font-size:24px;
}

.feature-card h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.feature-card p{
    font-size:14px;
    color:#666;
    line-height:1.7;
    margin:0;
}

/* ================= HOW IT WORKS ================= */

.how-section{
    padding:40px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0057ff;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin-top:10px;
}

.step-card{
    padding:20px;
}

.step-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.step-icon i{
    color:#0057ff;
    font-size:30px;
}

.step-card h5{
    font-weight:700;
    margin-bottom:12px;
}

.step-card p{
    color:#666;
    line-height:1.8;
}




/* ================= STATS BANNER ================= */

.stats-banner{
padding:40px 0 80px;
}

.stats-wrapper {
    background: url(https://callforcab.in/callforcab2.jpg);
    border-radius: 24px;
    padding: 60px 40px;
    overflow: hidden;
    background-position: center left;
}

.stats-wrapper h2{
color:#fff;
font-size:34px;
font-weight:700;
margin-bottom:30px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-item{
text-align:center;
}

.stat-item i{
font-size:30px;
color:#ffc400;
margin-bottom:15px;
}

.stat-item h3{
color:#ffc400;
font-weight:700;
margin-bottom:5px;
}

.stat-item p{
color:#fff;
margin:0;
}

.stats-image img{
width:100%;
height:250px;
object-fit:cover;
border-radius:16px;
}


/* ================= ROUTES ================= */

.routes-section{
padding:40px 0;
background:#fff;
}

.route-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
height:100%;
}

.route-card img{
width:100%;
height:180px;
object-fit:cover;
}

.route-content{
padding:15px;
}

.route-content h5{
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.route-meta{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

.route-meta span:last-child{
font-weight:700;
color:#0057ff;
}

.route-btn{
display:block;
text-align:center;
padding:12px;
background:#ffc400;
color:#111;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.airport-card {
    background: url(https://callforcab.in/airport.jpeg);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    background-position: center center;
    background-size: cover;
}

.airport-card h3{
font-weight:700;
margin-bottom:20px;
}

.airport-card ul{
padding-left:18px;
}

.airport-card li{
margin-bottom:10px;
}

.airport-card img{
width:100%;
margin:20px 0;
}

.airport-btn{
display:block;
text-align:center;
padding:14px;
background:#0057ff;
color:#fff;
border-radius:12px;
text-decoration:none;
font-weight:600;
}








/* ================= FLEET ================= */

.fleet-section{
padding:60px 0;
background:#f8fbff;
}

.fleet-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.fleet-card:hover{
transform:translateY(-10px);
}

.fleet-image{
position:relative;
}

.fleet-image img{
width:100%;
height:220px;
object-fit:cover;
}

.fleet-image span{
position:absolute;
top:15px;
left:15px;
background:#0057ff;
color:#fff;
padding:8px 15px;
border-radius:30px;
font-size:14px;
font-weight:600;
}

.fleet-content{
padding:25px;
}

.fleet-content h4{
font-weight:700;
margin-bottom:15px;
}

.fleet-content ul{
padding:0;
list-style:none;
display:flex;
justify-content:space-between;
margin-bottom:20px;
}

.fleet-content li{
font-size:14px;
color:#555;
}

.fleet-content a{
display:block;
text-align:center;
padding:12px;
background:#0057ff;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:600;
}

/* FARE CARD */

.fare-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
}

.fare-card h3{
font-weight:700;
margin-bottom:25px;
}

.calculate-btn{
width:100%;
height:52px;
border:none;
background:#0057ff;
color:#fff;
border-radius:10px;
font-weight:600;
margin-top:10px;
}

.fare-result{
margin-top:25px;
padding-top:25px;
border-top:1px solid #eee;
}

.fare-result div{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

.fare-result strong{
color:#0057ff;
}


/* ================= TOUR PACKAGES ================= */

.tour-section{
padding:60px 0;
background:#fff;
}

.package-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.package-card:hover{
transform:translateY(-10px);
}

.package-image{
position:relative;
}

.package-image img{
width:100%;
height:220px;
object-fit:cover;
}

.package-badge{
position:absolute;
top:15px;
left:15px;
background:#0057ff;
color:#fff;
padding:8px 15px;
border-radius:30px;
font-size:13px;
}

.package-content{
padding:25px;
}

.package-content h4{
    font-size:22px;
font-weight:700;
margin-bottom:15px;
}

.package-content ul{
padding-left:0px;
margin-bottom:20px;
}

.package-content li{
margin-bottom:8px;
}

.package-footer{
display:flex;
justify-content:space-between;
align-items:center;
}

.package-footer h3{
color:#0057ff;
font-size:26px;
font-weight:700;
}

.package-footer a{
background:#ffc400;
color:#111;
padding:10px 20px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}





/* ================= TESTIMONIALS ================= */

.testimonial-section{
padding:60px 0;
background:#f8fbff;
}

.testimonial-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
}

.testimonial-top{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.testimonial-top img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

.testimonial-top h5{
margin:0;
font-weight:700;
}

.testimonial-top span{
color:#777;
font-size:14px;
}

.testimonial-card p{
line-height:1.8;
color:#555;
}

.stars{
color:#ffc400;
font-size:20px;
margin-top:15px;
}


/* ================= CORPORATE ================= */

.corporate-section{
padding:100px 0;
background:#fff;
}

.corporate-image{
border-radius:20px;
}

.sub-heading{
color:#0057ff;
font-weight:600;
}

.corporate-section h2{
font-size:42px;
font-weight:800;
margin:15px 0;
}

.corporate-section p{
color:#666;
line-height:1.8;
margin-bottom:30px;
}

.corporate-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-bottom:30px;
}

.corporate-features div{
background:#f8fbff;
padding:15px;
border-radius:12px;
font-weight:600;
}

.corporate-features i{
color:#0057ff;
margin-right:8px;
}

.corporate-btn{
display:inline-block;
padding:14px 30px;
background:#0057ff;
color:#fff;
text-decoration:none;
border-radius:12px;
font-weight:600;
}



/* ================= BRANCHES ================= */

.branches-section{
    padding:100px 0;
    background:#f8fbff;
}

.branches-section .section-title span{
    color:#0057ff;
    font-weight:600;
    letter-spacing:1px;
}

.branches-section .section-title h2{
    font-size:42px;
    font-weight:800;
    margin:10px 0;
}

.branches-section .section-title p{
    color:#666;
}

.branch-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.branch-card:hover{
    transform:translateY(-8px);
}

.branch-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.branch-icon i{
    color:#0057ff;
    font-size:28px;
}

.branch-card h4{
    font-weight:700;
    margin-bottom:8px;
}

.branch-card h6{
    color:#0057ff;
    font-weight:600;
    margin-bottom:15px;
}

.branch-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* ================= FOOTER ================= */


.faq-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}

.accordion-item{
    border:1px solid #eaeaea;
    border-radius:10px !important;
    overflow:hidden;
    margin-bottom:12px;
}

.accordion-button{
    background:#fff;
    font-weight:600;
    padding:18px 20px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#0057ff;
    color:#fff;
}

.accordion-body{
    line-height:1.8;
    color:#666;
}

.footer{
background:#0f172a;
padding:80px 0 30px;
color:#fff;
}

.footer h3,
.footer h5{
margin-bottom:20px;
font-weight:700;
}

.footer p{
color:#cbd5e1;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin-bottom:12px;
}

.footer ul li a{
text-decoration:none;
color:#cbd5e1;
}

.social-links{
display:flex;
gap:15px;
margin-top:20px;
}

.social-links a{
width:42px;
height:42px;
background:#1e293b;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
text-decoration:none;
}

.footer hr{
border-color:#334155;
margin:40px 0 25px;
}

.footer-bottom{
text-align:center;
}

.footer-bottom p{
margin:0;
}


.bottom-area{
padding:80px 0;
background:#fff;
}

/* CORPORATE */

.corporate-card{
background:linear-gradient(135deg,#0057ff,#0038b8);
border-radius:20px;
padding:30px;
display:flex;
justify-content:space-between;
align-items:center;
overflow:hidden;
height:100%;
}

.corporate-content h3{
color:#fff;
font-weight:700;
}

.corporate-content p{
color:#dbe4ff;
}

.corporate-content ul{
padding:0;
list-style:none;
margin:20px 0;
}

.corporate-content li{
color:#fff;
margin-bottom:10px;
}

.yellow-btn{
display:inline-block;
padding:12px 24px;
background:#ffc400;
border-radius:30px;
text-decoration:none;
font-weight:600;
color:#111;
}

.corporate-image img{
height:250px;
}

/* APP */

.app-card{
background:#fff;
border:1px solid #eee;
border-radius:20px;
padding:30px;
display:flex;
justify-content:space-between;
align-items:center;
height:100%;
}

.mobile-image img{
height:260px;
}

.store-buttons{
display:flex;
gap:10px;
margin-top:20px;
}

.store-buttons img{
height:45px;
}

/* DRIVER */

.driver-safety{
position:relative;
text-align:center;
padding:60px 0;
}

.driver-safety h2{
font-weight:700;
margin-bottom:30px;
}

.safety-items{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
}

.safety-items div{
font-weight:600;
color:#555;
}

.safety-items i{
color:#0057ff;
margin-right:8px;
}

.driver-image{
position:absolute;
right:0;
top:20px;
}

.driver-image img{
height:220px;
}

/* FAQ */

.faq-area{
margin-top:20px;
}

.faq-area h2{
font-size:34px;
font-weight:700;
margin-bottom:30px;
}

.faq-item{
height:60px;
background:#fff;
border:1px solid #eee;
border-radius:10px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 20px;
margin-bottom:15px;
cursor:pointer;
}

/* CTA */

.ride-banner{
margin-top:40px;
background:linear-gradient(
90deg,
#0057ff 0%,
#0057ff 50%,
#f4b400 100%
);
border-radius:20px;
padding:30px 40px;
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
overflow:hidden;
}

.ride-content h2{
color:#fff;
font-weight:700;
}

.ride-content p{
color:#dbe4ff;
max-width:350px;
}

.ride-car{
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:0;
}

.ride-car img{
height:160px;
}

.ride-buttons{
display:flex;
gap:15px;
}

.book-btn-blue{
background:#0057ff;
color:#fff;
padding:14px 35px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}

.call-btn-yellow{
background:transparent;
border:2px solid rgba(255,255,255,.6);
color:#fff;
padding:14px 35px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}
.cstm-form-css {
    background: #fff;
}
.cars-04 i {
    font-size: 22px;
    color:#0057ff;
}
.cstm-form-css {
    display: grid;
    row-gap: 20px;
}
.cstm-form-css h3 {
    margin-bottom: 0px;
}
.frm-members {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cstm-form-css button {
    margin-bottom: 20px !important;
}
.package-content i {
    color: #0057ff;
}
/* MOBILE */

@media(max-width:992px){
    .branches-section{
        padding:60px 0;
    }

    .branches-section .section-title h2{
        font-size:30px;
    }
    
    .cstm-form-css {
    margin-top: 30px !important;
}

.stats-image{
margin-top:30px;
}
     .navbar-collapse{
        margin-top:20px;
        background:#fff;
        padding:20px;
        border-radius:15px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .navbar-nav{
        gap:10px !important;
        align-items:flex-start;
    }

    .contact-number{
        margin-top:15px;
    }


.hero-car{
margin-bottom:30px;
}

.booking-card{
margin-top:40px;
}
.hero-section{
    padding:60px 0;
    text-align:center;
}

.hero-title{
    font-size:42px;
}

.hero-text{
    font-size:18px;
}

.hero-tags{
    justify-content:center;
}

.stats-box{
    flex-wrap:wrap;
}

.stats-box div{
    width:50%;
    flex:none;
}

.hero-car{
    max-width:100%;
}

.booking-card{
    margin-top:40px;
}
}

@media (max-width:576px){
    .stats-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
    .content-corp {
    margin-top: 30px !important;
}
    .airport-card {
    margin-top: 30px;
}
.ride-car {
    position: unset;
    transform: translateX(50px);
}
div#contact-sec {
    display: grid;
}    
    
    .stats-grid{
grid-template-columns:1fr;
}

.stats-wrapper{
padding:25px;
}

.stats-wrapper h2{
font-size:26px;
}

.hero-title{
    font-size:34px;
}

.hero-text{
    font-size:16px;
}

.hero-tags div{
    width:100%;
    justify-content:center;
    text-align:center;
}

.stats-box div{
    width:100%;
}

.vehicle-box{
    flex-direction:column;
}

.booking-tabs{
    flex-direction:column;
}

.section-title h2{
    font-size:24px;
}

}








