/* =======================
   GLOBAL
======================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px;
}

/* =======================
   NAVBAR
======================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .navbar .container {
        max-width: 100% !important;
        padding: 0 5px !important;
    }

.nav-logo img {
    height: 45px;
}

/* Sale button */
.navbar .btn-outline-success {
    padding: 3px 12px !important;
    font-size: 15px;
    font-weight: 700;
    border-width: 2px;
}

    .navbar .btn-outline-success .badge {
        font-size: 10px;
        padding: 3px 6px;
        font-weight: 700;
    }

/* Phone icon */
.phone-icon {
    width: 36px;
    height: 36px;
    background: #f1f3f5;
    border-radius: 50%;
    font-size: 17px;
    color: #198754;
}

/* =======================
   DROPDOWNS (DESKTOP)
======================= */
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        background: #E8F4FF;
        border-radius: 8px;
        padding: 10px 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        margin-top: 18px;
    }

        .dropdown-menu::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 30px;
            border-width: 0 10px 10px 10px;
            border-style: solid;
            border-color: transparent transparent #E8F4FF transparent;
        }

    .dropdown-item {
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        color: #333 !important;
    }

        .dropdown-item:hover {
            background: rgba(0,0,0,0.05);
            border-radius: 6px;
        }

    /* SUBMENU */
    .dropdown-submenu {
        position: relative;
    }

        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
            top: 0;
            left: 100%;
        }
}

/* ================= MOBILE / TABLET MENU CONTROL ================= */
/* ================= MOBILE & TABLET (<=1024px) ================= */
@media (max-width: 1024px) {

    /* hide menu */
    .navbar-collapse {
        display: none !important;
    }

    /* show toggle */
    .navbar-toggler {
        display: block !important;
    }

    /* logo alignment */
    .navbar-brand img {
        height: 45px;
    }

    /* when toggled */
    .navbar-collapse.show {
        display: block !important;
        background: #fff;
        padding: 15px;
    }
}
@media (min-width: 1025px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
}


/* =======================
   FOOTER
======================= */
.footer-logo img {
    height: 60px;
}

footer a {
    text-decoration: none;
    color: #000;
}

    footer a:hover {
        text-decoration: underline;
    }
/*  index page*/

/*Hero section*/

/* ================= HERO SECTION ================= */

.hero-section {
    background: url("../img/homepage.jpg") center/cover no-repeat;
    min-height: 100vh;
    position: relative;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

/* TEXT ROTATION */
.place-box {
    display: inline-block;
    height: 65px;
    overflow: hidden;
}

.place-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.7s ease;
}

    .place-list span {
        height: 65px;
        line-height: 65px;
        font-size: clamp(36px, 6vw, 65px);
        font-weight: 700;
        color: #afde1e;
    }

.highlight {
    color: #afde1e;
    font-weight: 700;
}

.search-box input {
    height: 65px;
    max-width: 370px !important;
    border-radius: 50px 0 0 50px;
}

.search-box .btn {
    height: 65px;
    border-radius: 0 50px 50px 0;
    padding: 0 30px;
    font-size: 18px;
}
.search-wrapper {
    position: relative; /* parent reference */
    display: inline-flex;
    align-items: center;
}
/* REVIEW SLIDER */
.review-slider {
    height: 420px;
    overflow: hidden;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    height: 130px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .review-slider {
        height: auto;
    }

    .review-card {
        height: auto;
    }
}

/* ================= TREK TOUR SECTION ================= */

.trek-filter-list label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    cursor: pointer;
}

/* ================= SLIDER ================= */

.trek-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.trek-slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: trekSlideMove 14s linear infinite;
}

.trek-slide-card {
    width: 320px;
    flex-shrink: 0;
}

/* ================= CARD ================= */

.trek-tour-card {
    position: relative;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
}

    .trek-tour-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .trek-tour-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.75));
    }

.trek-days {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(0,0,0,0.5);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    z-index: 2;
}

.trek-card-info {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
}

    .trek-card-info h5 {
        font-weight: 700;
        font-size: 16px;
    }

.trek-route {
    background: rgba(255,255,255,0.25);
    padding: 5px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
}

.trek-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 8px;
}

/* ================= ANIMATION ================= */

@keyframes trekSlideMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .trek-slider-track {
        animation: none;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .trek-slide-card {
        width: 260px;
    }

    .trek-filter-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}
.tour-filters .filter-item {
    display: block;
    margin-bottom: 12px;
    font-size: 17px;
    cursor: pointer;
}

