@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");


* {
    font-family: 'Sora', sans-serif;
}


a {
    text-decoration: none !important;
}



.sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background: #fff;
    animation: sticky 2s;
    box-shadow: 0px -1px 4px 0px;
}




.top-header .top-icon {
    display: flex;
    gap: 25px;
}


.top-header .social-icons {
    display: flex;
    gap: 14px;
}


.top-header {
    background-color: #07025c;
    color: #fff;
    font-size: 16px;
    padding: 0px 50px;
}


header hr {
    margin: 10px 0;
    color: #000;
    border: 0;
    border-top: 2px solid #dc2c2c;
    opacity: 1 !important;
}

.top-icon a {
    color: #fff;
}

.top-header .social-icons a {
    color: #FFFFFF;
    margin-left: 10px;
}



ul.navbar-nav.ms-auto {
    gap: 20px;
}


img.header-logo {
    width: 250px;
}



.navbar-brand {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}


.navbar-nav .nav-link {
    color: #000;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}


.navbar-nav .nav-link:hover {
    color: #ff801b;
    transform: scale(1.1);
}


.navbar-toggler {
    border: none;
    outline: none;
}


.navbar-toggler-icon {
    filter: invert(1);
}


.dropdown-menu .dropdown-item {
    color: #333;
    padding: 2px 20px;
    transition: background-color 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #01004c;
    color: #fff;
}


.navbar-nav .dropdown-menu {
    position: static;
    border-radius: 0px;
    padding: 0px;
}





.tf-hero-section {
    position: relative;
    background: url("../img/hero-bg.jpg") center center / cover no-repeat;
    overflow: hidden;
    height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.tf-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.tf-hero-section .container {
    position: relative;
    z-index: 2;
}



.tf-hero-content {
    max-width: 650px;
}

.tf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}


.tf-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.tf-hero-title span {
    color: rgb(249 124 9);
}

.tf-hero-text {
    font-size: 18px;
    line-height: 1.5;
    color: rgb(255 255 255);
    margin-bottom: 35px;
}



.tf-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all .4s ease;
}

.tf-btn-primary:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-3px);
}

.tf-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all .4s ease;
}

.tf-btn-secondary:hover {
    background: #ffffff;
    color: #0f172a;
}





@media (max-width:1400px) {

    .tf-hero-title {
        font-size: 60px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
    }

    img.header-logo {
        width: 210px;
    }

}

@media (max-width:1199px) {

    .tf-hero-title {
        font-size: 52px;
    }




}

@media (max-width:991px) {

    .tf-hero-section {
        padding: 90px 0;
    }

    .tf-hero-content {
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .tf-hero-buttons {
        justify-content: center;
    }

    .tf-hero-title {
        font-size: 44px;
    }

}

@media (max-width:767px) {

    .tf-hero-section {
        padding: 70px 0;
    }

    .tf-hero-title {
        font-size: 34px;
    }

    .tf-hero-text {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }



    .tf-btn-primary,
    .tf-btn-secondary {
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
    }


    .tf-hero-section {
        height: 100%;
    }


    .tf-hero-content {
        text-align: left;
    }

}

@media (max-width:575px) {

    .tf-hero-title {
        font-size: 22px;
    }

    .tf-hero-badge {
        font-size: 12px;
    }

    .tf-form-heading h3 {
        font-size: 24px;
    }


}





.tf-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.tf-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.tf-feature-item i {
    color: #f97c09;
    font-size: 16px;
}

@media(max-width:767px) {

    .tf-hero-features {
        gap: 10px;
        margin-top: 20px;
    }

    .tf-feature-item {
        width: 100%;
        justify-content: left;
    }

}











.tf-about-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}



.tf-about-section .tf-about-image-wrapper {
    position: relative;
}

.tf-about-section .tf-about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.tf-about-section .tf-about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    transition: 0.5s;
}

.tf-about-section .tf-about-image:hover img {
    transform: scale(1.05);
}



.tf-about-section .tf-about-experience {
    position: absolute;
    right: 0;
    bottom: 40px;
    background: #110f53;
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.30);
}

.tf-about-section .tf-about-experience h3 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.tf-about-section .tf-about-experience span {
    font-size: 15px;
    font-weight: 500;
}



.tf-about-section .tf-about-content {
    padding-left: 20px;
}

.tf-about-section .tf-about-subtitle {
    display: inline-block;
    color: #fc7801;
    background: #020056;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.tf-about-section .tf-about-title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.tf-about-section .tf-about-description {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 35px;
}



.tf-about-section .tf-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tf-about-section .tf-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.tf-about-section .tf-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.tf-about-section .tf-feature-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #110f53;
    color: #fb7902;
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.tf-about-section .tf-feature-item span {
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
}



@media(max-width:1400px) {

    .tf-about-section .tf-about-title {
        font-size: 48px;
    }

}

@media(max-width:1199px) {

    .tf-about-section .tf-about-title {
        font-size: 42px;
    }

    .tf-about-section .tf-about-image img {
        height: 580px;
    }

}

@media(max-width:991px) {

    .tf-about-section {
        padding: 90px 0;
    }

    .tf-about-section .tf-about-content {
        padding-left: 0;
    }

    .tf-about-section .tf-about-title {
        font-size: 38px;
    }

    .tf-about-section .tf-about-image img {
        height: 500px;
    }

    .tf-about-section .tf-about-experience {
        right: 20px;
        bottom: 20px;
    }

}

@media(max-width:767px) {

    .tf-about-section {
        padding: 70px 0;
    }

    .tf-about-section .tf-about-title {
        font-size: 32px;
    }

    .tf-about-section .tf-about-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }


    .tf-about-section .tf-feature-item {
        width: 100%;
        justify-content: left;
        padding: 0 0;
    }

    .tf-about-section .tf-about-features {
        grid-template-columns: 1fr;
    }

    .tf-about-section .tf-about-image img {
        height: 420px;
    }

    .tf-about-section .tf-about-experience {
        padding: 20px 25px;
    }

    .tf-about-section .tf-about-experience h3 {
        font-size: 32px;
    }

}

@media(max-width:575px) {

    .tf-about-section .tf-about-title {
        font-size: 24px;
    }

    .tf-about-section .tf-about-image img {
        height: 350px;
    }

    .tf-about-section .tf-about-experience {
        display: none;
    }

}









.tf-fleet-section {
    position: relative;
    padding: 90px 0;
    background: url('../img/fleet-car2.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.tf-fleet-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2125299c;
}

.tf-fleet-section .container {
    position: relative;
    z-index: 2;
}

.tf-fleet-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ff7c04;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tf-fleet-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 16px;
}

