
.specific_page .hero {
    text-align: center;
    padding: 60px 0;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.specific_page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e0e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specific_page .hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.specific_page .section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.specific_page .section:nth-child(2) { animation-delay: 0.1s; }
.specific_page .section:nth-child(3) { animation-delay: 0.2s; }
.specific_page .section:nth-child(4) { animation-delay: 0.3s; }
.specific_page .section:nth-child(5) { animation-delay: 0.4s; }

.specific_page .section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4a5568;
    position: relative;
}

.specific_page .section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c3c3c3, #ededed);
    border-radius: 2px;
}

.specific_page .accordionn {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specific_page .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specific_page .accordion-item:last-child {
    border-bottom: none;
}

.specific_page .accordion-headerr {
    background: linear-gradient(90deg, #c3c3c3, #ededed);
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d3748;
}

.specific_page .accordion-headerr:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    transform: translateY(-2px);
}

.specific_page .accordion-headerr::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #667eea;
}
.rtl .specific_page .accordion-headerr::after{
    content: '+';
    position: absolute;
    left: 25px;
    right: unset;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #667eea;
}


.specific_page .accordion-headerr.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.specific_page .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.specific_page .accordion-content.active {
    max-height: unset;
}

.specific_page .accordion-body {
    padding: 30px;
    line-height: 1.7;
    color: #4a5568;
}

.specific_page .sub-accordion {
    margin-top: 20px;
}

.specific_page .sub-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.specific_page .sub-accordion-headerr {
    background: #f7fafc;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2d3748;
    position: relative;
}

.specific_page .sub-accordion-headerr:hover {
    background: #edf2f7;
}

.specific_page .sub-accordion-headerr::after {
    content: '▶';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #667eea;
}

.specific_page .sub-accordion-headerr.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.specific_page .sub-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.specific_page .sub-accordion-content.active {
    max-height: 300px;
}

.specific_page .sub-accordion-body {
    padding: 15px 20px;
    background: white;
    color: #718096;
}

.specific_page .tabs {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specific_page .tab-nav {
    display: flex;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specific_page .tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
    position: relative;
}

.specific_page .tab-button:hover {
    color: #4a5568;
    background: rgba(102, 126, 234, 0.1);
}

.specific_page .tab-button.active {
    color: #f0c77f;
    background: white;
}

.specific_page .tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c3c3c3, #ededed);
}

.specific_page .tab-content {
    display: none;
    padding: 30px;
    line-height: 1.7;
    color: #4a5568;
    animation: fadeIn 0.4s ease-out;
}

.specific_page .tab-content.active {
    display: block;
}

.specific_page .sub-tabs {
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.specific_page .sub-tab-nav {
    display: flex;
    background: #f7fafc;
}

.specific_page .sub-tab-button {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #718096;
    transition: all 0.3s ease;
}

.specific_page .sub-tab-button:hover {
    color: #4a5568;
    background: rgba(102, 126, 234, 0.1);
}

.specific_page .sub-tab-button.active {
    color: #f0c77f;
    background: white;
}

.specific_page .sub-tab-content {
    display: none;
    padding: 20px;
    background: white;
    color: #718096;
}

.specific_page .sub-tab-content.active {
    display: block;
}

.specific_page .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.specific_page .card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.specific_page .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.specific_page .card-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    color: #4a5568;
    padding-bottom: 0px !important;
}

.specific_page .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.specific_page .card-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
}

.specific_page .card-body {
    padding: 25px;
    line-height: 1.6;
    color: #4a5568;
}

.specific_page .card-footer {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
}

