/* Navigation Styles */
.nav-menu {
    display: flex;
    justify-content: flex-start;
    flex-grow: 1;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-menu > li:last-child {
    /* Push the language switcher to the far edge */
    margin-inline-start: auto;
}

/* Temporarily hide Arabic language toggle from public site */
.lang-switch {
    display: none !important;
}

.nav-item {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Ensure full height */
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    /* Prevent wrapping */
    width: auto;
    transition: color var(--transition-speed);
}

/* Dropdown Base */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    z-index: 1001;
    border-top: 3px solid var(--accent-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transition-delay: 0.1s;
    /* Slight delay before closing */
}

html[dir="ltr"] .dropdown-menu {
    left: 0;
    right: auto;
}

/* Align rightmost navbar dropdowns (Contact Us, Quality & Standards) to right edge so they open inward to the left */
@media (min-width: 993px) {
    .nav-menu > .dropdown:last-of-type > .dropdown-menu,
    .nav-menu > .dropdown:nth-last-of-type(1) > .dropdown-menu,
    .nav-menu > .dropdown:nth-last-of-type(2) > .dropdown-menu,
    html[dir="ltr"] .nav-menu > .dropdown:last-of-type > .dropdown-menu,
    html[dir="ltr"] .nav-menu > .dropdown:nth-last-of-type(1) > .dropdown-menu,
    html[dir="ltr"] .nav-menu > .dropdown:nth-last-of-type(2) > .dropdown-menu {
        right: 0 !important;
        left: auto !important;
    }
}

html[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown:not(.has-mega):hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    /* No delay when opening */
}

/* About Us Custom Styling */
.about-rectangles-row {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
}

.about-box-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px !important;
    /* Override standard link padding */
    font-weight: 600;
    color: var(--primary-color) !important;
}

.about-box-link:hover {
    background-color: var(--accent-color);
    color: white !important;
    border-color: var(--accent-color);
}

.about-bullets-section {
    padding: 5px 20px 10px;
}

.about-bullets-section ul {
    list-style: disc;
    padding-inline-start: 15px;
    margin: 0;
}

.about-bullets-section li a {
    padding: 6px 0 !important;
    font-size: 0.95rem;
    justify-content: flex-start;
}

.about-bullets-section li a:hover {
    background: transparent;
    transform: translateX(3px);
}

html[dir="rtl"] .about-bullets-section li a:hover {
    transform: translateX(-3px);
}


/* Mega Menu Styles */
/* Mega Menu Styles */
.mega-menu {
    display: none;
    position: fixed;
    top: var(--header-height, 100px);
    /* Adjust based on actual header height */
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height, 100px));
    background: transparent;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: none;
    overflow-y: auto;
}

/* Parent Handling: Static to avoid relative traps */
.has-mega {
    position: static !important;
}

.main-nav,
.nav-container {
    position: static !important;
}

header .container {
    position: relative;
    /* Anchor point if needed, but for full width we prefer static parents or body anchor */
}

/* RTL Support - Slide direction override */
html[dir="rtl"] .mega-menu {
    transform: translateX(100%);
}

.mega-container {
    background: white;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
    padding: 1.5rem 2rem;
    min-height: 100%;
}

/* Show mega menu on hover */
.has-mega:hover .mega-menu,
.mega-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Reset to 0 */
    pointer-events: auto;
    transition-delay: 0s;
    /* No delay when opening */
}

/* Increased delay when closing to prevent accidental disappearance */
.has-mega .mega-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition-delay: 0.5s;
    /* Increased from 0.15s to 0.5s for better UX */
}

/* Same bridge for regular dropdowns AND MEGA MENU to prevent gaps */
.dropdown:not(.has-mega)::after,
.has-mega::after {
    content: '';
    position: absolute;
    bottom: -20px;
    /* Extend further down */
    left: 0;
    width: 100%;
    height: 30px;
    /* Taller bridge area */
    z-index: 999;
    background: transparent;
}

/* Keep the open class for mobile and click behavior */
.has-mega.open .mega-menu,
.has-mega-menu.open .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- New Sliding Dropdown (List Style) --- */
.sliding-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    /* Below parent */
    left: 0;
    /* Default LTR alignment */
    min-width: 280px;
    /* Narrow width, NOT full screen */
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* RTL Alignment */
html[dir="rtl"] .sliding-dropdown {
    left: auto;
    right: 0;
}