.tf-fleet-description {
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.tf-fleet-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tf-fleet-filter button {
    border: none;
    outline: none;
    padding: 14px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: all .4s ease;
}

.tf-fleet-filter button:hover,
.tf-fleet-filter button.active {
    background: #fd7904;
    color: #ffffff;
    transform: translateY(-3px);
}


.tf-fleet-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: all .4s ease;
}

.tf-fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}


.tf-fleet-image {
    overflow: hidden;
}

.tf-fleet-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;

    transition: .6s;
}

.tf-fleet-card:hover .tf-fleet-image img {
    transform: scale(1.08);
}



.tf-fleet-content {
    padding: 15px;
}

.tf-fleet-tag {
    display: inline-block;
    padding: 4px 11px;
    margin-bottom: 8px;
    border-radius: 50px;
    background: rgb(4 4 85);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.tf-fleet-content h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tf-fleet-content p {
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 12px;
}



.tf-fleet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f77b02;
    text-decoration: none;
    font-weight: 600;
    transition: all .4s ease;
    font-size: 18px;
}

.tf-fleet-btn i {
    transition: all .4s ease;
}



.tf-fleet-btn:hover i {
    transform: translateX(5px);
}


.fleet-item {
    transition: all .4s ease;
}


@media (max-width: 1400px) {

    .tf-fleet-title {
        font-size: 50px;
    }

}



@media (max-width: 1199px) {

    .tf-fleet-title {
        font-size: 44px;
    }

    .tf-fleet-image img {
        height: 240px;
    }

}



@media (max-width: 991px) {

    .tf-fleet-section {
        padding: 90px 0;
    }

    .tf-fleet-title {
        font-size: 38px;
    }

    .tf-fleet-description {
        margin-bottom: 50px;
    }

    .tf-fleet-content {
        padding: 25px;
    }

}


@media (max-width: 767px) {

    .tf-fleet-section {
        padding: 60px 0;
    }

    .tf-fleet-title {
        font-size: 32px;
    }

    .tf-fleet-description {
        font-size: 15px;
    }

    .tf-fleet-filter {
        gap: 10px;
    }

    .tf-fleet-filter button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tf-fleet-image img {
        height: 180px;
    }

}


@media (max-width: 575px) {

    .tf-fleet-title {
        font-size: 28px;
    }

    .tf-fleet-content {
        padding: 15px;
    }

    .tf-fleet-content h3 {
        font-size: 21px;
    }

    .tf-fleet-filter {
        flex-direction: column;
    }

    .tf-fleet-filter button {
        width: 100%;
        max-width: 320px;
    }

}







.tf-services-section {
    padding: 90px 0 50px;
    background: #f8fafc;
}

.tf-services-section .tf-services-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #010145;
    color: #f87803;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tf-services-section .tf-services-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1;
}

.tf-services-section .tf-services-description {
    margin: 0 auto 40px;
    color: #64748b;
    line-height: 1.5;
    font-size: 16px;
}

.tf-services-section .tf-service-card {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tf-services-section .tf-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.tf-services-section .tf-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f87803, #020051);
}



.tf-services-section .tf-service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fc7800, #030250);
    color: #fff;
    font-size: 30px;
}

.tf-services-section .tf-service-card:hover .tf-service-icon {
    transform: rotateY(180deg);
    transition: .6s;
}



.tf-services-section .tf-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 7px;
    line-height: 1.4;
}

.tf-services-section .tf-service-card p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}



@media(max-width:1199px) {

    .tf-services-section .tf-services-title {
        font-size: 46px;
    }

}

@media(max-width:991px) {

    .tf-services-section {
        padding: 90px 0;
    }

    .tf-services-section .tf-services-title {
        font-size: 38px;
    }

}

@media(max-width:767px) {

    .tf-services-section {
        padding: 60px 0;
    }


    .tf-services-section .col-lg-8.mx-auto.text-center {
        text-align: left !important;
    }

    .tf-services-section .tf-services-title {
        font-size: 32px;
    }

    .tf-services-section .tf-services-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

}

@media(max-width:575px) {

    .tf-services-section .tf-services-title {
        font-size: 24px;
    }

    .tf-services-section .tf-service-card {
        padding: 25px;
    }

    .tf-services-section .tf-service-card h3 {
        font-size: 20px;
    }

}








.tf-why-section {
    position: relative;
    padding: 30px 0 80px;
    background: #f8fafc;
    overflow: hidden;
}



.tf-why-section .tf-why-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #00004f;
    color: #fb7b03;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}



.tf-why-section .tf-why-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 25px;
}

.tf-why-section .tf-why-description {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 0;
}




.tf-why-section .tf-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tf-why-section .tf-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 18px;
    border: 1px solid #edf2f7;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.tf-why-section .tf-feature-item:hover {
    transform: translateY(-8px);
    border-color: #fd7400;
    box-shadow: 0 20px 40px rgba(13, 110, 253, .12);
}

.tf-why-section .tf-feature-item i {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb7a00, #00004f);
    color: #ffffff;
    font-size: 18px;
    transition: .4s;
}

.tf-why-section .tf-feature-item:hover i {
    transform: rotate(360deg);
}



.tf-why-section .tf-feature-item span {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
}



@media (max-width: 1400px) {

    .tf-why-section .tf-why-title {
        font-size: 50px;
    }

}



@media (max-width: 1199px) {

    .tf-why-section .tf-why-title {
        font-size: 44px;
    }

    .tf-why-section .tf-feature-item {
        padding: 20px;
    }

}



@media (max-width: 991px) {

    .tf-why-section {
        padding: 90px 0;
    }

    .tf-why-section .tf-why-title {
        font-size: 38px;
    }

    .tf-why-section .tf-why-description {
        margin-bottom: 40px;
    }

}



@media (max-width: 767px) {

    .tf-why-section {
        padding: 30px 0 60px;
    }

    .tf-why-section .tf-why-title {
        font-size: 30px;
    }

    .tf-why-section .tf-why-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .tf-why-section .tf-feature-list {
        grid-template-columns: 1fr;
    }

}



@media (max-width: 575px) {

    .tf-why-section .tf-why-title {
        font-size: 26px;
    }

    .tf-why-section .tf-feature-item {
        padding: 18px;
        gap: 15px;
    }

    .tf-why-section .tf-feature-item i {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 16px;
    }

    .tf-why-section .tf-feature-item span {
        font-size: 15px;
    }

}






.tf-booking-section {
    position: relative;
    padding: 90px 0;
    background: url('../img/fleet-bg.jpg') center center/cover no-repeat;
}

.tf-booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, .82);
}

.tf-booking-section .container {
    position: relative;
    z-index: 2;
}



.tf-booking-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fe7c03;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}



