        * {
            transition: background-color 300ms ease, color 300ms ease;
        }
      
        html, body {
            color: rgba(33, 37, 41, 1);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }




/* ===============================
   Header Styles
=============================== */
header {
    background-color: transparent; /* start transparent */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none; /* no shadow initially */
}

header.scrolled {
    background-color: #fff; /* solid color on scroll */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header {
    position: fixed;
    top:0px;
    width: 100%;
    z-index: 1000;
    padding-top: 1rem;
}

.desktop-sidebar {
   
    height: calc(100vh - 70px);
}

@media screen and (max-width: 768px) {
    header {
        padding: 7px 20px; /* reduce top/bottom and left/right padding */
    }
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* toggle + logo left align */
    gap: 15px; /* toggle आणि logo मधला spacing */
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px; /* adjust as needed */
}

/* DESKTOP SIDEBAR */
/* DESKTOP SIDEBAR */
.desktop-sidebar {
    position: fixed;
    top: 54px;
    left: -400px;   /* थोडं जास्त ठेवा */
    min-width: 300px;
    width: max-content;   /*  important */
    max-width: 90vw;      /* screen बाहेर जाणार नाही */
    height: calc(100vh - 54px);
    background: #fff;
    transition: left 0.3s ease;
    z-index: 50;
    overflow-y: auto;
}

.desktop-sidebar.active {
    left: 0;                  /* slide in */
}

/* Desktop sidebar close button */
.desktop-sidebar .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Hide desktop sidebar on mobile */
@media screen and (max-width: 768px) {
    .desktop-sidebar { display: none; }
}
/* Desktop toggle button */
.desktop-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    color: #fff; /* initial color when header is transparent */
    padding: 0px 14px;   /*  Add padding */
}

/* Change color when header is scrolled */
header.scrolled .desktop-toggle {
    color: #333; /* darker color on white background */
}

.desktop-toggle:hover {
    transform: scale(1.0);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.6);  /*  30% white */
    border-radius: 5px;
}

/* Mobile toggle same behavior */
.mobile-toggle {
    color: #fff;
    transition: color 0.3s ease, transform 0.2s ease;
}

header.scrolled .mobile-toggle {
    color: #333;
}

.mobile-toggle:hover {
    transform: scale(1.1);
    color: #ff6600;
}

@media screen and (min-width: 769px) {
    .desktop-toggle {
        display: block;
    }
}
.desktop-toggle {
    display: flex;
    flex-direction: column;   /* icon वर, text खाली */
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    
}

.desktop-toggle .icon {
    font-size: 26px;
}

.desktop-toggle .menu-text {
    font-size: 12px;
    margin-top: 2px;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .desktop-toggle {
        display: none;
    }
}

/* Profile Wrapper */
.desktop-profile {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Default (Transparent Header) */
header:not(.scrolled) .desktop-profile {
    background: rgba(219, 213, 213, 0.50);
}

header:not(.scrolled) .desktop-profile .profile-icon {
    color: #201f1f;
    
}

/* When header is white (Scrolled) */
header.scrolled .desktop-profile {
    background: #f2f2f2;
}

header.scrolled .desktop-profile .profile-icon {
    color: #222;
}

/* Hover Effect */
.desktop-profile:hover {
    transform: scale(1.08);
    background: #e0e0e0;
}

.desktop-profile:hover .profile-icon {
    color: #000;
}

/* Icon size */
.profile-icon {
    font-size: 20px;
    line-height: 1;
}



/* Hide on mobile (already using mobile-profile) */
@media screen and (max-width: 768px) {
    .desktop-profile { display: none; }
}

/* OVERLAY */
#desktopOverlay {
    position: fixed;
   top: 0;
    height: 100vh;
    left: 0;
    width: 100%;
   
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 40;
}

#desktopOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* PAGE BLUR */
#mainWrapper.blur-active {
    filter: blur(4px);
    transition: 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;          /* hidden initially */
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;              /* slide into view */
}

/* remove display:none / display:block completely */
.mobile-dropdown-menu,
.mobile-sub-menu {
    display: none;
    padding-left: 15px; /* optional indent */
}