.specific_page .btn {
    background: linear-gradient(90deg, #08225d, #617091);
    color: white !important;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.specific_page .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .specific_page .hero h1 { font-size: 2.5rem; }
    .specific_page .hero p { font-size: 1.1rem; }
    .specific_page .section { padding: 25px; }
    .specific_page .cards-grid { grid-template-columns: 1fr; }
    .specific_page .tab-nav { flex-direction: column; }
    .specific_page .sub-tab-nav { flex-direction: column; }
}

.pdf-viewer-container {
            background-color: #ffffff;
            padding: 20px;
            margin: 30px 0;
            border-radius: 10px;
            border: 1px solid #ddd;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .pdf-title {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .pdf-embed-box {
            position: relative;
            border: 1px solid #ccc;
            border-radius: 6px;
            overflow: hidden;
        }

        .pdf-embed {
            width: 100%;
            height: 500px;
            border: none;
        }

        .pdf-fallback {
            font-size: 14px;
            color: #555;
            margin-top: 10px;
        }

        .pdf-fallback a {
            color: #b3b3b3;
            text-decoration: underline;
        }

        .pdf-fallback a:hover {
            color: #234026;
        }


        .file-list-container {
            margin: 30px 0;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background: #fafafa;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }

            .file-list-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #234026;
            }

            .custom-file-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            }

            .custom-file-table th,
            .custom-file-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
            text-align: left;
            }

            .custom-file-table th {
            background-color: #f0f0f0;
            color: #333;
            }

            .custom-file-table tr:hover {
            background-color: #f9f9f9;
            }

            .custom-file-table .actions a {
            margin-right: 8px;
            text-decoration: none;
            font-size: 16px;
            padding: 6px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
            }

            .btn-view {
            background-color: #8d8d8d;
            color: #fff;
            }

            .btn-view:hover {
            background-color: #969696;
            }

            .btn-download {
            background-color: #dc3545;
            color: #fff;
            }

            .btn-download:hover {
            background-color: #9b1c26;
            }

            .blog-details__text p , .blog-details__text span{
                line-height: 200% !important
            }

                        /* Base style */
            .zoomable {
                transition: transform 0.3s ease;
                cursor: zoom-in;
            }

            /* When zoomed */
            .zoomed {
                transform: scale(2); /* Zoom factor */
                cursor: zoom-out;
                z-index: 1000;
                position: relative;
            }

/* ================================================================
   RTL (Arabic) Layout Fixes — active only when lang=ar (dir="rtl")
   ================================================================ */

/* 1. Arabic font for all text elements */
[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] p, [dir="rtl"] a, [dir="rtl"] span,
[dir="rtl"] li, [dir="rtl"] button, [dir="rtl"] input,
[dir="rtl"] label, [dir="rtl"] td, [dir="rtl"] th {
    font-family: 'nkar', 'Noto Kufi Arabic', Arial, sans-serif;
}

/* 2. Swap margin-left / margin-right utility classes */
[dir="rtl"] .ml-3  { margin-left: 0 !important; margin-right: 3px !important; }
[dir="rtl"] .mr-3  { margin-right: 0 !important; margin-left: 3px !important; }
[dir="rtl"] .ml-5  { margin-left: 0 !important; margin-right: 5px !important; }
[dir="rtl"] .mr-5  { margin-right: 0 !important; margin-left: 5px !important; }
[dir="rtl"] .ml-8  { margin-left: 0 !important; margin-right: 8px !important; }
[dir="rtl"] .mr-8  { margin-right: 0 !important; margin-left: 8px !important; }
[dir="rtl"] .ml-10 { margin-left: 0 !important; margin-right: 10px !important; }
[dir="rtl"] .mr-10 { margin-right: 0 !important; margin-left: 10px !important; }
[dir="rtl"] .ml-15 { margin-left: 0 !important; margin-right: 15px !important; }
[dir="rtl"] .mr-15 { margin-right: 0 !important; margin-left: 15px !important; }
[dir="rtl"] .ml-20 { margin-left: 0 !important; margin-right: 20px !important; }
[dir="rtl"] .mr-20 { margin-right: 0 !important; margin-left: 20px !important; }
[dir="rtl"] .ml-25 { margin-left: 0 !important; margin-right: 25px !important; }
[dir="rtl"] .mr-25 { margin-right: 0 !important; margin-left: 25px !important; }
[dir="rtl"] .ml-30 { margin-left: 0 !important; margin-right: 30px !important; }
[dir="rtl"] .mr-30 { margin-right: 0 !important; margin-left: 30px !important; }
[dir="rtl"] .ml-40 { margin-left: 0 !important; margin-right: 40px !important; }
[dir="rtl"] .mr-40 { margin-right: 0 !important; margin-left: 40px !important; }