.tf-booking-title {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    margin: 25px 0 9px;
}

.tf-booking-description {
    max-width: 750px;
    margin: auto;
    color: rgb(255 255 255);
    line-height: 1.5;
    font-size: 17px;
}



.tf-booking-steps {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tf-step-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    padding: 30px 15px;
    text-align: center;
    transition: .4s;
}

.tf-step-card:hover {
    transform: translateY(-10px);
}

.tf-step-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb7902, #010347);
    color: #fff;
    font-size: 30px;
}

.tf-step-number {
    color: #ff7c00;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tf-step-card h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}



.tf-step-arrow {
    color: #fff;
    font-size: 26px;
}



@media(max-width:1199px) {

    .tf-booking-title {
        font-size: 46px;
    }

}

@media(max-width:991px) {

    .tf-booking-section {
        padding: 90px 0;
    }

    .tf-booking-title {
        font-size: 38px;
    }

    .tf-step-arrow {
        display: none;
    }

}

@media(max-width:767px) {

    .tf-booking-section {
        padding: 70px 0;
    }

    .tf-booking-title {
        font-size: 30px;
    }

    .tf-booking-description {
        font-size: 15px;
    }

    .tf-step-card {
        width: 100%;
    }

}

@media(max-width:575px) {

    .tf-booking-title {
        font-size: 26px;
    }

    .tf-step-card {
        padding: 30px 20px;
    }

    .tf-step-icon {
        width: 75px;
        height: 75px;
        font-size: 26px;
    }

}






.tf-testimonial-section {
    padding: 90px 0 50px;
    background: #ffffff;
}

.tf-testimonial-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #00004a;
    color: #fd7600;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tf-testimonial-title {
    font-size: 46px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.tf-testimonial-description {
    margin: 0 auto 40px;
    color: #6b7280;
    line-height: 1.5;
    font-size: 17px;
}



.tf-testimonial-card {
    max-width: 850px;
    margin: auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.tf-quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f97b058c;
    font-size: 42px;
}

.tf-testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid #eef4ff;
}

.tf-testimonial-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.tf-rating {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 20px;
}

.tf-testimonial-card p {
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
    max-width: 650px;
    margin: auto;
}



.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: #00004a;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}



@media(max-width:1199px) {

    .tf-testimonial-title {
        font-size: 46px;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }
}

@media(max-width:991px) {

    .tf-testimonial-section {
        padding: 90px 0;
    }

    .tf-testimonial-title {
        font-size: 38px;
    }
}

@media(max-width:767px) {

    .tf-testimonial-section {
        padding: 70px 0;
    }

    .tf-testimonial-title {
        font-size: 30px;
    }

    .tf-testimonial-card {
        padding: 35px 25px;
    }

    .tf-testimonial-card p {
        font-size: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media(max-width:575px) {

    .tf-testimonial-title {
        font-size: 26px;
    }

    .tf-testimonial-card img {
        width: 80px;
        height: 80px;
    }

    .tf-testimonial-card h4 {
        font-size: 20px;
    }
}


.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
}






.tf-contact-section {
    padding: 30px 0 80px;
    background: #ffffff;
    position: relative;
}



.tf-contact-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #00004f;
    color: #fb7b03;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tf-contact-title {
    font-size: 54px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 25px;
}

.tf-contact-description {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
}



.tf-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tf-contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 24px;
    border-left: 5px solid #00004c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .4s;
}


.tf-contact-item:hover {
    transform: translateX(10px);
}


.tf-contact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #fe7a08, #00004f);
    color: #fff;
    font-size: 28px;
}

.tf-contact-content span {
    display: block;
    color: #010347;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tf-contact-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.5;
    margin: 0;
}




@media(max-width:1199px) {

    .tf-contact-title {
        font-size: 46px;
    }

}

@media(max-width:991px) {

    .tf-contact-section {
        padding: 90px 0;
    }

    .tf-contact-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .tf-contact-info {
        margin-bottom: 40px;
    }

}

@media(max-width:767px) {

    .tf-contact-section {
        padding: 0px 0 60px;
    }


    .tf-rating {
        margin-bottom: 0px;
    }




    .tf-contact-title {
        font-size: 30px;
    }

    .tf-contact-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .tf-contact-item {
        padding: 22px;
        gap: 18px;
    }

    .tf-contact-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 22px;
    }

    .tf-contact-content h4 {
        font-size: 18px;
    }

}

@media(max-width:575px) {

    .tf-contact-title {
        font-size: 26px;
    }

    .tf-contact-item {
        flex-direction: column;
        text-align: center;
    }

    .tf-contact-item:hover {
        transform: none;
    }

}







.cab-hero-section {
    position: relative;
    background: url('../img/fleet-car2.jpg') center 76%/cover no-repeat;
    height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.cab-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, .75);
}

.cab-hero-section .container {
    position: relative;
    z-index: 2;
}



.cab-hero-section .cab-hero-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid #ffffff52;
}

.cab-hero-section .cab-hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}


.cab-hero-content span {
    color: #fd7b03;
}

.cab-hero-section .cab-hero-description {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}



.cab-hero-section .cab-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cab-hero-section .cab-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 600;
}

.cab-hero-section .cab-hero-feature i {
    color: #fd7702;
    font-size: 18px;
}



.cab-hero-form-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .20);
}

.cab-hero-form-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

.cab-hero-form-box p {
    color: #ffffff;
    font-size: 14px;
}

.cab-hero-input {
    height: 55px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    color: #ffffff;
}

textarea.cab-hero-input {
    height: auto;
    padding-top: 15px;
}

.cab-hero-input::placeholder {
    color: rgba(255, 255, 255, .75);
}

.cab-hero-input:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, .20);
    color: #ffffff;
}

.cab-hero-input option {
    color: #000;
}



.cab-hero-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #f67f0f, #00024e);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: .4s;
}


.cab-hero-btn:hover {
    transform: translateY(-3px);
}



