/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: 0;
    width: 1000px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 5px 5px 5px 5px;
    display: none;
    z-index: 1000;
}

.nav-item.dropdown:hover .mega-menu {
    display: block;
}

.nav-link {
    cursor: pointer;
}

.mega-menu .row {
    margin: 0;
}

.submenu-left {
    border-right: 1px solid #eee;
    padding-right: 5px;
}

.submenu-left a {
    display: block;
    padding: 5px 5px 5px 5px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 5px;
}

.submenu-left a:hover,
.submenu-left a.active {
    background: #f5f5f5;
    color: #0f6fc5;
}

.submenu-category {
    margin-bottom: 10px; /* Add some space between categories */
}

.submenu-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px; /* Space between title and links */
    padding-left: 5px; /* Align with links */
    padding-top: 5px;
}

.submenu-link {
    padding-left: 15px;
    text-indent: 2em;
}

.submenu-right {
    padding-left: 200px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.third-level-container {
    padding-left: -2em;
}

.third-level-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.fourth-level-container {
    margin-bottom: 16px;
}


.fourth-level-title {
    font-weight: bold;
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.fifth-level-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fifth-level-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    padding: 2px 8px;
    border-radius: 4px;
}

.fifth-level-list a:hover {
    color: #0f6fc5;
    background: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
    
    .submenu-left {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .submenu-right {
        padding-left: 0;
        padding-top: 30px;
    }
}

/* Adjust font size and weight for better readability */
.nav-menu > li > a {
    font-size: 18px;
    font-weight: bold;
}

/* Ensure dropdown content is properly aligned */
.dropdown-content {
    width: 1000px;
    min-width: 1000px;
}

/* Add padding for better spacing */
.submenu-left, .submenu-right {
    padding: 10px;
} 