.mobile-dropdown.active > .mobile-dropdown-menu,
.mobile-sub-dropdown.active > .mobile-sub-menu {
    display: block;
}
/* Add horizontal line between each mobile menu item */
.mobile-menu ul li {
    border-bottom: 1px solid #ddd; /* light gray line */
}

/* Remove border for the last item to avoid double line at bottom */
.mobile-menu ul li:last-child {
    border-bottom: none;
}

/* Optional: add padding for better spacing */
.mobile-menu ul li > a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
}
/* Mobile menu close button */
.mobile-menu .close-btn {
    position: absolute; /* position relative to mobile-menu */
    top: 10px;          /* distance from top */
    right: 15px;        /* distance from right */
    background: none;   /* remove default button styles */
    border: none;
    font-size: 28px;    /* bigger size */
    cursor: pointer;
    z-index: 1000;      /* above all menu items */
}
/* Hide all submenus by default */
.desktop-sidebar ul ul {
    display: none; /* hide all nested menus */
    padding-left: 15px; /* nested indent */
    font-size: 15px; /* slightly smaller font for submenus */
    font-weight: 400;
}

/* Show submenu only if parent li has active class */
.desktop-sidebar li.active > ul {
    display: block;
}
.desktop-sidebar ul li {
    padding: 12px 20px; /* left-right and top-bottom padding */
    font-size: 25px; /* adjust font size for desktop */
    font-weight: bold;
    cursor: pointer;
    
    position: relative;
    transition: background 0.2s;
}
/* Make all sidebar li stretch full width */
.desktop-sidebar ul li,
.desktop-sidebar ul li a {
    display: block;          /* ensures full width */
    width: 100%;             /* stretch to sidebar width */
    color: #000 !important;  /* black text */
    text-decoration: none;   /* remove underline */
   
    box-sizing: border-box;  /* include padding in width */
}

/* Nested menus also full width */
.desktop-sidebar ul ul li,
.desktop-sidebar ul ul li a {
    display: block;
    width: 100%;
    color: #000 !important;
    padding-left: 35px;      /* extra indent for nested menus */
}

/* Hover effect without changing text color */

/* Add chevron icon to items with submenus */
.desktop-sidebar li.dropdown > a::after,
.desktop-sidebar li.nested-dropdown > a::after {
    content: "\f0da"; /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Rotate icon when submenu is active */
.desktop-sidebar li.active > a::after {
    transform: rotate(90deg); /* points right when open */
}
.mobile-toggle {
    display: block; /* visible on mobile by default */
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin-right: 15px;
}

/* Hide mobile toggle on desktop */
@media screen and (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}
/* Ensure nav items align properly on mobile */
@media screen and (max-width: 768px) {
    .nav-container {
        justify-content: flex-start; /* start from left */
        align-items: center;
        gap: 10px; /* spacing between toggle and logo */
        padding: 7px 15px;
    }

    .logo {
                margin-left: 196px;
    }

    .logo img {
        height: 45px; /* slightly smaller on mobile */
    }

    .mobile-toggle {
        margin-left: 0; /* remove any weird large left margin */
    }

    .desktop-toggle {
        display: none; /* hide desktop toggle on mobile */
    }
}
@media (max-width: 1400px) {

    .desktop-toggle {
          margin-left: 2rem;
    }
}
/* Desktop nested menu spacing */
@media (min-width: 769px) {

    .desktop-sidebar .nested-menu {
        margin-left: 5rem;
    }

}
/* ===== Desktop Logo Center Only ===== */
@media (min-width: 769px) {

    .nav-container {
        display: flex;
        align-items: center;
    }

    .desktop-toggle {
        flex: 0 0 auto;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

.desktop-toggle {
    margin-left: 1.5rem; /* moves it slightly to the right */
}
.sub-page header {
    background-color: #fff;
     box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.sub-page header #desktopToggle,
.sub-page header #mobileToggle {
    color: #141414 !important;
    border: none;
}

.sub-page header #desktopToggle i,
.sub-page header #desktopToggle svg,
.sub-page header #mobileToggle i,
.sub-page header #mobileToggle svg {
    color: #141414 !important;
    fill: #141414 !important;
}
/* ===== HEADER RIGHT SIDE ===== */
.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
        margin-right: 10rem;
}

/* Language Dropdown */
.lang-dropdown select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
}

