.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    width: 44px;
    height: 44px;
    font-size: 20px;
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    text-shadow: none;
    top: 0;
    cursor: pointer;
    border: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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


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

@media (max-width: 998.99px) {
    .nav-center .owl-nav button.owl-prev {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .nav-center .owl-nav button.owl-next {
        right: 20px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

.nav-center .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
}

.nav-center .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    margin-right: 8px;
    border-radius: 30px;
}

.nav-center .owl-dots .owl-dot.active {
    width: 22px;
    background: var(--tts-buttton-bg);
}


/*======offer_page==========*/
.offer_page .offer_bg .nav-tabs {
    justify-content: center;
    border: none;
    margin-bottom: 30px;
}

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

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

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

.offer_page .offer_bg .card {
    border: 0;
    overflow: hidden;
}

.offer_page .offer_bg .card .card-img {
    height: 200px;
}

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

.offer_page .offer_bg .card .card-img-overlay .card_icons {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    background: #ffffff;
    font-size: 20px;
    color: #151515;
}

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

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

@media screen and (max-width: 480px) {
    .offer_page .offer_bg .nav-tabs {
        gap: 10px;
    }
    
    .offer_page .offer_bg .nav-tabs .nav-item {
        margin-right: 0;
    }

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

/*======offer_page===end=======*/

/*Flights routes*/

.popular_destination {
   background: linear-gradient(185deg, #e4ebf4 3%, #e4ebf4 96%);
}

.routes_box {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: unset;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #ededed;
}

.origin_img {
    display: flex;
    align-items: center;
    margin-right: 15px;
    border: 3px solid var(--tts-buttton-bg);
    border-radius: 50px;
    overflow: hidden;
    padding: 3px;
}

.origin_img img {
    border-radius: 50px;
    height: 65px;
    width: 65px;
    object-fit: cover;
}

.origin_destination {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.origin_destination .elip {
    font-weight: 500;
    margin-bottom: 0px;
    color: #151515;
}

.origin_destination .count {
    font-size: 14px;
    margin: auto 0;
    font-weight: 600;
    color: var(--tts-buttton-bg);
}

.routes_box:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px;
}

.routes_box:hover .routes_box {
    color: inherit;
}


/*Trending Hotels*/
.hotel-item {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dfdfdf;
    transition: all 0.5s ease-in-out;
}

.hotel-slider .hotel-item {
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: none;
}

.hotel-slider .hotel-item:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hotel-img {
    border-radius: 12px;
    position: relative;
    height: 180px;
}

.hotel-img img {
    border-radius: 12px;
    height: 100%;
    width: 100%;
}

.hotel-img .add-wishlist {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--tts-buttton-bg);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 10px;
    top: 10px;
}

.hotel-content {
    padding: 20px 15px 10px;
}

.hotel-content h4 {
    font-size: 18px;
}

.hotel-content h4 a {
    color: #212121;
    display: inline-block;
}

.hotel-content p {
    margin: 8px 0;
    color: #212121;
    font-weight: 500;
}

.hotel-rate i {
    color: #ffa903;
}

.hotel-rate-type {
    color: var(--tts-buttton-bg);
    font-weight: 500;
    margin: 0 5px;
}

.hotel-rate-review {
    color: #212121;
    font-weight: 500;
    margin-left: 5px;
}

.hotel-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px;
}

.hotel-price-amount {
    color: var(--tts-buttton-bg);
    font-weight: 700;
    font-size: 19px;
}

.hotel-price-type {
    font-size: 14px;
    font-weight: 500;
    color: #212121;
}

.hotel-text-btn a {
    color: #212121;
    font-weight: 500;
}

.hotel-text-btn a i {
    font-size: 14px;
}

.hotel-text-btn a:hover {
    color: var(--tts-buttton-bg);
}


/*===visa====*/
.countries-visa .card {
    cursor: pointer;
    margin: 10px;
    position: relative;
    flex-direction: column;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 6px 0 #2a2626;
    border: none;
}

.countries-visa .card .cardbanner {
    height: 183px;
    border: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    filter: brightness(0.8);
}

.countries-visa .card .imgwrapper {
    left: -10px;
    position: absolute;
    top: -10px;
    border-radius: 50%;
}

.countries-visa .card .imgwrapper img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.countries-visa .card .country-card {
    padding: 10px 20px;
    position: absolute;
    top: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.countryBox {
    margin: 10px 0 15px;
}

.countryName,
.price {
    font-weight: 600;
    font-size: 20px;
}

.countries-visa .card .countryName a {
    color: #fff;
}

.rupayBox {
    font-size: 12px;
}

/*===why choose us====*/
.why-choose-us {
    position: relative;
    z-index: 1;
}

.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 .card {
    box-shadow: 0 0 6px #33333345;
    border: none;
}

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

.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;
}

/*===holidaytheme====*/
/* .theme-item {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    transition: all .5s ease-in-out;
}

.theme-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 35, 62, .65);
    border-radius: 15px;
    left: 0;
    top: 0;
}

.theme-item .theme-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.theme-item .theme-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: unset;
    border-radius: 15px;
    filter: brightness(0.8);
    transition: all .3s ease-out 0s;
}

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

.theme-item .theme-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.theme-item .theme-content img {
    width: 100px;
}

.theme-item .theme-content .filenameicon {
    width: 50px;
    height: 50px;
}

.theme-item .theme-content h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.theme-item .theme-content h3 span {
    color: #f96768;
    font-weight: 700;
}

.theme-item .theme-content p {
    color: #fff;
    margin: 0px 0;
} */

.categories-card {
    position: relative;
    border-radius: 10px;
    transition: 0.5s all;
    overflow: hidden;
    height: 250px;
}

.categories-card img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transition: 0.5s all;
}

