/* ==== dssa-icon-fix ==== */
/* The theme's custom icon font can't load from a local file (CORS),
   so we re-draw every glyph with FontAwesome equivalents. */
i[class*="icon-"]::before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
}

i.icon-54::before {
    content: "\f0c9" !important;
}
/* hamburger  */
i.icon-73::before {
    content: "\f00d" !important;
}
/* close x    */
i.icon-19::before {
    content: "\f02d" !important;
}
/* heading ornament (book) */
i.icon-20::before {
    content: "\f00c" !important;
}
/* checkmark  */
i.icon-7::before {
    content: "\f19d" !important;
}
/* programs & diplomas (graduation cap) */
i.icon-11::before {
    content: "\f121" !important;
}
/* knowledge center (code) */
i.icon-23::before {
    content: "\f005" !important;
}
/* rating star */
i.icon-4::before {
    content: "\f061" !important;
}
/* arrow right */
i.icon-27::before {
    content: "\f073" !important;
}
/* calendar   */
i.icon-28::before {
    content: "\f086" !important;
}
/* comments   */
i.icon-2::before {
    content: "\f002" !important;
}
/* search     */
/* social icons -> FontAwesome Brands */
i.icon-facebook::before, i.icon-linkedin2::before, i.icon-instagram::before,
i.icon-twitter::before, i.icon-youtube::before {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

i.icon-facebook::before {
    content: "\f39e" !important;
}

i.icon-linkedin2::before {
    content: "\f0e1" !important;
}

i.icon-instagram::before {
    content: "\f16d" !important;
}

i.icon-twitter::before {
    content: "\f099" !important;
}

i.icon-youtube::before {
    content: "\f167" !important;
}

/* ==== dssa-caret-fix ==== */
/* kill the theme's broken-font glyph… */
li.menu-item-has-children > a::before {
    content: none !important;
}
/* …and draw a clean dropdown chevron (RemixIcon, loaded from CDN) */
.mainmenu-nav .mainmenu li.menu-item-has-children > a::after,
li.menu-item-has-children > a::after {
    content: "\ea4e" !important; /* ri-arrow-down-s-line */
    font-family: "remixicon" !important;
    font-style: normal;
    font-weight: 400;
    font-size: 1.05em;
    display: inline-block;
    margin-left: 5px;
    vertical-align: -2px;
    transition: transform .3s ease;
}

li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* ==== dssa-pro-polish ==== */
:root {
    --dssa-navy: #072c43;
    --dssa-navy-2: #0b3a56;
    --dssa-ink: #15303f;
    --dssa-gold: #bf9445;
    --dssa-gold-b: #ffb606;
    --dssa-radius: 16px;
    --dssa-shadow-s: 0 6px 18px rgba(7,44,67,.08);
    --dssa-shadow-m: 0 14px 34px rgba(7,44,67,.12);
    --dssa-shadow-l: 0 26px 60px rgba(7,44,67,.18);
    --dssa-ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- global refinements ---------- */
::selection {
    background: var(--dssa-gold-b);
    color: #20303c
}

html {
    scroll-padding-top: 96px
}

body::-webkit-scrollbar {
    width: 11px
}

body::-webkit-scrollbar-track {
    background: #eef2f5
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--dssa-navy),var(--dssa-navy-2));
    border-radius: 8px;
    border: 2px solid #eef2f5
}

    body::-webkit-scrollbar-thumb:hover {
        background: var(--dssa-gold)
    }

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--dssa-gold-b) !important;
    outline-offset: 3px;
    border-radius: 6px
}

/* ---------- typographic rhythm for every section heading ---------- */
.edublink-section-heading .pre-heading {
    font-size: .8rem !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
    color: var(--dssa-gold) !important;
    margin-bottom: 10px !important;
    display: inline-block
}

.edublink-section-heading .heading {
    line-height: 1.18 !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    letter-spacing: -.01em
}

.edublink-section-heading .sub-heading {
    line-height: 1.7 !important
}

