@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;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}


.top-header {
    background: #f20092;
}


img.top-image {
    width: 25px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f20092;
    color: white;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
}

.top-bar .contact-info i {
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .contact-info span {
    margin-right: 15px;
}

.top-bar .social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
}

.top-bar .social-icons a:hover {
    color: #f5b026;
}

.right-bar {
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
}


img.header-logo {
    width: 190px;
    height: 73px;
    object-fit: contain;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 1rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transform: translateY(-2px);
}


.dropdown-menu .dropdown-item {
    color: #000 !important;
}


.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
}



.offcanvas-header .btn-close {
    color: #000 !important;
    filter: none;
}


.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}


ul.navbar-nav.ms-auto {
    gap: 25px;
}



.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .hero-content {
    position: absolute;
    z-index: 2;
    animation: fadeUp 1.5s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero .active-bg {
    opacity: 1;
}

.hero a.btn.btn-primary.btn-lg {
    background: #ed401e !important;
    border: none;
}




.popular-rajasthan .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.popular-rajasthan .section-title span {
    color: orange;
}

.popular-rajasthan .slider-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 65px;
}

.popular-rajasthan .slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 0;
}

.popular-rajasthan .slider::-webkit-scrollbar {
    display: none;
}

.popular-rajasthan .slide {
    flex: 0 0 auto;
    text-align: center;
}

.popular-rajasthan .slide img {
    width: 240px;
    height: 240px;
    border-radius: 50% / 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-position: 50% 54%;
}

.popular-rajasthan .slide-title {
    margin-top: 10px;
    font-weight: 500;
}

.popular-rajasthan .see-more {
    font-size: 14px;
    color: gray;
}


.popular-rajasthan .see-more a {
    color: #363a3d;
}

.popular-rajasthan .arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    background: #fe9900;
    color: #fff;
    font-weight: bold;
}

.popular-rajasthan .arrows {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
    top: -60px;
}



.popular-rajasthan .container,
.popular-rajasthan .container-lg,
.popular-rajasthan .container-md,
.popular-rajasthan .container-sm,
.popular-rajasthan .container-xl,
.popular-rajasthan .container-xxl {
    max-width: 1414px;
}



.about-us {
    padding: 60px 0 15px 0;
}

.about-us .image-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 15px;
}

.about-us .left-image img {
    width: 300px;
    height: 517px;
    object-fit: cover;
    border-radius: 150px 150px 0px 150px;
}

.about-us .right-images {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-us .circle-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 150px 150px 150px 0px;
}


.about-us .circle-image1 img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 150px 0px 150px 150px;
}

.about-us .text-container {
    padding: 20px;
}

.about-us .section-title {
    font-size: 20px;
    color: #fe9900;
    font-weight: 600;
}

.about-us .main-title {
    font-size: 28px;
    font-weight: bold;
    color: #544e52;
}

.about-us .description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}






.tour-categories span {
    color: #544e52;
}





.destinations-section {
    text-align: center;
    padding: 40px 40px;
    background: white;
}

.destinations-section h2 {
    font-weight: 700;
    color: #fe9900;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}




.destinations-section h2 i {
    color: #e3028a;
    font-size: 28px;
}

.destinations-section p {
    color: #666;
    max-width: 600px;
    margin: auto;
    margin-bottom: 15px;
}

.destinations-section .destination-card {
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.destinations-section .destination-card:hover {
    transform: translateY(-5px);
}

.destinations-section .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destinations-section .card-body {
    padding: 20px;
    text-align: left;
}

.destinations-section .card-title {
    font-size: 20px;
    font-weight: bold;
    color: #544e52;
}

.destinations-section .card-text {
    font-size: 14px;
    color: #555;
}

.destinations-section .read-more-btn {
    background: #81cf01 !important;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.destinations-section .read-more-btn:hover {
    background: #8e5c1b;
}







.services-section {
    text-align: center;
    padding: 40px 10% 0;
    background: white;
}


.services-section i {
    color: #f20092;
}



.services-section .service-content i {
    color: #fff;
}

.services-section h2 {
    font-weight: 700;
    color: #fe9900;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.services-section .service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
}

.services-section .service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.6);
    border-radius: 60px 0px 60px 0;
}

.services-section .service-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.services-section .service-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #603813;
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.services-section .service-card h3 {
    margin-top: 50px;
    font-weight: bold;
}

.services-section .service-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.services-section .btn-read-more {
    background-color: #81cf01;
    color: white;
    border: none;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
}







.why-us .section-title {
    color: #544e52;
    font-size: 28px;
    font-weight: 700;
}

.why-us .section-title span {
    color: #fe9900;
}

.why-us .description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}


section.why-us {
    padding: 30px 0 0 0 !important;
}


.why-us .stat-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.why-us .stat-box:hover {
    transform: translateY(-5px);
}

.why-us .stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #fe9900;
}

.why-us .stat-label {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
}

.why-us .image-side img {
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}








@media (max-width: 767.98px) {

    .top-header {
        display: none;
    }


    img.header-logo {
        width: 136px;
        height: 60px;
    }


    s .destinations-section {
        padding: 20px 10px;
    }


    .destinations-section h2 {
        gap: 6px;
        font-size: 20px;
        flex-direction: column;
    }

    .destinations-section .col-lg-4.col-md-6 {
        padding: 0;
    }


    .services-section {
        padding: 40px 10px 0 !important;
    }
    .services-section h2 {
        margin-bottom: 20px;
    }

    .destinations-section .card-title {
        font-size: 19px;
    }
}


.popular-rajasthan .product-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

.popular-rajasthan .product-card {
    flex: 0 0 auto;
    width: 250px;
    margin-right: 20px;
    scroll-snap-align: start;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

.popular-rajasthan .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popular-rajasthan .product-card h3 {
    margin-top: 10px;
    font-size: 20px;
}

.popular-rajasthan .product-card p {
    margin-top: 5px;
    font-size: 14px;
    color: #999;
}

.popular-rajasthan .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.popular-rajasthan .slider-button.left {
    left: 20px;
}

.popular-rajasthan .slider-button.right {
    right: 20px;
}

.popular-rajasthan .package-title {
    font-size: 28px;
    font-weight: 700;
    color: #544e52;
}

.popular-rajasthan .highlight {
    color: orange;
}







.trans .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0px 50px 0px;
}

.trans .text-section {
    max-width: 60%;
}

.trans .text-section h4 {
    color: #fe9900;
    margin-bottom: 0;
}

.trans .text-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 5px 0;
    color: #544e52;
}

.trans .text-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.trans .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #fe9900;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.trans .img-section img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}







.section-flight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8% 50px 8%;
}

.section-flight .content1 {
    flex: 1;
    max-width: 50%;
}

.section-flight .content1 h4 {
    color: #fe9900;
    margin: 0;
    font-size: 22px;
}

.section-flight .content1 h1 {
    font-size: 48px;
    font-weight: 800;
    color: #544e52;
    margin: 5px 0;
}

