:root {
    --primary: #FF7A00;          /* Orange */
    --primary-dark: #E56700;    /* Dark Orange */
    --navy: #122041;             /* Navy */
    --navy-light : #141f30;

    --white: #ffffff;
    --bg: #F8FAFC;
    --text: #1a1a1a;
    --muted: #64748B;
    --shadow: rgba(15, 23, 42, 0.08);
}

/* =======================
   BODY
======================= */
body {
    font-family: "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* =======================
   PREMIUM NAVBAR
======================= */
.premium-nav {
    background: rgba(228, 219, 219, 0.44);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 0;
    transition: 0.3s ease;
}

/* brand */
.brand-text {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    color: var(--navy) !important;
}

/* nav links */
.premium-nav .nav-link {
    color: black !important;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.premium-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}

.premium-nav .nav-link:hover {
    color: navy!important;
}

.premium-nav .nav-link:hover::after {
    width: 100%;
}

/* Call Button */
.btn-call {
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
    transition: 0.3s;
    text-decoration: none !important;

}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none !important;

}



/* =======================
   NAVBAR
======================= */
.glass-nav {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link {
    color: var(--muted) !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* =======================
   BUTTONS
======================= */
.btn-warning {
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 18px;
    box-shadow: 0 12px 30px rgba(255,122,0,0.25);
    transition: 0.3s;
}

.btn-warning:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =======================
   HERO BANNER SECTION
======================= */

.hero-section {
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}


.hero-banner-box {
    width: 100%;
    display: block;
}


.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* Mobile */
@media (max-width: 768px) {

    .hero-section {
        padding-top: 70px;
    }

    .hero-banner {
        width: 100%;
        height: auto;
    }

}
/* =======================
   CARDS
======================= */
.route-card,
.service-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 30px var(--shadow);
    border: 1px solid rgba(15,23,42,0.05);
    transition: 0.3s;
}

.route-card:hover,
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(255,122,0,0.15);
}

/* ICONS */
.service-box i {
    font-size: 2rem;
    color: var(--primary);
}

/* =======================
   ROUTES SECTION
======================= */
.routes-section {
    background: #F8FAFC;
}

/* title */
.routes-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
}

.routes-subtitle {
    color: #64748B;
    font-size: 1rem;
}

/* premium card */
.route-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    border: 1px solid rgba(15,23,42,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* glow */
.route-card-premium::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,122,0,0.08);
    top: -80px;
    right: -80px;
    border-radius: 50%;
    filter: blur(40px);
}

/* hover */
.route-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,122,0,0.18);
}

/* icon */
.route-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,122,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

/* route name */
.route-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

/* description */
.route-text {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 18px;
}

/* button */
.route-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(255,122,0,0.20);
}

.route-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

/* =======================
   ABOUT SECTION
======================= */
.about-section {
    background: #F8FAFC;
}

/* badge */
.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,122,0,0.12);
    color: var(--primary);
    font-weight: 600;
}

/* title */
.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
}

/* text */
.section-text {
    color: #64748B;
    line-height: 1.9;
    margin-top: 20px;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
}

/* experience card */
.experience-card {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--navy);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(15,23,42,0.20);
}

.experience-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--primary);
}

.experience-card p {
    margin: 0;
    font-weight: 600;
}

/* features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--navy);
}

.feature-item i {
    color: var(--primary);
}

/* about button */
.btn-about {
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-about:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,122,0,.35);
}

/* mobile */
@media (max-width:768px) {

    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-card {
        position: static;
        margin-top: 20px;
    }
}
/* =======================
   STORY SECTION
======================= */
.story-section {
    background: #ffffff;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #64748B;
    line-height: 1.8;
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--navy);
}

.story-content p {
    color: #64748B;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-image-box {
    position: relative;
}

.story-image-box img {
    width: 100%;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
    border-radius: 20px;
}

/* badge */
.story-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--navy);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.story-badge i {
    color: var(--primary);
}

/* =======================
   WHY CHOOSE US
======================= */

