:root {
    --color-primary: #0ea5e9;
    --color-secondary: #555;
    --color-text: #262626;
    --color-bg: #fff;
    --color-btn: #007bff;
    --color-btn-hover: #0056b3;
    --border-radius: 10px;
    --gap-default: 20px;
    --transition-speed: 0.3s;
}

.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    font-size: 20px;
    color: #222222;
    background: #ffffff;
    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;
    box-shadow: 0 4px 16px rgba(17, 17, 26, 0.05), 0 8px 32px rgba(17, 17, 26, 0.05);
}

.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: 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: #E4EBF1;
    margin-right: 8px;
    border-radius: 30px;
}

.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(--color-text);
}

.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(--color-secondary);
    font-size: 14px;
    padding: 2px 0;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

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

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

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

@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: var(--border-radius);
    border: 1px solid #dddddd;
    box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
    overflow: hidden;
    background: var(--color-bg);
    padding: 10px;
    box-shadow: 0 0 7px rgb(0 -1 6 / 6%) inset;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    cursor: pointer;
}

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

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

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

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

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

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

.offer-section .bookingsection button:hover {
    background-color: var(--color-btn-hover);
    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 .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:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.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: 30px;
    }
}

@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:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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


/* ===== ROUTE CARD ===== */
.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 #21a4f9;
    border-radius: 10px;
    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;
    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;
}

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