.section-flight .content1 p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.section-flight .content1 a {
    background-color: #fe9900;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}


.section-flight .image {
    flex: 1;
    text-align: center;
}

.section-flight .image img {
    max-width: 90%;
    height: auto;
    border-radius: 60px 0px 60px 0px;
}

@media (max-width: 768px) {
    .section-flight {
        flex-direction: column;
        text-align: center;
    }

    .section-flight .content1,
    .section-flight .image {
        max-width: 100%;
    }
}








.travel-section {
    background: linear-gradient(45deg, #000000ad, #00000073), url(../img/travel-section.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
    text-align: center;
    color: white;
}


.travel-section .section-title {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.travel-section .main-heading {
    font-size: 40px;
    font-weight: bold;
    color: #f3af3f;
}

.travel-section .contact-info {
    font-size: 20px;
    margin-top: 10px;
}

.travel-section .phone-number {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.travel-section .discount-text {
    margin-top: 5px;
    font-size: 18px;
}

.travel-section .button-group {
    margin-top: 20px;
}

.travel-section .btn {
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.travel-section .btn-primary {
    background-color: #fe9900;
    color: white;
    border: none;
}

.travel-section .btn-secondary {
    background-color: #f20092;
    color: #fff;
    margin-left: 10px;
    border: none;
}



@media (max-width: 767.98px) {


    .travel-section .section-title {
        font-size: 20px;
    }

    .travel-section .main-heading {
        font-size: 27px;
    }

}






.travel-guide {
    padding: 50px 0 50px 0px;
    text-align: center;
}


.travel-guide span {
    color: #544e52;
}

.travel-guide .section-title {
    font-size: 29px;
    font-weight: bold;
    color: #fe9900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.travel-guide .guide-icon {
    font-size: 36px;
    color: #f7943d;
}

.travel-guide .guide-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: auto;
}

.travel-guide .guide-card {
    background-color: white;
    border-radius: 40px 0px 40px 0;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.travel-guide .guide-card:hover {
    transform: translateY(-5px);
}

.travel-guide .guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.travel-guide .guide-content {
    padding: 15px;
}

.travel-guide .guide-content h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.travel-guide .guide-content p {
    font-size: 16px;
    color: #666;
}

.travel-guide .read-more {
    display: inline-block;
    color: #e13133;
    font-weight: bold;
    text-decoration: none;
}

.travel-guide .read-more:hover {
    text-decoration: underline;
}









.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 1px 0px;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

.footer-section {
    text-align: left;
}

.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fc9005;
    border-bottom: 2px solid;
    width: fit-content;
}


.footer ul {
    font-size: 16px;
    color: #ccc;
}


.footer p {
    font-size: 16px;
    color: #f8f9fa;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 6px 0;
}

.footer ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}



.footer-bottom {
    margin-top: 25px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}



.footer .contact-info p {
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
}






@media (max-width: 767.98px) {

    .travel-section .button-group {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }


    .travel-section .btn-secondary {
        margin-left: 0px;
    }


    .travel-guide .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }


    .travel-guide {
        padding: 10px 10px 50px 10px;
    }


    .footer {
        padding: 50px 10px 1px 10px;
    }

}






.bread {
    background: linear-gradient(206deg, #00000059, #00000075), url(../img/home-bg1.jpg) no-repeat center center / cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb-container {
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
}

.bread-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item a {
    text-decoration: none;
    color: #fe9900;
    transition: color 0.3s;
    font-weight: bold;
    font-size: 18px;
}


.breadcrumb-item.active {
    font-weight: bold;
    color: #495057;
}





.about-ert {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-ert .about-title {
    font-size: 32px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.about-ert .about-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-ert .about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 100px 0px 100px 0;
}


.about-ert strong {
    color: #f20092;
}


.found-ert {
    background-color: #f8f9fa;
    padding: 20px 0px !important;
}

.found-ert-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.found-ert-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.found-ert-img {
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    border-radius: 0px 120px 0px 120px !important;
}

.found-ert-img:hover {
    transform: scale(1.05);
}



.mission-vision {
    background-color: #f8f9fa;
    padding: 20px 0 40px 0 !important;
}

.mission-vision .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mission-vision .section-title i {
    margin-right: 10px;
}

.mission-vision .section-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.mission-vision .mission-card,
.mission-vision .vision-card {
    background: white;
    border-left: 5px solid #f20092;
    transition: transform 0.3s ease-in-out;
}

.mission-vision .mission-card:hover,
.mission-vision .vision-card:hover {
    transform: translateY(-5px);
}




@media (max-width: 767.98px) {

    .bread-title {
        font-size: 30px;
    }

    .bread {
        height: 200px;
        padding: 0px 5px;
    }

    .about-ert .about-title {
        font-size: 25px;
    }


    .about-ert .about-text {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .about-ert {
        padding: 40px 0 20px 0;
    }


    .found-ert-title {
        font-size: 25px;
        margin-bottom: 26px !important;
    }

    .found-ert-img {
        margin-bottom: 20px;
    }

    .found-ert-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .mission-vision {
        padding: 0px 0 20px 0 !important;
    }

    .mission-card,
    .vision-card {
        padding: 12px !important;
        margin-bottom: 20px;
    }

    .section-text {
        font-size: 15px;
        line-height: 1.6;
    }

}


a.bread-a {
    color: #f20092;
}




.book-taxi .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.book-taxi .section-title i {
    margin-right: 10px;
}

.book-taxi .section-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.book-taxi .taxi-content .btn {
    margin-top: 15px;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 5px;
    background: #81cf01;
    border: none;
}

.book-taxi .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 80px 0px 80px 0px !important;
}






.booking-form .container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: rgb(84 78 82);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    text-align: center;
    padding: 30px 0;
    font-size: 36px;
    color: #fe9900;
    font-weight: bold;
}


.booking-form form {
    display: flex;
    flex-direction: column;
}

.booking-form .form-control-1 {
    display: flex;
    flex-direction: column;
}

.booking-form .h-blue {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.booking-form .inputbox,
.booking-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.booking-form .inputbox:focus,
.booking-form select:focus {
    border-color: #0056b3;
}

.booking-form .radio-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.booking-form .radio-btn label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.booking-form .radio-btn input {
    margin-right: 5px;
}

.booking-form .btn-primary {
    background: #e02c33 !important;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
    margin-top: 10px;
}


.booking-form .bt button {
    padding: 8px 40px;
    border: none;
    background: #81cf01;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
}


@media (max-width: 768px) {
    .booking-form .container {
        width: 90%;
    }

    .booking-form .row {
        display: flex;
        flex-direction: column;
    }

    .booking-form .col-md-4,
    .booking-form .col-md-6,
    .booking-form .col-md-2 {
        width: 100%;
    }

    .booking-form .btn.radio-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .booking-form h2 {
        font-size: 20px;
    }
}




@media (max-width: 767.98px) {


    .book-taxi .section-title {
        font-size: 25px;
    }

    .book-taxi .section-text {
        font-size: 15px;
        line-height: 1.6;
    }


    .book-taxi .taxi-content .btn {
        margin-top: 0px;
        margin-bottom: 20px;
    }


    .booking-form .container.rounded.shadow-sm {
        padding: 15px !important;
    }

    .booking-form .col-md-4.col-12.mb-4 {
        margin-bottom: 13px !important;
    }
}






.wedding-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1300px;
    margin: auto;
    background: white;
}

.wedding-content {
    width: 50%;
    padding-right: 30px;
}

.wedding-content h2 {
    color: #fe9900;
    font-size: 40px;
    font-weight: bold;
}

.wedding-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.wedding-image {
    width: 50%;
}

.wedding-image img {
    width: 100%;
    border-radius: 70px 0 70px 0;
}

@media (max-width: 768px) {

    .wedding-content,
    .wedding-image {
        width: 100%;
        padding: 0;
    }

    .wedding-content {
        margin-bottom: 20px;
    }
}





@media (max-width: 767.98px) {

    .wedding-section {
        flex-direction: column;
        padding: 10px;
    }

    .wedding-content h2 {
        font-size: 30px;
    }

    .wedding-content p {
        font-size: 15px;
    }

}







.visa-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1300px;
    margin: auto;
    background: white;
}

.visa-content {
    width: 50%;
    padding-right: 30px;
}

.visa-content h2 {
    color: #fe9900;
    font-size: 40px;
    font-weight: bold;
}

.visa-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.visa-image {
    width: 50%;
}

.visa-image img {
    width: 100%;
    border-radius: 80px 0px 80px 0px;
}

@media (max-width: 768px) {
    .visa-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .visa-content,
    .visa-image {
        width: 100%;
        padding: 0;
    }

    .visa-content {
        margin-bottom: 20px;
    }
}



.visa-types {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.visa-types h2 {
    font-size: 40px;
    color: #fe9900;
    margin-bottom: 25px;
    font-weight: bold;
}

.visa-types .visa-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.visa-types .visa-card {
    background: white;
    padding: 20px;
    border-radius: 0 40px 0 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    height: 100%;
}

.visa-types .visa-card:hover {
    transform: translateY(-5px);
}

.visa-types .visa-card i {
    font-size: 40px;
    color: #26b3fb;
    margin-bottom: 6px;
}

.visa-types .visa-card h3 {
    font-size: 22px;
    color: #00056b;
    margin-bottom: 5px;
    font-weight: bold;
}


.visa-types .visa-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0px;
}










.tour-packages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f9f9f9;
}



.tour-packages .tour-content h2 {
    font-size: 40px;
    color: #fe9900;
    margin-bottom: 15px;
    font-weight: bold;
}

.tour-packages .tour-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-packages .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #81cf01;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}



.tour-packages .tour-image img {
    width: 100%;
    border-radius: 0px 70px 0px 70px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.tour-packages .col-lg-7.col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}





.tour-categories {
    text-align: center;
    padding: 10px 0 50px 0px;
}

.tour-categories h2 {
    font-size: 28px;
    color: #fe9900;
    margin-bottom: 30px;
    font-weight: bold;
}

.tour-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.tour-categories .category-card {
    background: #fff;
    border-radius: 40px 0 40px 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.tour-categories .category-card:hover {
    transform: scale(1.05);
}

.tour-categories .category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-categories .category-card h3 {
    font-size: 20px;
    color: #544e52;
    margin: 10px 0;
    font-weight: bold;
}

.tour-categories .category-card p {
    font-size: 14px;
    color: #555;
    padding: 0 15px 15px;
}







@media (max-width: 767.98px) {

    .tour-packages {
        padding: 30px 0px !important;
    }

    .tour-packages .tour-content h2 {
        font-size: 28px;
    }


    .tour-packages .tour-content p {
        font-size: 15px;
        margin-bottom: 8px;
    }


    .tour-packages .btn {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .tour-categories {
        padding: 30px 0px !important
    }

    .tour-categories h2 {
        font-size: 29px;
    }


    .visa-section {
        text-align: left;
        padding: 30px 10px;
    }

    .visa-content h2 {
        font-size: 30px;
    }


    .visa-content p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .visa-types {
        text-align: start;
        padding: 30px 0px !important;
    }

    .visa-types h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }


}






.flight-booking-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}



.flight-booking-section h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
}



