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



/*********************************
  Deals & Offers Section
**********************************/

/* --------------------
   Base / Mobile First
-------------------- */
.offer-section {
    padding: 90px 0 70px;
    background: #ffffff;
    overflow: hidden;
}

.prdct_inner {
    background: #0ea5e9;
    padding: 35px 20px 30px;
    border-radius: 30px;
    position: relative;
}

.prdct_inner::before,
.prdct_inner::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 145px;
    width: 145px;
    background: #fff;
    display: block;
}

.prdct_inner::before {
    left: -46px;
    border-radius: 0 50% 50% 0;
}

.prdct_inner::after {
    right: -46px;
    border-radius: 50% 0 0 50%;
}

.offer-section .headingblock {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.offer-section .headingblock .heading-one {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.offer-section .headingblock .heading-one span {
    color: #ffcc00;
}

.offer-section .nav-tabs {
    border: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
}

.offer-section .nav-tabs .nav-link {
    border: none;
    background: #f2f2f2;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.offer-section .nav-tabs .nav-link:hover {
    background: #e6e6e6;
    color: #000;
}

.offer-section .nav-tabs .nav-link.active,
.offer-section .nav-tabs .nav-link.show {
    background: #ffffff;
    color: #0ea5e9;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-section .nav-tabs .nav-link:focus {
    box-shadow: none;
}

.offer-section .item {
    padding: 80px 15px 30px;
}

.offer-section a {
    text-decoration: none;
    display: block;
}

.offer-section .prdct_crrd {
    background: #ffffff;
    padding: 130px 25px 23px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.offer-section .prdct_crrd:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.offer-section .pcrdimgbg {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: #ffffff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 6px solid #0ea5e9;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.offer-section .prdct_crrd .pcrrd_hdng {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.offer-section .prdct_crrd p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.offer-section .owl-theme .owl-nav [class*=owl-] {
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.offer-section .owl-prev,
.offer-section .owl-next {
    display: none;
    /* hidden by default on mobile */
}

/* --------------------
   Tablet / Medium Devices
-------------------- */
@media (min-width: 576px) {
    .prdct_inner {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .pcrdimgbg {
        width: 130px;
        height: 130px;
        top: -55px;
    }

    .prdct_crrd {
        padding: 100px 20px 30px;
    }

    .heading-one {
        font-size: 28px;
    }
}

/* --------------------
   Large Tablets / Small Desktops
-------------------- */
@media (min-width: 992px) {
    .offer-section {
        padding: 90px 0 70px;
    }

    .prdct_inner {
        padding: 50px 60px 30px;
        border-radius: 30px;
    }

    .owl-prev,
    .owl-next {
        display: block;
    }

    .heading-one {
        font-size: 36px;
    }

    .pcrdimgbg {
        width: 160px;
        height: 160px;
        top: -70px;
    }

    .prdct_crrd {
        padding: 120px 25px 35px;
    }

    .prdct_inner::before {
        left: -46px;
    }

    .prdct_inner::after {
        right: -46px;
    }

    .offer-section .owl-prev span,
    .offer-section .owl-next span {
        position: absolute;
        bottom: 160px;
        font-size: 30px;
        background-size: 37%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 35px;
        border-radius: 50%;
        box-shadow: 0px 5px 32px 1px rgba(100, 100, 100, 0.25);
        z-index: 99;
    }

    .offer-section .owl-prev span {
        left: -100px;
    }

    .offer-section .owl-next span {
        right: -100px;
    }
}


@media (max-width: 600px) {

    .prdct_inner::before,
    .prdct_inner::after {
        display: none;
    }

    .offer-section .headingblock {
        flex-direction: column;
    }

    .offer-section .owl-nav {
        text-align: center;
    }

    .offer-section .owl-theme .owl-nav [class*=owl-] {
        font-size: 14px;
        margin: 5px;
        padding: 4px 7px !important;
        background: #ffffff;
        display: inline-block;
        cursor: pointer;
        border-radius: 50%;
    }
}

/* --------------------
   Extra Large Desktop (>1500px)
-------------------- */
@media (min-width: 1500px) {
    .prdct_inner::before {
        left: -66px;
    }

    .prdct_inner::after {
        right: -66px;
    }

    .offer-section .owl-prev span {
        left: -100px;
    }

    .offer-section .owl-next span {
        right: -100px;
    }
}


/* ================= Container & Section ================= */
.benefit-section {
    position: relative;
    padding: 80px 0 50px;
    background: url('/../webroot/img/home-sectionbg.jpg') center top / cover no-repeat;
    overflow: hidden;
}

.benefit-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

/* ---------------- Section Title ---------------- */
.sec-title-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.sec-title-center .sub-title-center {
    font-size: 14px;
    color: #0ea5e9;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.sec-title-center .sub-title-center::before,
.sec-title-center .sub-title-center::after {
    content: "";
    position: absolute;
    background-color: #0ea5e9;
}

.sec-title-center .sub-title-center::before {
    top: -12px;
    left: 50%;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
}

.sec-title-center .sub-title-center::after {
    top: -8px;
    left: 50%;
    width: 40px;
    height: 3px;
    transform: translateX(-50%);
}

.sec-title-center h2 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin: 0;
}

/* ---------------- Card Styles ---------------- */
.benefit-section .card-benefit {
    position: relative;
    overflow: hidden;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(17, 17, 26, 0.05), 0 8px 32px rgba(17, 17, 26, 0.05);
    transition: transform 0.4s, box-shadow 0.4s;
    z-index: 2;
}

.benefit-section .card-benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(17, 17, 26, 0.15), 0 20px 40px rgba(17, 17, 26, 0.1);
}

/* Hover Background Effect */
.benefit-section .card-benefit::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0ea5e9;
    border-radius: 0 0 0 500px;
    transform: scale(0);
    transform-origin: right top;
    transition: transform 0.4s ease;
    z-index: -1;
}

.benefit-section .card-benefit:hover::after {
    transform: scale(1.5);
}

/* Number Badge */
.benefit-section .card-number {
    position: absolute;
    right: -20px;
    top: -30px;
    height: 100px;
    width: 100px;
    background-color: #0ea5e9;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    transition: transform 0.3s;
}

.benefit-section .card-number em {
    font-style: normal;
    font-size: 30px;
    font-weight: 800;
    position: absolute;
    left: 25px;
    bottom: 20px;
}

/* Icon Styles */
.icon-box-main {
    position: relative;
    z-index: 2;
}

.icon-box-benefit {
    font-size: 30px;
    color: #0ea5e9;
    margin-bottom: 20px;
    transition: transform 0.3s, color 0.3s;
}

.card-benefit:hover .icon-box-benefit {
    color: #fff;
}

.icon-box-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #18191c;
}

.card-benefit:hover .icon-box-title {
    color: #ffffff;
}

.sec-text {
    color: #6f7174;
}

.card-benefit:hover .sec-text {
    color: #ffffff;
}

/* ---------------- Responsive Media Queries ---------------- */

/* Tablet Devices */
@media (min-width: 576px) {
    .card-benefit {
        padding: 30px 20px;
    }

    .sec-title-center h2 {
        font-size: 30px;
    }

    .icon-box-benefit {
        font-size: 35px;
    }

    .card-number {
        height: 120px;
        width: 120px;
        right: -35px;
        top: -50px;
    }

    .icon-box-title {
        font-size: 18px;
    }
}

/* Desktop Devices */
@media (min-width: 992px) {
    .benefit-section {
        padding: 80px 0 50px;
    }

    .card-benefit {
        padding: 40px 30px;
    }

    .sec-title-center h2 {
        font-size: 36px;
    }

    .icon-box-benefit {
        font-size: 40px;
    }

    .card-number {
        height: 140px;
        width: 140px;
        right: -40px;
        top: -60px;
    }

    .icon-box-title {
        font-size: 18px;
    }
}





/* ===============================
   Holiday Theme Section
================================= */
.holidays-theme {
    padding: 80px 0;
    background-color: #0ea5e9;
}

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

.holidays-theme .destination-item {
    position: relative;
    height: 220px;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

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


.holidays-theme .destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.holidays-theme .filenameicon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    z-index: 2;
}

.holidays-theme .destination-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    z-index: 1;
}

.holidays-theme .destination-item:hover .destination-overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 30px;
}

.holidays-theme .destination-overlay h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    text-align: center;
}

.holidays-theme .destination-overlay span {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .holidays-theme .destination-item {
        height: 180px;
    }

    .holidays-theme .destination-overlay h5 {
        font-size: 16px;
    }

    .holidays-theme .destination-overlay span {
        font-size: 12px;
    }

    .holidays-theme .filenameicon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .holidays-theme .destination-item {
        height: 150px;
    }

    .holidays-theme .destination-overlay {
        padding: 10px;
    }
}


/* Routes link reset */
.route_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
}

.route_content:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.route_image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.origin_destination {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 20px;
}

.origin_destination .elip {
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.origin_destination .time {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 3px 0;
}

.price_go.dest {
    text-align: right;
}

.price_go .low-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff5722;
}

.price_go .low-price .rs {
    font-weight: normal;
    margin-right: 2px;
    color: #333;
}

@media screen and (max-width: 768px) {
    .route_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .origin_destination {
        margin: 10px 0;
    }

    .price_go.dest {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .route_image img {
        width: 100%;
        max-width: 150px;
        height: auto;
    }
}





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

.recent-posts {
    padding: 80px 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 5px 25px rgba(0, 0, 0, 0.05);
    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: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

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