.why-card {
    height: 100%;
    padding: 35px 30px;
    border-radius: 25px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(15,23,42,.08);
    transition: .3s;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,122,0,.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255,122,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-icon i {
    font-size: 30px;
    color: var(--primary);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.why-card p {
    color: #64748B;
    line-height: 1.8;
    margin: 0;
}

/* =======================
   MISSION & SERVICES
======================= */

.mission-services-section {
    background: #F8FAFC;
}

/* purpose card */

.purpose-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
    transition: .3s;
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,122,0,.12);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255,122,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.purpose-icon i {
    font-size: 34px;
    color: var(--primary);
}

.purpose-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.purpose-card p {
    color: #64748B;
    line-height: 1.9;
}

.purpose-list {
    padding-left: 20px;
    color: #64748B;
}

.purpose-list li {
    margin-bottom: 12px;
}

/* =======================
   SERVICE CARDS
======================= */

.service-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,122,0,.15);
}

.service-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.service-card p {
    color: #64748B;
    line-height: 1.8;
}

/* =======================
   STATS SECTION
======================= */

.stats-section {
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--navy-light)
    );
    border-radius: 30px;
    padding: 60px 30px;
}

.stat-box h2 {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box p {
    color: rgba(255,255,255,.75);
    margin: 0;
}

/* =======================
   MOBILE
======================= */

@media(max-width:768px) {

    .purpose-card,
    .service-card {
        padding: 30px 25px;
    }

    .stat-box h2 {
        font-size: 2.2rem;
    }
}

@media(max-width:768px) {

    .story-content h3 {
        font-size: 1.7rem;
    }

    .story-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}
/* =======================
   FEATURE CARDS
======================= */

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.05);
    transition: 0.3s;
}

.feature-card i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.feature-card h6 {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
}

.feature-card p {
    margin: 0;
    font-size: 13px;
    color: #64748B;
}

.feature-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(255,122,0,0.12);
    background: #fff;
}

/* =======================
   SERVICES SECTION
======================= */

.services-section {
    background: #F8FAFC;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
}

.services-subtitle {
    color: #64748B;
    font-size: 1rem;
}

/* premium service card */

.service-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    border: 1px solid rgba(15,23,42,0.05);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,122,0,0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    filter: blur(35px);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,122,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,122,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
}

