.logo {
    width: 300px;
    height: 100px;
}




p {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.tealblue {
    background: #1CA7A6;
}


.breadcrumb-main {
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    background-attachment: fixed;
    position: relative;
}


.header_menu .navbar.navbar-default .nav.navbar-nav li a {
    font-weight: 600;
}

.beigebg {
    background: beige;
}

.nir-btn {
    background: orange;
}

a {
    text-decoration: none !important;
}

.counter .counter-content span,
.counter .counter-content h2 {
    color: #fff;
}

.swiper-hero {
    width: 100%;
}

.swiper-hero-slide {
    position: relative;
    background: #000;
}

.swiper-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.swiper-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.swiper-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* Package Detail Page */
.mmt-hero-bg {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.hero-inner {
    position: relative;
    color: #fff;
    padding-top: 140px;
}

.hero-inner h1 {
    font-size: 38px;
    font-weight: 700;
}

.tagline {
    opacity: 0.85;
}

/* BOOKING CARD */
.booking-card {
    margin-top: -60px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* LEFT */
.booking-card .price span {
    font-size: 13px;
    color: #777;
}

.booking-card .price h2 {
    margin: 0;
    color: #008cff;
    font-weight: 700;
}

.booking-card .price small {
    text-decoration: line-through;

    color: #aaa;
}

ul.list-style-1 {
    padding-left: 0 !important;
    list-style: none !important;
    display: block !important;
    margin-bottom: 15px !important;
}

ul.list-style-1 li {
    position: relative !important;
    padding-left: 25px !important;
    margin-bottom: 8px !important;
    display: block !important;
    line-height: 1.6 !important;
    color: #777;
}

ul.list-style-1 li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #029e9d;
    /* Theme Color */
    border-radius: 50%;
}

/* CTA */
.btn-book {
    background: #ff6d38;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.btn-enquiry {
    margin-left: 10px;
    border: 2px solid #008cff;
    padding: 10px 20px;
    border-radius: 30px;
    color: #008cff;
    text-decoration: none;
}


/* HOVER */
.btn-book:hover {
    background: #e85c2b;
}

.btn-enquiry:hover {
    background: #008cff;
    color: #fff;
}

.mmt-hero {
    padding-top: 0px;
}

footer .footer-copyright .copyright-inner {
    background: transparent;
}

.sticky-wrapper {
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Multi-line Truncation Utility */
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Premium Card Shadow System */
.box-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease !important;
}

.box-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12) !important;
}

.hover-theme {
    transition: color 0.3s;
}

.hover-theme:hover {
    color: #029e9d !important;
}

.btn-outline-theme {
    border: 1px solid #029e9d;
    color: #029e9d !important;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-theme:hover {
    background: #029e9d;
    color: white !important;
}

.btn-theme {
    background: #029e9d;
    color: white;
    border: none;
    transition: all 0.3s;
}

.btn-theme:hover {
    background: #17233e;
    transform: translateY(-1px);
}