
/*==================== common css code start here  ========================*/
/*   .tm-header-menu-new {*/
/*    height: 90px;*/
/*    padding: 5px 0px 5px 0px !important;*/
/*    background-color: rgba(255, 255, 255, 0.8) !important; */
/*}*/
/*.tm-primary-nav .menu-item > .nav-link.active {*/
/*    color: #2d3928 !important;*/
/*    font-weight: bold;*/
/*}*/
/*.nav-link.tm-smooth-move {*/
/*    font-size: 23px;*/
/*    color: #2d3928 !important;*/
/*    font-weight: 600;*/
/*}*/
/*.tm-primary-nav .menu-item > a {*/
/*        color: #2d3928 !important;*/
/*}*/


/*================ new mobile menu css code start ======================*/
    /* === Mobile Header (Phone + Tablet) === */
   /* === Mobile Header === */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100;
}
.mobile-header-newserv {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    background: #eff2e7;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100;
}

.mobile-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* === Hamburger Button === */
.hamburger-btn,
.hamburgerBtn {
    font-size: 1.8rem;
    background: transparent !important;
    border: none;
    cursor: pointer;
    transition: transform 0.5s ease, color 0.3s ease;
    color: #2d3928;
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    transform: translateY(-100%);
    transition: transform 1.2s ease;
    z-index: 9998;
    padding-top: 60px;
}

.mobile-menu.active {
    transform: translateY(0);
}

.menu-container {
    display: flex;
    width: 200%;
    height: calc(100vh - 60px);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-container.submenu-active {
    transform: translateX(-50%);
}

.menu-panel {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    transition: all 0.4s ease-in-out;
    margin-top: -15px;
}

/* === Menu Items === */
.menu-item {
    padding: 7px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.4s ease;
}

.menu-item:active {
    background-color: #f4f4f4;
}

.menu-item a {
    color: #2d3928;
}

/* === Submenu === */
.submenu-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.back-btn {
    font-size: 1.4rem;
    color: #007bff;
    margin-right: 10px;
    cursor: pointer;
}

.tm_submenu_dropdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* === Responsive Rules === */
@media (min-width: 992px) {
    .mobile-header,
    .mobile-menu,
    .mobile-header-newserv{
        display: none !important;
    }
}

@media (max-width: 992px) {
    .tm-site-header,.tm-site-header-new {
        display: none !important;
    }
}

/* === Body Scroll Lock === */
body.menu-open {
    overflow: hidden;
}




/*================ new mobile menu css code end ======================*/
/*==================== common css code start here  ========================*/