/* ================= ROOT VARIABLES ================= */

:root {
    --primary-color: #2CABE2;
    --secondary-color: #71AAD4;
    --white-color: #ffffff;
    --black-color: #000000;
    --form-bg-color: #F6F9FF;
    --submit-btn-color: #0D5472;
    --primary-font: 'Montserrat', sans-serif;
    --title-font: 'Oswald', sans-serif;
    --description-color: #5F5E5E;
    --testimonial-bg: #D9D9D9;
}

/* ================= GLOBAL ================= */

body {
    margin: 0;
    font-family: var(--primary-font);
    color: var(--black-color);
    padding-top: 40px;
    /* prevent overlap */
}

/* ================= TOP NAVBAR ================= */
.top-navbar {
    background: var(--secondary-color);
    min-height: 48px;
    padding: 6px 0;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* ADD THIS */
    width: 100%;
    z-index: 9999;
}

.top-navbar .container-fluid,
.top-navbar .row {
    width: 100%;
}


/* Center Links */
.top-link {
    color: var(--white-color);
    /* FIXED */
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 14px;
    padding: 0 6px;
    transition: 0.3s ease;
}

.top-link:hover {
    opacity: 0.8;
}

.divider {
    color: var(--white-color);
    opacity: 0.7;
    padding: 0 6px;
}

/* ================= PERSONALIZE BUTTON ================= */

/* Outer white border */
.personalize-wrapper {
    border: 2px solid var(--white-color);
    padding: 2px;
    /* reduced */
    display: inline-block;
}

/* Inner blue background */
.personalize-inner {
    background-color: var(--primary-color);
    padding: 5px 18px;
    /* reduced */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Text */
.personalize-text {
    color: var(--white-color);
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 13px;
    /* slightly smaller */
    line-height: 1;
}

/* Hover */
.personalize-wrapper:hover .personalize-inner {
    background-color: #2196cf;
    transition: 0.3s ease;
}

/* ================= MAIN NAVBAR ================= */

.main-navbar {
    position: fixed;
    /* change from absolute */
    top: 40px;
    /* height of top navbar */
    left: 0;
    width: 100%;
    background: #B8D5EA66;
    backdrop-filter: blur(6px);
    z-index: 9998;
    /* just below top-navbar (9999) */
}

/* ================= NAVBAR SOLID ON HOVER ================= */

.main-navbar {
    transition: background 0.3s ease;
}

.main-navbar:hover {
    background: var(--secondary-color);
    backdrop-filter: none;
}


.main-navbar .nav-link {
    color: #ffffff;
    font-weight: 600;
    padding: 25px 18px;
    transition: 0.3s ease;
}

.main-navbar .nav-link:hover {
    color: #000000;
}

/* ================= MEGA DROPDOWN ================= */

.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    z-index: 1100;
    margin-top: 0 !important;
    /* ADD THIS */
}


/* ================= MEGA CARD ================= */

.mega-card {
    display: block;
    text-decoration: none;
    text-align: center;

}


.mega-image-wrapper {
    width: 100%;
    height: 220px;
    background: #eaeaea;
    /* fallback if image fails */
    border-radius: 20px;
    overflow: hidden;
}

.mega-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.mega-card:hover img {
    transform: scale(1.05);
}

.mega-card-title {
    margin-top: 18px;
    padding: 20px 20px;
    display: inline-block;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border-radius: 0;
    /* sharp corners */
    border: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);

    font-weight: 700;
    color: var(--primary-color);
}


/* ================= DESKTOP HOVER DROPDOWN ================= */
@media (min-width: 1400px) {

    .mega-menu {
        display: none;
    }

    .mega-dropdown:hover .mega-menu {
        display: block;
    }

}

/* ================= FLOATING LOGO BLOCK ================= */

.brand-float {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(184, 213, 234, 0.9);
    /* soft tone to match navbar */
    padding: 4px 26px;
    border-bottom-right-radius: 42px;
    border-top-right-radius: 18px;
    display: flex;
    align-items: center;
    z-index: 1200;
    /* above navbar */
    text-decoration: none;
}

