.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: #111827;
    text-shadow: none;
    top: 0;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.nav-center .owl-nav button.owl-prev {
    left: -20px;
}

.nav-center .owl-nav button.owl-next {
    right: -20px;
}

.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
}

.nav-center .owl-nav button.disabled {
    opacity: 1;
    background: #e0dcdc;
    color: #ffffff;
}


@media screen and (max-width:480px) {
    .nav-center .owl-nav button.owl-prev {
        left: 20px;
    }

    .nav-center .owl-nav button.owl-next {
        right: 20px;
    }

    .nav-center .owl-nav button.owl-next,
    .nav-center .owl-nav button.owl-prev {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


/* General Navigation Tabs Styling */
.offer_page .nav-tabs {
    justify-content: center;
    border: none;
    gap: 10px;
}

.offer_page .nav-tabs .nav-item {
    margin-right: 10px;
}

.offer_page .nav-tabs .nav-link {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    color: #151515;
    background-color: #ededed;
    transition: background-color 0.3s, color 0.3s;
}

.offer_page .nav-tabs .nav-link.active {
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
}

/* Offer Card Styles */
.offer_page .offer_bg .card {
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.offer_page .offer_bg .card .card-img {
    height: 220px;
    object-fit: cover;
}

.offer_page .offer_bg .card .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    transition: opacity 0.3s, transform 0.3s;
}

.offer_page .offer_bg .card:hover .card-img-overlay {
    opacity: 1;
    transform: translateY(0);
}

.offer_page .offer_bg .card .card-img-overlay .card_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    font-size: 20px;
    color: #151515;
}

.offer_page .offer_bg .card .card-img-overlay .card-title,
.offer_page .offer_bg .card .card-img-overlay .card-title a {
    color: #fff;
    font-size: 18px;
}

/* Call to Action Button */
.offer_page .offer_bg .card .im-btn-outer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--tts-buttton-bg);
    transform: translateY(60px);
    transition: 0.5s;
}

.offer_page .offer_bg .card .call-now {
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt1);
    transition: background-color 0.3s ease;
    padding: 8px 16px;
    width: 100%;
    text-align: center;
}

.offer_page .offer_bg .card .im-btn-outer {
    opacity: 0;
    transform: translateY(80px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.offer_page .offer_bg .card:hover .im-btn-outer {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 480px) {
    .offer_page .nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .offer_page .nav-tabs .nav-item {
        margin-right: 0;
    }

    .offer_page .nav-tabs .nav-link {
        font-size: 14px;
    }
}


/* ===================
popular destinations css 
====================== */
.popular-destinations .package {
    width: 100%;
    float: left;
    color: #000;
    margin: 0 0 30px;
    position: relative;
    box-shadow: none;
}

.popular-destinations .package a {
    color: #212121;
    text-decoration: none;
}

.popular-destinations .package .im {
    width: 100%;
    float: left;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.popular-destinations .package .im::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.popular-destinations .package:hover .im::before {
    background: rgba(0, 0, 0, 0.5);
}

.popular-destinations .package .im img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.popular-destinations .package .im .im-text1 {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    padding: 0 10px;
}

.popular-destinations .package .im .text-box {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.popular-destinations .package .im .text-box .from {
    font-size: 10px;
    color: #000000;
    margin-right: 5px;
}

.popular-destinations .package .im .text-box .price {
    font-size: 26px;
    font-weight: 600;
    color: var(--tts-buttton-bg);
}



/* ===================
flight Routes css 
====================== */
.popular_destination {
    background: linear-gradient(185deg, #e4ebf4 3%, #e4ebf4 96%);
}

.popular_destination .section-title .badge {
    background-color: #ffffff;
}


.flight-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.flight-card:hover {
    transform: translateY(-4px);
}

.image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 220px;
}

.flight-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.route-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;

    margin-bottom: 12px;
}

.date-price-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #666;
}

.date-price p {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #333;
}

.date-price h6 {
    margin: 4px 0 0 0;
    font-size: 16px;
    color: var(--tts-buttton-bg);
}

.call-now-button {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--tts-buttton-bg);
    border-radius: 5px;
    text-decoration: none;
    color: var(--tts-buttton-bg);
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.call-now-button:hover {
    background-color: var(--tts-buttton-bg);
    color: #fff;
}

/* ===================
   Trending Hotels CSS
====================== */
.trending-hotels .hotel-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trending-hotels .hotel-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.trending-hotels .hotel-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.trending-hotels figure.hotel-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.trending-hotels .hotel-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    transition: transform 0.4s ease-in-out;
}

.trending-hotels .hotel-item:hover .hotel-image {
    transform: scale(1.08);
}

.trending-hotels .hotel-details {
    padding: 20px;
}

.trending-hotels .hotel-name {
    font-size: 20px;
    margin: 0 0 5px;
}

.trending-hotels .hotel-location {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #5E6D77;
    display: flex;
    align-items: center;
}

.trending-hotels .hotel-stars {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
}

.trending-hotels .hotel-stars i {
    font-size: 12px;
    color: #fae036;
}

.trending-hotels .hotel-review {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0px;
}

.trending-hotels .review-score {
    display: inline-block;
    padding: 4px 6px;
    font-size: 12px;
    color: var(--tts-buttton-txt);
    background: var(--tts-buttton-bg);
    border: 1px solid var(--tts-buttton-bg);
    border-radius: 5px;
    margin-right: 5px;
    box-sizing: border-box;
}

.trending-hotels .review-count {
    font-size: 12px;
}

.trending-hotels .section-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #DEDEDE;
}