.two-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slide-track {
    display: flex;
    gap: 20px;
    width: calc(200%);
    animation: slideRTL 12s linear infinite;
}

.slide-card {
    width: 40%;
    flex-shrink: 0;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes slideRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.banner-box img {
    border-radius: 15px;
}

.tour-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
}

    .tour-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tour-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.65));
    }

    .tour-card .card-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 5;
    }

    .tour-card .route-pill {
        background: rgba(255,255,255,0.2);
        padding: 6px 16px;
        border-radius: 30px;
        backdrop-filter: blur(4px);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 12px;
    }

    .tour-card .days-badge {
        position: absolute;
        top: 15px;
        right: 20px;
        background: rgba(0,0,0,0.45);
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 14px;
    }

.more-btn {
    background: #fff;
    color: #1c1c1c;
    border-radius: 30px;
    padding: 10px 25px;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
}

/* Section header */
.best-treks-section {
    background: #fff;
}

    .best-treks-section .small-cat {
        letter-spacing: 6px;
        color: #8b8b8b;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .best-treks-section .section-title {
        font-size: 44px;
        font-weight: 700;
        margin: 0 0 28px;
        color: #111;
    }

/* slider container & arrows */
.treks-wrap {
    position: relative;
}

.trek-arrow {
    position: absolute;
    top: 16px;
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b6be6;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11,107,230,0.18);
    cursor: pointer;
}

.trek-prev {
    right: 92px;
}

.trek-next {
    right: 24px;
}

/* slider viewport */
.trek-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 0;
}

/* track (flex list) */
.trek-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    will-change: transform;
    /* animation is applied via JS for better control (start/stop/faster) */
}

/* visible 4 cards on desktop */
.trek-card {
    position: relative;
    width: calc((100% - 3*20px) / 4); /* 4 cards with 20px gaps */
    min-width: 220px;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(8, 20, 40, 0.08);
    background: #000;
    color: #fff;
    flex-shrink: 0;
}

    /* image + overlay */
    .trek-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .trek-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.72) 60%);
        pointer-events: none;
    }

/* badges & level pill */
.badge-up {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #d3f04f;
    color: #093400;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 6;
}

    .badge-up small {
        font-size: 10px;
        background: #0b6be6;
        color: #fff;
        padding: 4px 6px;
        border-radius: 6px;
        margin-left: 6px;
    }

.level-pill {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255,255,255,0.95);
    color: #0b6be6;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    z-index: 6;
}

/* inner content in the bottom */
.card-inner {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 6;
    color: #fff;
}

.trek-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.route-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 6px 12px;
    border-radius: 24px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* meta row */
.meta-row {
    display: flex;
    gap: 18px;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 12px;
}

/* price & rating */
.price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.75;
    font-size: 16px;
}

.price-new {
    font-size: 20px;
    font-weight: 700;
}

.rating {
    margin-top: 4px;
    color: #ffd15c;
    font-weight: 700;
    font-size: 14px;
}

/* responsive */
@media (max-width: 1200px) {
    .trek-card {
        width: calc((100% - 2*20px) / 3);
    }
    /* 3 cards */
    .trek-prev {
        right: 80px;
    }
}

@media (max-width: 880px) {
    .trek-card {
        width: calc((100% - 20px) / 2);
    }
    /* 2 cards */
    .trek-prev {
        right: 68px;
    }

    .trek-next {
        right: 12px;
    }
}

@media (max-width: 520px) {
    .trek-card {
        width: 92%;
    }
    /* 1 card mobile */
    .trek-arrow {
        display: none;
    }
}

.view-all-btn {
    display: inline-block;
    padding: 12px 34px;
    background: #0b6be6;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(11,107,230,0.25);
    transition: 0.3s ease;
    text-decoration: none;
}

    .view-all-btn:hover {
        background: #0957ba;
        box-shadow: 0 6px 24px rgba(11,107,230,0.35);
    }

    .view-all-btn i {
        transition: 0.3s ease;
    }

    .view-all-btn:hover i {
        transform: translateX(4px);
    }
/* Section Header New Layout */
.trek-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-head {
    text-align: left;
}

.right-head {
    display: flex;
    gap: 12px;
}

/* Section title */
.small-cat {
    letter-spacing: 6px;
    color: #8b8b8b;
    font-size: 14px;
    margin-bottom: 6px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 28px;
    color: #111;
}

/* Arrow buttons in new layout */
.trek-arrow {
    position: static !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b6be6;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11,107,230,0.18);
    cursor: pointer;
}