.brand-img {
    height: 92px;
    width: auto;
    display: block;
}

.navbar-nav {
    gap: 20px;
}

/* ================= MEGA SWIPER ================= */

.megaSwiper {
    width: 100%;
    padding: 0 70px;
    /* space for arrows */
}

/* Keep card full width inside slide */
.megaSwiper .mega-card {
    width: 100%;
}

.mega-menu .row {
    max-width: 100%;
    margin: 0 auto;
}

/* ================= MEGA ARROWS ================= */

.mega-swiper-prev,
.mega-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: #EAF6FF;
    color: #1E88E5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.mega-swiper-prev {
    left: 10px;
}

.mega-swiper-next {
    right: 10px;
}

.mega-swiper-prev i,
.mega-swiper-next i {
    font-size: 20px;
    line-height: 1;
}

/* optional hover */
.mega-swiper-prev:hover,
.mega-swiper-next:hover {
    filter: brightness(0.97);
}

/* Hide arrows on smaller screens (since mega menu is disabled anyway) */
@media (max-width: 1399.98px) {

    .mega-swiper-prev,
    .mega-swiper-next {
        display: none;
    }
}


/* ================= LOGO BG CHANGE WITH NAVBAR ================= */

.brand-float {
    transition: background 0.3s ease;
}

.main-navbar:hover .brand-float {
    background: var(--secondary-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1399.98px) {

    .brand-float {
        position: static;
        margin-left: 12px;
        border-radius: 18px;
        padding: 10px 14px;
    }

    .brand-img {
        height: 58px;
    }

    .main-navbar .nav-link {
        padding: 12px 0;
        line-height: 1.2;
    }

    .main-navbar {
        padding: 10px 0;
    }
}


/* ================= STICKY SOCIAL BAR (RIGHT SIDE) ================= */
.sticky-social {
    position: fixed;
    right: 0;
    top: 70%;
    /* move lower (adjust as needed) */
    transform: translateY(-50%);
    background: #e6e6e6;
    padding: 20px 12px;
    border-radius: 30px 0 0 30px;
    z-index: 999;
}


.sticky-social a {
    display: block;
    margin: 18px 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.sticky-social img {
    width: 28px;
    height: 28px;
}

.sticky-social a:hover {
    transform: scale(1.15);
}


/* ================= PAGE BANNER ================= */

.page-banner-title {
    font-family: var(--title-font);
    font-size: 85px;
    /* Desktop */
}

/* Tablet */
@media (max-width: 991.98px) {
    .page-banner-title {
        font-size: 55px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .page-banner-title {
        font-size: 36px;
    }
}

/* Move content slightly lower on desktop */
@media (min-width: 992px) {
    .page-banner-overlay {
        padding-bottom: 50px;
        /* increase to move lower */
    }
}

/* Underline styling */
.page-banner-line-light {
    width: 160px;
    height: 4px;
    background-color: var(--white-color);
}

.page-banner-line-dark {
    width: 80px;
    height: 4px;
    background-color: var(--black-color);
}

.description-line-light {
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
}

.description-line-white {
    width: 70px;
    height: 4px;
    background-color: var(--white-color);
}

.description-line-dark {
    width: 40px;
    height: 4px;
    background-color: var(--black-color);
}


/* ================= CONTACT FORM BOX ================= */
.contact-form-box {
    background-color: var(--form-bg-color);
}

.contact-overlay {
    background-color: rgba(113, 170, 212, 0.85);
}

/* Contact Links */
.contact-link {
    color: var(--black-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: var(--white-color);
}


/* ================= GLOBAL SUBMIT BUTTON ================= */

.submit-btn {
    background-color: var(--submit-btn-color);
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 28px;
    border: none;
    border-radius: 0;
    /* SHARP EDGE */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    /* ✅ REMOVE UNDERLINE */

}

/* Hover Effect */
.submit-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: var(--primary-color);
}

/* ================= TITLE STYLE ================= */

.section-title {
    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black-color);
}

/* ================= OFFICE SECTION ================= */

.text-secondary-custom {
    color: var(--secondary-color);
}

/* Country Title */
.office-country {
    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black-color);
    letter-spacing: 1px;
}

/* Underline Style */
.office-underline {
    width: 70px;
    height: 3px;
    margin: 0 auto 30px auto;
    background: var(--secondary-color);
    position: relative;
}

.office-underline::after {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--black-color);
    position: absolute;
    right: -32px;
    top: 1px;
}