.edublink-section-heading p {
    max-width: 68ch;
    margin-left: auto;
    margin-right: auto
}

/* replace the odd glyph ornament with a refined gold divider */
.title-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 14px auto 6px
}

    .title-shape i {
        display: none !important
    }

    .title-shape::before, .title-shape::after {
        content: "";
        height: 3px;
        border-radius: 3px
    }

    .title-shape::before {
        width: 38px;
        background: linear-gradient(90deg,transparent,var(--dssa-gold))
    }

    .title-shape::after {
        width: 38px;
        background: linear-gradient(90deg,var(--dssa-gold-b),transparent)
    }

/* ---------- one card language everywhere ---------- */
.edublink-category-2,
.eb-post-style-5 .inner,
.eb-testimonial-grid,
.edublink-section-heading .sub-heading blockquote {
    border-radius: var(--dssa-radius) !important;
    box-shadow: var(--dssa-shadow-s);
    transition: transform .45s var(--dssa-ease),box-shadow .45s var(--dssa-ease);
}

    .edublink-category-2:hover,
    .eb-post-style-5 .inner:hover {
        transform: translateY(-8px);
        box-shadow: var(--dssa-shadow-l);
    }
/* article image zoom-on-hover inside its frame */
.eb-post-style-5 .thumbnail img {
    transition: transform .8s var(--dssa-ease)
}

.eb-post-style-5 .inner:hover .thumbnail img {
    transform: scale(1.06)
}

.eb-post-style-5 .thumbnail .date,
.eb-post-style-5 .thumbnail [class*="category"] a {
    border-radius: 8px !important;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 0 4px 14px rgba(0,0,0,.25)
}

.eb-post-style-5 .title {
    line-height: 1.45 !important
}

    .eb-post-style-5 .title a {
        transition: color .25s ease
    }

        .eb-post-style-5 .title a:hover {
            color: var(--dssa-gold) !important
        }

/* ---------- service tiles: icon breathing + press feedback ---------- */
.dssa-tiles-row .edublink-category-2 .icon {
    transition: transform .5s var(--dssa-ease)
}

.dssa-tiles-row .edublink-category-2:hover .icon {
    transform: translateY(-4px) scale(1.08)
}

.dssa-tiles-row .edublink-category-2:active {
    transform: translateY(-3px) scale(.99)
}

.dssa-tiles-row .edublink-category-2 h5 {
    letter-spacing: .01em
}

/* ---------- testimonials: avatar ring + calm rhythm ---------- */
.eb-testimonial-thumb .nav-thumb img {
    border: 3px solid transparent;
    transition: border-color .35s ease,transform .35s var(--dssa-ease),box-shadow .35s ease
}

.eb-testimonial-thumb .swiper-slide-active img {
    border-color: var(--dssa-gold-b);
    box-shadow: 0 10px 26px rgba(191,148,69,.35)
}

.eb-testimonial-grid .rating-icon i {
    color: var(--dssa-gold-b) !important;
    letter-spacing: 2px
}

/* ---------- partners: uniform logo boxes ---------- */
.elementor-image-carousel-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px
}

.elementor-image-carousel-wrapper .swiper-slide-image {
    max-height: 82px;
    width: auto !important;
    object-fit: contain;
    margin: 0 auto
}

/* ---------- footer: quiet, tidy, responsive hovers ---------- */
footer a, .site-footer a {
    transition: color .25s ease,padding-left .25s ease
}

footer ul li a:hover, .site-footer ul li a:hover {
    color: var(--dssa-gold-b) !important;
    padding-left: 5px
}

/* ---------- header: gold underline slide on nav links ---------- */
.mainmenu-nav .mainmenu > li > a {
    position: relative
}

    .mainmenu-nav .mainmenu > li > a::before {
        content: "";
        position: absolute;
        left: 13px;
        right: 100%;
        bottom: 6px;
        height: 2px;
        background: linear-gradient(90deg,var(--dssa-gold),var(--dssa-gold-b));
        transition: right .35s var(--dssa-ease);
        border-radius: 2px
    }

    .mainmenu-nav .mainmenu > li > a:hover::before {
        right: 13px
    }