.flight-booking-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}



.flight-booking-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 70px 0 70px 0 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}






.flight-booking-types {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.flight-booking-types h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.flight-booking-types p {
    font-size: 16px;
    color: #666;
}

.flight-booking-types .flight-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 50px 0 50px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.flight-booking-types .flight-box i {
    font-size: 40px;
    color: #26b3fb;
    margin-bottom: 10px;
}

.flight-booking-types .flight-box h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.flight-booking-types .flight-box p {
    font-size: 14px;
    color: #555;
}




@media (max-width: 767.98px) {

    .flight-booking-section h2 {
        font-size: 27px;
    }


    .flight-booking-section p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .flight-booking-section {
        padding: 40px 0;
    }


    .flight-booking-types h2 {
        font-size: 27px;
        text-align: start !important;
    }


    .flight-booking-types .flight-box h4 {
        font-size: 18px;
    }


    p.text-center.graph {
        text-align: start !important;
    }


    .breadcrumb {
        padding: 10px 3px;
    }

}











.jaipur-section {
    padding: 60px 0 30px 0px;
}

.content-box {
    padding: 30px;
}

.jaipur-section h2 {
    color: #fe9900;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 20px;
}

.jaipur-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.jaipur-section .btn-primary {
    background-color: #d32f2f;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.jaipur-section .btn-primary:hover {
    background-color: #b71c1c;
}

.jaipur-section .image-box img {
    max-width: 100%;
    border-radius: 50px 0 50px 0 !important;
    transition: 0.3s ease-in-out;
}

.jaipur-section .image-box img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

    .jaipur-section .image-box {
        margin-top: 20px;
    }
}








.jaipur-attractions {
    padding: 40px 0;
}

.jaipur-attractions .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.jaipur-attractions .attraction-box {
    text-align: center;
    padding: 20px;
}

.jaipur-attractions .attraction-box h3 {
    font-size: 20px;
    margin-top: 10px;
    color: #0c1072;
    font-weight: bold;
}

.jaipur-attractions .attraction-box p {
    font-size: 14px;
    color: #666;
}

.jaipur-attractions .attraction-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.jaipur-attractions .attraction-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

    .jaipur-attractions .attraction-box img {
        height: 180px;
    }
}







.jaipur-tour-packages {
    padding: 20px 0 40px 0px;
}

.jaipur-tour-packages .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.jaipur-tour-packages .package-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 40px 0px 40px 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.jaipur-tour-packages .package-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.jaipur-tour-packages .package-box h3 {
    font-size: 20px;
    margin-top: 10px;
    color: #333;
}

.jaipur-tour-packages .package-box p {
    font-size: 14px;
    color: #666;
}

.jaipur-tour-packages .package-icon {
    font-size: 30px;
    color: #f11398;
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .jaipur-tour-packages .package-box {
        padding: 15px;
    }

    .jaipur-tour-packages .package-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}




@media (max-width: 767.98px) {


    .content-box {
        padding: 0px 10px;
    }


    .jaipur-section h2 {
        font-size: 24px;
    }

    .jaipur-section p {
        font-size: 15px;
        line-height: 1.6;
    }


    .jaipur-attractions {
        padding: 20px 0;
    }

    .jaipur-attractions .section-title {
        font-size: 26px;
    }

    .jaipur-attractions .attraction-box {
        padding: 0px;
    }


    .jaipur-tour-packages .section-title {
        font-size: 25px;
    }


}






.udaipur-section {
    padding: 60px 0;
}

.udaipur-section .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fea41b;
    margin-bottom: 20px;
}

.udaipur-section .section-description {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.udaipur-section .image-container {
    text-align: center;
}

.udaipur-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .udaipur-section .section-title {
        font-size: 28px;
    }
}



.popular-destinations-udaipur {
    padding: 60px 0;
}

.popular-destinations-udaipur .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.popular-destinations-udaipur .destination-card {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.popular-destinations-udaipur .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.popular-destinations-udaipur .destination-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #544e52;
    margin-bottom: 10px;
}

.popular-destinations-udaipur .destination-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}

.popular-destinations-udaipur .destination-card:hover {
    transform: scale(1.05);
}




@media (max-width: 767.98px) {

    .udaipur-section {
        padding: 40px 0;
    }

    .udaipur-section .section-title {
        font-size: 24px;
    }

    .udaipur-section .section-description {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-udaipur {
        padding: 0px 0 30px 0;
    }

    .popular-destinations-udaipur .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }


    .popular-destinations-udaipur .destination-card {
        padding: 15px;
        margin: 10px 0;
    }


}




.about-jaisalmer {
    padding: 60px 0;
}

.about-jaisalmer h2 {
    font-size: 37px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.about-jaisalmer p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-jaisalmer img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}






.popular-destinations-jaisalmer {
    padding: 20px 0 30px 0;
}

.popular-destinations-jaisalmer h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 10px;
}

.popular-destinations-jaisalmer p.text-center {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.popular-destinations-jaisalmer .destination-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.popular-destinations-jaisalmer .destination-card:hover {
    transform: translateY(-5px);
}

.popular-destinations-jaisalmer .destination-card img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.popular-destinations-jaisalmer .destination-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #544e52;
}

.popular-destinations-jaisalmer .destination-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}





.tour-packages-jaisalmer {
    padding: 20px 0 30px 0px;
}

.tour-packages-jaisalmer h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 10px;
}

.tour-packages-jaisalmer p.text-center {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.tour-packages-jaisalmer .package-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.tour-packages-jaisalmer .package-card:hover {
    transform: translateY(-5px);
}

.tour-packages-jaisalmer .package-card i {
    font-size: 40px;
    color: #f20092;
    margin-bottom: 15px;
}

.tour-packages-jaisalmer .package-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #544e52;
}

.tour-packages-jaisalmer .package-card p {
    font-size: 14px;
    color: #666;
}




@media (max-width: 767.98px) {

    .about-jaisalmer h2 {
        font-size: 23px;
    }

    .about-jaisalmer p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-jaisalmer {
        padding: 0px 0 30px 0;
    }

    .popular-destinations-jaisalmer h2 {
        font-size: 26px;
    }


    .popular-destinations-jaisalmer p.text-center {
        margin-bottom: 22px;
    }


    .popular-destinations-jaisalmer .destination-card {
        padding: 15px;
    }

    .tour-packages-jaisalmer {
        padding: 0px 0 30px 0px;
    }

    .tour-packages-jaisalmer h2 {
        font-size: 25px;
    }

    .tour-packages-jaisalmer p.text-center {
        font-size: 16px;
        margin-bottom: 22px;
    }

}







.jodhpur-section {
    padding: 60px 0;
}

.jodhpur-section h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.jodhpur-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.jodhpur-section .img-fluid {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}




.jodhpur-destinations {
    padding: 50px 0 30px 0;
}

.jodhpur-destinations h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.jodhpur-destinations p {
    font-size: 16px;
    color: #555;
}

.jodhpur-destinations .destination-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
}

.jodhpur-destinations .destination-card img {
    width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
}

.jodhpur-destinations .destination-card h3 {
    font-size: 20px;
    margin-top: 10px;
    color: #544e52;
    font-weight: bold;
}

.jodhpur-destinations .destination-card p {
    font-size: 14px;
    color: #666;
}




.jodhpur-tour-packages {
    padding: 30px 0;
    text-align: center;
}

.jodhpur-tour-packages h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.jodhpur-tour-packages p {
    font-size: 16px;
    color: #555;
}

.jodhpur-tour-packages .tour-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    margin: 15px auto;
    transition: 0.3s;
}

.jodhpur-tour-packages .tour-card:hover {
    transform: scale(1.05);
}

.jodhpur-tour-packages .tour-card i {
    font-size: 40px;
    color: #f20092;
    margin-bottom: 15px;
}

.jodhpur-tour-packages .tour-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.jodhpur-tour-packages .tour-card p {
    font-size: 14px;
    color: #666;
}




@media (max-width: 767.98px) {

    .jodhpur-section {
        padding: 32px 0;
    }


    .jodhpur-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .jodhpur-section p {
        font-size: 15px;
        line-height: 1.6;
    }

    .jodhpur-tour-packages {
        padding: 0px 0 30px 0px;
        text-align: center;
    }

}






