    

    .container-head {
        max-width: 100%;
    }

    .bobo_head {
        /* background-color: #192d66; */
        background: linear-gradient(90deg,
                #815641 0%,
                #FFCEB5 53%,
                #C7A490 100%);
        padding-top: 5px;
        display: flex;
        justify-content: end;
        /* border-bottom: 1px solid #dfdfdf; */
    }

    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background: #655409;
        position: relative;
    }

    .dropdown-container {
        position: relative;
    }

    .selected-option {
        display: flex;
        align-items: center;
        cursor: pointer;
        gap: 5px;
    }

    .selected-option img {
        width: 24px;
    }

    .custom-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 10;
        width: max-content;
    }

    .custom-dropdown div {
        padding: 8px 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .custom-dropdown div:hover {
        background-color: #eee;
    }

    .custom-link {
        display: flex;
        gap: 15px;
        left: 0;
    }

    .custom-link a {
        color: #4B2E2E;
        /* letter-spacing: 0.5px; */
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 5px
    }

    .head_logo {
        width: auto;
        height: 55px;
        object-fit: contain;
    }

    .nav-bar ul li {
        font-size: 14px;
        color: var(--logo-type-color);
        letter-spacing: 1px;
        padding: 13px;
        padding-bottom: 10px;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .mega-contents h2 {
        font-size: 15px;
        margin-bottom: 10px;
        color: #2B282E;
    }

    .mega-contents a {
        display: block;
        padding: 5px 0;
        color: #545256;
        text-decoration: none;
        font-size: 13px;
    }

    .shape-option {
        display: flex;
        align-items: center;
        padding: 10px;
        text-decoration: none;
        color: #333;
        /* border-radius: 6px; */
        /* margin-bottom: 8px; */
        transition: background 0.3s ease;
    }

    .shape-option img {
        width: 60px;
        height: 60px;
        margin-right: 10px;
        object-fit: contain;
        display: inline-block;
        vertical-align: middle;
        border-radius: 50%;
    }

    .column-img {
        display: flex;
        gap: 20px;
    }

    .side_img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .center_logo {
        justify-content: center;
    }

    #headerBottom2 {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        /*transform: translateY(-100%);*/
        transition: transform 0.5s ease;
        z-index: 1000;
    }

    #headerBottom2.show {
        position: fixed;
        transform: translateY(0);
        transition: transform 0.5s ease;
    }


    /*New Css Starts from here (01-07-2026)*/
    .header-theme-logo .site-title {
        font-size: 24px;
        line-height: 31px;
        color: #4B2E2E;
        font-family: lora;
        font-weight: 600;
    }

    .mainmenu-content .main-wrap.nav-bar {
        display: flex !important;
        align-items: center;
        position: relative;
        padding: 10px 15px;
    }

    .mainmenu-content .main-wrap .menu-ul {
        width: 100%;
        /* position: absolute;
        left: 50%;
        transform: translateX(-50%); */
        margin: 0 !important;
        justify-content: center !important;
    }

    .mainmenu-content .main-wrap .header-icon-block {
        margin-left: auto !important;
        justify-content: flex-end !important;
        z-index: 1;
    }

    .header-element .header-left-logo {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        max-width: 120px;
    }

    .header-element .header-left-logo a {
        display: flex;
        align-items: center;
    }

    .header-element .left-logo {
        max-height: 80px;
        width: auto;
        object-fit: contain;
    }

    /*.menu-dropdown {*/
    /*    display: none;*/
    /*}*/
    
.menu-chevron { display: none; border: none; background: transparent; padding: 10px; cursor: pointer; }

.menu-li.open .menu-chevron {
    transform: rotate(90deg); /* ▶ becomes ▼ */
}

.mobilemenu-content .ri-add-line,
.mobilemenu-content .ri-subtract-line {
    display: none !important;
}