/* ---------- refined reveal motion (less jump, silkier ease) ---------- */
.dssa-reveal {
    transform: translateY(26px);
    transition-duration: .9s !important;
    transition-timing-function: var(--dssa-ease) !important
}

.dssa-orig-run {
    animation-timing-function: var(--dssa-ease) !important
}

/* ---------- hero micro-refinements ---------- */
#dssa-hero .dh-crest {
    filter: drop-shadow(0 8px 22px rgba(0,0,0,.35))
}

#dssa-hero .dh-orb {
    opacity: .28
}

#dssa-hero .dh-chip {
    transition: transform .4s var(--dssa-ease),background .3s ease
}

    #dssa-hero .dh-chip:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.12)
    }

#dssa-hero .dh-dot {
    transition: all .35s var(--dssa-ease)
}

#dssa-hero .dh-progress {
    height: 4px;
    border-radius: 0 3px 3px 0
}

/* ---------- consistent vertical rhythm between blocks ---------- */
.edublink-section-heading {
    margin-bottom: 34px
}

.dssa-tiles-row {
    margin-top: 8px
}

/* ---------- scroll progress bar (signature touch) ---------- */
#dssa-scrollbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 99999;
    background: linear-gradient(90deg,var(--dssa-gold),var(--dssa-gold-b));
    box-shadow: 0 0 10px rgba(255,182,6,.55);
    transition: width .1s linear;
    pointer-events: none
}

@media (prefers-reduced-motion: reduce) {
    #dssa-scrollbar {
        display: none
    }
}

@media (max-width:767px) {
    .edublink-section-heading .heading {
        font-size: 1.55rem !important
    }

    .edublink-section-heading {
        margin-bottom: 24px
    }
}

/* ==== dssa-footer-still ==== */
footer .dssa-reveal, .site-footer .dssa-reveal, .edublink-footer .dssa-reveal,
footer .dssa-orig-wait, .site-footer .dssa-orig-wait, .edublink-footer .dssa-orig-wait {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

footer .dssa-orig-run, .site-footer .dssa-orig-run, .edublink-footer .dssa-orig-run,
footer .dssa-list-cascade .elementor-icon-list-item,
.site-footer .dssa-list-cascade .elementor-icon-list-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
/* keep only gentle hovers in the footer, no entrance movement */

/* ==== dssa-newsletter ==== */
.edublink-mailchimp-form-container {
    position: relative;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .edublink-mailchimp-form-container label {
        display: none !important
    }

.edublink-mailchimp-item.edublink-mailchimp-email {
    margin: 0 !important
}

.edublink-mailchimp-input-field {
    width: 100% !important;
    padding: 17px 156px 17px 22px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255,182,6,.28) !important;
    background: rgba(255,255,255,.07) !important;
    color: #fff !important;
    font-size: .95rem !important;
    outline: none !important;
    transition: border-color .3s ease,box-shadow .3s ease,background .3s ease;
}

    .edublink-mailchimp-input-field::placeholder {
        color: rgba(255,255,255,.45)
    }

    .edublink-mailchimp-input-field:focus {
        border-color: #ffb606 !important;
        background: rgba(255,255,255,.11) !important;
        box-shadow: 0 0 0 4px rgba(255,182,6,.15) !important;
    }

.edublink-mailchimp-submit-btn {
    position: absolute !important;
    right: 5px;
    top: 5px;
    bottom: 5px;
    margin: 0 !important;
}

button.edublink-mailchimp-subscribe-btn {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 26px !important;
    border: 0 !important;
    border-radius: 50px !important;
    background: linear-gradient(120deg,#ffb606,#bf9445) !important;
    color: #2a2205 !important;
    font-weight: 700 !important;
    font-size: .92rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(255,182,6,.3);
    transition: transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,background .3s ease !important;
}

    button.edublink-mailchimp-subscribe-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(255,182,6,.45);
    }

    button.edublink-mailchimp-subscribe-btn:active {
        transform: scale(.96)
    }
    /* shine sweep on hover */
    button.edublink-mailchimp-subscribe-btn::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 36px;
        left: -60px;
        background: linear-gradient(100deg,transparent,rgba(255,255,255,.55),transparent);
        transform: skewX(-20deg);
    }

    button.edublink-mailchimp-subscribe-btn:hover::after {
        animation: dssaShine .7s ease forwards;
    }