/* slider viewport */
.trek-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 0;
}

/* Track */
.trek-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    will-change: transform;
}

/* Cards */
.trek-card {
    position: relative;
    width: calc((100% - 3*20px) / 4);
    min-width: 220px;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(8, 20, 40, 0.08);
    background: #000;
    color: #fff;
    flex-shrink: 0;
}

    .trek-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .trek-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.72) 60%);
    }

/* badges */
.badge-up {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #d3f04f;
    color: #093400;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 6;
}

    .badge-up small {
        font-size: 10px;
        background: #0b6be6;
        color: #fff;
        padding: 4px 6px;
        border-radius: 6px;
    }

/* Responsive */
@media (max-width: 1200px) {
    .trek-card {
        width: calc((100% - 2*20px) / 3);
    }
}

@media (max-width: 880px) {
    .trek-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 520px) {
    .trek-card {
        width: 92%;
    }

    .right-head {
        display: none;
    }
    /* hide arrows on mobile */
}
.full-banner-section {
    width: 100%;
    margin: 10px 0;
}

    .full-banner-section .full-banner-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px; /* remove if you want sharp edges */
    }
.backpacking-section {
    background: #fff;
}

.bp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-cat {
    letter-spacing: 5px;
    color: #777;
    font-size: 14px;
}

.bp-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}

.bp-right {
    display: flex;
    gap: 12px;
}

.bp-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b6be6;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11,107,230,0.2);
    cursor: pointer;
}

.bp-slider {
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
}

.bp-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.bp-card {
    position: relative;
    width: calc((100% - 3*20px)/4);
    min-width: 260px;
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

    .bp-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bp-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.75));
    }

.bp-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    color: #0b6be6;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 5;
}

    .bp-tag.best {
        background: #0b6be6;
        color: #fff;
    }

.bp-off {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #d3f04f;
    color: #000;
    padding: 6px 10px;
    border-radius: 8px;
    z-index: 5;
    font-size: 13px;
    font-weight: 700;
}

    .bp-off small {
        background: #0b6be6;
        color: #fff;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 6px;
    }

.bp-inner {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 5;
}

.bp-trip {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color:#fff;
}

.bp-route {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.bp-meta {
    display: flex;
    gap: 18px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    color: #fff;
}

.bp-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.bp-cut {
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 8px;
}

.bp-rating {
    margin-top: 4px;
    color: #ffd15c;
    font-weight: 700;
}

@media(max-width:1200px) {
    .bp-card {
        width: calc((100% - 2*20px)/3);
    }
}

@media(max-width:880px) {
    .bp-card {
        width: calc((100% - 20px)/2);
    }
}

@media(max-width:520px) {
    .bp-card {
        width: 92%;
    }

    .bp-right {
        display: none;
    }
}

.bp-view-btn {
    background: #0b6be6;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(11,107,230,0.25);
}

    .bp-view-btn:hover {
        background: #0957ba;
    }

/* Heading */
.dst-head {
    text-align: center;
    margin-bottom: 30px;
}

.dst-cat {
    letter-spacing: 6px;
    font-size: 14px;
    color: #777;
}

.dst-title {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

/* Slider */
.dst-slider {
    overflow: hidden;
    width: 100%;
}

.dst-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

/* Card */
.dst-card {
    width: calc((100% - 3*24px) / 4);
    min-width: 260px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Image container */
.dst-img-wrap {
    position: relative;
    height: 350px;
    overflow: hidden;
}

    .dst-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Badge */
.dst-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e8f1ff;
    color: #0b6be6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Price Section */
.dst-bottom {
    display: flex;
    justify-content: space-between;
    padding: 14px 15px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    background: #fff;
}

/* Arrows */
.dst-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bp-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    background: #0b6be6;
    color: #fff;
}

.travel-section {
    background: #fff;
}

.travel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tavel-cat {
    letter-spacing: 5px;
    color: #777;
    font-size: 14px;
}

.tavel-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}

.tavel-right {
    display: flex;
    gap: 12px;
}

.tavel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b6be6;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11,107,230,0.2);
    cursor: pointer;
}

.travel-slider {
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
}

.travel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}


/* Travel Card */
.travel-card {
    position: relative;
    width: 330px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    width: calc((100% - 3*20px)/4);
    min-width: 260px;
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

    .travel-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.travel-package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #0d6efd;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.price-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 75%;
    padding: 12px 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.testimonial-section {
    background: #f5f7fb;
}

/* Heading */
.small-heading {
    letter-spacing: 5px;
    font-size: 14px;
    color: #777;
}

.main-title {
    font-size: 38px;
    font-weight: 700;
}

/* Arrows */
.slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #0b6be6;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-left: 10px;
}