.about-pushkar {
    padding: 60px 0;
}

.about-pushkar .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.about-pushkar .section-text {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.about-pushkar .content-box {
    padding: 20px;
}

.about-pushkar .image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.about-pushkar .image-box img:hover {
    transform: scale(1.05);
}



.popular-destinations-pushakar {
    padding: 0px 0 30px 0;
}

.popular-destinations-pushakar .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 26px;
}


.popular-destinations-pushakar .section-description {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}


.popular-destinations-pushakar .destination-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.popular-destinations-pushakar .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-destinations-pushakar .destination-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    color: #544e52;
}

.popular-destinations-pushakar .destination-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
}

.popular-destinations-pushakar .destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}





.tour-packages-pushakar {
    padding: 20px 0 30px 0;
}


.tour-packages-pushakar h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fe9900;
}


.tour-packages-pushakar .package-card {
    background: #fff;
    padding: 20px 3px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: 0.3s ease-in-out;
}

.tour-packages-pushakar .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.tour-packages-pushakar .package-icon {
    font-size: 40px;
    color: #f20092;
    margin-bottom: 10px;
}

.tour-packages-pushakar .package-title {
    font-size: 20px;
    font-weight: bold;
    color: #544e52;
}

.tour-packages-pushakar .package-text {
    font-size: 16px;
    color: #666;
}



@media (max-width: 767.98px) {

    .about-pushkar {
        padding: 30px 10px;
    }

    .about-pushkar .section-title {
        font-size: 26px;
    }


    .about-pushkar .content-box {
        padding: 0 10px;
    }


    .about-pushkar .section-text {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-pushakar .section-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .popular-destinations-pushakar .section-description {
        font-size: 15px;
        margin: 0 auto 25px;
    }

    .popular-destinations-pushakar .destination-card {
        padding: 15px;
    }


    .tour-packages-pushakar h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }


    .tour-packages-pushakar {
        padding: 0px 0 30px 0;
    }


}








.about-kota {
    padding: 50px 0;
}

.about-kota .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.about-kota p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.about-kota .img-fluid {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}







.popular-destinations-kota {
    padding: 22px 0 0 0;
}

.popular-destinations-kota .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.popular-destinations-kota .popular-destinations p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.popular-destinations-kota .destination-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
    padding: 15px;
}

.popular-destinations-kota .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-destinations-kota .destination-card h4 {
    font-size: 20px;
    color: #444;
    margin-top: 10px;
    font-weight: bold;
}

.popular-destinations-kota .destination-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}








.kota-tour-packages {
    padding: 50px 0;
}

.kota-tour-packages .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.kota-tour-packages p.text-center {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.kota-tour-packages .tour-card {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.kota-tour-packages .tour-card:hover {
    transform: translateY(-5px);
}

.kota-tour-packages .tour-icon {
    font-size: 40px;
    color: #f20092;
    margin-bottom: 10px;
}

.kota-tour-packages .tour-card h4 {
    font-size: 20px;
    color: #444;
    font-weight: bold;
}

.kota-tour-packages .tour-card p {
    font-size: 14px;
    color: #666;
}



@media (max-width: 767.98px) {


    .about-kota {
        padding: 30px 0;
    }

    .about-kota .section-title {
        font-size: 30px;
    }


    .about-kota p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-kota .section-title {
        font-size: 25px;
        margin-bottom: 15px;
    }


    .popular-destinations-kota .destination-card {
        margin-bottom: 25px;
    }

    .kota-tour-packages .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }


    .kota-tour-packages {
        padding: 30px 0 20px 0;
    }


}



.about-ajmer {
    padding: 50px 0;
}

.about-ajmer .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.about-ajmer p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-ajmer img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}






.popular-ajmer {
    padding: 0px 0;
}

.popular-ajmer .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.popular-ajmer p.text-center {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.popular-ajmer .destination-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.popular-ajmer .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-ajmer .destination-card h4 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.popular-ajmer .destination-card p {
    font-size: 14px;
    color: #666;
}





.ajmer-tour-packages {
    padding: 50px 0;
}

.ajmer-tour-packages .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.ajmer-tour-packages p.text-center {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.ajmer-tour-packages .tour-package {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.ajmer-tour-packages .tour-package:hover {
    transform: translateY(-5px);
}

.ajmer-tour-packages .tour-package i {
    font-size: 40px;
    color: #e3028a;
    margin-bottom: 10px;
}

.ajmer-tour-packages .tour-package h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.ajmer-tour-packages .tour-package p {
    font-size: 14px;
    color: #666;
}





@media (max-width: 767.98px) {

    .about-ajmer {
        padding: 30px 0;
    }

    .about-ajmer .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-ajmer p {
        font-size: 15px;
        line-height: 1.6;
    }

    .popular-ajmer .section-title {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .ajmer-tour-packages .section-title {
        font-size: 23px;
        margin-bottom: 15px;
    }


    .ajmer-tour-packages {
        padding: 40px 0 20px 0;
    }

}







.about-tonk {
    padding: 50px 0;
}

.about-tonk .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.about-tonk p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-tonk img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}






.popular-tonk {
    padding: 0px 0;
}

.popular-tonk .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.popular-tonk .popular-tonk p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.popular-tonk .destination-card {
    text-align: center;
    background: #fff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.popular-tonk .destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-tonk .destination-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #222;
}

.popular-tonk .destination-card p {
    font-size: 14px;
    color: #666;
}





.tour-packages-tonk {
    padding: 50px 0;
}

.tour-packages-tonk .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.tour-packages-tonk .tour-packages p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.tour-packages-tonk .package-card {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.tour-packages-tonk .package-card:hover {
    transform: translateY(-5px);
}

.package-card i {
    font-size: 30px;
    color: #e20289;
    margin-bottom: 10px;
}

.tour-packages-tonk .package-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.tour-packages-tonk .package-card p {
    font-size: 14px;
    color: #666;
}





@media (max-width: 767.98px) {


    .about-tonk {
        padding: 35px 0;
    }


    .popular-tonk .section-title {
        font-size: 27px;
        margin-bottom: 15px;
    }


    .about-tonk .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-tonk p {
        font-size: 15px;
        line-height: 1.6;
    }


    .tour-packages-tonk .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .tour-packages-tonk {
        padding: 40px 0 20px 0;
    }


}






.about-section-chhittor {
    padding: 50px 0;
}

.about-section-chhittor .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.about-section-chhittor p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-section-chhittor img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}






.popular-destinations-chhitor {
    padding: 20px 0;
}

.popular-destinations-chhitor .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.popular-destinations-chhitor p.text-center {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.popular-destinations-chhitor .destination-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.popular-destinations-chhitor .destination-card img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.popular-destinations-chhitor .destination-card h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #544e52;
    font-weight: bold;
}

.popular-destinations-chhitor .destination-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}





.tour-packages-chhitor {
    padding: 30px 0;
}


.tour-packages-chhitor .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.tour-packages-chhitor .tour-packages p {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.tour-packages-chhitor .package-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.tour-packages-chhitor .package-card:hover {
    transform: translateY(-5px);
}

.tour-packages-chhitor .package-card i {
    font-size: 40px;
    color: #f20092;
    margin-bottom: 15px;
}

.tour-packages-chhitor .package-card h3 {
    font-size: 17px;
    color: #544e52;
    margin-bottom: 10px;
    font-weight: bold;
}

.tour-packages-chhitor .package-card p {
    font-size: 14px;
    color: #666;
}




@media (max-width: 767.98px) {

    .about-section-chhittor {
        padding: 35px 0;
    }

    .about-section-chhittor .section-title {
        font-size: 30px;
        margin-bottom: 14px;
    }


    .about-section-chhittor p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-chhitor {
        padding: 8px 0;
    }


    .popular-destinations-chhitor .section-title {
        font-size: 25px;
        margin-bottom: 20px;
    }


    .popular-destinations-chhitor .destination-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .tour-packages-chhitor {
        padding: 20px 0;
    }

    .tour-packages-chhitor .section-title {
        font-size: 23px;
        margin-bottom: 20px;
    }

}







.about-uttarakhand {
    padding: 50px 0;
}

.about-uttarakhand .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.about-uttarakhand p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-uttarakhand .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}




.popular-destinations-uttarakhand {
    padding: 15px 0;
}

.popular-destinations-uttarakhand .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 30px;
}

.popular-destinations-uttarakhand .destination-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.popular-destinations-uttarakhand .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-destinations-uttarakhand .destination-card h4 {
    font-size: 20px;
    color: #544e52;
    margin-top: 10px;
    font-weight: bold;
}

.popular-destinations-uttarakhand .destination-card p {
    font-size: 16px;
    color: #555;
}






.tour-packages-uttarakhand {
    padding: 35px 0;
}

.tour-packages-uttarakhand .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 30px;
}