.categories-card .cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    z-index: 1;
}

.categories-card::after {
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.categories-card .cat-content .cat-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.categories-card .cat-content .theme-details h5 {
    font-size: 18px;
}

.loc-view-bottom {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    background: #FFF;
    position: absolute;
    bottom: 20px;
    right: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-transition: all 0.9s;
    -ms-transition: all 0.9s;
    transition: all 0.9s;
    z-index: 2;
}

/*====destinations====*/
/* .destination-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    display: block;
    color: #212121;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.destination-item {
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: none;
    border: 1px solid #dfdfdf;
}

.destination-item:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.destination-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.destination-img img {
    border-radius: 12px 12px 0 0;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

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

.destination-content {
    padding: 20px 15px 10px;
}

.destination-content .destination-title {
    font-size: 17px;
}

.destination-content p {
    margin: 0px 0 0 0;
    color: var(--tts-buttton-bg);
    font-weight: 700;
    font-size: 20px;
}

.destination-content p span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #212121;
} */
 .International-Holiday-Destinations {
        background: var(--bg-white);
}

.destination-card .card {
    position: relative;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 30px;
}

.destination-card .destination-img {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.destination-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

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

.destination-card .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.destination-card .card-title {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 0;
}

.destination-card .price-info span {
    font-size: 12px;
    display: block;
}

.destination-card .price-info p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-item {
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 15px;
    transition: all .5s ease-in-out
}

.blog-item-img {
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    display: block;
}

.blog-item-img img {
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1)
}

.blog-item-meta ul {
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e8eb
}

.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: #212121;
}

.blog-item-meta ul li a {
    color: #212121;
}

.blog-item-meta ul li i {
    margin-right: 5px;
    color: var(--tts-buttton-bg)
}

.blog-item-meta a:hover {
    color: var(--tts-buttton-bg)
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize
}

.blog-item-info p {
    margin-bottom: 16px
}

.blog-item-info h4 a {
    color: #212121
}

.blog-item-info h4 a:hover {
    color: var(--tts-buttton-bg)
}

/*========mobile========app========*/
.mobile-app {
    background-color: #eaf1fb;
}

.mobile-app h3 {
    font-size: 30px;
}

.mobile-app ul {
    list-style: none;
    color: var(--dark);
    text-align: left;
    padding: 0;
    margin: 0;
}

.mobile-app ul li {
    padding-bottom: 5px;
    width: 50%;
    float: left;
}


.mobile-app .AppButton {
    display: flex;
    align-items: center;
    margin-top: 20px;
    float: left;
}

.mobile-app .mobileapp-item {
    position: relative;
    width: 100%;

}

.mobile-app .mobileapp-item .mobileapp-img,
.mobile-app .mobileapp-item .scnercode {
    width: 100%;
    text-align: center;
}

.mobile-app .mobileapp-item .mobileapp-img img {
    position: absolute;
    inset: 0px;
    display: block;
    box-sizing: border-box;
    margin: auto;
    padding: 0px;
    border: none;

}

.mobile-app .mobileapp-item .scnercode {
    margin-left: -25px;
    margin-top: 60px;
    position: relative;
}

.mobile-app .mobileapp-item .scnercode img {
    width: 150px;
}

/*========mobile========app====end====*/
/*======testimonials========*/