/* 3. Swap padding-left / padding-right utility classes */
[dir="rtl"] .pl-5  { padding-left: 0 !important; padding-right: 5px !important; }
[dir="rtl"] .pr-5  { padding-right: 0 !important; padding-left: 5px !important; }
[dir="rtl"] .pl-8  { padding-left: 0 !important; padding-right: 8px !important; }
[dir="rtl"] .pr-8  { padding-right: 0 !important; padding-left: 8px !important; }
[dir="rtl"] .pl-15 { padding-left: 0 !important; padding-right: 15px !important; }
[dir="rtl"] .pr-15 { padding-right: 0 !important; padding-left: 15px !important; }
[dir="rtl"] .pl-20 { padding-left: 0 !important; padding-right: 20px !important; }
[dir="rtl"] .pr-20 { padding-right: 0 !important; padding-left: 20px !important; }
[dir="rtl"] .pl-25 { padding-left: 0 !important; padding-right: 25px !important; }
[dir="rtl"] .pr-25 { padding-right: 0 !important; padding-left: 25px !important; }
[dir="rtl"] .pl-30 { padding-left: 0 !important; padding-right: 30px !important; }
[dir="rtl"] .pr-30 { padding-right: 0 !important; padding-left: 30px !important; }
[dir="rtl"] .pl-40 { padding-left: 0 !important; padding-right: 40px !important; }
[dir="rtl"] .pr-40 { padding-right: 0 !important; padding-left: 40px !important; }

/* 4. Header: Search panel — swap icon and button sides */
[dir="rtl"] .header .header-search__field .icon {
    left: auto;
    right: 0;
}
[dir="rtl"] .header .header-search__field button {
    right: auto;
    left: 0;
}

/* 5. Header navigation: subnav dropdown triangle indicator */
[dir="rtl"] .header .header-menu .menu__nav > li > .subnav::before {
    left: auto;
    right: 20px;
}

/* 6. Mobile menu: back button chevron icon */
[dir="rtl"] .menu__backButton .icon-chevron-left {
    display: inline-block;
    transform: scaleX(-1);
}

/* 7. About section: floating secondary image and tag positioning */
[dir="rtl"] .elements-image__img2 {
    left: auto;
    right: 0;
}
[dir="rtl"] .elements-image__el3 {
    right: auto;
    left: 30px;
}

/* 8. Slider: absolute-positioned prev/next nav buttons */
[dir="rtl"] .section-slider-nav.-absolute.-prev {
    left: auto;
    right: -35px;
}
[dir="rtl"] .section-slider-nav.-absolute.-next {
    right: auto;
    left: -35px;
}
@media (max-width: 575px) {
    [dir="rtl"] .section-slider-nav.-absolute.-prev { left: auto; right: -10px; }
    [dir="rtl"] .section-slider-nav.-absolute.-next { right: auto; left: -10px; }
}

/* 9. Slider hero: slider card prev/next absolute buttons */
[dir="rtl"] .section-slider-nav.-absolute.-prev.js-courses-prev {
    left: auto;
    right: -35px;
}
[dir="rtl"] .section-slider-nav.-absolute.-next.js-courses-next {
    right: auto;
    left: -35px;
}

/* 10. Arrow icons: flip all directional arrows in navigation context */
[dir="rtl"] .js-prev .icon-arrow-left,
[dir="rtl"] .js-prev .icon-arrow-right,
[dir="rtl"] .js-next .icon-arrow-left,
[dir="rtl"] .js-next .icon-arrow-right,
[dir="rtl"] .js-courses-prev .icon-arrow-left,
[dir="rtl"] .js-courses-prev .icon-arrow-right,
[dir="rtl"] .js-courses-next .icon-arrow-left,
[dir="rtl"] .js-courses-next .icon-arrow-right {
    display: inline-block;
    transform: scaleX(-1);
}

