h2 {
    font-size: 36px;
    margin: 15px 0 15px 0px !important;
}

p,a {
    font-family: 'Poppins';
}

/* ====== header section ====== */
.header_menu {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

/* Container Flex Layout */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Navbar Brand */
.navbar-brand img {
    height: auto;
    width: 100%;
    max-width: 78px;
}

/* Menu Alignment */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    color: #333;
    font-weight: 500;
    padding: 10px 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
    color: #029d9e;
    /* theme color */
}

/* Contact Button */
.nav-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 102px;
}

.nav-btn .btn-orange {
    background: #029d9e;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
    transition: transform 0.5s;
}

.nav-btn .btn-orange:hover {
    background: #fac504;
    color: white;
    transform: translateY(-5px);
}

.slider-image.rev {
    border: 4px solid #aed135;
    border-radius: 50%;
    padding-left: 8px;
    position: relative;
}

/* banner */
/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #e5e7eb;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-buttons button.secondary {
    background: transparent;
    border: 2px solid #fff;
}

.hero-buttons button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.col-abt {
    height: 483px;
    align-content: center;
}

/* testimonial section */

/* about */

.para-about {
    color: #aed135;
    font-weight: 500;
    text-align: center;
    padding: 5px 9px;
    border-radius: 20px;
}

.span-about {
    border: 2px solid #aed135;
    border-radius: 12px;
    padding: 5px 10px;
    border-style: groove;
}

.h2-abt1 {
    text-align: center;
    font-size: 30px;
}

.about-heading h2 {
    font-size: 23px;
    margin: 15px 0 15px 0px !important;
}

.about-img-box {
    padding: 20px;
    height: 486px;
    align-content: center;
}

.abt-img2 {
    position: absolute;
    width: 100%;
    max-width: 35%;
    border-top: 2px solid #fbcc21;
    padding: 10px 10px 10px 0px;
    border-right: 2px solid #fbcc21;
    height: 262px;
    object-fit: cover;
}

img.abt-img {
    width: 100%;
    max-width: 60%;
    object-fit: cover;
    border-left: 2px solid #fbcc21;
    border-bottom: 2px solid #fbcc21;
    padding: 10px;
}

img.abt-img3 {
    position: absolute;
    width: 100%;
    max-width: 35%;
    bottom: 38px;
    height: 160px;
    object-fit: cover;
    padding: 10px 10px 10px 0px;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 57%), rgb(0 0 0 / 40%));
}


.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 25px;
    color: white;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-buttons button.secondary {
    background: transparent;
    border: 2px solid #fff;
}

.hero-buttons button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* about section */
.about-style-1 {
    padding-top: 50px;
}

/* section news */
section.news {
    padding: 50px 0px 70px 0px;
}

/* tour destination */

section.tour-packages.py-5 {
    padding: 70px 0px;
}

/* Section Base */
.tour-packages {
    background: #fdfdfd;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-header .highlight {
    color: #029d9e;
}

/* Card Design */
.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 20px 0px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.package-img {
    position: relative;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.08);
}

/* Duration Badge */
.trip-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fbcc21;
    color: #029d9e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Card Body */
.package-body {
    padding: 25px 20px 30px;
    text-align: left;
    position: relative;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    background: #029d9e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-title a {
    color: inherit;
    text-decoration: none;
}

.package-title a:hover {
    text-decoration: underline;
}

/* Icons Section */
.package-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    animation: fadeIn 1s ease;
    border-top: 1px solid #8080808c !important;
    border-bottom: 1px solid #8080808c !important;
    padding: 10PX 0PX;
}

/* Description */
.package-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* package-button */
.package-card .btn-outline-primary {
    color: #029d9e;
    display: flex;
    justify-content: space-between;
    width: 50%;
    padding: 10px 10px;
    border-radius: 20px;
}

.flo-h6 {
    text-align: center;
    margin: 0px;
}

/* new */
.div-more {
    display: flex;
    justify-content: space-between;
    width: 50%;
    border: 1px solid #029d9e;
    border-radius: 20px;
}

.div-more:hover {
    background: #fbcc21;
    border: none;
    color: white;

    .more1 a {
        border: none;
        color: white;
    }
}

.more1 a:hover {
    border: none;
    color: white;
}

.more2 {
    background: #029d9e;
    border-radius: 50%;
    margin: 5px;
}

#read-icon1,
#read-icon2,
#read-icon3 {
    color: white;
    border: none;
}


/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    /* background: #fff; */
    position: relative;
    overflow: hidden;
    background: url('./images/himachal/testimonial-banner.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 0px;
}

.testimonial-overlay {
    background: #00000057;
    height: auto;
    width: 100%;
    padding: 100px 0px;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    transform: translateX(-50%);
}

