/* ========================================
   CSS Variables - Color Scheme & Fonts
   ======================================== */
:root {
    /* Main Colors */
    --primary-color: #0d6efd;
    --secondary-color: #ff6b35;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white-color: #ffffff;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #0d6dfdd6 0%, #0052ccbf 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(13, 110, 253, 0.9) 0%,
        rgba(0, 82, 204, 0.85) 100%
    );

    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Poppins", sans-serif;

    /* Spacing */
    --section-padding: 40px 0;
    --transition: all 0.3s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--dark-color);
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.635),
        transparent
    );

    transform: skewX(-20deg);
    animation: shineMove 2.5s infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

.top-contact {
    margin: 0px 0px;
}

.top-contact a {
    color: var(--light-color);
    margin-right: 25px;
    display: inline-block;
}

.top-contact a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-social a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    margin-left: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.top-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   Navigation
   ======================================== */
.main-navbar {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.main-navbar .nav-shell {
    display: block;
    padding: 0;
}

.main-navbar .main-nav-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0 10px;
}

.main-navbar .navbar-brand {
    max-width: 150px;
    margin-right: 0;
}

.main-navbar .navbar-brand img {
    width: 100%;
}

.main-navbar .main-nav-search {
    flex: 1;
    max-width: 530px;
    border: 1px solid #d8d8d8;
    border-radius: 28px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #fff;
}

.main-navbar .main-nav-search i {
    color: #8e8e8e;
    margin-right: 10px;
}

.main-navbar .main-nav-search input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
    color: #4b4b4b;
}

.main-navbar .main-nav-meta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-navbar .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #3c3c3c;
    line-height: 1.1;
    white-space: nowrap;
}

.main-navbar .meta-item i {
    color: #8a8a8a;
    font-size: 20px;
}

.main-navbar .meta-item strong {
    display: block;
    color: #171717;
    font-size: 13px;
}

.main-navbar .main-nav-phone {
    font-weight: 700;
    color: #1d1d1d;
    white-space: nowrap;
}

.main-navbar .main-nav-phone i {
    font-size: 14px;
}

.main-navbar .main-nav-bottom {
    display: flex;
    align-items: center;

    border-top: 1px solid #ececec;
}

.main-navbar .navbar-collapse {
    flex-grow: 1;
    justify-content: space-between;
}

.main-navbar .navbar-nav {
    align-items: center;
    flex-wrap: nowrap;
}

.main-navbar .navbar-nav .nav-link {
    color: #202020;
    font-weight: 700;
    padding: 11px 9px !important;
    font-size: 15px;
    margin: 0;
    border-radius: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    color: var(--secondary-color);
    background: transparent;
}

.main-navbar .navbar-toggler {
    border: none;
    padding: 8px;
    margin-left: auto;
}

.main-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.main-navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.main-navbar .dropdown-item {
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 500;
}

.main-navbar .dropdown-item:hover {
    background: rgba(222, 43, 43, 0.1);
    color: var(--secondary-color);
}

.main-navbar .nav-expert-btn {
    border-radius: 0;
    min-width: 150px;
    background: var(--secondary-color) !important;
    border: 0;
    box-shadow: none;
    padding: 11px 16px;
    font-size: 15px;
    color: #fff !important;
}

.main-navbar .nav-expert-btn:hover {
    background: #d62626 !important;
    color: #fff !important;
    box-shadow: none;
}