/* Profile Icon */
.desktop-profile .profile-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    margin-top: 1rem;
    margin-left: 12px;
}


/* Hide on mobile */
@media (max-width: 768px) {
    .header-right {
        display: none;
    }
}
.mobile-profile {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

/* When header white */
header.scrolled .mobile-profile {
    color: #222;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-profile {
        display: block;
        margin-left: auto;
              margin-right: 21px;
        margin-top: -2px;
    }
}
.mobile-lang {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.mobile-lang select {
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
}





    /* Start css sub activuty details */
    .activity-page {
        display: flex;
        gap: 30px;
        /* max-width: 1200px; */
        /* margin: 38px auto; */
        font-family: Arial, sans-serif;
        margin-left: 7rem;
        margin-right: 7rem;
        margin-top: 5rem;

    }

    .right-section {
    width: 46%;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    }

    .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    }

    .badge {
    color: red;
    font-weight: bold;
    font-size: 12px;
    }

    .provider {
    font-size: 14px;
    margin-bottom: 10px;
    }

    .description {
    margin-bottom: 20px;
    line-height: 1.6;
    }

    .gallery {
    display: flex;
    gap: 15px;
    }



    .thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }

    .thumbs img {
    width: 146px;
    height: 104px;
    object-fit: cover;
    border-radius: 8px;
    }

    .info-list {
    list-style: none;
    padding: 0;
    }

    .info-list li {
    margin-bottom: 15px;
    font-size: 14px;
    }

    .reviews {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    }
    /* =========================
    RESPONSIVE DESIGN
    ========================= */

    /* Tablets */
    @media (max-width: 992px) {
    .activity-page {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .gallery {
        flex-direction: column;
    }

    .main-img {
        width: 100%;
    }

    .thumbs {
        flex-direction: row;
        /* justify-content: space-between; */
    }

    .thumbs img {
        width: 32%;
        height: 90px;
    }
    }

    /* =========================
    REMOVE HORIZONTAL SCROLL (MOBILE)
    ========================= */
    @media (max-width: 576px) {

    html, body {
        width: 100%;
        overflow-x: hidden;   /*  main fix */
    }

    .activity-page {
        max-width: 100%;
        width: 100%;
        margin: 20px 0;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .left-section
    {
        width: 100%;
        max-width: 100%;
        margin: 0;
    
    }

    .right-section {
        width: 92%;
        max-width: 100%;
        margin: 0;
    
    }
    .gallery {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .main-img {
        width: 100%;
        max-width: 100%;
        display: block;   /* IMPORTANT */
    }

    .thumbs {
        width: 70%;
        max-width: 100%;
        display: flex;
        gap: 6px;
    }

    .thumbs img {
        width: 33.33%;
        max-width: 33.33%;
        height: 70px;
        display: block;   /* IMPORTANT */
        object-fit: cover;
    }

    /* Safety for all images */
    img {
        max-width: 100%;
    }
    }
    .gallery {
    display: flex;
    gap: 15px;
    }

    /* NEW */
    /* DEFAULT (MOBILE FIRST) */
    .image-wrapper {
    position: relative;
    width: 100%;
    }

    /* DESKTOP ONLY */
    @media (min-width: 992px) {
    .image-wrapper {
        width: 70%;
    }
    }


    .main-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    }

    /* arrows now relative to image */
    .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    }

    .arrow.left {
    left: 10px;
    }

    .arrow.right {
    right: 10px;
    }

    /* Mobile size adjust */
    @media (max-width: 576px) {
    .arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .activity_name{
        margin-top: 4rem;
    }
    }

    /* Hidden arrows */
    .hide-arrows .arrow {
    display: none !important;
    }
    .reviews-header {
    display: flex;
    flex-direction: column;   /*  vertical */
    align-items: flex-start;  /* left align */
    gap: 8px;                 /* h4 आणि button मध्ये space */
    }

    .share-btn {
    background: #f2f2f2;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    }

    .share-btn:hover {
    background: #ddd;
    }



    .booking-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 18px 28px;
    margin: 2.5rem 7rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: Inter, Arial, sans-serif;

    position: relative;     /*  default */
    transition: all 0.3s ease;
    }

    /* SCROLLED STATE */
    .booking-bar.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    margin: 0;
    border-radius: 0;
    box-shadow: 0 -6px 16px rgba(0,0,0,0.12);
    z-index: 9999;
    }


    .booking-left {
    font-size: 15px;
    color: #222;
    }

    .booking-right {
    display: flex;
    align-items: center;
    gap: 22px;
    }

    .price span {
    font-size: 13px;
    color: #777;
    display: block;
    }

    .price strong {
    font-size: 20px;
    font-weight: 700;
    }

    .check-btn {
    background: #ff375f;
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    }

    .check-btn:hover {
    background: #e92e55;
    }

    /* MOBILE */
    @media (max-width: 992px) {
    .booking-bar {
        flex-direction: column;
        gap: 15px;
        margin: 1.5rem 1rem 0;
        text-align: center;
    }

    .booking-right {
        flex-direction: column;
        gap: 12px;
    }
    }
    /* =========================
    MOBILE FIXED BOOKING BAR
    ========================= */
    @media (max-width: 768px) {

    .booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        margin: 0;
        border-radius: 0;
        padding: 12px 14px;

        flex-direction: row;        /*  same row */
        justify-content: space-between;
        align-items: center;

        box-shadow: 0 -6px 16px rgba(0,0,0,0.12);
        z-index: 9999;
    }

    .booking-left {
        display: none; /*  hide chat text on mobile */
    }

    .booking-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
    }

    .price span {
        font-size: 12px;
    }

    .price strong {
        font-size: 18px;
    }

    .check-btn {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Space for fixed bar */
    body {
        padding-bottom: 70px;
    }
    }


    .activity-details {
    display: flex;
    gap: 50px;
    margin: 3.5rem 7rem;
    font-family: Inter, Arial, sans-serif;
    }

    /* LEFT */
    .details-left {
    width: 118%;
    }

    .section-title {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 20px;
    }

    .text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    }

    /* CHECK LIST */
    .check-list {
    list-style: none;
    padding: 0;
    }

    .check-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    }

    .check-list li::before {
    width: 20px;
    margin-right: 10px;
    font-weight: bold;
    }

    .check-list .ok::before {
    content: "✔";
    color: #1bb55c;
    }

    .check-list .plus::before {
    content: "+";
    color: #f4a000;
    }

    .check-list .no::before {
    content: "✖";
    color: #777;
    }

    /* DOT LIST */
    .dot-list {
    padding-left: 18px;
    }

    .dot-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    }

    /* RIGHT SIDEBAR */
    .details-right {
    width: 35%;
    }

    .toc {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 120px;
    }

    .toc h3 {
    font-size: 18px;
    margin-bottom: 15px;
    }

    .toc ul {
    list-style: none;
    padding: 0;
    }

    .toc li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    }

    .toc li:last-child {
    border-bottom: none;
    }

    /* MOBILE */
    @media (max-width: 992px) {
    .activity-details {
        flex-direction: column;
        margin: 2rem 1rem;
    }

    .details-left,
    .details-right {
        width: 100%;
    }

    .toc {
        position: relative;
            top: -73px;
    }
    }

    .toc li.active {
    color: #ff375f;
    font-weight: 600;
    }
    /* DESCRIPTION HEADING SPACING FIX */

    .details-left h2.section-title {
        margin-top: 24px;     /* आधी जास्त असेल तर कमी */
        margin-bottom: 12px;  /* खाली gap कमी */
        padding: 0;           /*  extra padding remove */
        line-height: 1.3;     /* compact look */
    }
    .view-map-btn {
        display: inline-block;
        background-color: #5067cf;
        color: #fff;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease;
    }