.testimonial-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    /* background: white; */
    text-align: center;
    border-radius: 17px;
    padding: 36px;
    width: 90%;
    color: white;
    text-align: left;
}

.testimonial-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    font-family: sans-serif;
}

.testimonial-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding-left: 50px;
    z-index: 2;
}

.slides {
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* box-shadow:
        0 10px 25px rgba(99, 102, 241, 0.08),
        0 20px 50px rgba(139, 92, 246, 0.12); */
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.slide:hover {
    box-shadow:
        0 15px 30px rgba(99, 102, 241, 0.15),
        0 25px 45px rgba(139, 92, 246, 0.12);
    transform: translateY(-5px);
}

.slide p {
    font-size: 13px;
    line-height: 1.5;
    color: #858585;
    margin-bottom: 15px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    color: var(--text-dark);
}

.client-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.navigation {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

/* .nav-btn {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 62px;
} */


/* to packages */
section.top-hotel {
    padding-bottom: 80px;
}

h3.white.mar-bottom-25 {
    margin-bottom: 30px;
}

/*  */
/* WHY CHOOSE US SECTION */
.why-choose-us {
    padding: 50px 0px 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: #029d9e;
}

.section-title p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.choose-card {
    background: #fff;
    padding: 20px;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fac81342;
    transition: all 0.4s ease;
    z-index: 0;
}

.choose-card:hover::before {
    left: 0;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.choose-icon {
    font-size: 45px;
    color: #029d9e;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.choose-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    position: relative;
    z-index: 1;
}

.choose-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* /=== NEW ABOUT SECTION === */
/* banner section */
.hero-breadcrumb {
    position: relative;
    text-align: center;
    background-image: url('./images/himachal/himachal-2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 400px;
}

.about-overlay {
    background: #00000059;
    height: 400px;
    align-content: center;
}

.hero-breadcrumb-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-breadcrumb-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: white;
}


.breadcrumb-subtext {
    font-size: 2rem;
    opacity: 0.9;
    margin-bottom: 20px;
    color: white;
}

.breadcrumb-nav {
    display: inline-block;
    background: rgb(219 215 215 / 25%);
    border-radius: 50px;
    padding: 8px 20px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    font-size: 15px;
    color: #fff;
}

.breadcrumb-list li a {
    color: #fac70c;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    border-right: 1.5px solid #eda11f;
    padding-right: 10px;
}

.breadcrumb-list li a:hover {
    color: #fff;
}

.breadcrumb-list li.active {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

p.breadcrumb-subtext {
    color: white;
    font-size: 20px;
}

.fw-about-clean {
    background: transparent;
    padding: 70px 0px;
}

.fw-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fw-about-textbox {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.fw-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fw-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.fw-btn {
    display: inline-block;
    background-color: #029d9e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fw-btn:hover {
    background: #fbcc21;
    color: #029d9e;
    transform: translateY(-10px);
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

/* IMAGE STYLING */
.img-fluid.rounded.shadow-sm {
    width: 100%;
    max-width: 70%;
    height: auto;
}

#abt-img1 {
    width: 100%;
    max-width: 66%;
    padding-left: 0px;
    border: 4px solid #029d9e;
    border-radius: 0px 20px 20px 0px;
}

#abt-img2 {
    border: 4px solid #fbcc23cf;
    border-radius: 20px 0px 0px 20px;
    height: 290px;
    object-fit: cover;
}

.fw-about-gallery {
    position: relative;
    text-align: center;
}

.fw-image {
    border-radius: 20px;
    overflow: hidden;
}

.fw-image-top {
    width: 80%;
    margin-left: auto;
    transform: translateY(-20px);
    transition: transform 0.4s ease;
}

.fw-image-bottom {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 60%;
    transition: transform 0.4s ease;
}

.fw-about-gallery:hover .fw-image-top {
    transform: translateY(-30px);
}

.fw-about-gallery:hover .fw-image-bottom {
    transform: translateY(10px);
}

/* ===== RESPONSIVE ===== */
/* header section */
/* Responsive: Stack for Mobile */
@media (max-width: 991px) {
    .header-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .navbar-nav li a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .nav-btn {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .nav-btn .btn-orange {
        width: 80%;
        text-align: center;
    }
}

/* about section */
@media (max-width: 991px) {
    .fw-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fw-about-textbox {
        text-align: center;
        padding: 40px 25px;
    }

    .fw-image-top,
    .fw-image-bottom {
        position: relative;
        width: 100%;
        margin: 0;
        transform: none;
    }

    .fw-about-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* === himachal === */
/* Container */
.tour-list {
    width: 100%;
    padding: 40px 0;
}

/* Container */
.tour-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Card layout */
.tour-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Image section */
.tour-image {
    flex: 0 0 32%;
    max-width: 32%;
    position: relative;
    overflow: hidden;
    padding-left: 10px;
    align-content: center;
}

.tour-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

/* Badge on image */
.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff7b00, #ffb700);
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Content section */
.tour-content {
    flex: 0 0 68%;
    max-width: 68%;
    padding: 18px 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title & meta */
.tour-title {
    font-size: 22px;
    font-weight: 700;
    color: #009688;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.tour-title:hover {
    color: #fbcb22;
}

.tour-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.tour-meta span {
    color: #fbcb22;
    font-weight: 600;
}

/* Rating */
.tour-rating {
    margin: 8px 0;
}

.tour-rating i {
    color: #ffd700;
    margin-right: 2px;
}

/* Route */
.tour-route {
    font-size: 15px;
    color: #555;
    margin: 10px 0 15px;
    line-height: 1.5;
}

/* Icons */
.tour-icons {
    margin-bottom: 15px;
    border-top: 2px solid #fac50499;
    border-bottom: 2px solid #fac5048c;
    padding-top: 15px;
    padding-bottom: 11px;
    border-radius: 5px;
}

/* Buttons */
.tour-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn.btn-dark {
    background: #029d9e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.btn.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.4);
}

.btn.btn-accent {
    background: linear-gradient(45deg, #fbcb22, #ff9500);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tour-image {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .tour-content {
        flex: 0 0 60%;
        max-width: 60%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .tour-card {
        flex-direction: column;
    }

    .tour-image,
    .tour-content {
        flex: 100%;
        max-width: 100%;
    }

    .tour-content {
        padding: 22px;
    }

    .tour-badge {
        top: 10px;
        left: 10px;
        font-size: 12px;
    }
}

.breadcrumb-subtext {
    font-size: 0.9rem;
}

.breadcrumb-nav {
    padding: 6px 15px;
}

ul.ul-itinerary {
    /* margin-left: 27px; */
    /* list-style-type: disclosure-closed; */
    padding: 10px 10px 10px 25px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: .01em;
    color: #74787d;
    border-radius: 8px;
    box-shadow: rgba(247, 245, 150, 0.363) 6px 2px 16px 0px, rgba(241, 229, 171, 0.8) -6px -2px 16px 0px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .package-img img {
        height: 200px;
    }

    .package-title {
        font-size: 1.2rem;
    }
}

/* testimonial section */
@media (max-width: 575px) {
    .package-img img {
        height: 180px;
    }

    .trip-duration {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .package-body {
        padding: 20px 15px;
    }
}


/* Responsive Tweaks */
@media (max-width: 767px) {
    .package-card .package-img img {
        height: 180px;
    }
}


@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .choose-card {
        padding: 30px 20px;
    }
}

@media (max-width: 1200px) {
    .navigation {
        display: none;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 12px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .testimonial-section {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-section::before {
        position: absolute;
        top: -41rem;
        left: 19.5rem;
        height: 100%;
        width: 100%;
    }

    .testimonial-overlay {
        background: #00000057;
        height: auto;
        width: 100%;
        padding: 50px 0px 100px 0px;
    }

    .testimonial-text {
        padding-right: 0;
        text-align: center;
    }

    .testimonial-slider {
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    .navbar-brand img {
    max-width: 50px;
    object-fit: cover;
}

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons button {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .slide {
        padding: 30px 20px;
    }

    .client-info img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {

    .top-hotels-ii img {
        height: 425px;
        object-fit: cover;
    }
}


@media screen and (max-width: 992px) {
    .about-img-box {
        padding: 20px;
        height: 486px;
        align-content: center;
    }

    img.abt-img {
        width: 100%;
        max-width: 58%;
        object-fit: cover;
        border-left: 2px solid #aed135;
        border-bottom: 2px solid #aed135;
        padding: 10px;
        height: 343px;
    }

    .abt-img2 {
        position: absolute;
        width: 100%;
        max-width: 39%;
        border-top: 2px solid #aed135;
        padding: 10px 10px 10px 0px;
        border-right: 2px solid #aed135;
        height: 205px;
        object-fit: cover;
    }

    img.abt-img3 {
        position: absolute;
        width: 100%;
        max-width: 39%;
        bottom: 78px;
        height: 144px;
        object-fit: cover;
        padding: 10px 10px 10px 0px;
    }

    .top-hotels-ii h4 {
        position: absolute;
        top: 30px;
        left: -113px;
    }

    .detail-sidebar {
        position: relative;
        top: 0rem !important;
    }

    #back-to-top a {
        display: block;
        width: 0px;
        height: 40px;
    }

    .nav-btn {
        display: none;
    }

    .col-abt {
        height: 363px;
        align-content: center;
    }
}

/* ==himachal==  */