.trending-hotels .price-wrapper {
    font-size: 14px;
    font-weight: 400;
    color: #5E6D77;
    line-height: 1.6;
}

.trending-hotels .price-wrapper .price {
    font-size: 16px;
    font-weight: 700;
    color: #1A2B48;
    margin: 0 4px 0 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trending-hotels .hotel-image {
        height: 180px;
    }

    .trending-hotels .hotel-details {
        padding: 12px;
    }

    .trending-hotels .hotel-name {
        font-size: 16px;
    }

    .trending-hotels .review-score {
        padding: 4px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .trending-hotels .hotel-image {
        height: 160px;
    }

    .trending-hotels .review-score {
        padding: 3px 8px;
        font-size: 11px;
    }

    .trending-hotels .review-count {
        font-size: 12px;
    }
}



/* Holiday theme  */
.holidays_theme {
    text-align: center;
    padding: 20px 0;
}

.holidays_theme .thumbnail {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform 0.3s ease-in-out;
}

.holidays_theme .thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.holidays_theme .thumbnail a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.holidays_theme .thumbnail:hover a img {
    opacity: 0.5;
    transform: scale(1.2);
}

.holidays_theme .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.holidays_theme .title a {
    color: #292323;
    text-decoration: none;
    transition: color 0.3s ease;
}

.holidays_theme .title a:hover {
    color: #111;
}

.holidays_theme .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #292323;
}

.holidays_theme .desc a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.holidays_theme .desc a:hover {
    color: #333;
}

.holidays_theme .nav-center .owl-nav button.owl-next,
.holidays_theme .nav-center .owl-nav button.owl-prev {
    top: -35px;
}