.tour-packages-uttarakhand .package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-packages-uttarakhand .package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.tour-packages-uttarakhand .package-card h4 {
    font-size: 18px;
    color: #544e52;
    margin-top: 10px;
    font-weight: bold;
}

.tour-packages-uttarakhand .package-card p {
    font-size: 14px;
    color: #555;
}




@media (max-width: 767.98px) {

    .about-uttarakhand {
        padding: 35px 0;
    }


    .about-uttarakhand .section-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .about-uttarakhand p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-uttarakhand .section-title {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .tour-packages-uttarakhand {
        padding: 15px 0 25px 0;
    }


    .tour-packages-uttarakhand .section-title {
        font-size: 23px;
        margin-bottom: 25px;
    }

    .popular-destinations-uttarakhand .destination-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }

}



.about-section-gujarat {
    padding: 50px 0;
}

.about-section-gujarat h2 {
    font-size: 40px;
    color: #fe9900;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-section-gujarat p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-section-gujarat .img-fluid {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}







.popular-destinations-gujarat {
    padding: 20px 0;
}

.popular-destinations-gujarat .section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fe9900;
}

.popular-destinations-gujarat .description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.popular-destinations-gujarat .destination-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.popular-destinations-gujarat .destination-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.popular-destinations-gujarat .destination-box h4 {
    font-size: 20px;
    margin-top: 15px;
    color: #544e52;
    font-weight: bold;
}

.popular-destinations-gujarat .destination-box p {
    font-size: 14px;
    color: #555;
}

.popular-destinations-gujarat .destination-box:hover {
    transform: scale(1.05);
}









.tour-packages-gujarat {
    padding: 15px 0 30px 0;
}

.tour-packages-gujarat .section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fe9900;
}

.tour-packages-gujarat .description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.tour-packages-gujarat .package-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.tour-packages-gujarat .package-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.tour-packages-gujarat .package-box h4 {
    font-size: 20px;
    margin-top: 15px;
    color: #544e52;
    font-weight: bold;
}

.tour-packages-gujarat .package-box p {
    font-size: 14px;
    color: #555;
}

.tour-packages-gujarat .package-box:hover {
    transform: scale(1.05);
}





@media (max-width: 767.98px) {

    .about-section-gujarat {
        padding: 30px 0;
    }

    .about-section-gujarat h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-section-gujarat p {
        font-size: 15px;
        line-height: 1.6;
    }

    .popular-destinations-gujarat .section-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .popular-destinations-gujarat .description {
        font-size: 16px;
        margin-bottom: 5px;
    }


    .popular-destinations-gujarat .destination-box {
        padding: 10px;
    }


    .tour-packages-gujarat {
        padding: 0px 0 15px 0;
    }


    .tour-packages-gujarat .section-title {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .tour-packages-gujarat .description {
        font-size: 16px;
        margin-bottom: 10px;
    }


    .tour-packages-gujarat .package-box {
        padding: 10px;
    }


}




.about-section-uttar {
    padding: 50px 0;
}

.about-section-uttar h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
}

.about-section-uttar p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}


.about-section-uttar .about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}




.popular-destinations-uttar {
    padding: 0px 0;
}

.popular-destinations-uttar .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.popular-destinations-uttar .destination-card {
    background: #fff;
    border-radius: 40px 0 40px 0px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.popular-destinations-uttar .destination-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.popular-destinations-uttar .destination-card h3 {
    font-size: 20px;
    color: #544e52;
    margin-top: 15px;
    font-weight: bold;
}

.popular-destinations-uttar .destination-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0px;
}

.popular-destinations-uttar .destination-card:hover {
    transform: scale(1.05);
}



.tour-packages-uttar {
    padding: 44px 0 30px 0;
}

.tour-packages-uttar .section-title {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.tour-packages-uttar .package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.tour-packages-uttar .package-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.tour-packages-uttar .package-card h3 {
    font-size: 20px;
    color: #544e52;
    margin-top: 15px;
    font-weight: bold;
}

.tour-packages-uttar .package-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0px;
}

.tour-packages-uttar .package-card:hover {
    transform: scale(1.05);
}




@media (max-width: 767.98px) {

    .about-section-uttar {
        padding: 30px 0;
    }

    .about-section-uttar h2 {
        font-size: 25px;
    }


    .about-section-uttar p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-uttar .section-title {
        font-size: 25px;
        margin-bottom: 20px;
    }


    .popular-destinations-uttar {
        padding: 10px 0;
    }


    .popular-destinations-uttar .destination-card {
        padding: 15px;
    }

    .tour-packages-uttar .section-title {
        font-size: 25px;
        margin-bottom: 20px;
    }


    .tour-packages-uttar {
        padding: 26px 0 20px 0;
    }

}




.about-mp {
    padding: 50px 0;
}

.about-mp h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.about-mp p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-mp img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}





.popular-destinations-madhya {
    padding: 20px 0;
}

.popular-destinations-madhya .section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fe9900;
}

.popular-destinations-madhya .destination-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.popular-destinations-madhya .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-destinations-madhya .destination-card h3 {
    font-size: 22px;
    margin-top: 15px;
    color: #544e52;
    font-weight: bold;
}

.popular-destinations-madhya .destination-card p {
    font-size: 16px;
    color: #666;
}

.popular-destinations-madhya .destination-card:hover {
    transform: translateY(-5px);
}






.tour-packages-madhya {
    padding: 30px 0;
}

.tour-packages-madhya .section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fe9900;
}

.tour-packages-madhya .package-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.tour-packages-madhya .package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.tour-packages-madhya .package-card h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #544e52;
    font-weight: bold;
}

.tour-packages-madhya .package-card p {
    font-size: 16px;
    color: #666;
}

.tour-packages-madhya .package-card:hover {
    transform: translateY(-5px);
}



@media (max-width: 767.98px) {

    .about-mp h2 {
        font-size: 26px;
    }


    .about-mp p {
        font-size: 15px;
    }


    .about-mp {
        padding: 30px 0;
    }


    .popular-destinations-madhya .section-title {
        font-size: 25px;
    }


    .tour-packages-madhya {
        padding: 15px 0;
    }


    .tour-packages-madhya .section-title {
        font-size: 25px;
    }

}




.about-goa {
    padding: 60px 0;
}

.about-goa h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.about-goa p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.about-goa img {
    max-width: 100%;
    height: auto;
    border-radius: 70px 0 70px 0 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




.popular-destinations-goa {
    padding: 0px 0;
}

.popular-destinations-goa h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 30px;
}

.popular-destinations-goa .destination-card {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.popular-destinations-goa .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-destinations-goa .destination-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #544e52;
}

.popular-destinations-goa .destination-card p {
    font-size: 14px;
    color: #555;
}




.goa-tour-packages {
    padding: 40px 0;
}

.goa-tour-packages h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 40px;
}

.goa-tour-packages .package-card {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.goa-tour-packages .package-card:hover {
    transform: translateY(-5px);
}

.goa-tour-packages .package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.goa-tour-packages .package-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #544e52;
}

.goa-tour-packages .package-card p {
    font-size: 14px;
    color: #555;
}





.mumbai-section {
    padding: 50px 0;
}

.mumbai-section h2 {
    color: #fe9900;
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: bold;
}

.mumbai-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.mumbai-section .mumbai-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}




.mumbai-destinations {
    padding: 15px 0;
    text-align: center;
}

.mumbai-destinations .section-title {
    font-size: 40px;
    color: #fe9900;
    margin-bottom: 40px;
    font-weight: bold;
}

.mumbai-destinations .destination-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.mumbai-destinations .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.mumbai-destinations .destination-card h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #544e52;
    font-weight: bold;
}

.mumbai-destinations .destination-card p {
    font-size: 14px;
    color: #666;
}



.mumbai-tour-packages {
    padding: 50px 0;
    text-align: center;
}

.mumbai-tour-packages .section-title {
    font-size: 40px;
    color: #fe9900;
    margin-bottom: 40px;
    font-weight: bold;
}

.mumbai-tour-packages .tour-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.mumbai-tour-packages .tour-card:hover {
    transform: scale(1.05);
}

.mumbai-tour-packages .tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.mumbai-tour-packages .tour-card h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #544e52;
    font-weight: bold;
}

.mumbai-tour-packages .tour-card p {
    font-size: 14px;
    color: #666;
}





.about-bihar {
    padding: 50px 0;
}