/* Slider */
.testimonial-track {
    gap: 30px;
    transition: transform 0.4s ease;
}

/* Card */
.testimonial-card {
    min-width: 32%;
    max-width: 32%;
    background: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 60px;
    opacity: 0.08;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* User Section */
.user-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.stars {
    color: #f9b414;
    font-size: 14px;
}

.user-name {
    margin: 0;
    font-weight: 600;
}

/* Trip Section */
.trip-card {
    background: #f7faff;
    padding: 12px;
    border-radius: 15px;
}

.trip-img {
    width: 85px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
}

.trip-title {
    margin-bottom: 5px;
    font-size: 15px;
}

.small-btn {
    padding: 4px 12px;
    background: #0b6be6;
    color: #fff;
    border-radius: 30px;
    font-size: 12px;
}

/* -------- MOBILE VIEW: 1 CARD ONLY -------- */
@media (max-width: 768px) {

    .testimonial-track {
        gap: 20px; /* reduce gap for mobile */
    }

    .testimonial-card {
        min-width: 100% !important;
        max-width: 100% !important;
        /* Optional: make it look cleaner */
        padding: 25px;
        border-radius: 18px;
    }

    .testimonial-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .main-title {
        font-size: 26px !important;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .trip-card {
        padding: 10px;
    }

    .trip-img {
        width: 70px;
        height: 50px;
    }
}
@media (max-width: 768px) {
    .testimonial-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-track {
        transform: none !important;
    }

    .testimonial-card {
        scroll-snap-align: center;
    }
}

.masonry-grid {
    column-count: 2; 
    column-gap: 20px; 
}
.masonry-item {
    width: 100%;
    margin-bottom: 20px; 
    border-radius: 18px;
    display: block;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1; 
    }
}

.extra-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

    .extra-content.open {
        max-height: 2000px; /* big enough */
    }

.view-more-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #0b6be6;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.feature-grid {
    margin-top: 50px;
}

.feature-box {
    align-items: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    padding: 12px;
    background: #eaf2ff;
    border-radius: 12px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.feature-sub {
    margin: 0;
    font-size: 15px;
    color: #555;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: #E8F1FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 32px;
    color: #0A66C2;
}
/* ------------------------------
   VIDEO SECTION
------------------------------ */


.video-section {
    width: 100%;
    text-align: center;
    margin: 80px 0;
    overflow: hidden;
}

.video-subtitle {
    letter-spacing: 6px;
    font-size: 16px;
    color: #777;
}

.video-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a813a;
    margin-bottom: 50px;
}

.videoSlider {
    width: 90%;
    margin: auto;
    overflow: visible !important;
}

    .videoSlider .swiper-slide {
        width: 100% !important;
        max-width: 330px;
        height: 200px;
        border-radius: 16px;
        overflow: hidden;
        transition: .35s ease;
    }

    .videoSlider iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* CENTER SLIDE BIGGER (DESKTOP ONLY) */
    .videoSlider .swiper-slide-active {
        transform: scale(1.25);
        z-index: 5;
    }

    /* PREV / NEXT SMALLER */
    .videoSlider .swiper-slide-prev,
    .videoSlider .swiper-slide-next {
        transform: scale(0.85);
        opacity: 0.9;
    }

/* ------------------------------
   MOBILE FIX (100% WORKING)
------------------------------ */
@media (max-width: 480px) {

    .video-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .videoSlider {
        width: 100%;
        overflow: hidden !important;
    }

        .videoSlider .swiper-slide {
            width: 90% !important;
            max-width: 260px;
            height: 160px;
            margin: 0 auto;
        }

        /* Remove all scaling on mobile */
        .videoSlider .swiper-slide-active,
        .videoSlider .swiper-slide-prev,
        .videoSlider .swiper-slide-next {
            transform: none !important;
            opacity: 1 !important;
        }
}
/* Prevent overflow cut on small screens */
.video-section {
    overflow-x: hidden;
}

/* Disable scale effect ONLY on mobile */
@media (max-width: 767px) {

    .videoSlider .swiper-slide-active,
    .videoSlider .swiper-slide-prev,
    .videoSlider .swiper-slide-next {
        transform: none !important;
        opacity: 1 !important;
    }
}
/* container */
.trip-slider-section {
    width: 100%;
    padding: 60px 0 120px; /* extra bottom space for floating info-card */
    box-sizing: border-box;
}