@media (max-width: 991px) {
    .main-navbar {
        padding: 3px 0;
        background: rgba(255, 255, 255, 0.98);
    }
    .main-navbar.scrolled {
        padding: 4px 0px;
    }

    .main-navbar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-navbar .main-nav-top {
        display: none !important;
    }

    .main-navbar .main-nav-bottom {
        width: 100%;
        border-top: 0;
        background: transparent;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .main-navbar .navbar-brand {
        max-width: 130px;
    }

    .main-navbar .navbar-toggler {
        width: 35px;
        height: 35px;
        border-radius: 5px;
        background: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-navbar .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.96)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.2em;
        height: 1.2em;
    }

    .main-navbar .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid rgba(13, 110, 253, 0.12);
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
        box-shadow: 0 16px 35px rgba(8, 31, 82, 0.12);
    }

    .main-navbar .navbar-nav {
        width: 100%;
        gap: 6px;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .main-navbar .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 14px !important;
        border-radius: 12px;
        font-size: 14px;
    }

    .main-navbar .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    .main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 6px;
        border-radius: 12px;
        box-shadow: none;
        background: #f2f7ff;
    }

    .main-navbar .nav-expert-btn {
        display: block;
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        border-radius: 10px;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(231, 130, 6, 0.4);
    background: #fff;
    color: var(--secondary-color);
}

/* ========================================
   Hero Section
   ======================================== */

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

/* Subtitle */
.section-subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.section-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgb(253 241 124 / 27%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    padding: 1px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.section-subtitle i {
    color: #ff6b36;
    font-size: 20px;
}

.section-subtitle::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    display: block;
}

.section-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    color: #111;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.section-title span {
    position: relative;
    color: var(--secondary-color);
    display: inline-block;
    font-family: fantasy;
    letter-spacing: 2px;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 12px;
    background: rgba(255, 166, 0, 0.25);
    z-index: -1;
    border-radius: 20px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 620px;
    margin: 0;
}
/* Start Hero Section */
.home-hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* Image First */
.home-hero-bg-image {
    position: absolute;
    inset: 0;
    background: url("/assets/images/bg-hero-home.png") no-repeat center center /
        cover;
    z-index: 1;
}

/* Video */
.home-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;

    opacity: 0;
    transition: opacity 1.2s ease;
}

/* Video Loaded */
.home-hero-video.video-loaded {
    opacity: 1;
}

/* Overlay */
.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    background: linear-gradient(
        to right,
        rgb(0 0 0 / 27%),
        rgb(0 0 0 / 27%),
        rgba(0, 0, 0, 0.2)
    );
}

/* Content */
.home-hero-content {
    position: relative;
    z-index: 4;
    color: #fff;
    margin: 0 auto;
    top: 110px;
}

.home-hero-content h1 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.home-hero-content h1 span {
    color: #ffb703;
}

.home-hero-content p {
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    text-align: center;
}

.home-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.home-hero-btn-primary,
.home-hero-btn-secondary {
    text-decoration: none;
    padding: 6px 30px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
}

.home-hero-btn-primary {
    background: #ffb703;
    color: #000;
}

.home-hero-btn-primary:hover {
    transform: translateY(-3px);
}

.home-hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.home-hero-btn-secondary:hover {
    background: #fff;
    color: #000;
}

.home-hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.home-hero-features-box {
    min-width: 250px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(18 18 18 / 43%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.home-hero-features-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 183, 3, 0.4);
}

.home-hero-features-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;

    border-radius: 50%;
    background: #ffb703;

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

    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
}

.home-hero-features-icon i {
    font-size: 26px;
    color: #111;
}

.home-hero-features-content h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.home-hero-features-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Responsive */

@media (max-width: 767px) {
    .home-hero-features {
        gap: 5px;
        padding-bottom: 95px;
    }

    .home-hero-features-box {
        min-width: 100%;
        padding: 16px;
        border-radius: 10px;
    }

    .home-hero-features-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .home-hero-features-icon i {
        font-size: 20px;
    }

    .home-hero-features-content h4 {
        font-size: 16px;
    }

    .home-hero-features-content p {
        font-size: 14px;
    }
}
.home-search-form {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.home-search-box {
    position: relative;
    width: 100%;
}

.home-search-box input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 0 65px 0 20px;
    font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    color: #222;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.home-search-box input::placeholder {
    color: #9ca3af;
}

.home-search-box input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.home-search-box button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35, #eea425);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-search-box button:hover {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .home-hero-section {
        min-height: auto;
        padding: 120px 0px 80px;
    }

    .home-hero-content h1 {
        font-size: 30px;
        line-height: 35px;
    }

    .home-hero-content p {
        font-size: 14px;
        line-height: 28px;
    }

    .home-hero-btn-primary,
    .home-hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* home About Us */