@media (max-width: 1024px) {
    .holidays_theme .title {
        font-size: 18px;
    }

    .holidays_theme .desc {
        font-size: 15px;
    }

    .holidays_theme .thumbnail:hover a img {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .holidays_theme .title {
        font-size: 16px;
    }

    .holidays_theme .desc {
        font-size: 14px;
    }

    .holidays_theme .thumbnail {
        margin-bottom: 12px;
    }

    .holidays_theme .nav-center .owl-nav button.owl-next,
    .holidays_theme .nav-center .owl-nav button.owl-prev {
        top: 0px;
        font-size: 20px;
    }
}


/* Holidays Destinations Start */
.destination-item {
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.destination-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 5px;
    transition: all .3s;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.destination-item img {
    border-radius: 5px;
    width: 100%;
    transition: all .5s;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    inset: 0;
    transition: all .3s ease-in-out;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #ffffff;
}

.destination-info h4 {
    color: #ffffff;
    font-size: 20px;
}

.destination-info span {
    font-size: 14px;
    display: block;
}

.destination-info p {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

@media screen and (max-width:480px) {
    .holiday-theme-slider .holiday-theme-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .holidays_theme .title a,
    .holidays_theme .desc,
    .holidays_theme .desc a {
        color: #ffffff;
    }
}


/* ===================
package css 
====================== */

.packages-seven-section .package-item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-seven-section .package-item:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.packages-seven-section .package-item .package-image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.packages-seven-section .package-item .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packages-seven-section .package-item .package-image .fav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}


.packages-seven-section .package-item .package-image .fav-item .fav-icon {
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 400;
    color: var(--tts-buttton-bg);
    background: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-seven-section .package-item .package-image .fav-item .badge {
    font-size: 13px;
    border-radius: 50px;
    font-weight: 400;
    padding: 5px 10px;
    text-transform: capitalize;
    background-color: var(--tts-buttton-bg) !important;
    border: 1px solid var(--tts-buttton-bg) !important;
    color: var(--tts-buttton-txt) !important;
}

.packages-seven-section .package-item .package-content {
    padding: 20px;
}

.packages-seven-section .package-item .package-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.packages-seven-section .package-item .package-content h4 a {
    color: #333333;
}

.packages-seven-section .package-item .package-content h4 a:hover {
    color: var(--tts-buttton-bg);
}



.packages-seven-section .package-item .package-content .package-day li:last-child::before {
    display: none;
}

.packages-seven-section .package-item .package-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.packages-seven-section .package-item .package-content ul li {
    margin: 0px 5px 5px 0;
    text-align: center;
    font-size: 13px;
}

.packages-seven-section .package-item .package-content ul li i {
    margin-right: 5px;
    color: #333333;
}

.packages-seven-section .package-item .package-content .package-day {
    color: var(--tts-buttton-bg);
    margin-top: 1rem;
    margin-bottom: 0;
    justify-content: start;
}

.packages-seven-section .package-item .package-content .package-day li {
    position: relative;
    padding-right: 5px;
    margin: 0 5px 0 0;
}

.packages-seven-section .package-item .package-content .package-day li::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #d1d1d1;
}

.packages-seven-section .package-item .package-bottom {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    background-color: #E4EBF1;
    margin-top: auto;
}

.packages-seven-section .package-item .package-price {
    color: #333333;
    font-weight: 500;
    font-size: 12px;
}

.packages-seven-section .package-item .package-price span {
    font-weight: 700;
    color: var(--tts-buttton-bg);
    font-size: 20px;
    display: block;
}

.packages-seven-section .package-item .package-text-btn a {
    color: var(--tts-buttton-txt);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: var(--tts-buttton-bg);
}

.packages-seven-section .package-item .package-text-btn a:hover {
    color: var(--tts-buttton-txt1);
    background-color: var(--tts-buttton-bg1);
}

/* ===================
Work section css 
====================== */
.why-choose-us .card {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    border: 0;
    transition: all 0.5s ease;
}

.why-choose-us .card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-4px);
}

.why-choose-us .card .card-body {
    padding: 30px;
}

.why-choose-us .card h5 {
    font-size: 20px;
}

.why-choose-us::before {
    content: "";
    background: url(../img/bg/hotel-bg-07.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.why-choose-us .work-avatar {
    background: #E4EBF1;
    font-weight: 700;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 20px;
}

.why-choose-us .work-avatar .text-primary {
    color: var(--tts-buttton-bg) !important;
}

.why-choose-us .work-icon {
    color: var(--tts-buttton-bg);
}

.why-choose-us .work-icon i {
    font-size: 40px;
}

/*--------------------------------------------------------------
    # Blog Posts Section
    --------------------------------------------------------------*/
.recent-posts .post-item {
    background: var(--bg-white);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
    transition: 0.3s;
    border-radius: 5px;
    transition: all 0.5s ease;
}

.recent-posts .post-item:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-4px);
}