/* Hover State */
.has-mega:hover .sliding-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Support */
@media (max-width: 768px) {
    .sliding-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .has-mega.open .sliding-dropdown,
    .has-mega-menu.open .sliding-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Enforce header stability: no transitions on header-affecting nav elements */
header,
.top-bar,
nav.main-nav,
.nav-container {
    transition: none !important;
    will-change: auto !important;
}

/* Ensure header-top/contact bar is always visible and consistent */
.top-bar-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.header-top,
#headerTop,
.top-bar .header-top {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

/* Ensure contact-info inside header-top also visible */
.header-top .contact-info,
#headerTop .contact-info,
.top-bar .contact-info {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 1.5rem !important;
}

/* Safety overrides: ensure phone/email text is visible even if theme vars differ */
.top-bar {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.top-bar .contact-info,
.top-bar .contact-info a,
.header-top .contact-info,
.header-top .contact-info a {
    color: var(--white) !important;
    opacity: 1 !important;
    visibility: visible !important;
}




/* Mega Menu - Vertical Accordion Grid Layout */
.mega-menu .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
    min-height: auto;
    background: var(--white);
    border-radius: 0 0 8px 8px;
    align-items: start;
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-group {
    position: relative;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.category-group:hover {
    background-color: rgba(var(--accent-rgb), 0.03);
}

.mega-cat-header {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

/* Header hover effect */
.category-group:hover .mega-cat-header,
.category-group.active .mega-cat-header {
    color: var(--accent-color);
    border-bottom-color: var(--off-white);
}

.category-group i.category-icon {
    font-size: 1.2rem;
    margin-inline-end: 0.8rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.category-group:hover i.category-icon {
    transform: scale(1.1);
}

/* Branches List - Hidden by default (Accordion) */
.mega-branches-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Active State - Expand */
.category-group.active .mega-branches-list {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    margin-top: 0.8rem;
    border-top: 1px solid var(--off-white);
    padding-top: 0.8rem;
}

.mega-branches-list li {
    margin-bottom: 0.5rem;
}

.mega-branches-list li a {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    padding: 0.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    /* Align Start: Left in LTR, Right in RTL (closest to Menu start) */
    justify-content: flex-start;
}

.mega-branches-list li a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

html[dir="rtl"] .mega-branches-list li a:hover {
    transform: translateX(-3px);
}

.mega-branches-list li a i {
    font-size: 0.65rem;
    margin-inline-end: 8px;
    opacity: 0.6;
    color: var(--accent-color);
}

/* Removed navFadeIn animation - using CSS transitions instead for smoother experience */

/* Mobile Adjustments for Mega Menu */
/* Mobile Adjustments for Mega Menu */
@media (max-width: 768px) {
    .mega-menu .container {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .has-mega {
        position: relative !important;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        border: none;
        display: none;
        max-height: none;
        overflow: visible;
        background: transparent;
    }

    .dropdown.open .mega-menu {
        display: block;
    }

    .mega-menu .container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: transparent;
    }

    .mega-col {
        gap: 0;
    }

    .category-group {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .category-group:last-child {
        border-bottom: none;
    }

    .mega-cat-header {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .category-group.active .mega-branches-list {
        max-height: none;
        /* Let it expand fully on mobile */
        padding-bottom: 0.5rem;
        margin-top: 0;
        border-top: none;
    }

    .mega-branches-list li a {
        padding-inline-start: 1rem;
    }
}

/* Bridge handled above for both .dropdown and .has-mega */

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.45;
}

/* Nav Container - Unified Grid Layout for Stability */
.nav-container {
    display: grid;
    /* Fixed Logo Width + Menu Fluid Area */
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 50px;
    /* Reduced space between Logo and Menu per user request */
}

/* Mobile Layout - Restore Flex */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--off-white);
    color: var(--accent-color);
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Nested Dropdowns */
.nested-dropdown:hover>.submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    /* Move to the left in RTL */
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    border-top: 3px solid var(--accent-color);
}

/* Icons in Nav */
.nav-item i {
    font-size: 0.75rem;
    margin-right: 4px;
}

/* Lang Switch Button */
button.nav-item.lang-switch {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 4px 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--white);
    transition: all var(--transition-speed);
}

button.nav-item.lang-switch:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.view-all {
    font-weight: 600;
    color: var(--accent-color) !important;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- New Mega Menu Layout Styles --- */

.mega-container {
    width: 100%;
    margin: 0 auto;
}

.mega-courses-layout {
    display: flex;
    min-height: 500px;
    height: 75vh;
    max-height: 850px;
    border-radius: 8px;
    overflow: hidden;
    /* Keep hidden for rounded corners */
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    /* Force full width */
}

/* Sidebar */
.mega-sidebar {
    width: 360px;
    /* Fixed robust width - Widened for Arabic text */
    flex-shrink: 0;
    /* Prevent shrinking */
    background-color: #f8f9fa;
    border-right: 1px solid #eee;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

html[dir="rtl"] .mega-sidebar {
    border-right: none;
    border-left: 1px solid #eee;
}

.sidebar-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    /* Slight increase */
}

/* Ensure text wraps and doesn't overlap icon */
.mega-sidebar-link span {
    flex: 1;
    margin-inline-end: 1rem;
    line-height: 1.4;
    white-space: normal;
}

.mega-sidebar-link:hover,
.mega-sidebar-link.active {
    background: #fff;
    color: var(--primary-color);
    padding-inline-start: 1.8rem;
    border-left: 4px solid var(--accent-color);
}

html[dir="rtl"] .mega-sidebar-link:hover,
html[dir="rtl"] .mega-sidebar-link.active {
    border-left: none;
    border-right: 4px solid var(--accent-color);
}

/* Main Content Area */
.mega-content-area {
    flex: 1;
    /* Take remaining space */
    min-width: 0;
    /* Important for grid/flex inside flex */
    padding: 2rem;
    overflow-y: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
}

/* Banner */
.mega-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    /* Ensure full width */
}

.mega-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.banner-text {
    position: relative;
    z-index: 2;
    max-width: 65%;
}

.banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.banner-text p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.btn-banner {
    position: relative;
    z-index: 2;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-banner:hover {
    transform: translateY(-2px);
    background: white;
    color: var(--sidebar-dark);
}

/* Folder Grid */
.mega-folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-bottom: 1rem;
    width: 100%;
}

.mega-folder-card {
    background: transparent;
    box-shadow: none;
    overflow: visible;
    margin-top: 0;
    cursor: pointer;
    text-decoration: none;
}

.mega-folder-card .folder-top {
    position: relative;
    height: 12px;
    margin-bottom: -1px;
}

/* Corrected Folder Tab Logic: Use a pseudo or separate element */
.mega-folder-card .folder-top::before {
    content: '';
    width: 60px;
    height: 100%;
    background: #FBC02D;
    border-radius: 8px 8px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

html[dir="rtl"] .mega-folder-card .folder-top::before {
    left: auto;
    right: 0;
}

.mega-folder-card .folder-main {
    background: linear-gradient(135deg, #FFD54F 0%, #FBC02D 100%);
    border-radius: 0 12px 12px 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.3);
    border-top-left-radius: 0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    position: relative;
    z-index: 1;
}

html[dir="rtl"] .mega-folder-card .folder-main {
    border-radius: 12px 0 12px 12px;
}

.mega-folder-card:hover .folder-main {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(251, 192, 45, 0.5);
}

.folder-icon {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    align-self: flex-start;
}

.folder-body h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.folder-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 600;
}

/* ==========================================================================
   Training Cities 2-Level Nested Dropdown Menu & Submenu Styling
   ========================================================================== */
.dropdown-menu {
    overflow: visible !important;
}

.dropdown-menu .all-cities-link-item {
    font-weight: 600;
    border-bottom: 1px solid var(--border-color, #eaeaea);
    color: var(--accent-color, #0d6efd) !important;
    background-color: transparent !important;
    padding: 0.75rem 1.25rem !important;
    display: block;
}

.dropdown-menu .all-cities-link-item:hover {
    background-color: var(--off-white, #f8f9fa) !important;
    color: var(--primary-color, #002b49) !important;
}

.dropdown-submenu {
    position: relative;
}

.country-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer;
    padding: 0.65rem 1.25rem !important;
    color: var(--text-dark, #333) !important;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.country-link:hover {
    background-color: var(--off-white, #f8f9fa) !important;
    color: var(--accent-color, #0d6efd) !important;
}

.submenu-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    margin-left: 8px;
}

html[dir="rtl"] .submenu-arrow {
    margin-left: 0;
    margin-right: 8px;
}

@media (min-width: 993px) {
    .dropdown-submenu .submenu-menu {
        display: none;
        position: absolute;
        top: -3px;
        left: 100%;
        right: auto;
        background: var(--white, #ffffff);
        min-width: 240px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        border-radius: 0 8px 8px 8px;
        padding: 0.5rem 0;
        z-index: 1002;
        border-top: 3px solid var(--accent-color, #0d6efd);
        list-style: none;
        margin: 0;
    }

    html[dir="rtl"] .dropdown-submenu .submenu-menu,
    html[lang="ar"] .dropdown-submenu .submenu-menu {
        right: 100%;
        left: auto;
        border-radius: 8px 0 8px 8px;
    }

    .dropdown-submenu:hover > .submenu-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .submenu-menu a {
        padding: 0.6rem 1.5rem !important;
        display: block;
        color: var(--text-dark, #333);
        text-decoration: none;
        transition: background-color 0.2s, color 0.2s;
    }

    .submenu-menu a:hover {
        background-color: var(--off-white, #f8f9fa);
        color: var(--accent-color, #0d6efd);
    }
}

@media (max-width: 992px) {
    .dropdown-submenu .submenu-menu {
        display: none;
        padding-left: 15px;
        padding-right: 15px;
        background-color: rgba(0, 0, 0, 0.02);
        border-left: 2px solid var(--accent-color, #0d6efd);
        margin: 5px 10px;
        border-radius: 4px;
        list-style: none;
    }

    html[dir="rtl"] .dropdown-submenu .submenu-menu {
        border-left: none;
        border-right: 2px solid var(--accent-color, #0d6efd);
    }

    .dropdown-submenu.open > .submenu-menu {
        display: block !important;
    }

    .dropdown-submenu.open .submenu-arrow {
        transform: rotate(90deg);
    }
}