@media(max-width:1199px) {

    .cab-hero-section .cab-hero-title {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .cab-hero-section {
        padding: 90px 0;
    }

    .cab-hero-section .cab-hero-content {
        margin-bottom: 50px;
    }

    .cab-hero-section .cab-hero-title {
        font-size: 40px;
    }

}

@media(max-width:767px) {

    .cab-hero-section {
        padding: 60px 0;
        height: 100%;
    }


    .cab-hero-section .cab-hero-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .cab-hero-section .cab-hero-title {
        font-size: 32px;
    }


    .cab-hero-section .cab-hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cab-hero-form-box {
        padding: 25px 15px;
    }

}

@media(max-width:575px) {

    .cab-hero-section .cab-hero-title {
        font-size: 28px;
    }

    .cab-hero-section .cab-hero-form-title {
        font-size: 22px;
    }

}



.book-cab-contact {
    padding: 90px 0 80px;
    background: #ffffff;
    position: relative;
}





.cab-about-section {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


.cab-about-section .cab-about-image {
    position: relative;
}

.cab-about-section .cab-about-image img {
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    height: 500px;
}


.cab-about-section .cab-about-subtitle {
    display: inline-block;
    padding: 10px 22px;
    background: #02034f;
    color: #fd7700;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cab-about-section .cab-about-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #111827;
    margin-bottom: 15px;
}

.cab-about-section .cab-about-description {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 25px;
}



.cab-about-section .cab-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cab-about-section .cab-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s ease;
}

.cab-about-section .cab-about-feature:hover {
    transform: translateY(-5px);
}

.cab-about-section .cab-about-feature i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #02034f;
    color: #fb7a02;
    font-size: 16px;
    flex-shrink: 0;
}

.cab-about-section .cab-about-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}



@media (max-width:1399px) {

    .cab-about-section .cab-about-title {
        font-size: 46px;
    }

}



@media (max-width:1199px) {

    .cab-about-section {
        padding: 100px 0;
    }

    .cab-about-section .cab-about-content {
        padding-left: 30px;
    }

    .cab-about-section .cab-about-title {
        font-size: 40px;
    }

}


@media (max-width:991px) {

    .cab-about-section {
        padding: 90px 0;
    }


    .cab-about-section .cab-about-content {
        padding-left: 0;
    }

    .cab-about-section .cab-about-title {
        font-size: 36px;
    }

    .book-cab-contact {
        padding: 60px 0 60px;
        background: #ffffff;
        position: relative;
    }

}


@media (max-width:767px) {

    .cab-about-section {
        padding: 60px 0;
    }


    .cab-about-section .cab-about-image img {
        height: 100%;
        margin-top: 30px;
    }

    .cab-about-section .cab-about-title {
        font-size: 30px;
    }

    .cab-about-section .cab-about-description {
        font-size: 15px;
    }

    .cab-about-section .cab-about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}


@media (max-width:575px) {

    .cab-about-section .cab-about-title {
        font-size: 26px;
    }

    .cab-about-section .cab-about-subtitle {
        font-size: 13px;
        padding: 8px 18px;
    }


    .cab-about-section .cab-about-feature span {
        font-size: 14px;
    }

    .cab-about-section .cab-about-feature i {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

}







.taxi-hero-section {
    position: relative;
    background: url('../img/fleet-bg.jpg') center center/cover no-repeat;
    height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.taxi-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, .78);
}

.taxi-hero-section .container {
    position: relative;
    z-index: 2;
}


.taxi-hero-section span {
    color: #fb7903;
}


.taxi-hero-section .taxi-hero-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid #ffffff57;
}

.taxi-hero-section .taxi-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.taxi-hero-section .taxi-hero-description {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.taxi-hero-section .taxi-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.taxi-hero-section .taxi-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.taxi-hero-section .taxi-hero-feature i {
    color: #f37a0d;
    font-size: 18px;
}



.taxi-hero-section .taxi-hero-form-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    padding: 40px;
}

.taxi-hero-section .taxi-hero-form-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.taxi-hero-section .taxi-hero-form-description {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 25px;
}



.taxi-hero-section .taxi-hero-input {
    height: 55px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.taxi-hero-section textarea.taxi-hero-input {
    height: auto;
    padding-top: 15px;
}

.taxi-hero-section .taxi-hero-input::placeholder {
    color: rgba(255, 255, 255, .75);
}

.taxi-hero-section .taxi-hero-input:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, .20);
    color: #fff;
}

.taxi-hero-section .taxi-hero-input option {
    color: #111;
}



.taxi-hero-section .taxi-hero-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #4f46e5);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .4s;
}

.taxi-hero-section .taxi-hero-btn:hover {
    transform: translateY(-3px);
}



@media(max-width:1199px) {

    .taxi-hero-section .taxi-hero-title {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .taxi-hero-section {
        padding: 90px 0;
    }

    .taxi-hero-section .taxi-hero-content {
        margin-bottom: 50px;
    }

    .taxi-hero-section .taxi-hero-title {
        font-size: 40px;
    }

}

@media(max-width:767px) {

    .taxi-hero-section {
        padding: 60px 0;
        height: 100%;
    }

    .taxi-hero-section .taxi-hero-title {
        font-size: 32px;
    }

    .taxi-hero-section .taxi-hero-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .taxi-hero-section .taxi-hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .taxi-hero-section .taxi-hero-form-box {
        padding: 25px;
    }

}

@media(max-width:575px) {

    .taxi-hero-section .taxi-hero-title {
        font-size: 28px;
    }

    .taxi-hero-section .taxi-hero-form-title {
        font-size: 22px;
    }

}










.taxi-about-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}


.taxi-about-section .taxi-about-image {
    position: relative;
}

.taxi-about-section .taxi-about-image img {
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    height: 520px;
}


.taxi-about-section .taxi-about-content {
    padding-left: 30px;
}

.taxi-about-section .taxi-about-subtitle {
    display: inline-block;
    padding: 10px 22px;
    background: #010052;
    color: #f47d11;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.taxi-about-section .taxi-about-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 15px;
}

.taxi-about-section .taxi-about-description {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 25px;
}



.taxi-about-section .taxi-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.taxi-about-section .taxi-about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .3s ease;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.taxi-about-section .taxi-about-feature:hover {
    transform: translateY(-5px);
}

.taxi-about-section .taxi-about-feature i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #02004e;
    color: #f47a05;
    font-size: 15px;
    flex-shrink: 0;
}



@media(max-width:1399px) {

    .taxi-about-section .taxi-about-title {
        font-size: 46px;
    }

}



@media(max-width:1199px) {

    .taxi-about-section {
        padding: 100px 0;
    }

    .taxi-about-section .taxi-about-content {
        padding-left: 30px;
    }

    .taxi-about-section .taxi-about-title {
        font-size: 42px;
    }

}



@media(max-width:991px) {

    .taxi-about-section {
        padding: 90px 0;
    }

    .taxi-about-section .taxi-about-image {
        margin-bottom: 40px;
    }

    .taxi-about-section .taxi-about-content {
        padding-left: 0;
    }

    .taxi-about-section .taxi-about-title {
        font-size: 36px;
    }

}