.home-about-us-section {
    background: #f8f9fb;
    overflow: hidden;
}

.home-about-us-image-main {
    position: relative;
}

.home-about-us-image-main img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
}

.home-about-us-image-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.home-about-us-image-card h4 {
    font-size: 35px;
    margin-bottom: 5px;
    color: #ff9800;
    font-weight: 800;
}

.home-about-us-image-card p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

.home-about-us-content p {
    font-size: 17px;
    line-height: 32px;
    color: #666;
}

.home-about-us-feature-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.home-about-us-feature-box {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.home-about-us-feature-box i {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #ffb703;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.home-about-us-feature-box h5 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #111;
}

.home-about-us-feature-box span {
    color: #666;
    font-size: 15px;
    line-height: 26px;
}

.home-about-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 35px;
    background: #ffb703;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
}

.home-about-us-btn:hover {
    transform: translateY(-4px);
    background: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .home-about-us-section {
        padding: 70px 0px;
    }

    .home-about-us-content {
        padding-left: 0px;
        margin-top: 40px;
    }

    .home-about-us-content h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .home-about-us-image-main img {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .home-about-us-content h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .home-about-us-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .home-about-us-image-main img {
        height: 350px;
    }

    .home-about-us-image-card {
        padding: 18px 20px;
        left: 15px;
        bottom: 15px;
    }

    .home-about-us-image-card h4 {
        font-size: 30px;
    }

    .home-about-us-feature-box {
        flex-direction: column;
    }
}

/* Destination */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

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

.destination-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 1;
}

.destination-card.large {
    height: 100%;
    max-height: 370px;
    border-radius: 10px;
}
.destination-card.large img {
    border-radius: 10px;
    height: 100%;
}

.destination-card:not(.large) {
    height: 151px;
}

.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: 0.4s ease;
}

.destination-card:hover .overlay {
    background: linear-gradient(
        to top,
        rgba(245, 231, 128, 0.78),
        rgba(255, 140, 0, 0)
    );
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card .content {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 2;
    color: #fff;
}

.destination-outer-content-below {
    padding: 5px;
    background-color: #fb960824;
}

.destination-outer-content-below p {
    margin-bottom: 0px;
    font-size: 12px;
    color: #797575;
}

.destination-outer-content-below p span {
    color: #000;
    font-weight: 600;
}

.destination-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}

.destination-card span {
    font-size: 12px;
    letter-spacing: 0px;
}

/* Mixup Card Section */
.all-mixup-tour-section {
    position: relative;
    background-image: url("/assets/images/micupcard-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.all-mixup-tour-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 238 108 / 13%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.all-mixup-tour-section .container,
.all-mixup-tour-section .row {
    position: relative;
    z-index: 2;
}

.all-mixup-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    height: 100%;
}

.all-mixup-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.all-mixup-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.all-mixup-card:hover .all-mixup-card-image img {
    transform: scale(1.08);
}

.all-mixup-card-days {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff8a00, #ff5e00);
    color: #fff;
    padding: 1px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 115, 0, 0.25);
}

.all-mixup-card-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ff4d6d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.all-mixup-card-content {
    padding: 5px 10px 15px 10px;
}

.all-mixup-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 5px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.all-mixup-card-route {
    color: #ff7b00;
    font-size: 14px;
    align-items: center;
    margin-bottom: 0px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.all-mixup-card-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin: 10px 0px;
}

.feature-item {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    border: 1px solid #f0c640;
}

.all-mixup-card-features .feature-item:hover .feature-img img {
    transform: rotateY(180deg);
    transition: transform 0.8s ease;
}

.feature-img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-item span {
    font-size: 10px;
    font-weight: 700;
    color: #374151;
}

.all-mixup-card-price-wrap {
    display: flex;
    gap: 1px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex: 1;
}

.all-mixup-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    font-size: 12px;
}

.expert-btn,
.whatsapp-btn,
.inquire-btn,
.details-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    transition: 0.3s ease;
}