.about-bihar h2 {
    font-size: 40px;
    color: #fe9900;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-bihar p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.about-bihar img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}





.popular-destinations-bihar {
    padding: 5px 0;
}


.popular-destinations-bihar h2 {
    font-size: 40px;
    color: #fe9900;
    font-weight: bold;
    margin-bottom: 20px;
}

.popular-destinations-bihar .destination-card {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.popular-destinations-bihar .destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-destinations-bihar .destination-card h4 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.popular-destinations-bihar .destination-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}

.popular-destinations-bihar .destination-card:hover {
    transform: scale(1.05);
}





.bihar-tour-packages {
    padding: 50px 0;
}

.bihar-tour-packages h2 {
    font-size: 40px;
    color: #fe9900;
    font-weight: bold;
    margin-bottom: 20px;
}

.bihar-tour-packages .package-card {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.bihar-tour-packages .package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.bihar-tour-packages .package-card h4 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
    color: #544e52;
}

.bihar-tour-packages .package-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}

.bihar-tour-packages .package-card:hover {
    transform: scale(1.05);
}







.about-tamilnadu {
    padding: 50px 0;
}

.about-tamilnadu h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.about-tamilnadu p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.about-tamilnadu img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}





.popular-destinations-tamil {
    padding: 20px 0;
}

.popular-destinations-tamil h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #fe9900;
}

.popular-destinations-tamil .destination-card {
    text-align: center;
    background: #fff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.popular-destinations-tamil .destination-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.popular-destinations-tamil .destination-card h4 {
    font-size: 20px;
    color: #544e52;
    margin-top: 15px;
    font-weight: bold;
}

.popular-destinations-tamil .destination-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}




.tour-packages-tamil {
    padding: 30px 0;
}

.tour-packages-tamil h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #fe9900;
}

.tour-packages-tamil .package-card {
    text-align: center;
    background: #fff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-packages-tamil .package-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.tour-packages-tamil .package-card h4 {
    font-size: 20px;
    color: #544e52;
    margin-top: 15px;
    font-weight: bold;
}

.tour-packages-tamil .package-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}






.about-karnataka {
    padding: 50px 0;
}

.about-karnataka h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
}

.about-karnataka p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-karnataka img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}






.popular-destinations-karnataka {
    padding: 0px 0;
}

.popular-destinations-karnataka .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 30px;
}

.popular-destinations-karnataka .destination-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.popular-destinations-karnataka .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-destinations-karnataka .destination-card h3 {
    font-size: 20px;
    color: #544e52;
    margin-top: 10px;
    font-weight: bold;
}

.popular-destinations-karnataka .destination-card p {
    font-size: 14px;
    color: #555;
}





.tour-packages-karnataka {
    padding: 50px 0;
}

.tour-packages-karnataka .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 30px;
}

.tour-packages-karnataka .package-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.tour-packages-karnataka .package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.tour-packages-karnataka .package-card h3 {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

.tour-packages-karnataka .package-card p {
    font-size: 14px;
    color: #555;
}









.about-kerala {
    padding: 50px 0;
}

.about-kerala h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 15px;
}

.about-kerala p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-kerala img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}




.popular-destinations-kerala {
    padding: 15px 0;
}

.popular-destinations-kerala h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #fe9900;
}

.popular-destinations-kerala .destination-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.popular-destinations-kerala .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-destinations-kerala .destination-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #544e52;
}

.popular-destinations-kerala .destination-card p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}





.kerala-tour-packages {
    padding: 35px 0;
}

.kerala-tour-packages h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #fe9900;
}

.kerala-tour-packages .package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.kerala-tour-packages .package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.kerala-tour-packages .package-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #544e52;
}

.kerala-tour-packages .package-card p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

/* Best Time to Visit */
.kerala-tour-packages .best-time {
    text-align: center;
    margin-top: 40px;
}

.kerala-tour-packages .best-time img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 15px;
}






.about-delhi {
    padding: 50px 0;
}

.about-delhi h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
}

.about-delhi p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.about-delhi img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}





.popular-destinations-delhi {
    padding: 0px 0;
}

.popular-destinations-delhi h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 30px;
    text-align: center;
}

.popular-destinations-delhi .destination-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    margin-bottom: 20px;
}

.popular-destinations-delhi .destination-card img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.popular-destinations-delhi .destination-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    color: #544e52;
}

.popular-destinations-delhi .destination-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.popular-destinations-delhi .destination-card:hover {
    transform: scale(1.05);
}








.delhi-tour-packages {
    padding: 50px 0;
}

.delhi-tour-packages h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}

.delhi-tour-packages .package-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.delhi-tour-packages .package-card img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.delhi-tour-packages .package-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    color: #544e52;
}

.delhi-tour-packages .package-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.delhi-tour-packages .package-card:hover {
    transform: scale(1.05);
}







@media (max-width: 767.98px) {


    .about-goa {
        padding: 30px 0;
    }

    .about-goa h2 {
        font-size: 30px;
    }


    .about-goa p {
        font-size: 15px;
        line-height: 1.6;
    }

    .popular-destinations-goa h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }


    .popular-destinations-goa .destination-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .goa-tour-packages h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }


    .goa-tour-packages {
        padding: 30px 0;
    }


    .goa-tour-packages .package-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .goa-tour-packages .package-card h4 {
        font-size: 17px;
    }


    .mumbai-section {
        padding: 30px 0;
    }


    .mumbai-section h2 {
        font-size: 30px;
    }


    .mumbai-section p {
        font-size: 15px;
        line-height: 1.6;
    }


    .mumbai-destinations .section-title {
        font-size: 25px;
        margin-bottom: 30px;
    }


    .mumbai-destinations .destination-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .mumbai-tour-packages {
        padding: 14px 0 30px 0;
    }


    .mumbai-tour-packages .section-title {
        font-size: 25px;
        margin-bottom: 30px;
    }


    .mumbai-tour-packages .tour-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .about-bihar {
        padding: 30px 0;
    }

    .about-bihar h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-bihar p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-bihar h2 {
        font-size: 25px;
        margin-bottom: 6px;
    }


    .bihar-tour-packages {
        padding: 35px 0;
    }


    .bihar-tour-packages h2 {
        font-size: 30px;
        margin-bottom: 6px;
    }


    .about-tamilnadu {
        padding: 30px 0;
    }


    .about-tamilnadu h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-tamilnadu p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-tamil h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .tour-packages-tamil {
        padding: 5px 0 30px 0px;
    }


    .tour-packages-tamil h2 {
        font-size: 23px;
        margin-bottom: 10px;
    }


    .about-karnataka {
        padding: 30px 0;
    }

    .about-karnataka h2 {
        font-size: 30px;
    }

    .about-karnataka p {
        font-size: 15px;
        line-height: 1.6;
    }


    .popular-destinations-karnataka .section-title {
        font-size: 25px;
        margin-bottom: 21px;
    }


    .popular-destinations-karnataka .destination-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .tour-packages-karnataka {
        padding: 24px 0;
    }

    .tour-packages-karnataka .section-title {
        font-size: 24px;
    }


    .about-kerala {
        padding: 30px 0;
    }


    .about-kerala h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-kerala p {
        font-size: 16px;
        line-height: 1.6;
    }


    .popular-destinations-kerala h2 {
        font-size: 26px;
    }


    .popular-destinations-kerala .destination-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .kerala-tour-packages {
        padding: 10px 0;
    }


    .kerala-tour-packages h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }


    .kerala-tour-packages .package-card h3 {
        font-size: 18px;
    }


    .kerala-tour-packages .package-card p {
        font-size: 14px;
        margin-bottom: 0px;
    }


    .about-delhi {
        padding: 30px 0;
    }

    .about-delhi p {
        font-size: 15px;
        line-height: 1.6;
    }


    .about-delhi h2 {
        font-size: 30px;
    }


    .popular-destinations-delhi h2 {
        font-size: 25px;
    }


    .delhi-tour-packages {
        padding: 25px 0 30px 0;
    }


    .delhi-tour-packages h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .delhi-tour-packages .package-card h3 {
        font-size: 17px;
    }

}





.contact-section {
    padding: 50px 0;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fea41b;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}


.contact-info1 {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #544e52;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info1 i {
    color: #f4179c;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info1 a {
    color: #555;
    text-decoration: none;
}

.contact-info1 a:hover {
    text-decoration: underline;
}


.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    background-color: #81cf01;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 768px) {


    .contact-info1,
    .contact-form {
        margin-bottom: 20px;
    }
}


.offset-1 {
    margin-left: 13.333333%;
}




@media (max-width: 767.98px) {
    .offset-1 {
        margin-left: 0 !important;
    }

    .contact-info1 p {
        margin-bottom: 0px;
    }

    .contact-info1 i {
        font-size: 25px;
        margin-bottom: 6px;
    }


    .contact-form {
        padding: 15px;
    }


    .contact-section {
        padding: 30px 0;
    }

}



