@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    font-family: "Mulish", 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: 200px;
}



.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: #96b23b;
    color: #fff;
}


.navbar-nav .dropdown-menu {
    position: static;
    border-radius: 0px;
    padding: 0px;
}









.hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero .content {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeUp 1.5s ease-in-out;
}

.hero h1 {
    font-size: 50px;
    font-weight: bold;
}

.hero p {
    font-size: 24px;
}

.carousel-item {
    position: relative;
    height: 650px;
}

.carousel-item img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    filter: brightness(50%);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.about-section {
    padding: 50px 0px 40px 0;
    background-color: #f8f9fa;
}


.about-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #07025c;
}


.about-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #99b441;
    display: block;
    margin: 0px auto;
}


.about-section strong {
    color: #ff801b;
}



.about-section .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-section .about-content p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.8rem;
}








.fleet-section {
    padding: 36px 0px;
    background-color: #f8f9fa;
}


.fleet-section .fleet-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #110c63;
}


.fleet-section a {
    background: #ff801b !important;
    border: none;
    border-radius: 8px;
}

.fleet-section .fleet-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #96b23b;
    display: block;
    margin: 0px auto;
}

.fleet-section .car-card {
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}


.fleet-section .car-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


.fleet-section img.card-img-top {
    height: 212px;
    object-fit: contain;
    box-shadow: 0px 0px 6px 0px #0000002e;
}

.fleet-section p {
    font-size: 15px;
}


.fleet-section h5.card-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}


img.shadow.rounded.rumion-t {
    height: 407px;
    object-fit: none;
}


img.shadow.rounded.kia-carens {
    height: 407px;
    object-fit: none;
}





.services-section {
    padding: 40px 0px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-section .services-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    color: #07025c;
}

.services-section .services-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #96b23b;
    display: block;
    margin: 0px auto;
}

.services-section .service-card {
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.services-section .service-icon {
    font-size: 40px;
    color: #ff801b;
    margin-bottom: 15px;
}


.services-section h5 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}





.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) {

    .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: 100%;
        height: 54%;
        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: 40px;
    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: #403c81;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    width: 100%;
    color: #fff;
}


.flip-card-back {
    background: #96b23b;
    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: #99b441;
    display: block;
    margin: 0px auto;
}




@media (max-width: 767.98px) {

    .vehicle-section h2 {
        font-size: 25px;
    }


    .vehicle-section p {
        font-size: 15px;
    }


    .top-title {
        font-size: 25px;
        margin-bottom: 30px;
    }

    section.top-destinations {
        padding: 30px 0px 0px 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);
    }


}