.testimonials {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 0px;
    background-image: url('/../webroot/img/testimonials/testi-bg.jpg');
    padding: 60px 0px 60px 0px;
    z-index: 1;
}

.testimonials .section-title h2 {
    color: #fff;
}

.testimonials .section-title a {
    color: #fff;
}

.testimonials::before {
    content: "";
    position: absolute;
    background: rgba(13, 35, 62, .5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0px;
    z-index: -1;
}

.testimonials .home_heading h2,
.testimonials .home_heading h2 span a {
    color: #fff;
}

.testimonial-wrap {
    height: 100%;
}

.testimonials .testimonial-item {
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    background: #fff;
    border-radius: 10px;
    height: 100%;
}

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

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
}

.testimonials .testimonial-item .fa-quote-left,
.testimonials .testimonial-item .fa-quote-right {
    color: #000;
    line-height: 0;
}

.testimonials .testimonial-item .fa-quote-left {
    display: inline-block;
    left: 0px;
    position: relative;
}

.testimonials .testimonial-item .fa-quote-right {
    display: inline-block;
    right: 0px;
    position: relative;
    top: 0px;
}

.testimonials .testimonial-item p {
    margin: 15px auto 15px auto;
}

@media (max-width: 767px) {
    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

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

/*============Trending Holidays========start===========*/

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

.packages-six-section .package-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ededed;
    overflow: hidden;
}

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

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

.packages-six-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-six-section .package-item .package-image .fav-item .fav-icon {

    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-six-section .package-item .package-image .fav-item .badge {

    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-six-section .package-item .package-content {
    padding: 20px;
}

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

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

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



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

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

.packages-six-section .package-item .package-content ul li {
    margin: 0px 5px 5px 0;
    text-align: center;

}

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

.packages-six-section .package-item .package-content .package-day {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0;
    justify-content: start;
}

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

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

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

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

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

.packages-six-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-six-section .package-item .package-text-btn a:hover {
    color: var(--tts-buttton-txt1);
    background-color: var(--tts-buttton-bg1);
}



/*******************Stats**************************/
.stats-section {
    background: #fbf9fa;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 30px 0;
}

.stats-box {
    height: 100%;
}


.stats-number {
    font-weight: 700;
    color: var(--tts-buttton-bg1);
    margin-bottom: 10px;
    line-height: 1;
}

.stats-title {
    margin: 0;
    color: var(--header-txt-color);
}

@media (max-width:767px) {

    .stats-box {
        padding: 25px 15px;
    }

    .stats-number {
        font-size: 32px;
    }

    .stats-title {
        font-size: 14px;
    }

}


/*******************why-us**************************/
.why-us {
    background: var(--bg-white);
}

.why-us .why-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

.why-us .why-card:hover {
    transform: translateY(-8px);
    border-color: var(--tts-buttton-bg1);
}

.why-us .why-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
    background: rgba(26, 97, 141, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tts-buttton-bg1);
    transition: .3s;
}

.why-us .why-card:hover .why-icon {
    background: var(--tts-buttton-bg1);
    color: var(--white);
}

.why-us .why-card h6 {
    color: var(--header-txt-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.why-us .why-card p {
    color: #6c757d;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width:767px) {
    .why-us .why-card {
        padding: 20px 15px;
    }

    .why-us .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

}

/*******************Services**************************/

.travel-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.travel-services .service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dedede;
    transition: .35s;
    height: 100%;
}

.travel-services .service-card:hover {
    transform: translateY(-10px);
}

.travel-services .service-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.travel-services .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.travel-services .service-card:hover .service-image img {
    transform: scale(1.08);
}

.travel-services .service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15));
}