.travel-section1 {
    background: linear-gradient(45deg, #000000ad, #00000073), url(../img/travel-section.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}








.wrapper-1 {
    background: #fff;
    height: initial;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}


.wrapper-2 {
    padding: 30px;
    text-align: center;
}

.wrapper-2 p {
    text-decoration: none;
    color: black;
}

.go-home {
    color: #fff !important;
    background: #81cf01;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

.wrapper-2 h2 {
    font-size: 40px;
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fea41b;
}

.go-home a {
    color: #fff !important;
    text-decoration: none;
}

.footer-like {
    text-align: center;
}

.content {
    margin-top: 200px;
}





.goa .bread {
    background: linear-gradient(206deg, #00000059, #00000075), url(../img/home-goa.jpg) no-repeat center center / cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.mumbai .bread {
    background: linear-gradient(206deg, #00000059, #00000075), url(../img/home-mumbai.jpg) no-repeat center center / cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.uttarakhand .bread {
    background: linear-gradient(206deg, #00000059, #00000075), url(../img/home-uttarakhand.jpg) no-repeat center center / cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


@media (max-width: 767.98px) {

    .goa .bread {
        height: 200px;
    }


    .navbar-nav .nav-link {
        color: #000 !important;
        font-size: 16px !important;
        padding: 0px 0px;
        transition: all 0.3s ease;
    }

}



@media (max-width: 1024px) {



    ul.navbar-nav.ms-auto {
        gap: 3px;
    }


    .navbar-nav .nav-link {
        font-size: 16px;
    }


    .about-section {
        padding: 40px 2%;
    }


    .destinations-section {
        padding: 40px 0%;
    }


    .destinations-section .card-title {
        font-size: 18px;
    }


    .destinations-section .destination-card {
        height: 100%;
    }


    .services-section {
        padding: 40px 10px;
    }

    .travel-guide {
        padding: 10px 10px 50px 10px;
    }


    .footer {
        padding: 50px 15px 1px 15px;
    }


    .about-ert .about-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-ert .about-text {
        font-size: 16px;
        margin-bottom: 10px;
    }


    .found-ert-text {
        font-size: 15px;
        line-height: 1.6;
    }


    .mission-vision .section-text {
        font-size: 15px;
        line-height: 1.6;
    }


    .book-taxi .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }


    .book-taxi .section-text {
        font-size: 16px;
        line-height: 1.6;
    }


    .wedding-content h2 {
        font-size: 30px;
    }


    .wedding-content p {
        font-size: 15px;
    }


    .booking-form h2 {
        padding: 14px 0;
        font-size: 36px;
    }

    .visa-content h2 {
        font-size: 30px;
    }


    .visa-section {
        padding: 40px 30px;
    }


    .visa-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer h3 {
        font-size: 19px;
    }


    .tour-packages .tour-content h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .tour-packages .tour-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .tour-categories {
        padding: 40px 0px;
    }


    .tour-categories .category-card p {
        font-size: 14px;
        padding: 0 12px 0px;
    }


    .tour-categories .category-card {
        height: 100%;
    }


    .flight-booking-section h2 {
        font-size: 23px;
    }


    .flight-booking-section p {
        font-size: 15px;
        line-height: 1.6;
    }

    .content-box {
        padding: 0px;
    }


    .jaipur-section p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 5px;
    }


    .jaipur-section h2 {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .jaipur-attractions .attraction-box {
        padding: 0px;
    }


    .jaipur-tour-packages .section-title {
        font-size: 30px;
    }


    .jaipur-tour-packages .package-box {
        padding: 14px;
        height: 100%;
    }


    .jodhpur-section h2 {
        font-size: 29px;
        margin-bottom: 10px;
    }


    .jodhpur-section p {
        font-size: 15px;
        line-height: 1.6;
    }


    .jodhpur-destinations .destination-card {
        padding: 10px;
        margin-bottom: 0px;
        height: 100%;
    }


    .jodhpur-destinations .col-lg-4.col-md-6 {
        margin-top: 20px;
    }


    .udaipur-section .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .udaipur-section .section-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .popular-destinations-udaipur {
        padding: 0px 0 30px 0;
    }


    .popular-destinations-udaipur .destination-card {
        margin: 0px 0;
        height: 100%;
        padding: 10px;
    }

    .popular-destinations-udaipur .col-md-6.col-lg-4 {
        margin-top: 20px;
    }


    .about-jaisalmer h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .about-jaisalmer p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .about-jaisalmer {
        padding: 30px 0;
    }

    .popular-destinations-jaisalmer h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .popular-destinations-jaisalmer .destination-card {
        padding: 10px;
        margin-bottom: 0px;
        height: 100%;
    }


    .popular-destinations-jaisalmer .col-lg-4.col-md-6 {
        margin-top: 20px;
    }


    .tour-packages-jaisalmer h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .tour-packages-jaisalmer .package-card {
        padding: 10px;
        margin-bottom: 0px;
        height: 100%;
    }


    .about-pushkar .content-box {
        padding: 0;
    }


    .about-pushkar .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-pushkar .section-text {
        font-size: 16px;
        line-height: 1.6;
    }


    .popular-destinations-pushakar {
        padding: 0px 0 10px 0;
    }


    .about-kota .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-kota p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-kota {
        padding: 32px 0 20px 0;
    }

    .popular-destinations-kota .destination-card {
        margin-bottom: 0px;
        padding: 10px;
        height: 100%;
    }

    .popular-destinations-kota .col-md-4 {
        margin-top: 20px;
    }

    .kota-tour-packages .tour-card {
        padding: 10px;
        margin-bottom: 0px;
        height: 100%;
    }

    .about-ajmer .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-ajmer p {
        font-size: 15px;
        line-height: 1.6;
    }


    .about-tonk .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-tonk p {
        font-size: 15px;
        line-height: 1.6;
    }

    .popular-tonk .destination-card {
        padding: 15px;
        margin: 0px 0;
        height: 100%;
    }


    .popular-tonk .col-lg-4.col-md-6 {
        margin-top: 20px;
    }


    .about-section-chhittor .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-section-chhittor p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 5px;
    }

    .about-section-chhittor {
        padding: 30px 0;
    }


    .popular-destinations-chhitor .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .tour-packages-chhitor .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .tour-packages-chhitor .package-card {
        padding: 10px;
    }


    .about-uttarakhand .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-uttarakhand p {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .tour-packages-uttarakhand {
        padding: 10px 0;
    }


    .tour-packages-uttarakhand .package-card {
        margin-bottom: 0px;
        padding: 15px;
        height: 100%;
    }


    .tour-packages-uttarakhand .col-lg-4.col-md-6 {
        margin-bottom: 20px;
    }


    .about-section-gujarat h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-section-gujarat p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0px;
    }


    .about-section-gujarat {
        padding: 30px 0;
    }


    .popular-destinations-gujarat .section-title {
        font-size: 30px;
    }


    .tour-packages-gujarat .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-section-uttar h2 {
        font-size: 30px;
    }

    .about-section-uttar p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0px;
    }


    .popular-destinations-uttar .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }


    .tour-packages-uttar .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }


    .tour-packages-uttar .package-card {
        padding: 10px;
        margin-bottom: 0px;
        height: 100%;
    }


    .tour-packages-uttar .col-lg-4.col-md-6 {
        margin-bottom: 20px;
    }


    .about-mp h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-mp p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .popular-destinations-madhya .section-title {
        font-size: 30px;
    }


    .popular-destinations-madhya .destination-card {
        padding: 10px;
    }

    .popular-destinations-madhya .destination-card p {
        font-size: 13px;
    }


    .tour-packages-madhya {
        padding: 6px 0 30px 0;
    }

    .tour-packages-madhya .section-title {
        font-size: 30px;
    }


    .tour-packages-madhya .package-card p {
        font-size: 14px;
    }


    .about-goa h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-goa p {
        font-size: 15px;
        line-height: 1.6;
    }


    .about-goa {
        padding: 38px 0 30px;
    }


    .goa-tour-packages h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .mumbai-section h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }


    .mumbai-section p {
        font-size: 16px;
        line-height: 1.6;
    }

    .mumbai-section {
        padding: 35px 0 10px 0;
    }

    .mumbai-destinations .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }


    .mumbai-destinations .destination-card {
        padding: 10px;
        margin-bottom: 0px;
        height: 100%;
    }


    .col-lg-4.col-md-6 {
        margin-top: 20px;
    }


    .mumbai-tour-packages {
        padding: 30px 0;
    }


    .mumbai-tour-packages .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }


    .about-bihar h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-bihar p {
        font-size: 15px;
        margin-bottom: 0px;
    }


    .popular-destinations-bihar h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .popular-destinations-bihar .destination-card p {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .bihar-tour-packages h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }


    .bihar-tour-packages .package-card h4 {
        font-size: 16px;
        margin-top: 10px;
    }

    .bihar-tour-packages .package-card p {
        font-size: 13px;
        margin-bottom: 0px;
    }


    .about-tamilnadu h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-tamilnadu p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 5px;
    }


    .about-tamilnadu {
        padding: 40px 0 7px;
    }



    .popular-destinations-tamil h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .popular-destinations-tamil .destination-card {
        margin: 0px 0;
        height: 100%;
    }


    .tour-packages-tamil h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }


    .tour-packages-tamil .package-card {
        margin: 0px 0;
        height: 100%;
    }


    .about-karnataka h2 {
        font-size: 30px;
    }


    .about-karnataka p {
        font-size: 15px;
        line-height: 1.6;
    }

    .popular-destinations-karnataka .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .popular-destinations-karnataka .destination-card h3 {
        font-size: 19px;
    }

    .popular-destinations-karnataka .destination-card {
        margin-bottom: 0px;
        height: 100%;
    }


    .about-delhi h2 {
        font-size: 30px;
    }

    .about-delhi p {
        font-size: 16px;
        line-height: 1.6;
    }

    .popular-destinations-delhi h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .popular-destinations-delhi .destination-card {
        margin-bottom: 0px;
        height: 100%;
    }

    .delhi-tour-packages h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .about-kerala h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-kerala p {
        font-size: 15px;
        line-height: 1.6;
    }

    .popular-destinations-kerala h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .popular-destinations-kerala .destination-card {
        margin-bottom: 0;
        height: 100%;
    }


    .kerala-tour-packages h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }


    .kerala-tour-packages .package-card h3 {
        font-size: 16px;
    }


    .kerala-tour-packages .package-card {
        margin-bottom: 0px;
    }


    .contact-info1 {
        padding: 18px;
    }

}