.service-card-premium h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-card-premium p {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

/* =======================
   CTA PREMIUM
======================= */

.cta-premium {
    background: linear-gradient(180deg, #F8FAFC, #ffffff);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,122,0,0.10);
    border-radius: 50%;
    filter: blur(120px);
    top: -200px;
    right: -200px;
}

.cta-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(15,23,42,0.10);
    border: 1px solid rgba(15,23,42,0.05);
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,122,0,0.10);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.cta-title span {
    color: var(--primary);
}

.cta-subtitle {
    color: #64748B;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-trust div {
    background: #F1F5F9;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(15,23,42,0.25);
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: #fff;
}

.cta-note {
    margin-top: 15px;
    font-size: 12px;
    color: #64748B;
}

/* =======================
   FOOTER
======================= */

.footer-premium {
    background: var(--navy);
    color: #eaeaea;
    padding: 50px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,122,0,0.15);
    filter: blur(120px);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h4 {
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-brand p {
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

.footer-info p {
    margin: 5px 0;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 25px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.60);
}

/* =======================
   NAVBAR LOGO
======================= */

.navbar-logo {
    height: 69px;
    width: auto;
    object-fit: contain;
    transition: 0.3s;
}

.navbar-logo:hover {
    transform: scale(1.05);
}
/* footer */

.footer-heading{
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
}

.footer-links a,
.footer-link{
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover,
.footer-link:hover{
    color: var(--primary);
}

.footer-social{
    display: flex;
    gap: 12px;
}

.footer-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover{
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-contact p{
    color: rgba(255,255,255,.75);
    margin-bottom: 15px;
}

.footer-trust i{
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.footer-trust h6{
    color: #fff;
    margin-bottom: 5px;
}

.footer-trust small{
    color: rgba(255,255,255,.65);
}

@media(max-width:768px){
    .footer-social{
        justify-content: center;
    }

    .footer-heading{
        margin-top: 20px;
    }
}
.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.copyright-text {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.8;
}

.copyright-text strong {
    color: #fff;
    font-weight: 700;
}

.developer-credit i {
    color: var(--primary);
    margin: 0 4px;
}

.developer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.developer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cta-modern{
    background: #fff;
    border-radius: 35px;
    padding: 70px 60px;
    box-shadow: 0 25px 60px rgba(15,23,42,.08);
}

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,122,0,.12);
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

.cta-heading{
    font-size:3.5rem;
    font-weight:800;
    color:var(--navy);
    line-height:1.15;
}

.cta-heading span{
    color:var(--primary);
}

.cta-text{
    color:#64748B;
    font-size:1.1rem;
    line-height:1.9;
    max-width:600px;
    margin:25px 0;
}

.cta-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.cta-points div{
    font-weight:600;
    color:var(--navy);
}

.cta-points i{
    color:var(--primary);
    margin-right:8px;
}

.cta-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cta-call-btn,
.cta-whatsapp-btn{
    padding:15px 28px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.cta-call-btn{
    background:var(--primary);
    color:#fff;
}

.cta-call-btn:hover{
    background:var(--primary-dark);
    color:#fff;
}

.cta-whatsapp-btn{
    background:#F8FAFC;
    color:var(--navy);
}

.cta-whatsapp-btn:hover{
    background:var(--navy);
    color:#fff;
}

.booking-panel{
    background:var(--navy);
    color:#fff;
    padding:40px;
    border-radius:30px;
}

.status-live{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.1);
    padding:8px 14px;
    border-radius:50px;
    margin-bottom:25px;
}

.status-live span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22C55E;
}

.booking-phone{
    font-size:2rem;
    font-weight:800;
    color:var(--primary);
    margin:20px 0;
}

.booking-stats{
    display:flex;
    justify-content:space-between;
    margin:35px 0;
}

.booking-stats h3{
    color:var(--primary);
    margin:0;
}

.booking-stats span{
    color:rgba(255,255,255,.7);
}

.booking-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:15px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.booking-btn:hover{
    color:#fff;
    background:var(--primary-dark);
}

.secure-note{
    margin-top:20px;
    text-align:center;
    color:rgba(255,255,255,.75);
}

@media(max-width:768px){

    .cta-modern{
        padding:40px 25px;
    }

    .cta-heading{
        font-size:2.3rem;
    }

    .cta-points{
        grid-template-columns:1fr;
    }

    .booking-stats{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}

.whatsapp-float,
.call-float{
    position: fixed;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
    transition: calc(var(--default-transition) * 0.25);
    text-decoration: none !important; }


.whatsapp-float {
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 10px 16px;
    border-radius: 999px;
}

.call-float {
    bottom: 20px;
    left: 20px;
    background: #4299db;
    padding: 10px 16px;
    border-radius: 999px;
}

.whatsapp-float i,
.call-float i {
    font-size: 1.2rem;
}

.totop {
    width: 45px;
    height: 45px;
    bottom: -80px;
    right: 20px;
    border: none;
    outline: none;
    border-radius: 50%;
    font-size: 1.6rem;
    opacity: 0;
    background: var(--primary-color);
}

.whatsapp-float:hover,
.call-float:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
@media (max-width:576px) {

    .whatsapp-float,
    .call-float {
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
    }

    /* Hide text */
    .whatsapp-float span,
    .call-float span {
        display: none;
    }

    .whatsapp-float i,
    .call-float i {
        font-size: 24px;
        margin: 0;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .call-float {
        left: 15px;
        bottom: 15px;
    }
}
.vehicle-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    transition:.3s;
}


.vehicle-card:hover{
    transform:translateY(-5px);
}


.vehicle-image{
    position:relative;
    height:230px;
}


.vehicle-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}


.vehicle-type{
    position:absolute;
    right:15px;
    top:15px;
    background:#1769ff;
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:14px;
}


.vehicle-type.suv{
    background:#009b65;
}


.vehicle-type.traveller{
    background:#ff7300;
}


.vehicle-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    color:#fff;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
}


.vehicle-overlay h5{
    margin:0;
    font-size:20px;
}


.vehicle-overlay p{
    margin:5px 0 0;
}


.vehicle-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px;
}


.vehicle-bottom h4{
    color:#ff6900;
    font-size:25px;
    margin:0;
}


.vehicle-bottom small{
    color:#777;
    font-size:14px;
}


.call-btn{
    background:#ff6900;
    color:white;
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}


@media(max-width:768px){

    .vehicle-image{
        height:210px;
    }

    .vehicle-bottom h4{
        font-size:22px;
    }

}
.btn-call,
.whatsapp-float,
.btn-call:hover,
.whatsapp-float:hover,
.btn-call:focus,
.whatsapp-float:focus,
.btn-call:active,
.whatsapp-float:active {
    text-decoration: none !important;
}