.recent-posts .post-item .post-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.recent-posts .post-item .post-img img {
    transition: 0.5s;
    width: 100%;
    max-height: 220px;
}

.recent-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--tts-buttton-bg);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-posts .post-item .post-content {
    padding: 30px;
}

.recent-posts .post-item .post-title {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
    font-size: 16px;
    color: var(--tts-buttton-bg);
}

.recent-posts .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--dark), transparent 50%);
}

.recent-posts .post-item hr {
    color: color-mix(in srgb, var(--dark), transparent 80%);
    margin: 20px 0;
}

.recent-posts .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--dark), transparent 40%);
}

.recent-posts .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
    color: var(--tts-buttton-bg);
}

.recent-posts .post-item:hover .post-img img {
    transform: scale(1.1);
}


/*==========visa section======*/
.visa-section .visa-item {
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    background: var(--bg-white);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.visa-section .visa-item:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-4px);
}

.visa-section .visa-item .visa-img {
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}

.visa-section .visa-item .visa-img img {
    height: 100%;
    width: 100%;
}

.visa-section .visa-item .visa-content .title {
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.visa-section .visa-item .visa-content .title a {
    color: inherit;
}

.visa-section .visa-item .visa-content p {
    margin: 0;
}

.visa-section .visa-item .visa-price {
    text-align: center;
    border: 2px solid var(--tts-buttton-bg);
    font-size: 20px;
    margin-top: 10px;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
    color: #df314a;
}

.visa-section .visa-item .visa-price span {
    font-size: 12px;
    color: #000;
}

/*testimonials section*/

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.testimonials .testimonial-item:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-4px);
}

.testimonials .testimonial-item .testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0px 0 5px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 15px;
    color: #999;
    margin: 0;
    font-weight: normal !important;
}

.testimonials .testimonial-item .stars {
    margin-top: 10px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--tts-buttton-bg);
    line-height: 0;
}

/* .testimonials .testimonial-item .quote-icon-left {
     display: inline-block;
     left: -5px;
     position: relative;
}
 .testimonials .testimonial-item .quote-icon-right {
     display: inline-block;
     right: -5px;
     position: relative;
     top: 10px;
}
 */
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0px auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--tts-buttton-bg);
}

@media (max-width: 767px) {
    .testimonials .testimonial-item h3 {
        font-size: 16px;
    }

    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 10px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

.cmpanylogo .logo {
    height: 60px;
}



/*--------------------------------------------------------------
# Top Routes Hero Section
--------------------------------------------------------------*/
.top-routes-hero {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.top-routes-hero .info {
    position: relative;
    z-index: 3;
    padding: 140px 0 60px;
    text-align: center;
}

.top-routes-hero .info h2,
.top-routes-hero .info p {
    font-size: 36px;
    font-weight: 700;
    padding: 12px 20px;
    overflow: hidden;
    display: inline-block;
}

.top-routes-hero .info h2 {
    background: rgba(255, 255, 255, 0.4);
    color: var(--tts-buttton-bg);
    margin-bottom: 18px;
}

.top-routes-hero .info p {
    color: #fff;
    background: rgba(255, 49, 49, 0.52);
}

.top-routes-hero .carousel {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.top-routes-hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.4s ease-in-out;
}

.top-routes-hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.top-routes-hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 6, 0);
    z-index: 2;
}