@media(max-width:767px) {

    .taxi-about-section {
        padding: 60px 0;
    }

    .taxi-about-section .taxi-about-title {
        font-size: 30px;
    }

    .taxi-about-section .taxi-about-description {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .taxi-about-section .taxi-about-features {
        grid-template-columns: 1fr;
    }


    .taxi-about-section .taxi-about-image img {
        height: 100%;
    }

}



@media(max-width:575px) {

    .taxi-about-section .taxi-about-title {
        font-size: 26px;
    }

    .taxi-about-section .taxi-about-subtitle {
        font-size: 13px;
        padding: 8px 18px;
    }

    .taxi-about-section .taxi-about-feature {
        font-size: 14px;
    }

    .taxi-about-section .taxi-about-feature i {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

}









.vehicle-breadcrumb-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}




.rumion-hero {
    background: url(../img/toyota-rumion/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.maruti-dzire {
    background: url(../img/maruti-dzire/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.kia-carens {
    background: url(../img/kia-carens/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.force-traveller {
    background: url(../img/traveller-img/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




.toyota-innova {
    background: url(../img/toyota-innova/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.toyota-etios {
    background: url(../img/toyota-etios/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.maruti-ertiga {
    background: url(../img/ertiga/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.maruti-ciaz {
    background: url(../img/maruti-ciaz/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




.mahindra-xuv500 {
    background: url(../img/Mahindra-XUV500/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.mahindra-scorpio {
    background: url(../img/mahindra-scorpio/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.mahindra-bolero {
    background: url(../img/mahindra-bolero/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.mahindra-verito {
    background: url(../img/mahindra-verito/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




.hyundai-aura {
    background: url(../img/hyundai-aura/bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.vehicle-breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
}

.vehicle-breadcrumb-section .container {
    position: relative;
    z-index: 2;
}



.vehicle-breadcrumb-section .vehicle-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.vehicle-breadcrumb-section .vehicle-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}



.vehicle-breadcrumb-section .vehicle-breadcrumb span {
    color: #ffffff;
}

.vehicle-breadcrumb-section .vehicle-breadcrumb-active {
    color: #f97907 !important;
    font-weight: 700;
}



.vehicle-breadcrumb-section .vehicle-breadcrumb-title {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.vehicle-breadcrumb-section .vehicle-breadcrumb-description {
    max-width: 800px;
    margin: auto;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.5;
}


.vehicle-breadcrumb-title span {
    color: #fa7709;
}



@media(max-width:991px) {

    .vehicle-breadcrumb-section {
        padding: 90px 0;
    }

    .vehicle-breadcrumb-section .vehicle-breadcrumb-title {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .vehicle-breadcrumb-section {
        padding: 70px 0;
    }

    .vehicle-breadcrumb-section .vehicle-breadcrumb-title {
        font-size: 32px;
    }

    .vehicle-breadcrumb-section .vehicle-breadcrumb-description {
        font-size: 15px;
    }

    .vehicle-breadcrumb-section .vehicle-breadcrumb {
        gap: 6px;
    }

}

@media(max-width:575px) {

    .vehicle-breadcrumb-section .vehicle-breadcrumb-title {
        font-size: 28px;
    }

}







.vehicle-overview-section {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


.vehicle-overview-section .vehicle-overview-content {
    padding-left: 30px;
}



.vehicle-overview-section .vehicle-overview-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 30px;
}

.vehicle-overview-section .vehicle-overview-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    transition: .5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    height: 380px;
    object-fit: contain;
}

.vehicle-overview-section .vehicle-overview-image:hover img {
    transform: scale(1.04);
}



.vehicle-overview-section .vehicle-overview-subtitle {
    display: inline-block;
    padding: 10px 22px;
    background: #010145;
    color: #fa7500;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 13px;
}


.vehicle-overview-section .vehicle-overview-title {
    font-size: 37px;
    font-weight: 800;
    color: #00004e;
    line-height: 1;
    margin-bottom: 10px;
}


.vehicle-overview-section .vehicle-overview-description {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 10px;
}



.vehicle-overview-section .vehicle-overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.vehicle-overview-section .vehicle-overview-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .3s ease;
}

.vehicle-overview-section .vehicle-overview-feature:hover {
    transform: translateY(-5px);
}

.vehicle-overview-section .vehicle-overview-feature i {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #00004d;
    color: #fd7700;
    font-size: 17px;
    flex-shrink: 0;
}

.vehicle-overview-section .vehicle-overview-feature span {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}



.vehicle-overview-section .vehicle-overview-form {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    position: sticky;
    top: 100px;
}


.vehicle-overview-section .vehicle-overview-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #00024a;
    margin-bottom: 10px;
}

.vehicle-overview-section .vehicle-overview-form-description {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 15px;
}

.vehicle-overview-section .vehicle-overview-input {
    height: 55px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    font-size: 15px;
    padding-left: 15px;
    box-shadow: none;
}

.vehicle-overview-section textarea.vehicle-overview-input {
    height: auto;
    padding-top: 15px;
}

.vehicle-overview-section .vehicle-overview-input:focus {
    border-color: #0d6efd;
    box-shadow: none;
}



.vehicle-overview-section .vehicle-overview-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fd7902, #000149);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: .4s ease;
}


.vehicle-overview-section .vehicle-overview-btn:hover {
    transform: translateY(-3px);
}


@media(max-width:1399px) {

    .vehicle-overview-section .vehicle-overview-title {
        font-size: 44px;
    }

}



@media(max-width:1199px) {

    .vehicle-overview-section {
        padding: 100px 0;
    }

    .vehicle-overview-section .vehicle-overview-title {
        font-size: 40px;
    }

    .vehicle-overview-section .vehicle-overview-content {
        padding-right: 15px;
    }

}


@media(max-width:991px) {

    .vehicle-overview-section {
        padding: 90px 0;
    }

    .vehicle-overview-section .vehicle-overview-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .vehicle-overview-section .vehicle-overview-form {
        position: relative;
        top: auto;
    }

    .vehicle-overview-section .vehicle-overview-title {
        font-size: 36px;
    }

}


@media(max-width:767px) {

    .vehicle-overview-section {
        padding: 60px 0;
    }

    .vehicle-overview-section .vehicle-overview-title {
        font-size: 30px;
    }

    .vehicle-overview-section .vehicle-overview-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .vehicle-overview-section .vehicle-overview-features {
        grid-template-columns: 1fr;
    }

    .vehicle-overview-section .vehicle-overview-form {
        padding: 25px;
    }


    .vehicle-overview-section .vehicle-overview-content {
        padding-left: 0;
        margin-bottom: 0px;
        margin-top: 30px;
    }


    .vehicle-overview-section .vehicle-overview-image img {
        box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
        height: 100%;
    }

}



@media(max-width:575px) {

    .vehicle-overview-section .vehicle-overview-title {
        font-size: 26px;
    }

    .vehicle-overview-section .vehicle-overview-subtitle {
        font-size: 13px;
        padding: 8px 18px;
    }



    .vehicle-overview-section .vehicle-overview-feature span {
        font-size: 14px;
    }

    .vehicle-overview-section .vehicle-overview-feature i {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .vehicle-overview-section .vehicle-overview-form {
        padding: 20px 15px;
        box-shadow: 0px 4px 12px #0000002e;
    }

    .vehicle-overview-section .vehicle-overview-form-title {
        font-size: 22px;
    }


}





.vehicle-specs-section {
    position: relative;
    padding: 90px 0;
    background: url('../img/fleet-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.vehicle-specs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: -1;
}

.vehicle-specs-section .vehicle-specs-heading {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}


.vehicle-specs-section .vehicle-specs-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fa7703;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}


.vehicle-specs-section .vehicle-specs-title {
    font-size: 42px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.vehicle-specs-section .vehicle-specs-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.5;
}



.vehicle-specs-section .vehicle-specs-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
}


.vehicle-specs-section .vehicle-specs-feature-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.vehicle-specs-section .vehicle-specs-feature h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vehicle-specs-section .vehicle-specs-feature p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0px;
    line-height: 1.5;
}



.vehicle-specs-section .vehicle-specs-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}


.vehicle-specs-section .vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.vehicle-specs-section .vehicle-specs-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 15px;
    transition: .35s ease;
}


.vehicle-specs-section .vehicle-specs-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.vehicle-specs-section .vehicle-specs-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}

.vehicle-specs-section .vehicle-specs-label i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
}

.vehicle-specs-section .vehicle-specs-label span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.vehicle-specs-section .vehicle-specs-item strong {
    display: block;
    padding-left: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}



@media(max-width:991px) {

    .vehicle-specs-section {
        padding: 90px 0;
    }

    .vehicle-specs-section .vehicle-specs-title {
        font-size: 40px;
    }

    .vehicle-specs-section .vehicle-specs-features {
        margin-bottom: 20px;
    }

}

@media(max-width:767px) {

    .vehicle-specs-section {
        padding: 60px 0;
    }

    .vehicle-specs-section .vehicle-specs-title {
        font-size: 32px;
    }

    .vehicle-specs-section .vehicle-specs-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-specs-section .vehicle-specs-card {
        padding: 20px 15px;
    }

    .vehicle-specs-section .vehicle-specs-feature p {
        font-size: 14px;
    }

    .vehicle-specs-section .vehicle-specs-feature h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

}

@media(max-width:575px) {

    .vehicle-specs-section .vehicle-specs-title {
        font-size: 28px;
    }

    .vehicle-specs-section .vehicle-specs-feature {
        padding: 20px 10px;
        gap: 10px;
    }

    .vehicle-specs-section .vehicle-specs-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .vehicle-specs-section .vehicle-specs-item strong {
        padding-left: 0;
        margin-top: 0px;
        margin-left: 49px;
    }

}







.vehicle-gallery-section {
    padding: 90px 0;
    background: #fff;
}


.vehicle-gallery-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}


.vehicle-gallery-subtitle {
    display: inline-block;
    padding: 10px 22px;
    background: #03044d;
    color: #fa7803;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}


.vehicle-gallery-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}


.vehicle-gallery-description {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.9;
}



.vehicle-gallery-featured {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 4px;
}


.vehicle-gallery-featured img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    cursor: pointer;
}


.vehicle-gallery-featured-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #00004f;
    padding: 30px;
}


.vehicle-gallery-featured-content h3 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}


.vehicle-gallery-featured-content span {
    color: #fff;
    font-size: 18px;
}



.vehicle-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}


.vehicle-gallery-item {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}


.vehicle-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s;
}

.vehicle-gallery-item:hover img {
    transform: scale(1.08);
}



.vehicle-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 99999;

    justify-content: center;
    align-items: center;
}

.vehicle-gallery-modal-image {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 20px;
}

.vehicle-gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}


@media(max-width:991px) {

    .vehicle-gallery-title {
        font-size: 40px;
    }

    .vehicle-gallery-featured img {
        height: 420px;
    }

    .vehicle-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:767px) {

    .vehicle-gallery-section {
        padding: 60px 0;
    }

    .vehicle-gallery-title {
        font-size: 32px;
    }

    .vehicle-gallery-description {
        font-size: 16px;
        line-height: 1.5;
    }


    .vehicle-specs-section .vehicle-specs-description {
        font-size: 15px;
    }

    .vehicle-gallery-featured img {
        height: 195px;
    }

    .vehicle-gallery-featured-content {
        left: 0px;
        bottom: 0px;
        padding: 10px;
        right: 0px;
        text-align: center;
        background: #00014785;
    }

    .vehicle-gallery-featured-content h3 {
        font-size: 18px;
        margin-bottom: 0px;
    }


    .vehicle-gallery-featured-content span {
        font-size: 14px;
    }

    .vehicle-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-gallery-item img {
        height: 180px;
    }


    .vehicle-gallery-grid {
        gap: 10px;
    }

}

@media(max-width:575px) {

    .vehicle-gallery-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-gallery-item img {
        height: 170px;
    }

}







.booking-section {
    padding: 40px 0px;
    background-color: #f8f9fa;
}


.booking-section .booking-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #07025c;
}


.booking-section .booking-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #96b23b;
    display: block;
    margin: 0px auto;
}


.booking-section .form-control,
.btn {
    border-radius: 8px;
}


.booking-section .booking-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


button.btn.btn-primary.w-100 {
    background: #ff801b !important;
    border: none;
}








.contact-section {
    padding: 40px 0px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-section .contact-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    color: #07025c;
}

.contact-section .contact-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #96b23b;
    display: block;
    margin: 0px auto;
}

.contact-section .contact-item {
    font-size: 20px;
    margin-bottom: 20px;
}


.contact-section .contact-item a {
    font-size: 16px;
    color: #000;
}


.contact-section i {
    font-size: 40px;
    color: #ff801b;
}





@media (max-width: 767.98px) {

    .carousel-item {
        position: relative;
        display: none;
        float: left;
        width: 100%;
        margin-right: -100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: transform .6s ease-in-out;
        border: 2px solid #00004f;
        border-radius: 20px;
    }

    .top-header {
        display: none;
    }

    ul.navbar-nav.ms-auto {
        gap: 0px;
        line-height: 20px;
    }


    .navbar-toggler-icon {
        filter: invert(0);
        box-shadow: none !important;
        border: none !important;
    }


    .hero {
        height: 100%;
    }


    .carousel-item img {
        width: 41%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
    }

    .hero .content {
        margin-top: -270px;
    }

    .hero h1 {
        font-size: 30px;
        font-weight: bold;
    }

    .about-section {
        padding: 38px 0px 20px 0;
        background-color: #f8f9fa;
        margin-top: -298px;
    }


    .about-title {
        font-size: 30px;
        margin-bottom: 25px;
    }


    .about-section .about-content p {
        font-size: 16px;
        line-height: 1.6rem;
    }


    .fleet-section .fleet-title {
        font-size: 30px;
        margin-bottom: 30px;
    }


    .fleet-section .fleet-title::after {
        width: 70px;
        height: 4px;
    }


    .about-title::after {
        width: 60px;
    }

    .fleet-section {
        padding: 20px 0px;
    }


    .car-booking .fleet-section {
        padding: 20px 0px;
        margin-top: -286px;
    }

    .booking-section {
        padding: 20px 0px;
    }


    .fleet-section img.card-img-top {
        height: 100%;
    }


    .booking-section .booking-title {
        font-size: 30px;
        margin-bottom: 30px;
    }


    .services-section .services-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .services-section {
        padding: 17px 0px;
    }

    .contact-section .contact-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .contact-section i {
        font-size: 25px;
        color: #ff801b;
    }

    .contact-section {
        padding: 25px 0px;
    }


    img.header-logo {
        width: 160px;
    }

    button.navbar-toggler {
        box-shadow: none !important;
        border: none;
    }

    .booking-section .mb-3 {
        margin-bottom: 10px !important;
    }


    .booking-section .main.shadow.rounded.p-4 {
        padding: 18px !important;
    }


    .navbar-nav .nav-link:hover {
        color: #ff801b;
        transform: none;
    }

}







.footer-section {
    background: #222;
    color: #fff;
    text-align: left;
    padding: 40px 0px 0px 0px !important;
}


.footer-logo {
    font-size: 24px;
    font-weight: bold;
}


.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}





.footer-section h5 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff801b;
    display: inline-block;
    padding-bottom: 5px;
}


.footer-section ul {
    padding: 0;
    list-style: none;
}


.footer-section ul li {
    margin-bottom: 10px;
}


.footer-section ul li a i {
    margin-right: 8px;
}


.footer-section .add {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
}


.footer-section ul.list-unstyled {
    line-height: 20px;
}





.footer-section .social-icons {
    display: flex;
    gap: 12px;
}



.footer-section .social-icons a {
    color: #FFFFFF;
    margin-left: 10px;
}


img.footer-logo {
    width: 180px;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}




.copyright-section {
    background-color: #222;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}


.copyright-section a {
    color: #ff801b;
    text-decoration: none;
    font-weight: bold;
}


.copyright-section a:hover {
    text-decoration: underline;
}


.copyright-section p {
    margin-bottom: 0px;
    font-size: 17px;
}






.vehicle-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}






.features-section {
    padding: 40px 0px 0px 0px;
    background-color: #f8f9fa;
    text-align: center;
}

.features-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    color: #07025c;
}

.features-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #98b440;
    display: block;
    margin: 0px auto;
}

.feature-card {
    padding: 21px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #007bff;
}



.vehicle-section form {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.vehicle-section input,
.vehicle-section textarea,
.vehicle-section button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}


.vehicle-section button {
    background: #ff801b !important;
    color: white;
    border: none;
    cursor: pointer;
}





.vehicle-section li {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}


.vehicle-section img.shadow.rounded {
    width: 100%;
}






.breadcrumbs-section {
    background: #96b23b;
    padding: 30px 0;
    color: #ffffff;
}

.breadcrumbs-overlay {
    background-color: rgb(7 2 92 / 56%);
    padding: 15px;
    border-radius: 8px;
}

.breadcrumbs a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs span {
    margin: 0 5px;
    color: #d1d1d1;
}

.breadcrumbs h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: bold;
}



.breadcrumb-item a {
    color: #fff;
    font-size: 18px;
    font-weight: bolder;
}


.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgb(253 253 253) !important;
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item.active {
    color: rgb(254 255 255) !important;
}



.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}


.feature-box p {
    font-size: 14px;
}







@media (max-width: 767.98px) {

    .features-title {
        font-size: 28px;
    }

    .etios .services-section {
        padding: 36px 0px 0 0 !important;
    }


    section.vehicle-section {
        padding: 30px 0px 0 0 !important;
    }

    .services-section h5 {
        font-size: 19px;
    }


    .etios .features-title {
        font-size: 28px;
        margin-top: 26px;
    }

}


.flight .booking-form h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.flight .vehicle-section img.shadow.rounded {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 50% 27%;
}




@media (max-width: 767.98px) {

    .flight .vehicle-section img.shadow.rounded {
        height: 100%;
    }

}



.thanku {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
}


.thank-you-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    width: 90%;
    animation: fadeIn 1.5s ease-in-out;
}