.office-card {
    background: var(--white-color);
    border: none;
    box-shadow:
        6px 0 15px rgba(113, 170, 212, 0.25),
        -6px 0 15px rgba(113, 170, 212, 0.25),
        0 15px 25px rgba(113, 170, 212, 0.25),
        0 5px 10px rgba(113, 170, 212, 0.15);
}

/* Text Styles */
.office-title {
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--primary-color);
    /* darker for better contrast */
    margin-bottom: 6px;
}

.office-text {
    font-family: var(--primary-font);
    color: #1f2d3d;
}

.office-link {
    font-family: var(--primary-font);
    color: #1f2d3d;
    text-decoration: none;
    transition: 0.3s ease;
}

/* ================= FOOTER ================= */

.main-footer {
    font-family: var(--primary-font);
}

/* Top Section */
.footer-top {
    background: #0D5472;
    color: #ffffff;
}

.footer-logo {
    max-width: 170px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* ===== Footer Contact ===== */

.footer-contact li {
    margin-bottom: 14px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-contact-icon {
    font-size: 20px;
    color: #FFC107;
    /* Yellow */
    min-width: 22px;
}


/* Social */
.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Affiliations */
.affiliation-box {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.affiliation-item {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliation-item img {
    max-width: 40px;
}

/* Supported */
.supported-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.supported-box img {
    max-height: 50px;
}

/* Subscribe */
.footer-subscribe .form-control {
    border-radius: 0;
    border: none;
}

.btn-subscribe {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
}

.btn-subscribe:hover {
    background: var(--primary-color);
}

/* Bottom Footer */
.footer-bottom {
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
}

.bottom-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

.bottom-link:hover {
    color: var(--primary-color);
}

.bottom-text {
    color: #000000;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-top {
        text-align: center;
    }

    .footer-contact a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .affiliation-box,
    .supported-box {
        justify-content: center;
    }
}

/* ================= DESTINATION SECTION ================= */

/* Card wrapper */
.destination-card {
    height: 480px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Image */
.destination-img {
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Overlay Content */
.overlay-content h3 {
    font-family: var(--title-font);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.overlay-content p {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* White bottom strip */
.destination-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    padding: 16px 0;
    text-align: center;
    transition: opacity 0.4s ease;
}

.destination-label p {
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
}

/* Underline styling */
.destination-line-light {
    width: 160px;
    height: 4px;
    background-color: var(--secondary-color);
}

.destination-line-dark {
    width: 80px;
    height: 4px;
    background-color: var(--black-color);
}

/* Hover Effects */
.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-card:hover .destination-label {
    opacity: 0;
}

/* ================= DESCRIPTION TEXT ================= */

.description-text {
    color: var(--description-color);
    font-family: var(--primary-font);
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
}

/* ================= TREKKING CARDS hover effect ================= */

.transition-img,
.transition-content,
.trekking-title {
    transition: all 0.4s ease;
}

.trekking-card:hover .transition-img {
    height: 100% !important;
}

.trekking-card:hover .transition-content {
    height: 100% !important;
    background: transparent !important;
}

.trekking-card:hover .trekking-title {
    color: #ffffff;
}

/* ================= ACTIVITY CARD ================= */

.activity-card {
    border-radius: 0;
    cursor: pointer;
    transition: 0.45s ease;
}

/* GAP between image and card border (like screenshot) */
.activity-image-wrap {
    padding: 18px 18px 0 18px;
    /* controls the white border gap */
}

.activity-img {
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Title spacing */
.activity-content {
    padding-top: 22px;
}

/* Hidden list by default */
.activity-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.55s ease, opacity 0.35s ease;
}

/* Button: centered by default */
.activity-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    transition: 0.45s ease;
}

/* ================= HOVER: expand downward + show list + move button right ================= */

.activity-card:hover .activity-list {
    max-height: 280px;
    /* enough for 4 bullets */
    opacity: 1;
}

/* Move button down-right on hover */
.activity-card:hover .activity-btn-wrap {
    justify-content: flex-end;
    margin-top: 22px;
}

/* Remove anchor blue color completely */
.expedition-link {
    color: #000;
    display: block;
}

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

/* ================= CARD ================= */

.expedition-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    border-radius: 6px;
    transition: 0.4s ease;
}

/* ================= IMAGE WRAPPER ================= */

.expedition-image-wrapper {
    position: relative;
    height: 500px;
    /* FIXED HEIGHT */
    background: #f2f2f2;
    overflow: hidden;
}

/* ================= IMAGE ================= */

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

/* Image zoom only (NO height change) */
.expedition-card:hover .expedition-img {
    transform: scale(1.08);
}

/* ================= BOTTOM TITLE ================= */

.expedition-bottom {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
    transition: opacity 0.3s ease;
}

/* Title Styling (Always Black) */
.expedition-title {
    font-family: var(--title-font);
    font-size: 30px;
    font-weight: 700;
    color: #000;
    transition: 0.4s ease;
}

/* Hide bottom title on hover */
.expedition-card:hover .expedition-bottom {
    opacity: 0;
}

/* ================= OVERLAY ================= */

.expedition-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

/* Show overlay */
.expedition-card:hover .expedition-overlay {
    opacity: 1;
}

/* ================= STATS ================= */

.expedition-stats {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Animate stats upward */
.expedition-card:hover .expedition-stats {
    transform: translateY(0);
    opacity: 1;
}


/* ================= DESKTOP ================= */
@media (min-width: 992px) {

    .policy-tabs {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .policy-sticky {
        position: sticky;
        top: 120px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .policy-tabs {
        display: flex;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .policy-tabs::-webkit-scrollbar {
        display: none;
    }
}

/* ================= TAB STYLE ================= */

.policy-tab {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 14px 22px;
    font-family: var(--title-font);
    white-space: nowrap;
    flex: 0 0 auto;
    transition: 0.3s ease;
}

.policy-tab:hover {
    background: var(--primary-color);
}

.active-tab {
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* ================= BACKGROUND ================= */

.policy-bg {
    min-height: 650px;
    object-fit: cover;
}

/* Hide all content */
.tab-content {
    display: none;
}

/* Show active content */
.active-content {
    display: block;
}

/* Highlighted DUCTION */
.team-intro-highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

/* Underline container */
.team-intro-underline {
    position: absolute;
    left: 0;
    bottom: -10px;
    display: flex;
    gap: 8px;
}

/* team intro Lines */
.team-intro-line-light {
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
}

.team-intro-line-dark {
    width: 40px;
    height: 3px;
    background: var(--black-color);
}


/* ================= GUIDE TEAM SECTION ================= */

.guide-team-section {
    background: var(--white-color);
}

/* Title */
.guide-team-title {
    font-family: var(--title-font);
    font-size: 38px;
    letter-spacing: 1px;
    color: var(--black-color);
}

.guide-team-title span {
    color: var(--secondary-color);
}

/* Underline Lines */
.team-intro-line-light {
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
}

.team-intro-line-dark {
    width: 40px;
    height: 3px;
    background: var(--black-color);
}

/* Card Link Reset */
.team-card-link {
    text-decoration: none;
}

/* Card */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    /* Sharp edges */
    background: var(--testimonial-bg);
    height: 380px;
    width: calc(100% - 20px);

}

/* Image Wrapper */
.team-image-wrapper {
    width: 100%;
    height: 100%;
    background: var(--testimonial-bg);
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

/* Overlay */
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    /* Light overlay */
    color: var(--black-color);
    opacity: 0;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
}

/* Hover Effect */
.team-card:hover .team-overlay {
    opacity: 1;
}

/* Optional subtle zoom */
.team-card:hover img {
    transform: scale(1.05);
}

/* Overlay Content */
.team-overlay-content h4 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black-color);
}

.team-overlay-content p {
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--black-color);
    margin-bottom: 20px;
}

/* Bottom Role Overlay */
.team-role {
    position: absolute;
    bottom: 0;
    /* Keep original bottom position */
    left: 50%;
    transform: translateX(-50%);

    background: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;

    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);

    white-space: nowrap;
    /* Box only as wide as text */
}

/* ================= TEAM DETAIL LINES ================= */

.teamdetail-line-light {
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
}

.teamdetail-line-dark {
    width: 40px;
    height: 3px;
    background: var(--black-color);
}

/* ================= ACHIEVEMENTS SECTION ================= */

.achievement-left-title {
    font-family: var(--title-font);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.achievements-line-light {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.achievements-line-dark {
    width: 40px;
    height: 3px;
    background: var(--black-color);
}

/* Certificate */
.certificate-box {
    width: 100%;
    max-width: 520px;
    height: 330px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.certificate-box img {
    max-width: 480px;
    max-height: 300px;
    object-fit: contain;
}

/* Navigation */
.achievements-prev-btn,
.achievements-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 20;
}

.achievements-prev-btn {
    left: -40px;
}

.achievements-next-btn {
    right: -40px;
}

.achievements-prev-btn i,
.achievements-next-btn i {
    font-size: 28px;
    color: var(--black-color);
}

/* Responsive */
@media (max-width: 991px) {

    .achievements-prev-btn {
        left: -10px;
    }

    .achievements-next-btn {
        right: -10px;
    }

    .certificate-box {
        height: 260px;
    }

    .certificate-box img {
        max-height: 220px;
    }
}

/* ================= TEAM DETAIL GALLERY ================= */
.gallery-item {
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ================= STATS CARD ================= */

.stats-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
}

.stats-inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.stats-inner img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.stats-content h2 {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.stats-content p {
    margin-top: 6px;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
}

/* Hover */
.stats-card:hover {
    background: var(--secondary-color);
    transform: translateY(-6px);
}

.stats-card:hover h2,
.stats-card:hover p {
    color: #ffffff;
}

/* Search position fix for mobile */
.banner-search {
    top: 60%;
}

@media (max-width: 576px) {
    .banner-search {
        top: 45%;
    }

    /* move up so it doesn't hide */
}

@media (max-width: 576px) {
    .banner-img {
        height: 75vh !important;
        min-height: 520px !important;
    }
}

@media (max-width: 576px) {
    .banner-search-box {
        padding: 10px 12px !important;
        flex-wrap: wrap;
        /* allows button to drop if needed */
        gap: 10px;
    }

    .banner-search-box .submit-btn {
        width: 100%;
        margin-left: 0 !important;
    }
}



.section-line-light {
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-line-dark {
    width: 20px;
    height: 3px;
    background-color: var(--black-color);
}

/* ================= WHY CARDS ================= */

.why-card {
    background: var(--white-color);
    padding: 28px 20px;
    border-radius: 4px;

    /* Bottom dominant shadow */
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

/* Hover shadow in primary color */
.why-card:hover {
    box-shadow: 0 12px 22px rgba(44, 171, 226, 0.35);
    transform: translateY(-4px);
}

.why-card h6 {
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================= VIDEO WRAPPER ================= */

.video-wrapper {
    position: relative;
    width: 100%;
    /* important: allow full column width */
}

/* ================= VIDEO BOX ================= */

.video-box {
    width: 100%;
    height: 520px;
    /* increase if needed */
    background: var(--white-color);

    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);

    overflow: hidden;
    position: relative;
    z-index: 3;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Fallback overlay */
.video-fallback {
    position: absolute;
    inset: 0;
    background: var(--form-bg-color);
    z-index: 2;
}

/* ================= BACKGROUND STRIPS ================= */

/* Bottom strip */
.video-bottom-strip {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 90%;
    height: 50px;
    /* thickness */
    background: #d7e4ec;
    z-index: 1;
}

/* Right strip - same thickness */
.video-right-strip {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 50px;
    /* same as bottom height */
    height: 75%;
    background: #d7e4ec;
    z-index: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .video-box {
        height: 360px;
    }

    .video-bottom-strip,
    .video-right-strip {
        display: none;
    }
}

.testimonial-swiper-wrapper {
    max-width: 1320px;
    /* same as bootstrap container */
    margin: auto;
    position: relative;
}

/* ================= TESTIMONIAL ARROWS ================= */

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}

.testimonial-prev i,
.testimonial-next i {
    font-size: 22px;
    color: var(--secondary-color);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
}

.testimonial-prev:hover i,
.testimonial-next:hover i {
    color: #ffffff;
}

/* Now arrows align OUTSIDE card but INSIDE container width */

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

/* Responsive */
@media (max-width: 1400px) {
    .testimonial-prev {
        left: -30px;
    }

    .testimonial-next {
        right: -30px;
    }
}

@media (max-width: 1200px) {

    .testimonial-prev,
    .testimonial-next {
        display: none;
    }
}


.read-more-btn {
    display: none;
}

.d-inline-block {
    display: inline-block !important;
}

/* ================= CLICKABLE CARD ================= */
.package-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ================= CARD ================= */
.package-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

/* no lifting */
.package-card * {
    transition: 0.3s ease;
}

/* ================= IMAGE FAIL SAFE ================= */
.package-img-wrap {
    height: 260px;
    background: #dfe8ea;
    /* keeps UI stable if image fails */
    position: relative;
    overflow: hidden;
}

/* image fills wrapper */
.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* optional fallback label (always present, looks fine even when image loads) */
.package-img-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

/* If image loads, we hide fallback using CSS only (no JS needed) */
.package-img-wrap img:not([style*="display: none"])+.package-img-fallback {
    opacity: 0;
}

/* ================= FEATURED BADGE ================= */
.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--submit-btn-color);
    padding: 10px 18px;
    z-index: 6;
}

.featured-badge span {
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
}

/* ================= DISCOUNT (YOUR CLIP PATH) ================= */
.discount-ribbon {
    position: absolute;
    top: -44px;
    /* pulls up so clipped top touches card border */
    left: -14px;
    /* slight right */
    width: 160px;
    height: 160px;
    background: var(--submit-btn-color);
    /* same as featured initially */
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 50% 55.5%, 25% 75%);
    z-index: 6;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.discount-ribbon span {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 13px;
    /* smaller so OFF never cuts */
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--white-color);
}

/* ================= BODY + HOVER GRADIENT ONLY ================= */
.package-body {
    position: relative;
    background: #fff;
    padding: 22px 22px 130px 22px;
    /* reserve space for hover info (no stretch) */
}

/* gradient appears only on hover */
.package-card:hover .package-body {
    background: linear-gradient(115deg, #ffffff 55%, var(--submit-btn-color) 160%);
}

/* badges turn primary on hover */
.package-card:hover .discount-ribbon,
.package-card:hover .featured-badge {
    background: var(--primary-color);
}

/* ================= TITLE BLOCK ALIGNMENT ================= */
/* 2-column grid: icon column + content column.
   Stars and calendar go under the title (content column only). */
.title-grid {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    align-items: start;
}

.loc-ico {
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1;
    margin-top: 3px;
}

/* title one line */
.package-title {
    font-family: var(--primary-font);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 19px;
    /* slightly smaller */
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stars + calendar aligned under title (not under icon) */
.under-title {
    grid-column: 2 / 3;
}

/* rating */
.package-rating {
    color: #f5b301;
    margin-top: 8px;
    margin-bottom: 14px;
}

/* days + button same line */
.package-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.package-row .submit-btn {
    white-space: nowrap;
    padding: 10px 22px;
}

/* ================= HOVER INFO WITHOUT STRETCH ================= */
.hover-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.package-card:hover .hover-info {
    opacity: 1;
    transform: translateY(0);
}

.hover-sep {
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 14px 0 16px;
}

.hover-item-title {
    font-family: var(--primary-font);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.hover-item-value {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}

/* ===== BLOG TITLE CLAMP ===== */
.blog-title {
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;

    -webkit-line-clamp: 2;
    line-clamp: 2;

    overflow: hidden;
    min-height: 48px;
}

/* ===== BLOG DESCRIPTION CLAMP ===== */
.blog-desc {
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;

    -webkit-line-clamp: 3;
    line-clamp: 3;

    overflow: hidden;
    min-height: 60px;
}

/* ===== CUSTOM PAGINATION STYLE ===== */

.pagination .page-link {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    margin: 0 4px;
    font-weight: 600;
    font-family: var(--primary-font);
    border-radius: 0;
    /* sharp corners */
    background: #fff;
    box-shadow: none;
}

/* Active */
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Hover */
.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ================= STEP TAB STYLES ================= */

.step-box {
    border-radius: 8px;
    padding: 14px 0;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: 0.3s ease;
}

/* Inactive */
.step-inactive {
    background: #ffffff;
    color: var(--secondary-color);
}

/* Active */
.step-active {
    background: var(--secondary-color);
    color: #ffffff;
}

/* Circle */
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 8px;
}

/* Inactive Circle */
.step-inactive .step-circle {
    background: #f8f9fa;
    color: var(--secondary-color);
}

/* Active Circle */
.step-active .step-circle {
    background: #ffffff;
    color: var(--secondary-color);
}

/* ================= FAQ ================= */
/* ================= FAQ TABS ================= */
.faq-tab-btn {
    background: #fff;
    border: none;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-tab-btn.active {
    background: var(--secondary-color);
    color: #fff;
}

/* ================= TITLE LINES ================= */
.title-line-primary {
    width: 45px;
    height: 3px;
    background: var(--secondary-color);
}

.title-line-dark {
    width: 25px;
    height: 3px;
    background: #000;
}

/* ================= FAQ PANEL ================= */
.faq-box {
    background: rgba(113, 170, 212, 0.65);
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

/* ================= QUESTIONS ================= */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.faq-question:focus {
    outline: none;
    box-shadow: none;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
}

/* Rotate + when open */
.faq-question:not(.collapsed) .faq-icon {
    content: "-";
}

/* Remove white background completely from FAQ accordion */
.faq-box .accordion-item {
    background: transparent !important;
    border: none;
}

.faq-box .accordion-collapse {
    background: transparent !important;
}

.faq-box .accordion-body {
    background: transparent !important;
    padding: 10px 0 20px 0;
}

/* Remove any Bootstrap default shadow */
.faq-box .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
}

.faq-box .accordion-button:not(.collapsed) {
    background: transparent !important;
    box-shadow: none !important;
}

.search-packages-section {
    padding-top: 160px;
    /* increased to avoid navbar overlap */
}

.info-item {
    padding: 15px 10px;
}

.info-item:not(:last-child) {
    border-color: var(--secondary-color) !important;
}

/* Scroll area height equals approx 3 items */
.departure-scroll {
    max-height: 230px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Date item spacing */
.departure-item {
    padding: 14px 10px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Make vertical dividers thicker */
.info-item.border-end {
    border-right: 3px solid var(--secondary-color) !important;
}

/* Active selected */
.departure-item.active {
    border: 2px solid var(--primary-color) !important;
}

/* Scrollbar */
.departure-scroll::-webkit-scrollbar {
    width: 6px;
}

.departure-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* ================= GALLERY ================= */

.gallery-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #dcdcdc;
    border-radius: 4px;
}

/* Adjusted heights to match perfectly */
.large-box {
    height: 524px;
    /* Increased from 500px */
}

.small-box {
    height: 156px;
}

/* Image styling */
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.gallery-box:hover img {
    transform: scale(1.05);
}

.gallery-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    background: linear-gradient(135deg, #e0e0e0 0%, #d2d2d2 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .large-box {
        height: 350px;
    }

    .small-box {
        height: 200px;
    }
}

.itinerary-box {
    background: #9ebbd0;
    padding: 20px;
}

.itinerary-scroll {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 8px;
}

.itinerary-scroll::-webkit-scrollbar {
    width: 7px;
}

.itinerary-scroll::-webkit-scrollbar-thumb {
    background: rgba(13, 84, 114, 0.6);
    border-radius: 10px;
}

.day-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.day-header {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.day-body {
    display: none;
    margin-top: 8px;
    padding-left: 120px;
    /* Adjust this value */
}



.day-item.open .day-body {
    display: block;
}

.day-desc {
    font-size: 15px;
}

.day-meta {
    font-size: 14px;
}

.day-meta i {
    font-size: 18px;
}

/* Tabs */
.ie-tab {
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
}

.ie-tab-in {
    background: #e6f6e6;
    color: #1b8b1b;
}

.ie-tab-ex {
    background: #fdeaea;
    color: #c62828;
}

.ie-tab.active-tab.ie-tab-in {
    background: #1b8b1b;
    color: #fff;
}

.ie-tab.active-tab.ie-tab-ex {
    background: #c62828;
    color: #fff;
}

.ie-content {
    display: none;
}

.ie-content.active-content {
    display: block;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
}

.dot-green {
    background: #3dbb3d;
}

.dot-red {
    background: #e53935;
}



/* ================= LEFT BLUE PANEL ================= */

.gear-wrapper {
    background: var(--secondary-color);
    padding: 40px;
}

/* Tab Buttons */
.gear-tab-btn {
    background: var(--white-color);
    border: none;
    padding: 10px 24px;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.active-gear-tab {
    background: var(--submit-btn-color);
    color: var(--white-color);
}

/* Tab Content White Box */
.gear-content {
    display: none;
    background: var(--white-color);
    padding: 30px;
}

.active-gear-content {
    display: block;
}

/* List Styling */
.gear-list {
    list-style: disc;
    padding-left: 20px;
}

.gear-list li {
    margin-bottom: 18px;
}

.gear-list strong {
    color: var(--secondary-color);
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366 !important;
    color: #fff !important;
}

.expert-card {
    min-height: 110px;
    background: #fff;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06);
    /* bottom border shadow */
    transition: 0.3s ease;
    cursor: pointer;
}

.expert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}


.certificate-item img {
    width: 100%;
    max-height: 320px;
    /* Bigger than before */
    object-fit: contain;
    transition: transform 0.4s ease;
}

.certificate-item:hover img {
    transform: scale(1.04);
}

/* ================= WHY TRUST US CIRCLE ================= */

.trust-circle-wrapper {
    width: 220px;
    height: 220px;
    border: 3px dashed var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-circle-inner {
    width: 170px;
    height: 170px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-circle-inner img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

/* ================= VALUE CARDS ================= */

.value-card {
    background: var(--secondary-color);
    color: var(--white-color);
    min-height: 180px;
    transition: 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-icon {
    font-size: 32px;
    color: var(--white-color);
}

/* ================= MISSION SECTION ================= */

.mission-wrapper {
    background: #6f9dbf;
    /* similar blue tone */
}

.mission-box {
    border: 4px solid #ffffff;
    padding: 25px;
    min-height: 300px;
    background: transparent;
}

.mission-img-box {
    min-height: 300px;
}

.mission-img-box img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}

.object-fit-cover {
    object-fit: cover;
}

/* ================= TOP RIGHT CLIP ART ================= */

.top-clip-art {
    position: absolute;
    top: -10px;
    right: 150px;
    /* adjust if needed */
    width: 100px;
    /* control width */
    height: 200px;
    /* control height */
    background-color: #fff;

    clip-path: polygon(23.25% 2.25%,
            75% 2.25%,
            76.89% 92.17%,
            50.2% 65.62%,
            23.65% 92.31%);

    z-index: 2;
}


.object-fit-cover {
    object-fit: cover;
}

.story-overlay {
    background-color: rgba(113, 170, 212, 0.6);
    z-index: -1;
}

.description-line-light {
    width: 50px;
    height: 2px;
    background-color: var(--white-color);
}

.description-line-dark {
    width: 25px;
    height: 4px;
    background-color: var(--primary-color);
}


.clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}