

.logohero{
    height: 60px;
    width: 100px;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f9fa;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:#111;
box-shadow:0 8px 25px rgba(0,0,0,.2);
}

.navbar{
padding:16px 0;
}

.logo{
font-size:30px;
font-weight:800;
color:#FFC107;
text-decoration:none;
letter-spacing:1px;
}

.logo span{
color:#fff;
}

.right-area{
display:flex;
align-items:center;
gap:18px;
}

.phone{
display:flex;
align-items:center;
gap:10px;
color:#fff;
font-size:16px;
font-weight:600;
}

.phone i{
width:45px;
height:45px;
background:#FFC107;
color:#111;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
transition:.4s;
}

.phone:hover i{
transform:rotate(-15deg) scale(1.1);
}

.phone a{
text-decoration:none;
color:#fff;
transition:.3s;
}

.phone a:hover{
color:#FFC107;
}

.contact-btn{

background:#FFC107;
color:#111;
font-weight:700;
padding:12px 28px;
border-radius:50px;
text-decoration:none;
transition:.35s;
border:2px solid #FFC107;
}

.contact-btn:hover{
background:#fff;
color:#111;
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(255,193,7,.4);
}

@media(max-width:991px){

.navbar{
padding:14px 0;
}

.logo{
font-size:24px;
}

.right-area{
gap:12px;
}

.phone span{
display:none;
}

.phone i{
width:42px;
height:42px;
font-size:16px;
}

.contact-btn{
padding:10px 18px;
font-size:14px;
}

}

@media(max-width:576px){

.logo{
font-size:22px;
}

.contact-btn{
padding:10px 16px;
font-size:13px;
}

.phone i{
width:40px;
height:40px;
}

}
/* Mobile View */
@media (max-width:768px){

    /* Contact button hide */
    .contact-btn{
        display:none;
    }

    /* Right section spacing */
    .right-area{
        gap:0;
    }

    /* Phone styling */
    .phone{
        background:#FFC107;
        padding:8px 14px;
        border-radius:50px;
        transition:.3s;
    }

    .phone i{
        width:34px;
        height:34px;
        background:#111;
        color:#FFC107;
        font-size:14px;
        margin-right:8px;
    }

    .phone a{
        color:#111;
        font-size:15px;
        font-weight:700;
    }

    .phone div div{
        display:none; /* "Call Anytime" hide */
    }

    .phone:hover{
        transform:translateY(-2px);
        box-shadow:0 8px 20px rgba(255,193,7,.35);
    }

    .logo{
        font-size:24px;
    }
}


/* hero section */
.hero-section{

position:relative;
background:url("images/cabhero.jpg") center center/cover no-repeat;
overflow:hidden;

}

.hero-overlay{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
rgba(0,0,0,.82),
rgba(0,0,0,.45));

}

.hero-content{

position:relative;
z-index:5;
padding-top:80px;
padding-bottom:80px;

}

.hero-tag{

display:inline-block;
background:#FFC107;
color:#111;
padding:10px 22px;
border-radius:40px;
font-weight:600;
margin-bottom:25px;

}

.hero-tag i{

margin-right:8px;

}

.hero-content h1{

font-size:35px;
font-weight:800;
line-height:1.15;
margin-bottom:25px;

}

.hero-content h1 span{

color:#FFC107;

}

.hero-content p{

font-size:19px;
line-height:1.8;
color:#ddd;
max-width:620px;

}

.hero-buttons{

display:flex;
gap:18px;
margin-top:40px;
flex-wrap:wrap;

}

.btn-call{

background:#FFC107;
color:#111;
padding:15px 38px;
border-radius:50px;
font-weight:700;
transition:.4s;

}

.btn-call:hover{

background:#fff;
transform:translateY(-5px);

}

.btn-whatsapp{

background:#25D366;
color:#fff;
padding:15px 38px;
border-radius:50px;
font-weight:700;
transition:.4s;

}

.btn-whatsapp:hover{

background:#1ea952;
transform:translateY(-5px);

}

.city-list{

display:flex;
flex-wrap:wrap;
gap:12px;

}

.city-list span{

background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.2);
padding:10px 22px;
border-radius:30px;
color:#fff;
font-weight:600;
backdrop-filter:blur(8px);

}