/* inject chevron icon */
.mobilemenu-content button[data-bs-toggle="collapse"]::after {
    content: "\f054"; /* FontAwesome chevron-right */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* rotate when expanded */
.mobilemenu-content button[aria-expanded="true"]::after {
    transform: rotate(90deg);
}
    

    @media screen and (max-width: 1399px) {
        .header-theme-logo .site-title {
            font-size: 22px;
            line-height: 31px;
            color: #4B2E2E;
            font-family: lora;
            font-weight: 600;
        }

        .bobo_head .header-element.header-logo {
            width: auto;
        }
    }

    /* Disable dropdown completely on large screens */
    @media (min-width: 1200px) {

        .mainmenu-content .main-wrap {
            position: relative;
        }

        .mainmenu-content .main-wrap .menu-ul {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        .menu-li {
            position: static;
        }

        .menu-dropdown {
            position: fixed;          /* VERY IMPORTANT */
            top: 75%;                /* aligns below menu */
            left: 0;
            right: 0;
            width: 100vw;             /* FULL SCREEN WIDTH */
            background: #fff;
            z-index: 9999;
            display: none;
        }

        .menu-li:hover>.menu-dropdown {
            display: block;
        }

        .menu-dropdown .mega-contents {
            max-width: 1200px;
            margin: 0 auto;
        }

    }

    @media screen and (max-width: 1199.98px) {
        .new_badge {
            position: absolute;
            top: 2px;
            right: 95px;
        }

        .new_badge1 {
            position: absolute;
            top: 2px;
            right: 50px;
        }

        .header-element .left-logo {
            max-height: 60px;
            width: auto;
            object-fit: contain;
        }
        
        
        
    .menu-link {
        width: 100%;
        justify-content: space-between;
    }

.menu-chevron { display: inline-flex; align-items: center; font-size: 14px; }

    /* rotation */
    .menu-li.open .menu-chevron i {
        transform: rotate(90deg);
    }
    .menu-chevron i {
        transition: transform 0.28s ease;
        display: inline-block;
        line-height: 1;
    }

    /* slide animation for submenu */
    .menu-dropdown {
        position: static !important;
        inset: auto !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    /* the inner container keeps padding */
    .menu-dropdown .mega-contents {
        padding: 10px 0;
    }

    /* When open, allow big height (adjust if your submenu is taller) */
    /*.menu-li.open .menu-dropdown {*/
    /*    max-height: 800px; */
        /* large enough to show contents; adjust if needed */
    /*}*/
    
    
    }

    @media (max-width: 992px) {
        .nav-bar ul li {
            font-size: 12px;
        }
    }

    @media screen and (max-width: 880px) {
        .bobo_head .header-element.header-icon {
            width: auto;
        }

        .header-theme-logo .site-title {
            font-size: 20px;
            line-height: 31px;
        }

        .header-element .left-logo {
            max-height: 50px;
            width: auto;
        }
    }


    @media (max-width: 768px) {
        .head_logo {
            /*width: 150px; */
            /*height: 50px;*/
        }

        #headerBottom2 {
            position: static;
        }
    }

    @media (max-width: 767px) {
        .center_logo {
            justify-content: start;
        }
    }

    @media screen and (max-width: 767.98px) {
        /* .bobo_head {
            justify-content: space-between !important;
        } */

        .bobo_head .header-element.header-logo {
            width: 100%;
            max-width: 61%;
            display: flex;
            justify-content: center;
        }

        /* .bobo_head .header-element.header-icon {
            width: 100%;
            max-width: 20%;
        } */
    }

    @media screen and (max-width: 643.98px) {
        .header-element .header-left-logo {
            position: absolute;
            left: 0px;
            top: 46%;
            transform: translateY(-50%);
            z-index: 9999;
            max-width: 60px;
        }

        .bobo_head .header-element.header-logo {
            width: auto;
            max-width: none;
            display: flex;
            justify-content: center;
        }
    }

    @media screen and (max-width: 550.98px) {
        .header-theme-logo .site-title {
            font-size: 16px;
            line-height: 26px;
        }

        .header-icon-search .header-block-icon .ri-search-line {
            font-size: 16px;
        }

        .header-icon-appointment .header-block-icon .fa-calendar-check {
            font-size: 16px;
        }

        .header-icon-toggler .header-block-icon .ri-menu-line {
            font-size: 16px;
        }

        .bobo_head {
            justify-content: space-between;
            padding-left: 80px;
        }
    }

    @media (max-width: 576px) {
        .dropdown-container {
            display: none;
        }
    }

    @media (min-width: 576px) {

        .ul-row>*,
        .ul-mtm15>*,
        .ul-mt30>* {
            padding-left: 12px;
            padding-right: 12px;
        }
    }

    @media screen and (max-width: 500.98px) {
        .header-theme-logo .site-title {
            font-size: 14px;
            line-height: 24px;
        }

        .bobo_head {
            justify-content: end;
            padding-left: 0;
        }
    }

    @media screen and (max-width: 461.98px) {
        .bobo_head .header-element.header-logo {
            width: auto;
            max-width: none;
            display: flex;
            justify-content: center;
        }
    }

    @media screen and (max-width: 420.98px) {
        .header-icon-element li.header-icon-wrap.search-wrap {
            padding: 0 2px;
        }

        .header-icon-element li.header-icon-wrap.appointment-wrap {
            padding: 0 5px;
        }

        .header-icon-element li.header-icon-wrap.toggler-wrap {
            padding: 0 3px;
        }

        .header-element.header-logo .center_logo {
            padding: 0;
        }

        .header-element .left-logo {
            max-height: 40px;
            width: auto;
        }
    }

    @media screen and (max-width: 380.98px) {
        .header-element .left-logo {
            display: none;
        }

        .bobo_head {
            justify-content: space-between;
        }

        .header-icon-element li.header-icon-wrap.search-wrap {
            padding: auto;
        }

        .header-icon-element li.header-icon-wrap.appointment-wrap {
            padding: auto;
        }

        .header-icon-element li.header-icon-wrap.toggler-wrap {
            padding: auto;
        }
    }

    @media screen and (max-width: 347.98px) {
        .header-theme-logo .site-title {
            font-size: 14px;
            line-height: 24px;
        }

        .bobo_head {
            justify-content: center;
        }
    }

    @keyframes fadein {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Sticky Header Styles */
    .main-header {
        width: 100%;
        transition: all 0.3s ease;
    }

    .sticky-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }

    /* For the notification bar to stay at top */
    .notification-bar.dominant-bg {
        position: relative;
        z-index: 1000;
    }

    /* Animation for sticky header */
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    /* Adjust body padding when header becomes sticky */
    body.sticky-body {
        padding-top: 100px;
        /* Adjust this value based on your header height */
    }

    body.sticky-body-75 {
        padding-top: 75px;
        /* Adjust this value based on your header height */
    }

    .notification-bar .notification-marquee .notification-marquee-row>*::after {
        content: "/";
        margin: 0px 15px;
    }

    @media (min-width: 576px) {
        .notification-bar .notification-marquee .notification-marquee-row>*::after {
            margin: 0px 30px;
        }
    }
    
    