.expert-btn {
    border: 1px solid #ff8a00;
    color: #111827;
    padding: 6px 12px;
    border-radius: 5px;
}

.whatsapp-btn {
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
}

.expert-btn:hover,
.whatsapp-btn:hover,
.inquire-btn:hover,
.details-btn:hover {
    transform: translateY(-3px);
}

.all-mixup-card-price {
    text-align: center;
    flex: 1;
}

.all-mixup-card-price small {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.all-mixup-card-price h4 {
    font-size: 20px;
    margin: 0;
    line-height: 1;
    font-weight: 900;
    color: #ff7b00;
}

.all-mixup-card-bottom-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    font-size: 11px;
}

.inquire-btn {
    border: 1px solid #ff8a00;
    color: #111827;
    padding: 6px;
    border-radius: 5px;
}

.details-btn {
    background: linear-gradient(135deg, #ff8a00, #ff3d5a);
    color: #fff;
    padding: 6px;
    border-radius: 5px;
}

/* <!-- Top Selling Tour Packages --> */

.tour-package-card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: 0.4s ease;
}

.tour-package-card-img {
    position: relative;
    height: 275px;
    overflow: hidden;
}

.tour-package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.tour-package-card:hover img {
    transform: scale(1.08);
}

.tour-package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 15%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.tour-package-badge {
    position: absolute;
    top: 15px;
    left: 0px;
    background: #fff91f;
    padding: 3px 8px;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    font-weight: 700;
    font-size: 12px;
    color: #000;
}

.tour-package-badge i {
    width: 15px;
    height: 15px;
    background: #000;
    color: #fff91f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.tour-package-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
}

.tour-package-content h3 {
    font-size: 14px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 3px;
}

.tour-package-line {
    width: 70px;
    height: 2px;
    background: #fff91f;
    border-radius: 20px;
    margin-bottom: 0px;
}

.tour-package-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 0px 6px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tour-package-info-item {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.tour-package-info-item i {
    color: #fff91f;
    font-size: 12px;
}

.tour-package-info-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.tour-package-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 8px 10px;
    background: #f5920b2e;
}

.tour-package-price span {
    font-size: 11px;
    font-weight: 700;
    color: #111;
}

.tour-package-btn {
    background: #fff91f;
    color: #000;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s ease;
}

.tour-package-btn i {
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff91f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.tour-package-btn:hover {
    transform: translateY(-3px);
}

/* <!-- Top Selling Tour Packages  End--> */

/* <!-- Popular Rajasthan Tour Packages Started --> */
.flexive_card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    font-family: sans-serif;
}

.flexive_card_image {
    position: relative;
}

.flexive_card_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* TOP (rating + heart) */
.flexive_card_top {
    position: absolute;
    top: 12px;
    left: 0px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: 600;
}

.flexive_card_rating {
    color: #000;
    background: #fff91f;
    padding: 1px 12px;
    border-radius: 0px 20px 20px 0px;
    font-size: 13px;
    font-weight: 400;
}

/* OVERLAY */
.flexive_card_overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 10px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* TAG */
.flexive_card_tag {
    display: inline-block;
    background: rgb(113 106 106 / 38%);
    margin-bottom: 8px;
    font-size: 13px;
    font-family: "Poppins Medium", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 3px 12px;
    border-radius: 8px;
    position: relative;
}

/* TITLE */
.flexive_card_title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}

/* PRICE */
.flexive_card_price_box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0px 0;
}

.divider_flexive_card {
    height: 1px;
    background: #ffffff9e;
    margin: 5px 0px;
}

.flexive_card_old {
    text-decoration: line-through;
    opacity: 0.7;
}

.flexive_card_new {
    font-size: 12px;
    font-weight: bold;
}

.flexive_card_discount {
    background: transparent;
    color: #69d29c;
    border: 1px solid #69d29c;
    font-weight: 500;
    padding: 0px 6px;
    font-size: 12px;
    border-radius: 4px;
    min-width: 50px;
}