.thank-you-card h1 {
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.thank-you-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thank-you-card a {
    padding: 12px 30px;
    background: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.thank-you-card a:hover {
    background: #ff5722;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.vehicle-section h2 {
    font-size: 39px;
    font-weight: bold;
    color: #07025c !important;
}


.vehicle-section p {
    font-size: 18px;
    font-weight: 500;
    color: #333333b5;
}




.flip-card {
    background-color: transparent;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 270px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 2px solid #ff811d;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}




.flip-card-back {
    position: absolute;
    width: 100%;
    height: 96%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 2px solid #ff811d;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.flip-card-front img {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
    width: 100%;
}


.flip-card-front h3 {
    margin: 0px 0;
    background: #00004b;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    width: 100%;
    color: #fff;
}


.flip-card-back {
    background: #00004b;
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
}



.top-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #07025c;
}


.top-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #ff801b;
    display: block;
    margin: 0px auto;
}




@media (max-width: 767.98px) {

    .vehicle-section h2 {
        font-size: 25px;
        margin-top: 20px;
    }


    .vehicle-section p {
        font-size: 15px;
    }


    .top-title {
        font-size: 25px;
        margin-bottom: 30px;
    }

    section.top-destinations {
        padding: 30px 0px 50px 0px !important;
    }


}




.state-destination .destination-card {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.state-destination .destination-card:hover {
    transform: scale(1.05);
}

.state-destination .destination-card img {
    height: 250px;
    object-fit: cover;
}

.state-destination .destination-title {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    width: 100%;
}




.visa-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.visa-card:hover {
    transform: scale(1.05);
}

.visa-card i {
    font-size: 50px;
    color: #ff801b;
    margin-bottom: 20px;
}

.visa-card h4 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.visa-card p {
    color: #666;
    font-size: 16px;
}



@media (max-width: 767.98px) {}




.package-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 20px;
}


.package-card:hover {
    transform: scale(1.05);
}

.package-card i {
    font-size: 50px;
    color: #ff8625;
    margin-bottom: 0px;
}


.package-card h4 {
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;
}

.package-card p {
    color: #666;
    font-size: 16px;
}

.package-card .btn {
    background: #96b23b;
    color: #fff;
    transition: 0.3s;
}





.terms-container {
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.terms-container h2 {
    color: #07025c;
    font-weight: bold;
}

.terms-container h4 {
    margin-top: 20px;
    color: #ff821f;
}

.terms-container p {
    color: #555;
    line-height: 1.6;
}

.terms-container a {
    color: #96b23b;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

.terms-container:hover {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}






.policy-container {
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.policy-container h2 {
    color: #007bff;
    text-align: center;
}

.policy-container h4 {
    color: #ff801b;
    margin-top: 20px;
}

.policy-container p,
.policy-container li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.policy-container ul {
    padding-left: 20px;
}

.policy-container a {
    color: #96b23b;
    text-decoration: none;
}

.policy-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
    }

    .policy-container h2 {
        font-size: 24px;
    }

    .policy-container h4 {
        font-size: 18px;
    }

    .policy-container p,
    .policy-container li {
        font-size: 14px;
    }


    .terms-container h4 {
        margin-top: 18px;
        color: #ff821f;
    }

    .terms-container p {
        color: #555;
        line-height: 1.6;
        font-size: 14px;
    }
}


.about-section img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}


.jodhpur .breadcrumbs-section {
    background: url(../img/jodhpur-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.udaipur .breadcrumbs-section {
    background: url(../img/udaipur-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.jaisalmer .breadcrumbs-section {
    background: url(../img/jaisalmer-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.jaipur1 .breadcrumbs-section {
    background: url(../img/jaipur-bg.jpeg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}




.ajmer .breadcrumbs-section {
    background: url(../img/ajmer-bg.jpeg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.mumbai .breadcrumbs-section {
    background: url(../img/mumbai-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 94%;
}



.goa .breadcrumbs-section {
    background: url(../img/goa-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 94%;
}


.himachal .breadcrumbs-section {
    background: url(../img/himachal-pradesh.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 94%;
}



.uttarakhand .breadcrumbs-section {
    background: url(../img/uttarakhand-bg.jpeg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}


.uttar-pradesh .breadcrumbs-section {
    background: url(../img/uttar-pradesh.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 24%;
}


.delhi .breadcrumbs-section {
    background: url(../img/delhi-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 24%;
}


.kerala .breadcrumbs-section {
    background: url(../img/kerala-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 81%;
}


.bihar .breadcrumbs-section {
    background: url(../img/bihar-bg.png);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}



.mp .breadcrumbs-section {
    background: url(../img/mp-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}


.chittor .breadcrumbs-section {
    background: url(../img/chittorgarh-bg.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}


.karnataka .breadcrumbs-section {
    background: url(../img/hampi.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}


.tamilnadu .breadcrumbs-section {
    background: url(../img/kanyakumar.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}



.visa .breadcrumbs-section {
    background: url(../img/map.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}


.tour-packages .breadcrumbs-section {
    background: url(../img/tour-packages.jpg);
    padding: 90px 0;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 80%;
}


.jodhpur .breadcrumbs-overlay {
    background-color: rgb(2 2 2 / 56%);
    padding: 15px;
    border-radius: 8px;
}



.uttarakhand .vehicle-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #07025c !important;
}



@media (max-width: 767.98px) {

    .jodhpur .breadcrumbs-section {
        padding: 50px 0;
    }


    .about-section img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }


    .uttarakhand .vehicle-section h2 {
        font-size: 20px;
    }


    .thank-you-card {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
        max-width: 600px;
        width: 90%;
        animation: fadeIn 1.5s ease-in-out;
    }


    .thanku {
        height: 524px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #ffffff;
        font-family: Arial, sans-serif;
    }

}









img.social-media {
    width: 30px;
    padding: 3px;
    background: #fff;
    border-radius: 4px;
}

.top-header .social-media {
    width: 25px;
}



.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1.4rem;
    bottom: 15rem;
    background: red;
    width: 60px;
    height: 60px;
    padding: 1rem;
    border-radius: 100%;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    justify-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 27px;
    display: none !important;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 160px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none !important;
}





@media (max-width: 767.98px) {

    .float {
        position: fixed;
        width: 55px;
        height: 55px;
        bottom: 102px !important;
        right: 12px !important;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }


    .call-buton .cc-calto-action-ripple {
        z-index: 99999;
        position: fixed;
        right: 12px !important;
        bottom: 187px !important;
        background: red;
        width: 55px;
        height: 55px;
        padding: 13px;
        border-radius: 100%;
        box-sizing: border-box;
        color: #ffffff;
        display: flex !important;
        justify-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        font-size: 27px;
    }



}




section.book-cab {
    background: linear-gradient(45deg, #00000036, #21252966), url(../img/book-cab.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 10%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.book-cab .col-lg-7.col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}



.book-cab form {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #96b23ba1;
}


.book-cab input,
.book-cab textarea,
.book-cab button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}




.book-cab button {
    background: #ff801b !important;
    color: white;
    border: none;
    cursor: pointer;
}


.book-cab h2.booking-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}


.book-cab h1 {
    font-size: 52px;
    font-weight: bold;
    color: #ffffff;
}


.book-cab .content p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}




@media (max-width: 767.98px) {

    .book-cab h1 {
        font-size: 26px;
    }


    .cab-book .fleet-section {
        padding: 40px 0px;
        margin-top: 0;
    }



    section.book-cab {
        background-position: 4% 10%;
        height: 100%;
    }


    .book-cab form {
        margin-top: 20px;
    }

}



@media (max-width: 430px) {


    img.shadow.rounded.kia-carens {
        height: 299px;
        object-fit: cover;
    }


    img.shadow.rounded.rumion-t {
        height: 355px;
        object-fit: cover;
    }


    .fleet-section h5.card-title {
        font-size: 22px;
    }
}


@media (max-width: 412px) {

    .fleet-section h5.card-title {
        font-size: 18px;
    }

}







.booking-section form {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.booking-section input,
.booking-section textarea,
.booking-section button {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}



.booking-section button {
    background: #ff801b !important;
    color: white;
    border: none;
    cursor: pointer;
}



.booking-section .booking-title1 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 17px;
    position: relative;
    color: #07025c;
}







@media (max-width: 430px) {

    .booking-section input,
    .booking-section textarea,
    .booking-section button {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }


    .booking-section form {
        width: 100%;
        max-width: 400px;
        margin: auto;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }


}