/* Start css home page */
/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    width: 100%;
    height: clamp(50vh, 53vh, 75vh);
    overflow: hidden;

    display: flex;             /* NEW */
    flex-direction: column;    /* vertical layout */
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
}


.hero-section img.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-section img.slide.active {
    opacity: 1;
}

/* ================= HERO OVERLAY ================= */

.hero-overlay {
    position: relative;   /* was absolute with top: -10rem */
    top: 0;               /* remove negative top */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: #fff;
    pointer-events: none;
}


.hero-overlay h3,
.hero-overlay h1,
.hero-search {
    pointer-events: auto;
}

.hero-overlay h3 {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin: 0;
}

.hero-overlay h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
@media (max-width: 768px) {
    .hero-overlay {
        top: 0rem;     /* mobile ला खाली */
    }
}

/* ================= SEARCH ================= */

/* ===== HERO SEARCH (DESKTOP IMAGE STYLE) ===== */

.hero-search {
    margin-top: 18px;
    pointer-events: auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px; /* pill */
    padding: 6px 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    min-width: 520px;
}

.search-icon {
    font-size: 18px;
    padding: 0 12px;
    color: #555;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px 6px;
}

.divider {
    width: 1px;
    height: 28px;
    background: #ddd;
    margin: 0 8px;
}