@media (max-width: 767.98px) {

    .destinations-section {
        padding: 40px 10px;
    }

    .booking-form h2 {
        font-size: 26px;
    }

    .visa-section {
        padding: 40px 10px;
    }


    .jaipur-section {
        padding: 38px 10px 30px 10px;
    }


    .jodhpur-section h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }


}





.hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/hero-background.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}


.book-cab .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/book-cab.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}


.gujarat .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-gujarat.webp);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}





.uttarakhand .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-uttarakhand.webp);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}


.goa .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/goa.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.karnataka .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-karnataka.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}


.jaisalmer .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-jaisalmer.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.jaipur .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-jaipur.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.udaipur .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-udaipur.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.pushkar .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-pushkar.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.ajmer .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-ajmer.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.bihar .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-bihar.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.uttar-pradesh .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-uttarpradesh.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}


.jodhpur .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-jodhpur.jpeg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.kota .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-kota.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.tonk .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-tonk.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.chittor .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-chittorgarh.jpeg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.mp .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-mp.jpeg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.mumbai .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-mumbai.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.tamilnadu .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-tamilnadu.jpeg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.kerala .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-kerala.jpeg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.delhi .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-delhi.jpeg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}



.wedding .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-weeding.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}


.flight-book .hero-section {
    background: linear-gradient(45deg, #0000009e, #00000059), url(../img/home-flight.jpg);
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 32%;
}





.hero-section .contact-form textarea {
    resize: none;
    height: 85px;
}


.hero-section .col-lg-8.col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-section .contact-form input,
.hero-section .contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}


.hero-section .contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}



.hero-section .contact-form h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}


.hero-section h1 {
    color: #ffffff;
    font-size: 65px;
    text-shadow: 2px 2px black;
}


.hero-section .lead {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}


.hero-section a.btn.btn-primary.btn-lg {
    background: #fe9900;
    border: none;
}




@media (max-width: 767.98px) {


    .book-cab .hero-section {
        height:100%;
    }

    .hero-section h1 {
        font-size: 25px !important;
    }


    .hero-section {
        height: 100%;
    }


    .hero-section .lead {
        font-size: 20px;
    }


    section.trans {
        padding: 0px 10px !important;
    }


    .hero-section .contact-form {
        padding: 20px;
    }


    .about-us .image-layout {
        flex-direction: column;
    }


    .about-us .left-image img {
        display: none;
    }


    .about-us .text-container {
        padding: 10px;
        margin-top: 22px;
    }


    .about-us .description {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.6;
    }


    .why-us .section-title {
        color: #544e52;
        font-size: 21px;
        font-weight: 700;
    }


    section.why-us {
        padding: 0px 0 0 0 !important;
    }


    .why-us .description {
        font-size: 16px;
        margin-bottom: 0px;
        margin-top: 20px;
    }


    .why-us .row.text-center.mt-5 {
        margin-top: 20px !important;
    }

    .trans .text-section {
        max-width: 100%;
    }


    .trans .container {
        padding: 10px 10px 30px 10px;
        flex-direction: column;
    }


    .trans .text-section h1 {
        font-size: 35px;
        margin: 0px 0 10px 0;
    }


    .trans .text-section p {
        font-size: 15px;
        line-height: 1.6;
    }


    .trans .btn {
        margin-top: 0px;
        margin-bottom: 30px;
    }


    section.popular-rajasthan {
        padding: 30px 0px 15px 0px !important;
    }


    .about-us {
        padding: 30px 0 15px 0;
    }


    .section-flight {
        padding: 0px 10px 20px 10px !important;
    }




    .section-flight .content1 h1 {
        font-size: 34px;
        margin: 0px 0 20px 0px;
    }



    .section-flight {
        flex-direction: column-reverse;
        text-align: left;
    }


    .section-flight .image img {
        max-width: 100%;
        margin-bottom: 0px;
        margin-top: 30px;
    }


    .section-flight .content1 p {
        font-size: 15px;
        margin-bottom: 6px;
    }




}





@media (max-width: 1024px) {

    .hero-section {
        height: 100%;
    }


    .hero-section h1 {
        font-size: 45px;
    }


    .hero-section .contact-form {
        padding: 20px;
    }

    .about-us {
        padding: 60px 10px 15px 10px;
    }


    .about-us .description {
        font-size: 16px;
        margin-bottom: 20px;
    }


    .about-us .left-image img {
        width: 245px;
        height: 515px;
    }

    .about-us .circle-image img {
        width: 240px;
        height: 240px;
    }


    .why-us .section-title {
        font-size: 26px;
    }


    .why-us .stat-box {
        padding: 10px 10px;
        height: 100%;
    }


    .trans .container {
        padding: 0px 0 35px 0px;
    }


    .trans .text-section p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }


    .trans .text-section h1 {
        font-size: 40px;
        margin: -3px 0 10px 0;
    }


    .trans .btn {
        margin-top: -8px;
    }


    .section-flight {
        padding: 0px 10px 50px 10px;
    }


    .section-flight .image img {
        max-width: 92%;
    }


    .section-flight .content1 h1 {
        font-size: 30px;
        margin: 0px 0 10px 0;
    }


    .section-flight .content1 p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 13px;
    }


    .tour-categories {
        padding: 3px 0px 40px 0px;
    }


}






@media (max-width: 767.98px) {


    .about-us {
        padding: 14px 10px 32px 10px !important;
    }



    .about-us .row {
        flex-direction: column-reverse !important;
    }

    .contact-info1,
    .contact-form {
        margin-bottom: 0px;
    }


    .trans .img-section img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

}






section.car-fleet {
    margin: 0 0 40px 0 !important;
}


.car-fleet .main-title h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fe9900;
    margin-bottom: 20px;
}


.car-fleet .car-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.car-fleet .car-image {
    position: relative;
}

.car-fleet .car-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}



.car-details {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.car-fleet .car-info {
    flex-grow: 1;
}

.car-fleet .car-info h5 {
    font-weight: bold;
    margin-bottom: 5px;
    color: #544e52;
}

.car-fleet .car-icons span {
    margin-right: 15px;
    color: #555;
    font-size: 14px;
}

.car-fleet .car-icons i {
    color: #fe9900;
    margin-right: 5px;
}

.car-fleet .car-price {
    text-align: right;
}

.car-fleet .car-price .btn {
    background: #fcbf49;
    color: #000;
    font-weight: 500;
}

.car-fleet .car-price h5 {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}



@media (max-width: 1024px) {

    .car-fleet .car-image img {
        height: 100%;
    }


    .car-details {
        padding: 20px 5px;
    }


    .car-fleet .car-icons span {
        margin-right: 3px;
    }


}





@media (max-width: 767.98px) {

    .car-fleet .main-title h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .car-fleet .car-image img {
        width: 100%;
        height: 100%;
    }


    .car-details {
        padding: 10px 0;
    }


    .car-fleet .car-icons i {
        margin-right: 0px;
    }


    .car-fleet .car-icons span {
        margin-right: 6px;
        font-size: 14px;
    }


}