@keyframes dssaShine {
    to {
        left: 130%
    }
}
/* the arrow icon nudges forward on hover */
.edublink-mailchimp-subscribe-btn-icon {
    display: inline-flex;
    transition: transform .3s ease
}

button.edublink-mailchimp-subscribe-btn:hover .edublink-mailchimp-subscribe-btn-icon {
    transform: translateX(4px)
}
/* subscribed state */
button.edublink-mailchimp-subscribe-btn.dssa-done {
    background: linear-gradient(120deg,#2ecc71,#27ae60) !important;
    color: #fff !important;
    animation: dssaPop .45s cubic-bezier(.34,1.56,.64,1);
}

@keyframes dssaPop {
    0% {
        transform: scale(.9)
    }

    60% {
        transform: scale(1.06)
    }

    100% {
        transform: scale(1)
    }
}

@media (max-width:480px) {
    .edublink-mailchimp-input-field {
        padding-right: 130px !important
    }

    button.edublink-mailchimp-subscribe-btn {
        padding: 0 18px !important
    }
}

/* ==== dssa-newsletter-fix ==== */
.edublink-mailchimp-form-container {
    width: 100% !important;
    max-width: 430px !important;
    position: relative !important;
    display: block !important;
}

.edublink-mailchimp-item.edublink-mailchimp-email {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: block !important;
}

.edublink-mailchimp-input-field {
    width: 100% !important;
    min-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

.edublink-mailchimp-submit-btn {
    /* anchor to the BOTTOM (where the input lives), never over the text above */
    position: absolute !important;
    right: 5px !important;
    top: auto !important;
    bottom: 5px !important;
    height: 46px !important;
    left: auto !important;
    width: auto !important;
    margin: 0 !important;
}

button.edublink-mailchimp-subscribe-btn {
    max-width: 150px;
    white-space: nowrap;
    padding: 0 20px !important;
    font-size: .88rem !important;
}

@media (max-width:480px) {
    .edublink-mailchimp-input-field {
        padding-right: 118px !important
    }

    button.edublink-mailchimp-subscribe-btn {
        padding: 0 14px !important;
        font-size: .82rem !important
    }
}

/* ==== dssa-newsletter-fix2 ==== */
.edublink-mailchimp-input-field {
    height: 56px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 56px !important
}

button.edublink-mailchimp-subscribe-btn {
    height: 46px !important
}
/* and give the intro sentence guaranteed breathing room above the pill */
.edublink-mailchimp-form-container {
    margin-top: 14px !important
}

/* ==== dssa-footer-mobile ==== */
@media (max-width:767px) {
    /* footer escapes the global margin/padding zeroing — it needs its own flow */
    html body footer .elementor-widget,
    html body .site-footer .elementor-widget,
    html body footer .elementor-widget-wrap,
    html body .site-footer .elementor-widget-wrap {
        position: static !important;
        transform: none !important;
    }

    html body footer .elementor-widget,
    html body .site-footer .elementor-widget {
        margin: 0 0 16px 0 !important;
    }
    /* column headings: firm positive spacing, never negative offsets */
    html body footer h4, html body .site-footer h4,
    html body footer .elementor-heading-title,
    html body .site-footer .elementor-heading-title,
    html body footer .footer-widget-title,
    html body .site-footer .widget-title {
        position: static !important;
        transform: none !important;
        margin: 28px 0 14px 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
    }
    /* each stacked column separated clearly */
    html body footer .elementor-column,
    html body .site-footer .elementor-column {
        margin: 0 0 10px 0 !important;
        padding: 0 12px !important;
    }
    /* lists breathe */
    html body footer ul li, html body .site-footer ul li {
        margin: 0 0 10px 0 !important;
        line-height: 1.5 !important;
    }
    /* logo block centered and separated */
    html body footer .site-logo, html body .site-footer img[alt*="Academy"] {
        margin-bottom: 14px !important;
    }
}

/* ==== dssa-mobile-rhythm ==== */
@media (max-width:767px) {
    /* Elementor sections carry big desktop paddings — compress them uniformly */
    html body .elementor-top-section,
    html body .elementor-section {
        padding-top: clamp(28px,6vw,44px) !important;
        padding-bottom: clamp(28px,6vw,44px) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    html body .elementor-inner-section {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
    /* container/widget margins that stack up between blocks */
    html body .elementor-widget {
        margin-bottom: 0 !important
    }

    html body .elementor-widget-wrap {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    html body .e-con-boxed {
        padding-top: clamp(28px,6vw,44px) !important;
        padding-bottom: clamp(28px,6vw,44px) !important
    }
    /* section headings: tighter under-heading gap */
    html body .edublink-section-heading {
        margin-bottom: 18px !important
    }
    /* rounded photo sections keep a small consistent outer gap */
    html body .dssa-rounded {
        margin-top: 10px !important;
        margin-bottom: 10px !important
    }
    /* my custom blocks follow the same rhythm */
    html body .dssa-cta-wrap {
        padding: 26px 12px !important
    }

    html body .cta-shell {
        padding: 34px 22px !important
    }
    /* empty spacer widgets that themes love */
    html body .elementor-widget-spacer {
        display: none !important
    }
    /* snap sliders: trim the extra bottom padding */
    html body .dssa-snap {
        padding-bottom: 8px !important
    }

    .dssa-snap-dots {
        margin: 10px 0 2px !important
    }
    /* footer top gap */
    html body footer, html body .site-footer {
        margin-top: 10px !important
    }
}

/* ==== dssa-mobile-rhythm-2 ==== */
@media (max-width:767px) {
    /* new-style Elementor containers take spacing from variables — override those */
    html body .e-con {
        --padding-top: 22px !important;
        --padding-bottom: 22px !important;
        --padding-left: 12px !important;
        --padding-right: 12px !important;
        --margin-top: 0px !important;
        --margin-bottom: 0px !important;
        --gap: 14px !important;
        --row-gap: 14px !important;
        padding-top: 22px !important;
        padding-bottom: 22px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        gap: 14px !important;
    }

    html body .e-con-inner {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        gap: 14px !important;
    }
    /* heading + carousel widgets inside: no extra margins of their own */
    html body .e-con .elementor-widget-heading,
    html body .e-con .elementor-widget-image-carousel,
    html body .e-con .elementor-widget {
        margin: 0 !important;
    }

    html body .elementor-widget-heading .elementor-heading-title {
        margin: 0 !important
    }

    html body .elementor-image-carousel-wrapper {
        margin: 0 !important;
        padding: 0 !important
    }

        html body .elementor-image-carousel-wrapper .swiper-slide {
            min-height: 84px
        }
}

/* ==== dssa-widescreen ==== */
/* Large desktops: widen every boxed container */
@media (min-width:1500px) {
    .elementor-section-boxed > .elementor-container {
        max-width: 1400px !important
    }

    .e-con-boxed > .e-con-inner {
        max-width: 1400px !important
    }

    .site-content-inner, .edublink-container {
        max-width: 1460px !important
    }

    .cta-shell {
        max-width: 1400px
    }
}
/* Very large / 4K: go wider still and scale the base type up */
@media (min-width:2000px) {
    .elementor-section-boxed > .elementor-container {
        max-width: 1700px !important
    }

    .e-con-boxed > .e-con-inner {
        max-width: 1700px !important
    }

    .site-content-inner, .edublink-container {
        max-width: 1760px !important
    }

    .cta-shell {
        max-width: 1700px
    }

    html {
        font-size: 18px
    }
}
/* Testimonials: let the two columns use the full row and balance heights */
.dssa-testi-sec > .elementor-container {
    align-items: stretch !important
}

.dssa-testi-sec .elementor-column {
    display: flex
}

    .dssa-testi-sec .elementor-column > .elementor-widget-wrap {
        width: 100%
    }
/* Partners: bigger, more present logos on wide screens */
@media (min-width:1500px) {
    .elementor-image-carousel-wrapper .swiper-slide {
        min-height: 130px
    }

    .elementor-image-carousel-wrapper .swiper-slide-image {
        max-height: 96px
    }
}

/* ==== dssa-dropdown-v3 ==== */
/* the header and its dropdowns must sit ABOVE everything (incl. the hero) */
header.site-header, header.site-header * {
    z-index: auto
}

header.site-header {
    position: relative;
    z-index: 99990 !important
}

li.menu-item-has-children {
    position: relative
}

    li.menu-item-has-children > .edublink-dropdown-menu {
        z-index: 99999 !important;
        pointer-events: auto !important;
    }

    li.menu-item-has-children.dssa-open > .edublink-dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
    }

/* ==== dssa-social-row ==== */
.elementor-social-icons-wrapper {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

    .elementor-social-icons-wrapper .elementor-grid-item {
        margin: 0 !important
    }

/* ==== breadcrumb v3: real separator element in the markup (li.dssa-sep) ==== */
/* The separator is now an actual <li class="dssa-sep">&rsaquo;</li> in the HTML,
   so it never depends on icon fonts or pseudo-elements. The bidi algorithm
   mirrors the chevron automatically in Arabic (rtl) - no extra rule needed. */
html body .edublink-breadcrumb ul.breadcrumb {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

    html body .edublink-breadcrumb ul.breadcrumb li {
        display: inline-flex !important;
        align-items: center;
        margin: 0 !important;
        padding: 0 !important;
    }
        /* kill every theme/legacy pseudo-element separator so nothing doubles up */
        html body .edublink-breadcrumb ul.breadcrumb li::before,
        html body .edublink-breadcrumb ul.breadcrumb li a::before,
        html body .edublink-breadcrumb ul.breadcrumb li span::before,
        html body .edublink-breadcrumb ul.breadcrumb li::after,
        html body .edublink-breadcrumb ul.breadcrumb li a::after,
        html body .edublink-breadcrumb ul.breadcrumb li span::after {
            content: none !important;
        }
        /* the real separator */
        html body .edublink-breadcrumb ul.breadcrumb li.dssa-sep {
            color: #bf9445 !important;
            font-weight: 700;
            margin: 0 10px !important;
            line-height: 1;
            user-select: none;
        }

/* ==== mobile menu open state v3: class-driven AND full ownership of the panel
   geometry - the theme parks the drawer off-canvas with left/right offsets,
   so the open state pins it explicitly. ==== */
html body .edublink-mobile-menu.dssa-mm-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2147483620 !important;
}

    html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: rgba(7,20,31,.6) !important;
        z-index: 2147483625 !important;
    }

    html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-nav-wrapper {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: auto !important;
        width: 320px !important;
        max-width: 86vw !important;
        height: 100% !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
        overflow-y: auto !important;
        background: #fff !important;
        padding: 18px 20px 40px !important;
        box-shadow: 0 0 44px rgba(0,0,0,.3) !important;
        z-index: 2147483630 !important;
        /* the theme parks the drawer with pointer-events:none; without this,
     every tap inside the drawer falls THROUGH to the overlay and closes it */
        pointer-events: auto !important;
    }

        html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-nav-wrapper * {
            pointer-events: auto !important;
        }
/* drawer slides from the right side in Arabic */
html[dir="rtl"] body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-nav-wrapper {
    left: auto !important;
    right: 0 !important;
}
/* everything inside is visible and laid out */
html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 14px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

    html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-item > li {
        display: block !important;
        border-bottom: 1px solid #eef1f3;
    }

    html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-item li > a,
    html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-item li > .nav-link {
        display: block !important;
        padding: 12px 4px !important;
        color: #072C43 !important;
        font-weight: 600;
        font-size: 15px;
        visibility: visible !important;
        opacity: 1 !important;
    }

html body .edublink-mobile-menu.dssa-mm-open .responsive-header-top {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    visibility: visible !important;
    opacity: 1 !important;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef1f3;
}

html body .edublink-mobile-menu.dssa-mm-open .responsive-header-logo img {
    max-width: 150px;
    height: auto;
}

html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-close a {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #072C43 !important;
    font-size: 20px;
}
/* mobile submenus: hidden until their parent li gets .dssa-open (site.js) */
html body .edublink-mobile-menu .edublink-mobile-menu-item .edublink-dropdown-menu {
    display: none;
    position: static !important;
    box-shadow: none !important;
    padding: 0 0 6px 14px !important;
    margin: 0 !important;
}

html body .edublink-mobile-menu.dssa-mm-open .edublink-mobile-menu-item li.dssa-open > .edublink-dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

html[dir="rtl"] body .edublink-mobile-menu .edublink-mobile-menu-item .edublink-dropdown-menu {
    padding: 0 14px 6px 0 !important;
}
/* drawer caret: pinned to the far edge, never overlapping the label */
html body .edublink-mobile-menu .edublink-mobile-menu-item li.menu-item-has-children > a {
    position: relative !important;
    padding-right: 32px !important;
}

    html body .edublink-mobile-menu .edublink-mobile-menu-item li.menu-item-has-children > a::after {
        position: absolute !important;
        right: 6px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

html body .edublink-mobile-menu .edublink-mobile-menu-item li.menu-item-has-children.dssa-open > a::after {
    transform: translateY(-50%) rotate(180deg) !important;
}

html[dir="rtl"] body .edublink-mobile-menu .edublink-mobile-menu-item li.menu-item-has-children > a {
    padding-right: 4px !important;
    padding-left: 32px !important;
}

    html[dir="rtl"] body .edublink-mobile-menu .edublink-mobile-menu-item li.menu-item-has-children > a::after {
        right: auto !important;
        left: 6px !important;
    }
/* greeting line in the mobile menu: plain text, not a link */
.dssa-mm-greeting {
    cursor: default;
    color: #BF9445 !important;
    font-weight: 700;
}

/* ==== mobile header greeting: visible next to the burger, desktop uses the nav dropdown ==== */
.dssa-mm-user {
    display: none;
    color: #BF9445;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

    .dssa-mm-user i {
        font-size: 16px;
        vertical-align: -1px;
    }

@media (max-width:1199px) {
    .edublink-header-right-side {
        display: flex !important;
        align-items: center;
        gap: 14px;
    }

    .dssa-mm-user {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

/* ==== nav one-line guard: the auth item must never wrap the menu ====
   13-14 inch laptops: keep a single row and step the link size down one
   notch ONLY in that width band. Theme spacing untouched elsewhere. */
.edublink-default-header-navbar {
    flex-wrap: nowrap !important;
}

    .edublink-default-header-navbar > li {
        white-space: nowrap;
    }

@media (min-width:1200px) and (max-width:1550px) {
    .edublink-default-header-navbar > li > a.nav-link {
        font-size: 14.5px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* ==== subscribe button owns its pseudo-elements: no theme fill overlay ever ==== */
button.edublink-mailchimp-subscribe-btn::before {
    content: none !important;
    display: none !important;
}
