    /* =========================
    Owl Carousel Buttons
    ========================= */
    .nav-center .owl-nav button.owl-next,
    .nav-center .owl-nav button.owl-prev {
        width: 50px;
        height: 50px;
        font-size: 20px;
        color: #fff;
        background-color: var(--primary-color);
        border: none;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-shadow: none;
        box-shadow: 0 4px 16px rgba(17, 17, 26, 0.05), 0 8px 32px rgba(17, 17, 26, 0.05);
        transition: all 0.3s ease;
    }

    .nav-center .owl-nav button.owl-next:hover,
    .nav-center .owl-nav button.owl-prev:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(17, 17, 26, 0.1), 0 12px 40px rgba(17, 17, 26, 0.1);
    }

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

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

    @media (max-width: 998.99px) {
        .nav-center .owl-nav button.owl-prev {
            left: 10px;
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .nav-center .owl-nav button.owl-next {
            right: 10px;
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
    }


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

    .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: #E4EBF1;
        margin: 0 4px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

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

    .headingblock {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap-default);
        margin-bottom: 25px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }

    .headingblock .wrap {
        display: flex;
        align-items: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .headingblock .heading-one {
        font-size: 26px;
        margin: 0;
        color: var(--dark-bg);
    }

    .headingblock .heading-one span {
        font-size: 23px;
        font-weight: 600;
    }

    .headingblock .nav {
        display: flex;
        gap: 15px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .headingblock .nav li a {
        margin-top: 3px;
        color: var(--dark-bg);
        font-size: 14px;
        padding: 2px 0;
        font-weight: 600;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        transition: color 0.5s ease, border-color 0.5s ease;
    }

    .headingblock .nav li a.active,
    .headingblock .nav li a.show {
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .headingblock .view-all a {
        text-decoration: none;
        color: var(--primary-color);
        font-weight: 500;
        transition: color 0.5s ease;
    }

    .headingblock .view-all a:hover {
        color: var(--primary-color);
    }

    @media (max-width: 768px) {
        .headingblock {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .headingblock .wrap {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .headingblock .view-all {
            align-self: flex-start;
        }
    }

    /* OFFER SECTION */
    .offer-section {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 50px 0;
    }

    .offer-section .item-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-radius: 10px;
        border: 1px solid #dddddd;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        overflow: hidden;
        background: var(--white-color);
        padding: 10px;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        cursor: pointer;
    }

    .offer-section .imgsection {
        position: relative;
    }

    .offer-section .imgsection img.card-img {
        width: 100%;
        border-radius: 10px;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .offer-section .offer-content {
        position: relative;
        width: 100%;
        padding: 10px 0px;
        background-color: var(--white-color);
        color: var(--dark-bg);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
    }

    .offer-section .imgsection .offer-badge {
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 10px;
        background-color: var(--tts-buttton-bg);
        color: var(--tts-buttton-txt);
        font-size: 12px;
        padding: 2px 10px;
        text-transform: capitalize;
    }

    .offer-section .offeritemDesc h3 {
        font-size: 13px;
        margin: 0 0 8px;
        color: var(--dark-bg);
    }

    .offer-section .offeritemDesc p {
        font-size: 12px;
        color: var(--dark-bg);
        margin: 0;
    }

    .offer-section .bookingsection {
        margin-top: 10px;
        text-align: right;
    }

    .offer-section .bookingsection button {
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        padding: 6px 12px;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.5s ease, transform 0.2s ease;
    }

    .offer-section .bookingsection button:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .item-box {
            max-width: 100%;
        }

        .offer-content {
            padding: 12px 15px;
        }

        .offeritemDesc h3 {
            font-size: 16px;
        }

        .offeritemDesc p {
            font-size: 13px;
        }

        .bookingsection button {
            padding: 6px 12px;
            font-size: 13px;
        }
    }



    /* ===============================
    Holiday Theme Section
    ================================= */

    .holidays-theme {
        padding: 50px 0;
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
    }

    .holidays-theme .headingblock .heading-one{
        color: #fff;
    }


    .holidays-theme .sec-title-center .sub-title-center,
    .holidays-theme .sec-title-center h2 {
        color: #fff;
    }

    .holidays-theme .sec-title-center .sub-title-center::before,
    .holidays-theme .sec-title-center .sub-title-center::after {
        background-color: #fff;
    }

    .holidays-theme .item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .holidays-theme .destination-item {
        position: relative;
        width: clamp(150px, 18vw, 220px);
        aspect-ratio: 1 / 1;
        padding: 8px;
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        cursor: pointer;
        transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
    }

    .holidays-theme .destination-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
    }

    .holidays-theme .destination-item:hover img {
        transform: scale(1.15);
    }

    .holidays-theme .filenameicon {
        position: absolute;
        top: 12px;
        right: 12px;
        width: clamp(30px, 4vw, 45px);
        aspect-ratio: 1 / 1;
        padding: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
        object-fit: contain;
        z-index: 3;
        transition: transform 0.3s ease;
    }

    .holidays-theme .destination-item:hover .filenameicon {
        transform: rotate(12deg) scale(1.08);
    }

    .holidays-theme .destination-overlay {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(6px);
        border: 8px solid rgba(255, 255, 255, 1);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 2;
    }

    .holidays-theme .destination-item:hover .destination-overlay {
        opacity: 1;
    }

    .holidays-theme .destination-overlay h5 {
        font-size: clamp(14px, 1.2vw, 18px);
        font-weight: 600;
        margin-bottom: 6px;
        color: #fff;
    }

    .holidays-theme .destination-overlay span {
        font-size: clamp(12px, 1vw, 14px);
        opacity: 0.9;
        color: #fff;
    }

    @media (max-width: 480px) {
        .holidays-theme .destination-overlay {
            backdrop-filter: blur(3px);
        }
    }



    /* ===============================
    Feature Area
    ================================= */

    .feature-area {
        padding: 50px 0;
    }

    .feature-item {
        background: #ffffff;
        padding: 35px 25px;
        text-align: center;
        border-radius: 16px;
        height: 100%;
        transition: all 0.4s ease;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(221, 221, 221);
        position: relative;
        overflow: hidden;
    }

    .feature-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .feature-item:hover::before {
        opacity: 0.05;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0386c9;
        border-radius: 50%;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .feature-item:hover .feature-icon {
        transform: rotate(8deg) scale(1.08);
        background: #e0f2fe;
    }

    .feature-icon img {
        filter: brightness(0) invert(1);
        max-width: 45px;
        transition: transform 0.4s ease;
    }

    .feature-item:hover .feature-icon img {
        transform: scale(1.1);
        filter: brightness(1) invert(0);
    }

    .feature-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #0f172a;
        position: relative;
        z-index: 1;
    }

    .feature-item p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    @media (max-width: 991px) {
        .feature-item {
            margin-bottom: 20px;
            height: auto;
        }
    }

    @media (max-width: 576px) {
        .feature-item {
            padding: 25px 20px;
        }

        .feature-title {
            font-size: 18px;
        }

        .feature-item p {
            font-size: 14px;
        }
    }



    /* =====================================
    BLOG SECTION
    ===================================== */

    .recent-posts {
        padding: 50px 0;
        position: relative;
    }

    .recent-posts .title-area {
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .recent-posts .sub-title {
        font-size: 16px;
        font-weight: 700;
        color: #0ea5e9;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .recent-posts .sec-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 0;
        text-transform: capitalize;
        color: #111;
    }

    .recent-posts .sec-btn {
        margin-bottom: 50px;
    }

    .recent-posts .ot-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        padding: 14px 28px;
        min-width: 170px;

        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;

        color: #fff;
        background: #0ea5e9;
        border: none;
        border-radius: 50px;

        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .recent-posts .ot-btn:hover {
        background: #ffcc00;
        color: #000;
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .recent-posts .ot-btn i {
        transition: transform 0.3s ease;
    }

    .recent-posts .ot-btn:hover i {
        transform: translateX(5px);
    }

    .blog-card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(221, 221, 221);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin: 10px 0;
    }

    .blog-card .blog-img {
        overflow: hidden;
        position: relative;
    }

    .blog-card .blog-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .blog-card .blog-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-card .blog-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 20px;
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 18px;
    }

    .blog-card .blog-meta a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-card .blog-meta a:hover {
        color: #0ea5e9;
    }

    .blog-card .blog-meta i {
        margin-right: 6px;
        color: #0ea5e9;
    }

    .blog-card .blog-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #0f172a;
        position: relative;
        z-index: 1;
    }

    .blog-card .blog-title a {
        color: #111;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-card .blog-title a:hover {
        color: #0ea5e9;
    }

    .link-btn {
        margin-top: auto;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.5px;
        color: #0ea5e9;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
    }

    .link-btn i {
        transition: transform 0.3s ease;
    }

    .link-btn:hover {
        color: #000;
    }

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

    @media (max-width: 991px) {

        .recent-posts .title-area {
            text-align: center;
            margin-bottom: 20px;
        }

        .recent-posts .sub-title {
            justify-content: center;
        }

        .recent-posts .sec-btn {
            text-align: center;
            margin-top: 20px;
        }

        .blog-card .blog-img img {
            height: 200px;
        }
    }

    @media (max-width: 576px) {

        .recent-posts .sec-title {
            font-size: 26px;
        }

        .recent-posts .sub-title {
            font-size: 14px;
        }

        .recent-posts .ot-btn {
            padding: 12px 22px;
            font-size: 13px;
        }

        .blog-card .blog-content {
            padding: 18px;
        }

        .blog-card .blog-title {
            font-size: 18px;
        }

        .blog-card .blog-img img {
            height: 180px;
        }
    }

    /* =====================================
    Flight Routes SECTION
    ===================================== */
    .popular_destination {
        padding: 50px 0;
    }

    .routes_box {
        display: flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        overflow: hidden;
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        position: relative;
        will-change: transform;
        border: 1px solid var(--primary-color);
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 8px;
    }

    .routes_box .route-card__image-wrapper {
        flex-shrink: 0;
        width: 72px;
        height: 68px;
        border-radius: 10px;
        overflow: hidden;
    }

    .routes_box .route-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .routes_box .route-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .routes_box .route-card__cities {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .routes_box .route-card__codes {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #0ea5e9;
        padding-top: 6px;
    }

    .routes_box .route-card__separator {
        width: 20px;
        height: 2px;
        background: linear-gradient(to right, #ccc, #aaa);
        border-radius: 2px;
    }

    .routes_box .route-card__pricing {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 6px;
    }


    .routes_box .route-card__departure-date {
        color: #777;
        font-size: 12px;
    }

    .routes_box .route-card__price {
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: baseline;
        color: #000;

    }

    .routes_box .time {
        font-size: 12px;
        color: #adb5bd;
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 4px;
    }

    .routes_box .time i {
        font-size: 11px;
    }


    /* =====================================
    Trending Destinations Section
    ===================================== */
    .tour-destinations {
        padding: 50px 0;
        background: #f9f9f9;
    }

    .tour-destinations .tour-category-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background-color: #fff;
        cursor: pointer;
        margin-bottom: 20px;
        height: 350px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .tour-destinations .tour-category-img {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .tour-destinations .tour-category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .tour-destinations .tour-category-card:hover .tour-category-img img {
        transform: scale(1.1);
    }

    .tour-destinations .destination-type {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--primary-color);
        color: var(--white-color);
        font-size: 12px;
        padding: 5px 12px;
        border-radius: 30px;
        z-index: 2;
    }

    .tour-destinations .tour-overlay-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 20px 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
        border-radius: 0 0 15px 15px;
        color: #fff;
        opacity: 0;
        transform: translateY(100%);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .tour-destinations .tour-category-card:hover .tour-overlay-wrapper {
        opacity: 1;
        transform: translateY(0);
    }

    .tour-destinations .tour-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    .tour-destinations .tour-price {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .tour-destinations .tour-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Large desktops (>= 1200px) */
    @media (min-width: 1200px) {
        .tour-destinations .tour-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* Medium desktops / tablets (992px - 1199px) */
    @media (max-width: 1199px) and (min-width: 768px) {
        .tour-destinations .tour-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .tour-destinations .tour-title {
            font-size: 1.5rem;
        }

        .tour-destinations .tour-price {
            font-size: 1.3rem;
        }

        .tour-destinations .tour-category-card {
            height: 320px;
        }
    }

    /* Small tablets / large phones (576px - 767px) */
    @media (max-width: 767px) and (min-width: 576px) {
        .tour-destinations .tour-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .tour-destinations .tour-title {
            font-size: 1.3rem;
        }

        .tour-destinations .tour-price {
            font-size: 1.1rem;
        }

        .tour-destinations .tour-category-card {
            height: 280px;
        }
    }

    @media (max-width: 575px) {
        .tour-destinations .tour-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .tour-destinations .tour-category-card {
            margin-bottom: 15px;
            height: 250px;
        }

        .tour-destinations .tour-title {
            font-size: 1.2rem;
        }

        .tour-destinations .tour-price {
            font-size: 1rem;
        }

        .tour-destinations .tour-overlay-wrapper {
            padding: 15px 20px;
        }
    }

    /* =====================================
    Transfer SECTION
    ===================================== */
    .transfer-section {
        padding: 50px 0;
        background-color: #f9f9f9;
    }

    .transfer-section .transfer-card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(221, 221, 221);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin: 10px;
    }

    .transfer-card__link:hover {
        color: inherit;
    }

    .transfer-section .transfer-card__image {
        position: relative;
        overflow: hidden;
        margin: 0;
        height: 250px;
    }

    .transfer-section .transfer-card__image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }

    .transfer-section .transfer-card:hover .transfer-card__image img {
        transform: scale(1.05);
    }

    .transfer-section .transfer-card__caption h4 {
        position: absolute;
        bottom: 8px;
        left: 12px;
        display: inline-block;
        background: var(--primary-color);
        color: #fff;
        font-size: 12px;
        padding: 2px 6px;
        margin-top: 4px;
        border-radius: 4px;
        font-weight: normal;
        margin: 0;
    }

    .transfer-section .transfer-card__badge {
        position: absolute;
        top: 8px;
        right: 12px;
        display: inline-block;
        background: var(--secondary-color);
        color: #fff;
        font-size: 12px;
        padding: 2px 6px;
        margin-top: 4px;
        border-radius: 4px;
    }

    .transfer-section .transfer-card__body {
        padding: 16px;
    }

    .transfer-section .transfer-card__title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .transfer-section .transfer-card:hover .transfer-card__title {
        color: var(--primary-color);
    }



    .transfer-section .transfer-card__details {
        list-style: none;
        padding: 0;
        margin: 0 0 12px 0;
    }

    .transfer-section .transfer-card__details li {
        margin-bottom: 6px;
    }

    .transfer-section .transfer-card__price {
        font-weight: bold;
        font-size: 22px;
    }

    .transfer-section .transfer-card__btn {
        display: block;
        width: 100%;
        padding: 10px 0;
        background: #e76f51;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
    }

    .transfer-section .transfer-card__btn:hover {
        background: #d65a3f;
    }

    /* ===============================
    Testimonials
    ================================= */
    .testimonials {
        background: rgb(249, 249, 249);
        padding: 50px 0;
    }

    .testimonials .testimonial-wrap {
        background: #ffffff;
        padding: 35px 25px;
        border-radius: 16px;
        height: 100%;
        transition: all 0.4s ease;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(221, 221, 221);
        position: relative;
        overflow: hidden;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        position: relative;
    }

    .testimonials .testimonial-item p i {
        color: #f39c12;
        font-size: 1.2rem;
    }

    .testimonials .testimonial-img {
        width: 70px !important;
        height: 70px !important;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 1px solid rgb(221, 221, 221);
    }

    .testimonials .stars i {
        color: #f39c12;
        margin-right: 2px;
    }

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



    /*--------------------------------------------------------------
        # Blog Posts Section
        --------------------------------------------------------------*/
    .recent-posts {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .recent-posts .post-item {
        background: var(--bg-white);
        box-shadow: var(--box-shadow);
        border-radius: 15px;
        transition: 0.3s;
        overflow: hidden;
    }

    .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: var(--tts-buttton-txt);
        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: #000;
        font-size: 18px;
        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, #000, transparent 50%);
    }

    .recent-posts .post-item hr {
        color: color-mix(in srgb, #000, 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, #000, 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);
    }


    /* ===============================
    Trending-hotels
    ================================= */
    .trending-hotels {
        padding: 50px 0;
    }

    .hotel-item {
        background: #ffffff;
        border-radius: 16px;
        height: 100%;
        transition: all 0.4s ease;
        box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(221, 221, 221);
        position: relative;
        overflow: hidden;
        display: block;
    }

    .hotel-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .hotel-img {
        position: relative;
        overflow: hidden;
        height: 220px;
    }

    .hotel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .hotel-content {
        padding: 16px 18px;
    }

    .hotel-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

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

    .hotel-title a:hover {
        color: #0ea5e9;
    }

    .hotel-rate {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 10px;
        align-items: center;
        font-size: 13px;
        color: #555;
    }

    .hotel-rate .badge {
        background: #fff7e6;
        padding: 3px 6px;
        border-radius: 6px;
        display: flex;
        gap: 2px;
    }

    .hotel-rate .fa-star {
        color: #fbbf24;
        font-size: 12px;
    }

    .hotel-rate-review {
        font-weight: 600;
        color: #111;
    }

    .hotel-rate-type {
        background: #0ea5e9;
        color: #fff;
        font-size: 11px;
        padding: 2px 8px;
        border-radius: 20px;
    }

    .hotel-item .stretched-link {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    @media (max-width: 991px) {
        .hotel-img {
            height: 200px;
        }

        .hotel-title {
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .hotel-img {
            height: 180px;
        }

        .hotel-content {
            padding: 14px;
        }

        .hotel-rate {
            font-size: 12px;
        }

        .hotel-rate-type {
            font-size: 10px;
        }
    }