/* swiper wrapper/card */
.swiper {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
}

.card-box {
    position: relative;
    height: 460px; /* enough height to hold image + floating info card */
    box-sizing: border-box;
}

.img-box {
    height: 420px; /* image container */
    overflow: hidden;
    border-radius: 20px;
}

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 20px;
    }

.info-card {
    width: 85%;
    max-width: 320px;
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    position: absolute;
    bottom: -10px; /* floating effect */
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

    .info-card h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 6px 0;
    }

.rating {
    color: #ffa700;
    font-size: 15px;
    margin-top: 4px;
}

    .rating span {
        color: #000;
        font-size: 14px;
        margin-left: 6px;
    }

/* optional: arrows styling */
.swiper-button-next,
.swiper-button-prev {
    color: #111;
}

/* responsive tweaks */
@media (max-width: 1199px) {
    .card-box {
        height: 420px;
    }

    .img-box {
        height: 380px;
    }

    .info-card {
        bottom: -28px;
    }
}

@media (max-width: 991px) {
    .card-box {
        height: 380px;
    }

    .img-box {
        height: 340px;
    }

    .info-card {
        bottom: -24px;
        width: 90%;
        max-width: none;
    }
}

@media (max-width: 575px) {
    .card-box {
        height: 320px;
    }

    .img-box {
        height: 280px;
    }

    .info-card {
        bottom: -20px;
        padding: 12px;
        font-size: 14px;
    }
}

.blog-section {
    width: 100%;
    padding: 40px 0;
}

.blog-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.blog-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

/* LEFT SMALL BLOGS */
.left-blogs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-card-small {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

    .blog-card-small img {
        width: 170px;
        height: 110px;
        object-fit: cover;
        border-radius: 12px;
        margin-right: 15px;
    }

.blog-small-content {
    flex: 1;
}
/* Top row inside small blog card */
.blog-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.blog-date,
.blog-read {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.blog-subtitle {
    letter-spacing: 6px;
    font-size: 16px;
    color: #777;
    text-align: center;
}

.blog-heading {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

/* RIGHT BIG BLOG */
.right-blog {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.blog-card-big img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 18px;
}

.blog-big-content {
    margin-top: 20px;
}

.blog-desc {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
}
.blog-section a {
    text-decoration: none;
    color: inherit; 
}

    .blog-section a:hover {
        color: inherit;
    }

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Small blog card turns vertical */
    .blog-card-small {
        flex-direction: column;
        padding: 15px;
    }

        .blog-card-small img {
            width: 100%;
            height: 180px;
            margin: 0 0 12px 0;
            border-radius: 14px;
        }

    .blog-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .blog-heading {
        font-size: 17px;
        margin-top: 8px;
    }

    /* Right big blog */
    .right-blog {
        padding: 15px;
    }

    .blog-card-big img {
        height: 220px;
    }

    .blog-big-content {
        margin-top: 12px;
    }

    .blog-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {

    .blog-card-small img {
        height: 160px;
    }

    .blog-heading {
        font-size: 16px;
    }

    .blog-desc {
        font-size: 14px;
    }

    .blog-title {
        font-size: 26px;
    }
}

.faq-section {
    width: 90%;
    margin: 50px auto;
}


.faq-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-subtitle {
    letter-spacing: 6px;
    font-size: 16px;
    color: #777;
    text-align: center;
}

.faq-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question h3 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
    }

.faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.view-more-btn {
    margin: 20px auto;
    color: #3461ff;
    padding: 10px 28px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}


.faq-item.active .faq-arrow svg {
    transform: rotate(180deg);
    transition: 0.3s ease;
}


/* MAIN WRAPPER */
.recognitions-section {
    padding: 80px 0;
    width: 90%;
    margin: auto;
}

/* GRID (LEFT IMAGES + RIGHT TEXT) */
.rec-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* LEFT SIDE IMAGE GRID */
.rec-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rec-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

    .rec-box img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
    }

/* RIGHT SECTION CONTENT */
.rec-subtitle {
    letter-spacing: 5px;
    color: #666;
    margin-bottom: 10px;
}

.rec-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.rec-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .rec-grid {
        grid-template-columns: 1fr;
    }

    .rec-left {
        order: 2;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }

    .rec-right {
        order: 1;
    }
}

@media (max-width: 600px) {
    .rec-left {
        grid-template-columns: repeat(2, 1fr);
    }

    .rec-box {
        height: 100px;
    }
}