/* 11. "More info" external link arrows */
[dir="rtl"] .icon-arrow-top-right {
    display: inline-block;
    transform: scaleX(-1);
}

/* 12. Newsletter form submit arrow */
[dir="rtl"] .form-single-field .button .icon-arrow-right {
    display: inline-block;
    transform: scaleX(-1);
}

/* 13. Testimonial modal: close button swap from right to left */
[dir="rtl"] .tm-modal-close {
    right: auto;
    left: 10px;
}

/* 14. Page content: section h2 underline decoration */
[dir="rtl"] .specific_page .section h2::after {
    left: auto;
    right: 0;
}

/* 15. Page content: sub-accordion arrow indicator */
[dir="rtl"] .specific_page .sub-accordion-headerr::after {
    right: auto;
    left: 20px;
}

/* 16. Page content: main accordion expand/collapse indicator */
[dir="rtl"] .specific_page .accordion-headerr::after {
    position: absolute;
    right: unset;
    left: 25px;
}

/* 17. File list table: alignment and action button spacing */
[dir="rtl"] .custom-file-table th,
[dir="rtl"] .custom-file-table td {
    text-align: right;
}
[dir="rtl"] .custom-file-table .actions a {
    margin-right: 0;
    margin-left: 8px;
}

/* 18. Sidebar: blog nav item indicator line */
[dir="rtl"] .sidebar.-base-sidebar .sidebar__links > div > a::before {
    left: auto;
    right: 0;
    padding-right: 10px;
    padding-left: 0;
}

/* 19. Event category badges inline spacing */
[dir="rtl"] .eventCard__inner .d-flex.x-gap-5 a[style*="margin-right"] {
    margin-right: 0 !important;
    margin-left: 3px !important;
}

/* 20. Blog card: icon + date row — calendar icon spacing already handled by .ml-8 swap */

/* 21. Mega menu: correct right-to-left banner positioning */
[dir="rtl"] .header .header-menu .mega .mega-banner {
    margin-left: 0;
    margin-right: auto;
}

/* ================================================================
   Mobile Navigation Panel — .mnav-* classes only
   Completely isolated from the desktop menu.
   Desktop (≥ 1200px): panel is display:none.
   Mobile  (≤ 1199px): full-screen overlay with slide-in panel.
   ================================================================ */

/* Hidden on desktop — zero impact on large screens */
.mnav-overlay { display: none; }