/* LOCATION */
.flexive_card_location {
    font-size: 13px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* text ellipsis */
.flexive_card_location_text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* read more */
.flexive_card_read_more {
    font-size: 10px;
    color: #1d8bd3;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    border-radius: 15px;
    border: 1px solid #ffffffb5;
}

/* <!-- Popular Rajasthan Tour Packages End --> */

/* <!-- Testimonial Section Start --> */
.modern-client-review-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #1b60a6cf;
}

.modern-client-review-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    opacity: 0.08;
}

.modern-client-review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.modern-client-review-user img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #16a34a;
}

.modern-client-review-info h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.modern-client-review-info span {
    font-size: 14px;
    color: #6b7280;
}

.modern-client-review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
}

.modern-client-review-stars i {
    color: #facc15;
    font-size: 15px;
}

.modern-client-review-card p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-client-read-more-btn {
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    justify-content: end;
    margin-right: 1rem;
}

.modern-client-read-more-btn:hover {
    color: #15803d;
    text-decoration: underline;
}
/* <!-- Testimonial Section Start End--> */

/* Journery in frame */
.journey-in-frame-section {
    background: #f8fafc;
    overflow: hidden;
}

.journey-in-frame-heading {
    max-width: 760px;
    margin: auto;
    margin-bottom: 50px;
}

.journey-in-frame-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.journey-in-frame-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.1;
}

.journey-in-frame-heading p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.journey-in-frame-video-wrap {
    position: relative;
}

.journey-in-frame-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 450px;
}

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

.journey-in-frame-video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.15)
    );
    pointer-events: none;
}

.journey-in-frame-overlay {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 2;
    max-width: 450px;
}

.journey-in-frame-overlay h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media (max-width: 991px) {
    .journey-in-frame-section {
        padding: 70px 0;
    }

    .journey-in-frame-heading h2 {
        font-size: 38px;
    }

    .journey-in-frame-video-box {
        height: 420px;
        border-radius: 22px;
    }

    .journey-in-frame-overlay {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .journey-in-frame-overlay h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .journey-in-frame-heading h2 {
        font-size: 30px;
    }

    .journey-in-frame-video-box {
        height: 300px;
    }

    .journey-in-frame-overlay h3 {
        font-size: 18px;
    }

    .journey-in-frame-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}
/* Journey in frame ended */

/* Home Blogs Section */
.hm-blog-section {
    background: #f8fafc;
}

.hm-blog-heading span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hm-blog-heading h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin: 0;
}

.hm-blog-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    background: #16a34a;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hm-blog-view-btn:hover {
    background: #15803d;
    color: #fff;
}

.hm-blog-main-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.hm-blog-main-img {
    height: 410px;
    overflow: hidden;
    position: relative;
}

.hm-blog-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.hm-blog-main-card:hover img {
    transform: scale(1.08);
}

.hm-blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;

    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.hm-blog-main-content {
    padding: 15px;
}

.hm-blog-tag {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.hm-blog-main-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0px;
    color: #111827;
}

.hm-blog-main-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hm-blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.hm-blog-read-btn:hover {
    gap: 15px;
    color: #15803d;
}

.hm-blog-side-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    margin-bottom: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.hm-blog-side-card:hover {
    transform: translateY(-6px);
}

.hm-blog-side-img {
    min-width: 120px;
    width: 180px;
    height: 156px;
    border-radius: 20px;
    overflow: hidden;
}

.hm-blog-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-blog-side-content span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 12px;
}

.hm-blog-side-content h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0px;
}

.hm-blog-side-content p {
    font-size: 14px;
    margin-bottom: 0px;

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

.hm-blog-side-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    justify-content: end;
}

.hm-blog-side-content a:hover {
    gap: 12px;
}