.top-routes-hero .carousel-control-prev,
.top-routes-hero .carousel-control-next {
    z-index: 3;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.top-routes-hero .carousel-control-prev {
    justify-content: flex-start;
    padding-left: 15px;
}

.top-routes-hero .carousel-control-next {
    justify-content: flex-end;
    padding-right: 15px;
}

.top-routes-hero .carousel-control-prev-icon,
.top-routes-hero .carousel-control-next-icon {
    background: rgba(0, 0, 0, 0.8);
    color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 0;
}

.top-routes-hero .carousel-control-prev:hover,
.top-routes-hero .carousel-control-next:hover {
    opacity: 0.9;
}

.top-routes-hero .carousel-control-prev:focus,
.top-routes-hero .carousel-control-next:focus {
    opacity: 0.5;
}

@media (max-width: 480px) {
    .top-routes-hero {
        min-height: 500px;
        display: block;
        text-align: center;
    }

    .top-routes-hero .info {
        padding: 80px 20px 40px;
    }

    .top-routes-hero .info h2,
    .top-routes-hero .info p {
        font-size: 22px;
        padding: 10px 14px;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .top-routes-hero {
        min-height: 550px;
    }

    .top-routes-hero .info {
        padding: 100px 40px 50px;
    }

    .top-routes-hero .info h2,
    .top-routes-hero .info p {
        font-size: 28px;
        padding: 10px 18px;
    }
}

@media (min-width: 1440px) {

    .top-routes-hero .info h2,
    .top-routes-hero .info p {
        font-size: 42px;
    }
}


/*--------------------------------------------------------------
# Call to Action Banner
--------------------------------------------------------------*/
.banner-call-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    margin-top: 30px;
    width: 100%;
    padding: 26px 0;
    flex-wrap: nowrap;
    gap: 0;
}

.banner-call-container .call-details {
    width: 100%;
    padding: 0 28px;
    border-right: 1px solid #b4c5d3;
}

.banner-call-container .call-details:last-child {
    border: none;
}

.banner-call-container .call-details h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.banner-call-container .call-details .call-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--tts-buttton-bg);
    background-image: linear-gradient(to top, var(--tts-buttton-bg), var(--tts-buttton-bg));
    border-radius: 100px;
    text-decoration: none;
    color: var(--tts-buttton-txt);
    font-size: 25px;
    padding: 4px;
    transition: opacity 0.5s ease-out, background 0.5s;
    z-index: 1;
}

.banner-call-container .call-details .call-card .call-card-heading {
    font-size: 20px;
    font-weight: 500;
    margin-left: 28px;
    z-index: 2;
}

.banner-call-container .call-details .call-card .call-img {
    background: var(--tts-buttton-txt);
    padding: 10px;
    display: grid;
    place-items: center;
    border-radius: 100%;
    z-index: 2;
}

.banner-call-container .call-details .call-card .call-img img {
    filter: invert(26%) sepia(93%) saturate(1276%) hue-rotate(191deg) brightness(85%) contrast(86%);
    transition: filter 0.5s;
    width: 38px;
    aspect-ratio: 1 / 1;
}

.banner-call-container .call-details .call-card:hover {
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

.talk-to-expert {
    background-color: #f9f9f9;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .banner-call-container {
        padding: 0px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-call-container .call-details {
        width: 50%;
        border-right: none;
        border-bottom: none;
        padding: 20px;
    }

    /* .banner-call-container .call-details:nth-child(2n) {
        border-left: 1px solid #b4c5d3;
    } */

    .banner-call-container .call-details:last-child {
        border-bottom: none;
    }

    .banner-call-container .call-details .call-card .call-card-heading {
        margin-left: 15px;
    }

    .banner-call-container .call-details h5 {}

    .banner-call-container .call-details .call-card {
        font-size: 22px;
    }

    .talk-to-expert .banner-call-container {
        justify-content: center !important;
    }


}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .banner-call-container {
        flex-direction: column;
        padding: 16px;
        margin-top: 0;
    }

    .banner-call-container .call-details {
        width: 100%;
        border: none;
        padding: 16px 0;
        border-bottom: 1px solid #b4c5d3;
    }

    .banner-call-container .call-details:last-child {
        border-bottom: none;
    }

    .banner-call-container .call-details h5 {
        text-align: center;
        font-size: 16px;
    }

    .banner-call-container .call-details .call-card {
        flex-direction: row;
        font-size: 18px;
        gap: 20px;
    }

    .banner-call-container .call-details .call-card .call-card-heading {
        margin-left: 12px;
        font-size: 14px;
    }

    .banner-call-container .call-details .call-card .call-img {
        padding: 8px;
    }

    .banner-call-container .call-details .call-card .call-img img {
        width: 28px;
    }
}