@media (max-width: 1199px) {

    /* Backdrop */
    .mnav-overlay {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 99999;
        background: rgba(8, 34, 93, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .mnav-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    /* Slide-in panel */
    .mnav-panel {
        position: absolute;
        top: 0; left: 0;
        width: 320px;
        max-width: calc(100vw - 52px);
        height: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    }
    [dir="rtl"] .mnav-panel {
        left: auto; right: 0;
        transform: translateX(100%);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
    }
    .mnav-overlay.is-open .mnav-panel {
        transform: translateX(0);
    }

    /* Panel header */
    .mnav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        background: linear-gradient(135deg, #08225d, #1a3a80);
        flex-shrink: 0;
        gap: 8px;
    }
    .mnav-header__brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }
    .mnav-header__brand img {
        width: 34px; height: 34px;
        object-fit: contain;
        flex-shrink: 0;
    }
    .mnav-header__brand span {
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mnav-close {
        width: 34px; height: 34px;
        border: none;
        background: rgba(255, 255, 255, 0.18);
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.2s;
    }
    .mnav-close:hover { background: rgba(255, 255, 255, 0.35); }

    /* Auth strip */
    .mnav-auth {
        display: flex;
        gap: 8px;
        padding: 10px 14px;
        background: #eef3ff;
        border-bottom: 1px solid #dde5f8;
        flex-shrink: 0;
    }
    .mnav-auth a {
        flex: 1;
        text-align: center;
        padding: 8px 6px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s;
    }
    .mnav-auth a:first-child {
        background: #08225d;
        color: #fff !important;
    }
    .mnav-auth a:last-child {
        background: #fff;
        color: #08225d !important;
        border: 1.5px solid #08225d;
    }
    .mnav-auth a:hover { opacity: 0.82; }

    /* Scrollable menu body */
    .mnav-body {
        flex: 1 1 auto;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    /* Level-1 list */
    .mnav-list {
        list-style: none;
        margin: 0;
        padding: 6px 0;
    }

    /* Collapsible sub-lists */
    .mnav-sub-list,
    .mnav-sub-list-2 {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
        border-top: 1px solid #edf0f8;
    }
    .mnav-sub-list   { background: #f5f7ff; }
    .mnav-sub-list-2 { background: #eef2ff; border-top-color: #e5eaf5; }

    .mnav-item.is-open     > .mnav-sub-list   { display: block; }
    .mnav-sub-item.is-open > .mnav-sub-list-2 { display: block; }

    /* Item rows (link + toggle button side-by-side) */
    .mnav-item__row,
    .mnav-sub-item__row {
        display: flex;
        align-items: stretch;
        border-bottom: 1px solid #edf0f8;
    }
    .mnav-sub-item__row { border-bottom-color: #e5eaf5; }

    /* Links */
    .mnav-link,
    .mnav-sub-link,
    .mnav-sub-link-2 {
        text-decoration: none;
        line-height: 1.4;
        word-break: break-word;
        display: flex;
        align-items: center;
        transition: background 0.15s;
    }
    /* Level 1 */
    .mnav-link {
        flex: 1;
        padding: 14px 16px;
        color: #08225d;
        font-size: 15px;
        font-weight: 600;
    }
    span.mnav-link { cursor: default; }
    a.mnav-link:hover { background: #eef2ff; }

    /* Level 2 */
    .mnav-sub-link {
        flex: 1;
        padding: 11px 22px;
        color: #1a3a80;
        font-size: 14px;
        font-weight: 500;
    }
    span.mnav-sub-link { cursor: default; }
    a.mnav-sub-link:hover { background: #e8eeff; }

    /* Level 3 */
    .mnav-sub-link-2 {
        display: block;
        padding: 9px 30px;
        color: #2c4a8a;
        font-size: 13px;
        border-bottom: 1px solid #e8edf8;
    }
    .mnav-sub-link-2:hover { background: #e2e9ff; }

    /* Toggle buttons */
    .mnav-toggle,
    .mnav-sub-toggle {
        width: 46px;
        border: none;
        background: transparent;
        color: #08225d;
        cursor: pointer;
        border-left: 1px solid #edf0f8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.15s;
    }
    [dir="rtl"] .mnav-toggle,
    [dir="rtl"] .mnav-sub-toggle {
        border-left: none;
        border-right: 1px solid #edf0f8;
    }
    .mnav-toggle i,
    .mnav-sub-toggle i {
        font-size: 13px;
        transition: transform 0.25s ease;
    }
    .mnav-item.is-open     > .mnav-item__row .mnav-toggle i,
    .mnav-sub-item.is-open > .mnav-sub-item__row .mnav-sub-toggle i {
        transform: rotate(90deg);
    }
    .mnav-toggle:hover,
    .mnav-sub-toggle:hover { background: #eef2ff; }

    /* Footer */
    .mnav-footer {
        flex-shrink: 0;
        padding: 12px 16px;
        background: #f5f7ff;
        border-top: 2px solid #dde5f8;
    }
    .mnav-footer__label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #7a90bb;
        margin-bottom: 2px;
    }
    .mnav-footer__phone {
        font-size: 14px;
        font-weight: 600;
        color: #08225d;
    }
    .mnav-footer__address {
        font-size: 12px;
        color: #64748b;
        margin-top: 4px;
        line-height: 1.5;
    }
    .mnav-footer__socials {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 10px;
    }
    .mnav-footer__socials a {
        width: 32px; height: 32px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #ccd5f5;
        color: #08225d !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .mnav-footer__socials a:hover {
        background: #08225d;
        color: #fff !important;
        border-color: #08225d;
    }
}