.search-box .icon {
    font-size: 16px;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
}

.search-btn {
    background: #ff2d55;   /*  red button */
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 6px;
}

.search-btn:hover {
    background: #e0264c;
}
@media (max-width: 768px) {

    .hero-search {
        width: 100%;
        display: flex;
        justify-content: center;   /* center ला */
    }

    .search-box {
        width: 80%;                /*  SMALL width */
        max-width: 300px;          /*  limit */
        padding: 5px;
        border-radius: 10px;
         min-width: 0px;
    }

    .search-box input {
        font-size: 13px;
        padding: 6px 6px;
    }

    .divider,
    .icon {
        display: none;             /* mobile clean */
    }

    .search-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}




/* ================= HERO BOTTOM TABS ================= */
.hero-tabs {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    padding-bottom: 5px;
}

/* default tab */
.hero-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 24px 39px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 14px 14px 0 0;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* hover */
.hero-tab:hover {
    opacity: 1;
}

/* ACTIVE – HIGHLIGHTS STYLE */
.hero-tab.active {
    background: #fff;
    color: #000;
    opacity: 1;
    transform: translateY(6px);   /* floating look */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

/* icon color fix */
.hero-tab.active i {
    color: #000;
}

@media (max-width: 768px) {

    .hero-tabs {
        width: 100%;
        left: 0;
        transform: none;
        justify-content: center;
        overflow-x: auto;
        padding: 0 12px 5px;
        gap: 12px;
        scrollbar-width: none;
    }

    .hero-tabs::-webkit-scrollbar {
        display: none;
    }

    .hero-tab {
        padding: 14px 20px;
        white-space: nowrap;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;   /*  increase height */
        padding-bottom: 80px; /*  tabs साठी space */
    }
}

/* ===== FIX RIGHT GAP ON MOBILE ===== */
@media (max-width: 576px) {

  body {
    overflow-x: hidden;
  }

  .activity-page {
    width: 100%;
    margin: 20px 0;
    padding: 0 12px;   /* equal padding */
    box-sizing: border-box;
  }

  .gallery {
    width: 100%;
    margin: 0;
  }

  .main-img {
    width: 100%;
    max-width: 100%;
    display: block;   /* IMPORTANT */
  }

  .thumbs {
    width: 100%;
    display: flex;
    gap: 6px;
  }

  .thumbs img {
    width: 33.33%;
    max-width: 33.33%;
    height: 70px;
    display: block;   /* IMPORTANT */
    object-fit: cover;
  }

  .left-section,
  .right-section {
    width: 100%;
    margin: 0;
  }
}
/* ===== HERO IMAGE HEIGHT FIX (MOBILE) ===== */
@media (max-width: 768px) {

  .hero-section {
      height: 35vh;        /*  इथे adjust कर (45vh / 50vh / 55vh) */
      padding-bottom: 60px; /* tabs साठी space */
  }

  .hero-section img.slide {
      object-position: center top; /* optional: face/top focus */
  }

}
.hero-search {
    position: relative;
}

/* DROPDOWN BOX */
.search-results {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 520px;
    max-height: 280px;
    overflow-y: auto;

    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    padding: 6px 0;

    z-index: 999;
    display: none;
}

/* EACH ITEM */
.search-results .result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.25s ease;
}

/* IMAGE */
.search-results .result-item img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

/* TEXT */
.search-results .result-item span {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

/* HOVER EFFECT */
.search-results .result-item:hover {
    background: #f5f7fa;
}

/* REMOVE LINK UNDERLINE */
.search-results a {
    text-decoration: none !important;
    color: inherit;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .search-results {
        max-width: 90%;
    }
}