@media (max-width: 991px) {
    .hm-blog-heading h2 {
        font-size: 36px;
    }

    .hm-blog-main-content h3 {
        font-size: 18px;
    }

    .hm-blog-side-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hm-blog-side-img {
        width: 100%;
        min-width: 100%;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .hm-blog-heading h2 {
        font-size: 28px;
    }

    .hm-blog-main-img {
        height: 260px;
    }

    .hm-blog-main-content {
        padding: 25px;
    }

    .hm-blog-main-content h3 {
        font-size: 24px;
    }

    .hm-blog-side-content h4 {
        font-size: 20px;
    }
}
/* Home Blogs Section End */

@media (max-width: 991px) {
    .all-mixup-card-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .all-mixup-card-price-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .all-mixup-card-price {
        text-align: left;
    }

    .all-mixup-card-price h4 {
        font-size: 34px;
    }

    .all-mixup-card-buttons {
        flex-direction: row;
        justify-content: space-between;
    }

    .expert-btn,
    .whatsapp-btn,
    .inquire-btn,
    .details-btn {
        flex: 1;
    }

    .all-mixup-card-bottom-btns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .all-mixup-card-image {
        height: 220px;
    }

    .all-mixup-card-title {
        font-size: 18px;
    }

    .all-mixup-card-features {
        gap: 10px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
        line-height: 1.25;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 0px 14px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0 0;
}

.footer-logo-warpper img {
    width: 211px;
}

.footer-widget h2,
.footer-widget h4 {
    color: var(--white-color);
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, #ff6b35, #fff91f);
    border-radius: 2px;
    box-shadow: 0 0 2px rgb(255 245 33);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

/* Right side Stikcy */
/* Right side Stikcy */
.common-sticky-wrapper {
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
}

.common-sticky-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.common-sticky-main-card {
    background: linear-gradient(135deg, #0e764182, #8142014a);
    color: #fff;
}

.common-sticky-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.common-sticky-heading {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0px;
}

.common-sticky-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}

.common-sticky-price {
    font-size: 14px;
    margin-bottom: 20px;
}

.common-sticky-price h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 8px;
}

.common-sticky-btn {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.common-sticky-btn-dark {
    background: #ff7b00;
    color: #fff;
}

.common-sticky-btn-dark:hover {
    background: #ff6600;
    color: #fff;
}

.common-sticky-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.common-sticky-orange {
    background: #ff7b00;
}

.common-sticky-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.common-sticky-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.common-sticky-contact-card {
    background: #f8f9fa;
}

.common-sticky-contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.common-sticky-contact-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.common-sticky-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.common-sticky-btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
}

/* Home Tour Category Cards */
.tour-card-hm {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.tour-card-hm-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card-hm-img {
    position: relative;
    height: 270px;
}

.tour-card-hm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-hm-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.4),
        transparent
    );
    z-index: 1;
}

.tour-card-hm-tag {
    position: absolute;
    top: 12px;
    left: 0px;
    background: #ffcc00;
    padding: 3px 10px;
    border-radius: 0px 20px 20px 0px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-hm-days {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgb(45 15 0 / 62%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 2;
}

.tour-card-hm-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    z-index: 2;
}

.tour-card-hm-overlay h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
}

.tour-card-hm-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0px;
    line-height: 1.3;
}

.tour-card-hm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 10px 10px;
    background: #feac1a21;
    border-radius: 0px 0px 20px 20px;
    border: 1px solid #dcd6d6bf;
}

.tour-card-hm-bottom h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.tour-card-hm-off {
    font-size: 11px;
    color: #ff7a00;
    background: #fff;
    border: 1px solid #ff7a00;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.tour-card-hm-btn {
    width: 38px;
    height: 38px;
    background: #00204a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.tour-card-hm-btn:hover {
    background: #ff7a00;
}
/* Home Tour Category Cards  End*/

@media (max-width: 991px) {
    .common-sticky-wrapper {
        position: relative !important;
        top: 0;
        margin-top: 30px;
    }
}

/* ========================================
   Hide Unhide in Desk and Mob view Css
   ======================================== */
/* sowing in mobile anf desktop */
@media (max-width: 991px) {
    .hide-on-mob-view {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        /* max-width: 1300px; */
        max-width: calc(100% - 130px);
    }
}

@media (min-width: 2000px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1300px;
    }
}
