.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;
    border: 1px solid #DEDEDE;
    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;
}

/* Offer Section */
.offer-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.offer-link:hover {
    transform: translateY(-5px);
}

.offer-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease-in-out;
}

.offer-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.offer-card picture{
    height: 220px;
    display: block;
}

.offer-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.offer-card:hover .offer-img {
    transform: scale(1.08);
}

.offer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Slightly darker for better contrast */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 15px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.offer-card:hover .offer-content {
    background: rgba(0, 0, 0, 0.65);
}

.offer-badge {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    padding: 0px 12px;
    border-radius: 20px;
    font-size: 10px;
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 10;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.offer-badge:hover {
    background: var(--tts-buttton-bg1);
    color: var(--tts-buttton-txt1);
}

.offer-title {
    font-size: 20px;
    margin: 12px 0;
    color: #fff;
}

.offer-text {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.disabled-link {
    pointer-events: none;
    opacity: 0.6;
}


.place-nav .nav {
    margin-bottom: 24px;
}

.place-nav .nav li {
    margin-bottom: 16px;
    margin-right: 4px;
}

.place-nav .nav li a {
    color: #111827;
    border-radius: 30px;
    text-transform: uppercase;
    padding: 5px 15px;
}

.place-nav .nav li a.active,
.place-nav .nav li a:hover {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
}


/* ===================
flight Routes css 
====================== */
.home-Routes .routes_box {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: all .5s ease;
    box-sizing: border-box;
    min-height: 190px;
    height: 100%;
    margin: 5px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
}

.home-Routes .routes_box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.home-Routes .routes_box .origin_destination {
    width: 100%;
    padding-left: 12px;
    border-left: 2px solid #dbe3ef;
    position: relative;
}

.home-Routes .routes_box .origin_destination:before {
    content: " ";
    position: absolute;
    background-color: #dbe3ef;
    padding: 3px;
    border-radius: 50%;
    top: 0;
    left: -4px;
}

.home-Routes .routes_box .origin_destination div {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: #333;
    height: 16px;
    font-weight: 500;
}

.home-Routes .routes_box .origin_destination .time {
    font-weight: 400;
    font-size: 14px;
    width: 100%;
}

.home-Routes .routes_box .origin_destination:after {
    content: " ";
    background-color: #dbe3ef;
    padding: 3px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: -4px;
}

.home-Routes .routes_box .price_go {
    margin-top: auto;
    padding-left: 12px;
    padding-top: 20px;
}

.home-Routes .routes_box .price_go .low-price {
    font-size: 20px;
    color: #000000;
    text-align: left;
    display: block;
    font-weight: 500;
    line-height: 20px;
}

.home-Routes .routes_box .price_go p {
    width: 100%;
    font-size: 14px;
    color: #666;
    display: flex;
    margin: 0;
}

.home-Routes .routes_box .price_go .low-price span {
    width: 100%;
    font-weight: 400;
    display: block;
}

.home-Routes .routes_box .price_go p span {
    color: #999;
    font-size: 12px;
    display: contents;
}

.home-Routes .routes_box .price_go .low-price .rs {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
    display: inline;
    float: left;
    width: 15px;
}

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

.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 figure .hotel-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

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

.trending-hotels .hotel-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 5px;
}

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

.trending-hotels .hotel-stars {
    position: unset;
    line-height: 14px;
    margin-bottom: 5px;
}

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

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

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

.trending-hotels .review-score {
    background: var(--tts-buttton-bg);
    border: 1px solid var(--tts-buttton-bg);
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--tts-buttton-txt);
    margin-right: 12px;
    padding: 4px 6px;
}

.trending-hotels .review-count {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    margin-right: 5px;
}

.trending-hotels .hotel-item .hotel-details .section-footer {
    border-top: 1px solid #DEDEDE;
    margin-top: 20px;
    padding-top: 20px;
}

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

.trending-hotels .hotel-item .hotel-details .price-wrapper .price {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #1A2B48;
    margin-left: 8px;
    margin-right: 4px;
}


/* 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 {
        padding: 30px 0;
    }

    .trending-hotels .hotel-image {
        height: 160px;
    }

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

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

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


/* Holiday theme  */
.holidays_theme {
    padding-top: 0;
}

.holidays_theme .thumbnail {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.holidays_theme .thumbnail a {
    display: block;
}

.holidays_theme .thumbnail a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s;
}


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

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

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

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

.holidays_theme .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

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

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

.holidays_theme #demostic-slider .button-prev,
.holidays_theme #demostic-slider .button-next {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 9;
}

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

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

.destination-item img {
    border-radius: 10px;
    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 h5 {
    color: #ffffff;
    font-size: 20px;
}

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

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




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

.packages-seven-section .package-item {
    background: #fff;
    border-radius: 10px;
    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: 10px;
    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: 10px;
    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: 10px;
    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: 10px;
    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: 10px 0;
}

.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-wrap {
        padding-left: 0;
    }

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

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

.cmpanylogo .logo {
    height: 60px;
}