.travel-services .service-overlay {
    position: absolute;
    left: 25px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-services .service-icon {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: var(--tts-buttton-bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.travel-services .service-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.travel-services .service-content {
    padding: 28px;
}

.travel-services .service-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.travel-services .service-list {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.travel-services .service-list li {
    margin-bottom: 10px;
}

.travel-services .service-list i {
    color: var(--tts-buttton-bg);
    margin-right: 10px;
    font-size: 12px;
}

.travel-services .service-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

@media(max-width:991px) {

    .travel-services {
        padding: 60px 0;
    }

    .travel-services .service-image {
        height: 180px;
    }

}

@media(max-width:767px) {
    .service-content {
        padding: 22px;
    }

    .service-overlay h4 {
        font-size: 20px;
    }

}




/*=================================================
    WHY PARTNERS
==================================================*/

.why-partners {
    background: #f8fafc;
}

.why-partners .promise-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 35px;
    color: #fff;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    transition: .35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.why-partners .promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.why-partners .promise-card>* {
    position: relative;
    z-index: 2;
}

.why-partners .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.why-partners .shape-1 {
    width: 150px;
    height: 150px;
    top: -70px;
    right: -70px;
}

.why-partners .shape-2 {
    width: 90px;
    height: 90px;
    bottom: -30px;
    left: -30px;
}

.why-partners .card-badge {
    display: inline-block;
    width: max-content;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    margin-bottom: 25px;
}

.why-partners .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.why-partners .icon-box i {
    font-size: 30px;
}

.why-partners .promise-card h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 18px;
    color: #fff;
}

.why-partners .promise-card p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 24px;
    line-height: 1.6;
}

.why-partners .promise-card .card-footer {
    margin-top: auto;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.why-partners .promise-card .card-footer h4 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.why-partners .promise-card .card-footer small {
    display: block;
    color: rgba(255, 255, 255, .70);
    margin-top: 5px;
    font-size: 12px;
}

.why-partners .promise-card .btn {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    transition: .3s;
}

.why-partners .promise-card .btn:hover {
    background: #fff;
    color: #111827;
    transform: translateY(-2px);
}

.why-partners .promise-blue {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
}

.why-partners .promise-green {
    background: linear-gradient(135deg, #059669, #115e59);
}

.why-partners .promise-purple {
    background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

.why-partners .promise-sky {
    background: linear-gradient(135deg, #0284c7, #1e40af);
}

.why-partners .promise-emerald {
    background: linear-gradient(135deg, #10b981, #166534);
}

.why-partners .promise-rose {
    background: linear-gradient(135deg, #e11d48, #881337);
}

.why-partners .promise-orange {
    background: linear-gradient(135deg, #ea580c, #9a3412);
}

@media(max-width:991px) {

    .why-partners {
        padding: 70px 0;
    }

    .why-partners .promise-card {
        min-height: 430px;
    }

    .why-partners .promise-card h3 {
        font-size: 24px;
    }
}

@media(max-width:767px) {

    .why-partners {
        padding: 60px 0;
    }

    .why-partners .promise-card {
        padding: 28px;
        min-height: auto;
    }

    .why-partners .icon-box {
        width: 60px;
        height: 60px;
    }

    .why-partners .icon-box i {
        font-size: 24px;
    }

    .promise-card h3 {
        font-size: 22px;
    }

    .why-partners .promise-card .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-partners .promise-card .btn {
        width: 100%;
        text-align: center;
    }
}


/*==============================
    TRUST FEATURES
==============================*/

.trust-features {
    background: #fff;
    border-color: #edf2f7 !important;
}

.trust-features .trust-item {
    padding: 15px 10px;
    transition: .3s;
    border-radius: 16px;
}

/*.trust-features .trust-item:hover {
    background: #f8fafc;
    transform: translateY(-5px);
} */
.trust-features .trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    transition: .3s;
}

/*.trust-features .trust-item:hover .trust-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
} */
.trust-features .trust-icon i {
    font-size: 16px;
}

.trust-features .trust-item h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.25;
}

@media (max-width:767px) {

    .trust-features .trust-item {
        padding: 12px 5px;
    }

    .trust-features .trust-icon {
        width: 46px;
        height: 46px;
    }

    .trust-features .trust-icon i {
        font-size: 18px;
    }

    .trust-features .trust-item h6 {
        font-size: 12px;
    }

}



/*==================================
        CTA SECTION
==================================*/

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--tts-buttton-bg) 0%, var(--tts-buttton-bg1) 100%);
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -140px;
    right: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section .section-subtitle {
    max-width: 576px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.8;
}

.cta-section .section-subtitle strong {
    color: #fff;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 14px;
    background: #fff;
    color: var(--tts-buttton-bg);
    font-weight: 700;
    transition: .35s ease;
    border: none;
    min-width: 220px;
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    color: var(--tts-buttton-bg1);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.cta-btn-primary i {
    transition: .3s;
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-weight: 600;
    min-width: 220px;
    transition: .35s ease;
    background: transparent;
}

.cta-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-4px);
}

@media (max-width:991px) {

    .cta-section {
        padding: 70px 0;
    }

    .cta-section .section-title {
        font-size: 36px;
    }

    .cta-section .section-subtitle {
        font-size: 17px;
    }

}

@media (max-width:767px) {

    .cta-section {
        padding: 60px 0;
    }

    .cta-section .section-title {
        font-size: 30px;
    }

    .cta-section .section-subtitle {
        font-size: 16px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        min-width: 100%;
    }

}