/* Chrome DevTools Fix - Based on the exact screenshot */

/* Mobile menu container */
.mobile-menu-sidebar {
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: -100% !important;
    left: 0 !important;
    background: white !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    transition: top 0.3s ease !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Logo in mobile menu */
.mobile-menu-logo {
    height: 40px !important;
}

/* Close button */
.mobile-menu-close {
    font-size: 24px !important;
    background: transparent !important;
    border: none !important;
    color: #333 !important;
    cursor: pointer !important;
}

/* Mobile menu links container */
.mobile-menu-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile menu list items */
.mobile-menu-links li {
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Mobile menu links */
.mobile-menu-links a {
    display: block !important;
    padding: 16px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Services dropdown toggle */
.mobile-services-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    width: 100% !important;
    cursor: pointer !important;
    background: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #333 !important;
    font-family: 'Poppins', sans-serif !important;
    position: relative !important;
}

/* Services dropdown links container */
.mobile-services-links {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    background: #f8fafc !important;
}

/* Services dropdown links when active */
.mobile-services-dropdown.active .mobile-services-links {
    max-height: 250px !important;
}

/* Services dropdown links */
.mobile-services-links a {
    padding: 12px 20px 12px 40px !important;
    font-size: 15px !important;
    color: #475569 !important;
    background: #f8fafc !important;
}

/* Arrow icon in services dropdown */
.mobile-services-arrow {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
    font-size: 18px !important;
}

/* Arrow icon when dropdown is active */
.mobile-services-dropdown.active .mobile-services-arrow {
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Mobile menu when shown */
.mobile-menu-sidebar.show {
    top: 0 !important;
}

/* Hamburger button */
.simple-hamburger {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 0 !important;
}

/* Hamburger button lines */
.simple-hamburger span {
    width: 20px !important;
    height: 2px !important;
    background: #333 !important;
    border-radius: 1px !important;
}

/* Active menu item */
.mobile-menu-links a.active {
    color: #333 !important;
    font-weight: 600 !important;
}

/* Fix for navbar */
nav {
    padding: 10px 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 2% !important;
}

/* Fix for logo */
.logo {
    height: 80px !important;
}

/* Fix for services dropdown */
.mobile-services-dropdown {
    position: relative !important;
}

/* Fix for services toggle text */
.mobile-services-toggle span {
    display: inline-block !important;
    vertical-align: middle !important;
}