@media (max-width: 768px) {
    .pbmit-mobile-menu-bg {
        background: none !important;
    }
}

/*----------------Menu Styling----------------------*/
.menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.menu {
    text-align: center;
}

.menu a {
    display: inline-block;
}

.submenu {
    text-align: center;
}

.submenu a {
    display: inline-block;
}


.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 135px;
    left: 0;
    transition: transform 0.3s ease;
    overflow-y: auto;
}


.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 135px;
    left: 0;
    transition: transform 0.3s ease;
    overflow-y: auto;
}


.menu a {
    display: block;
    padding: 18px !important;
    text-decoration: none;
    color: black;
    /* background-color: #EEFF75;*/
    transition: background-color 0.3s, color 0.3s;
    font-family: "lyon-regular";
    font-size: 70px;
    font-style: normal;
    font-weight: 500;
    line-height: 69px;

}

.submenu a {
    display: block;
    padding: 18px !important;
    text-decoration: none;
    color: black;
    /* background-color: #EEFF75;*/
    transition: background-color 0.3s, color 0.3s;
    font-family: "lyon-regular";
    font-size: 70px;
    font-style: normal;
    font-weight: 500;
    line-height: 69px;

}

.menu a:hover {
    background-color: black;
    color: white;
}

.submenu a:hover {
    background-color: black;
    color: white;
}

.submenu {
    transform: translateX(100%);
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.submenu a {
    background-color: #000;
    color: white;
}

.submenu a:hover {
    background-color: #333;
}

.submenu a.back {
    background-color: #EEFF75 !important;
    color: black !important;
    cursor: pointer;
}

.submenu a.back:hover {
    background-color: #EEFF75;
    color: black;
    cursor: pointer;
}

.back-separator {
    border: none;
    border-top: 3px solid #444;
    margin: 0 15px 15px 15px;
}

.submenu.active {
    transform: translateX(0);
}

.menu.hidden {
    transform: translateX(-100%);
}

.submenu-sections {
    display: flex;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.submenu-section {
    width: 50%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.submenu-section#firstMenu {
    background-color: #EEFF75;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.submenu-section#firstMenu a {
    background-color: #EEFF75;
    color: black;
    padding: 5px 15px;
    margin: 0;
}

.submenu-section#firstMenu li {
    margin: 0;
    padding: 0;
}

.submenu-section#firstMenu a:hover {
    background-color: black;
    color: white;
}

.submenu-section#firstMenu a.active {
    background-color: black;
    color: white;
}

.submenu-section#secondMenu {
    background-color: #000;
    color: white;
}

.submenu-section#secondMenu a {
    background-color: #000;
    color: white;
}

.submenu-section#secondMenu a:hover {
    background-color: #333;
}

.submenu-footer {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #EEE;
    text-align: center;
    border-top: 1px solid #333;
}

.submenu-footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.submenu-footer-links a {
    background-color: transparent;
    color: #EEFF75;
    padding: 5px 10px;
    text-decoration: none;
}

.submenu-footer-links a:hover {
    background-color: #222;
}

.footer-info {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.footer-info span:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    margin-right: 15px;
    color: #EEFF75;
}

.footer-info a {
    color: #EEFF75;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkedin-text {
    color: #EEFF75;
    font-weight: bold;
    text-decoration: none;
}

.linkedin-text:hover {
    text-decoration: underline;
}

#secondMenuContent {
    margin-top: 69px;
    text-align: center;
    margin-bottom: 63px;
}

.submenu-icon {
    width: 36px;
    height: 44px;
    margin-left: 8px;
    vertical-align: middle;
    filter: invert(0);
}

/* Hide icon by default */
.menu a.expertise-link .submenu-icon {
    display: none;
}

/* Show icon on hover for Our Expertise */
.menu a.expertise-link:hover .submenu-icon {
    display: inline-block;
    filter: invert(1);
}

/* Hide submenu icons by default */
#firstMenu a .submenu-icon {
    display: none;
}

/* Show icon on hover for submenu items */
#firstMenu a:hover .submenu-icon {
    display: inline-block;
    filter: invert(1);
}