.hero-car{

position:relative;
z-index:5;
max-width:100%;
animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/* Tablet */

@media(max-width:991px){

.hero-content{

text-align:center;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.city-list{

justify-content:center;

}

.hero-car{

margin-top:50px;
width:90%;

}

}

/* Mobile */

@media(max-width:576px){

.hero-content{

padding-top:80px;
padding-bottom:60px;

}

.hero-content h1{

font-size:24px;

}

.hero-content p{

font-size:16px;

}

.hero-tag{

font-size:13px;

}

.btn-call,
.btn-whatsapp{

width:100%;

}

.city-list span{

font-size:13px;
padding:8px 18px;

}

.hero-car{

width:95%;

}

}

.hero-offer{

font-size:30px;
font-weight:800;
line-height:1.4;
margin:10px 0;

background:linear-gradient(
90deg,
#c70000,
#FF9800,
#FF3D00,
#FFD700,
#0011ff,
#FFD700
);

background-size:400% auto;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;

animation:gradientMove 5s linear infinite,
glow 2s ease-in-out infinite alternate;

}



@keyframes glow{

0%{
filter:drop-shadow(0 0 5px rgba(255,193,7,.3));
transform:scale(1);
}

100%{
filter:drop-shadow(0 0 18px rgba(255,193,7,.8));
transform:scale(1.03);
}

}

@media(max-width:768px){

.hero-offer{

font-size:16px;
text-align:center;

}

}
.herotextborder{
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.herotextborder{
    background:#fff;
    padding:10px;
    border-radius:10px;
}

/* Mobile Devices */
@media (max-width:768px){

    .herotextborder{

        padding:8px 10px;
        border-radius:8px;
        margin:0 10px;
        text-align:center;

    }

}



.services{
    background:#f8f9fc;
}

.service-badge{
    display:inline-block;
    background:linear-gradient(90deg,#FFD54F,#FFB300);
    color:#111;
    padding:8px 22px;
    border-radius:30px;
    font-weight:700;
    letter-spacing:1px;
}

.service-heading{
    font-size:42px;
    font-weight:800;
    color:#111;
}

.service-text{
    max-width:650px;
    margin:auto;
    color:#666;
}

.service-box{

    background:#fff;
    border-radius:18px;
    padding:22px 15px;
    text-align:center;

    transition:.35s;

    height:100%;

    border:1px solid #ececec;

    cursor:pointer;
}

.service-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    border-color:#FFC107;

}

.service-icon{

    width:65px;
    height:65px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#FFD54F,#FF9800);

    color:#111;

    font-size:28px;

    margin-bottom:15px;

    transition:.4s;

}

.service-box:hover .service-icon{

    transform:rotateY(180deg) scale(1.08);

}

.service-box h6{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#222;

}

@media(max-width:768px){

.service-heading{

font-size:30px;

}

.service-text{

font-size:15px;

}

.service-box{

padding:18px 10px;

}

.service-icon{

width:55px;
height:55px;
font-size:22px;

}

.service-box h6{

font-size:15px;

}

}


.cities-section{

background:#111;

}

.city-tag{

display:inline-block;

padding:10px 26px;

background:linear-gradient(90deg,#FFD54F,#FF9800);

color:#111;

font-weight:700;

border-radius:40px;

letter-spacing:1px;

}

.city-title{

font-size:45px;

font-weight:800;

color:#fff;

margin-top:18px;

}

.city-text{

color:#bbb;

max-width:650px;

margin:auto;

}

.city-card{

background:#1d1d1d;

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:28px 20px;

text-align:center;

transition:.35s;

height:100%;

cursor:pointer;

}

.city-card:hover{

background:#FFC107;

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(255,193,7,.30);

}

.city-card i{

font-size:38px;

color:#FFC107;

margin-bottom:15px;

transition:.35s;

}

.city-card:hover i{

color:#111;

transform:scale(1.15);

}

.city-card h5{

font-weight:700;

color:#fff;

margin-bottom:6px;

transition:.35s;

}

.city-card:hover h5{

color:#111;

}

.city-card span{

font-size:14px;

color:#bdbdbd;

transition:.35s;

}

.city-card:hover span{

color:#222;

}

@media(max-width:768px){

.city-title{

font-size:30px;

}

.city-card{

padding:20px 12px;

}

.city-card i{

font-size:30px;

}

.city-card h5{

font-size:17px;

}

.city-card span{

font-size:12px;

}

}


.fleet-section{

background:#f8f9fc;

}

.fleet-badge{

display:inline-block;

padding:10px 25px;

border-radius:50px;

background:linear-gradient(90deg,#FFD54F,#FF9800);

font-weight:700;

color:#111;

}

.fleet-title{

font-size:45px;

font-weight:800;

margin-top:18px;

}

.fleet-subtitle{

color:#666;

}

.fleet-card{

background:#fff;

border-radius:25px;

overflow:hidden;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.fleet-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.fleet-img{

background:linear-gradient(135deg,#FFD54F,#FF9800);

padding:25px;

}

.fleet-img img{

transition:.4s;

}

.fleet-card:hover img{

transform:scale(1.08);

}

.fleet-body{

padding:25px;

text-align:center;

}

.fleet-body h4{

font-weight:700;

margin-bottom:20px;

}

.fleet-info{

display:flex;

justify-content:center;

gap:12px;

flex-wrap:wrap;

margin-bottom:25px;

}

.fleet-info span{

background:#f5f5f5;

padding:8px 14px;

border-radius:30px;

font-size:14px;

font-weight:600;

}

.fleet-info i{

color:#FF9800;

margin-right:5px;

}

.fleet-btn{

display:block;

background:linear-gradient(90deg,#111,#333);

color:#fff;

padding:14px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.fleet-btn:hover{

background:linear-gradient(90deg,#FFD54F,#FF9800);

color:#111;

letter-spacing:1px;

}

@media(max-width:768px){

.fleet-title{

font-size:30px;

}

.fleet-body{

padding:20px;

}

.fleet-info span{

font-size:12px;

}

}


.advantage-section{

background:#111;

}

.advantage-tag{

display:inline-block;

padding:10px 25px;

border-radius:50px;

background:linear-gradient(90deg,#FFD54F,#FF9800);

font-weight:700;

color:#111;

}

.advantage-title{

color:#fff;

font-size:42px;

font-weight:800;

margin-top:18px;

}

.advantage-text{

color:#bbb !important;

max-width:650px;

margin:auto;

}

.compare-table{

background:#1b1b1b;

border-radius:20px;

overflow:hidden;

}

.compare-table th{

padding:18px;

text-align:center;

color:#fff;

background:#222;

font-size:18px;

}

.compare-table td{

padding:18px;

text-align:center;

color:black;

font-weight:600;

}

.compare-table tbody tr{

border-color:#333;

transition:.3s;

}

.compare-table tbody tr:hover{

background:#2a2a2a;

}

.other{

background:#3a3a3a !important;

}

.ours{

background:linear-gradient(90deg,#FFD54F,#FF9800) !important;

color:#111 !important;

}

@media(max-width:768px){

.advantage-title{

font-size:30px;

}

.compare-table td,
.compare-table th{

padding:12px;

font-size:14px;

}

}

.cta-section{

background:#111;

}

.cta-box{

background:linear-gradient(135deg,#FFD54F,#FF9800);

border-radius:30px;

padding:60px 50px;

position:relative;

overflow:hidden;

box-shadow:0 25px 60px rgba(255,193,7,.35);

}

.cta-box::before{

content:"";

position:absolute;

width:300px;

height:300px;

background:rgba(255,255,255,.12);

border-radius:50%;

top:-120px;

right:-80px;

}

.cta-box::after{

content:"";

position:absolute;

width:220px;

height:220px;

background:rgba(255,255,255,.08);

border-radius:50%;

bottom:-90px;

left:-70px;

}

.cta-badge{

display:inline-block;

padding:8px 20px;

background:#111;

color:#fff;

border-radius:40px;

font-weight:700;

font-size:14px;

}

.cta-title{

font-size:48px;

font-weight:800;

color:#111;

line-height:1.2;

}

.cta-title span{

display:block;

color:#fff;

}

.cta-text{

font-size:18px;

margin-top:20px;

color:#222;

max-width:650px;

}

.cta-buttons{

display:flex;

flex-direction:column;

gap:18px;

justify-content:center;

height:100%;

}

.btn-call-now,

.btn-whatsapp-now{

display:flex;

align-items:center;

justify-content:center;

gap:10px;

padding:16px;

border-radius:60px;

text-decoration:none;

font-weight:700;

transition:.35s;

}

.btn-call-now{

background:#111;

color:#fff;

}

.btn-call-now:hover{

background:#fff;

color:#111;

transform:translateY(-4px);

}

.btn-whatsapp-now{

background:#25D366;

color:#fff;

}

.btn-whatsapp-now:hover{

background:#1db954;

color:#fff;

transform:translateY(-4px);

}

@media(max-width:991px){

.cta-box{

padding:40px 25px;

text-align:center;

}

.cta-title{

font-size:34px;

}

.cta-text{

font-size:16px;

margin:auto;
margin-top:15px;

}

.cta-buttons{

margin-top:30px;

}

}

@media(max-width:576px){

.cta-title{

font-size:28px;

}

.btn-call-now,

.btn-whatsapp-now{

width:100%;

}

}

.faq-section{

background:#f8f9fc;

}

.faq-badge{

display:inline-block;

padding:10px 24px;

background:linear-gradient(90deg,#FFD54F,#FF9800);

border-radius:40px;

font-weight:700;

color:#111;

}

.faq-title{

font-size:42px;

font-weight:800;

margin-top:18px;

}

.faq-text{

max-width:650px;

margin:auto;

color:#666;

}

.accordion-item{

border:none;

border-radius:18px !important;

margin-bottom:18px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.accordion-button{

font-weight:700;

font-size:18px;

padding:22px;

background:#fff;

}

.accordion-button:not(.collapsed){

background:linear-gradient(90deg,#FFD54F,#FF9800);

color:#111;

box-shadow:none;

}

.accordion-button:focus{

box-shadow:none;

}

.accordion-body{

font-size:16px;

line-height:1.8;

color:#555;

background:#fff;

}

@media(max-width:768px){

.faq-title{

font-size:30px;

}

.accordion-button{

font-size:16px;

padding:18px;

}

.accordion-body{

font-size:15px;

}

}

.footer-section{

background:#0f0f0f;

color:#ddd;

padding:70px 0 0;

}

.footer-logo{

font-size:32px;

font-weight:800;

color:#FFC107;

text-decoration:none;

display:inline-block;

margin-bottom:20px;

}

.footer-logo i{

margin-right:8px;

}

.footer-about{

line-height:1.9;

color:#aaa;

margin-bottom:25px;

}

.footer-section h5{

color:#fff;

margin-bottom:25px;

font-weight:700;

position:relative;

}



.footer-section ul{

list-style:none;

padding:0;

margin:0;

}

.footer-section ul li{

margin-bottom:14px;

color:#bbb;

}

.footer-section ul li a{

color:#bbb;

text-decoration:none;

transition:.3s;

}

.footer-section ul li a:hover{

color:#FFC107;

padding-left:6px;

}

.contact-info i{

color:#FFC107;

width:24px;

}

.footer-social{

display:flex;

gap:12px;

}

.footer-social a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#1d1d1d;

color:#FFC107;

font-size:18px;

transition:.35s;

text-decoration:none;

}

.footer-social a:hover{

background:#FFC107;

color:#111;

transform:translateY(-6px);

}

.footer-bottom{

margin-top:60px;

padding:22px 0;

border-top:1px solid rgba(255,255,255,.08);

background:#090909;

}

.footer-bottom p{

margin:0;

font-size:15px;

color:#999;

}

@media(max-width:768px){



.footer-section h5::after{

left:50%;

transform:translateX(-50%);

}





}

/* Floating Buttons */

.sticky-call,
.sticky-whatsapp{

position:fixed;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#fff;

text-decoration:none;

z-index:9999;

box-shadow:0 10px 30px rgba(0,0,0,.25);

animation:pulse 2s infinite;

transition:.35s;

}

/* Left */

.sticky-call{

left:20px;

background:linear-gradient(135deg,#ff9800,#ffc107);

}

/* Right */

.sticky-whatsapp{

right:20px;

background:linear-gradient(135deg,#25D366,#1ebe5d);

}

/* Hover */

.sticky-call:hover{

transform:translateY(-6px) scale(1.08);

color:#fff;

}

.sticky-whatsapp:hover{

transform:translateY(-6px) scale(1.08);

color:#fff;

}

/* Pulse Animation */

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(255,193,7,.7);

}

70%{

box-shadow:0 0 0 15px rgba(255,193,7,0);

}

100%{

box-shadow:0 0 0 0 rgba(255,193,7,0);

}

}

/* WhatsApp Different Pulse */

.sticky-whatsapp{

animation:whatsPulse 2s infinite;

}

@keyframes whatsPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.7);

}

70%{

box-shadow:0 0 0 15px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/* Mobile */

@media(max-width:768px){

.sticky-call,
.sticky-whatsapp{

width:58px;

height:58px;

font-size:24px;

bottom:18px;

}

.sticky-call{

left:15px;

}

.sticky-whatsapp{

right:15px;

}

}