:root {
    --sheikan-maroon: #eb774c;
    --sheikan-blue: #2da7c7;
    --sheikan-deep: #53b1c8;
    --sheikan-gray: #a8a9ab;
    --sheikan-white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f7f9fc;
    --card: #ffffff;
    --shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    --radius: 18px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html[dir="rtl"] body {
    font-family: "Cairo", sans-serif;
}

html[dir="ltr"] body {
    font-family: "Inter", sans-serif;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}

/* Topbar */
.topbar {
    background: var(--sheikan-blue);
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 1px 0;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar .divider {
    opacity: 0.6;
}

.topbar a {
    color: #fff;
    transition: 0.25s ease;
}

.topbar a:hover {
    opacity: 0.85;
}

.topbar-button {
    background: var(--sheikan-maroon);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-inline-start: 6px;
}

.lang-switch a {
    font-weight: 700;
    opacity: 0.7;
}

.lang-switch a.active {
    opacity: 1;
    text-decoration: underline;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sheikan-maroon), var(--sheikan-blue));
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    box-shadow: var(--shadow);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-text strong {
    color: var(--sheikan-maroon);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.brand-text small {
    color: var(--muted);
    font-size: 14px;
}

/* Navigation */
.main-nav {
    background: linear-gradient(90deg, var(--sheikan-blue), var(--sheikan-deep));
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.main-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.main-nav-menu > li {
    position: relative;
}

.main-nav-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav-menu > li:hover > a,
.main-nav-menu > li.active > a,
.main-nav-menu > li.child-active > a {
    background: var(--sheikan-maroon);
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 250px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 0 0 14px 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 200;
}

.dropdown li {
    position: relative;
}

.dropdown a {
    display: block;
    padding: 11px 16px;
    color: var(--text);
    font-weight: 600;
}

.dropdown a:hover {
    background: #f3f7fb;
    color: var(--sheikan-deep);
}

.main-nav-menu li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-toggle,
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

/* Breadcrumbs */
.breadcrumbs-wrap {
    background: #eef4fb;
    border-top: 1px solid #dde8f5;
    border-bottom: 1px solid #dde8f5;
}

.breadcrumbs {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumbs li::after {
    content: "/";
    margin-inline-start: 10px;
}

html[dir="rtl"] .breadcrumbs li::after {
    content: "‹";
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a:hover {
    color: var(--sheikan-blue);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 76, 158, 0.75), rgba(122, 46, 49, 0.45));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 150px 0;
}



.hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.1;
    max-width: 760px;
}

.hero p {
    margin: 0 0 26px;
    max-width: 760px;
    font-size: clamp(17px, 2.2vw, 22px);
    color: rgba(255,255,255,0.92);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--sheikan-maroon);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    inset-inline: 0;
    bottom: 30px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-muted {
    background: #f0f5fb;
}

.section-stats {
    background: linear-gradient(135deg, var(--sheikan-deep), var(--sheikan-maroon));
    color: #fff;
}

.section-contact {
    background: #fff;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--sheikan-blue);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.2;
    color: var(--sheikan-maroon);
}

.section-title.light {
    color: #fff;
}

.split-section,
.section-grid-2,
.cards-grid,
.events-grid,
.stats-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

.split-section {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.section-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid,
.events-grid,
.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.info-card,
.dean-card,
.list-card,
.event-card,
.stat-card,
.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card,
.list-card,
.event-card,
.stat-card {
    padding: 26px;
}

.info-card h3,
.list-card h3,
.event-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: var(--sheikan-maroon);
}

.info-card p,
.list-card span,
.event-card strong,
.event-card p {
    color: var(--muted);
}

.quick-links {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-card {
    border-top: 5px solid var(--sheikan-blue);
}

.dean-card {
    padding: 30px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    border-inline-start: 6px solid var(--sheikan-maroon);
}

.dean-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--sheikan-maroon);
    font-size: 24px;
}

.dean-card blockquote {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

.dean-card strong,
.dean-card span {
    display: block;
}

.dean-card span {
    color: var(--muted);
}

.list-cards {
    display: grid;
    gap: 16px;
}

.list-card {
    border-inline-start: 4px solid var(--sheikan-blue);
}

.event-card {
    background: linear-gradient(180deg, #fff, #f9fbfd);
    border-bottom: 4px solid var(--sheikan-maroon);
}

.event-card strong {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sheikan-blue);
    font-size: 14px;
    font-weight: 800;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.16);
}

.stat-card strong {
    display: block;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-card span {
    display: block;
    color: rgba(255,255,255,0.86);
    font-weight: 600;
}

.contact-card {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--line);
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-meta a {
    font-weight: 700;
    color: var(--sheikan-deep);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #dbe4f0;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    padding: 60px 0 30px;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
    text-align: center;
    color: #aeb7c3;
}

/* Responsive */
@media (max-width: 1100px) {
    .split-section,
    .section-grid-2,
    .cards-grid,
    .events-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .topbar-inner,
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav-inner {
        padding: 10px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 48px;
        height: 44px;
        color: #fff;
        align-self: flex-end;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
    }

    .main-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 8px;
    }

    .main-nav-menu.is-open {
        display: flex;
    }

    .main-nav-menu > li > a {
        min-height: auto;
        padding: 14px 0;
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .main-nav-menu > li {
        width: 100%;
    }

    .submenu-toggle {
        display: inline-flex;
        position: absolute;
        top: 8px;
        inset-inline-end: 0;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        display: none;
        background: rgba(255,255,255,0.07);
        min-width: 100%;
    }

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

    .dropdown a {
        color: #fff;
        padding-inline-start: 20px;
    }

    .hero-slider {
        min-height: 540px;
    }

    .hero-content {
        padding: 80px 0 100px;
    }
}

@media (max-width: 640px) {
    .split-section,
    .section-grid-2,
    .cards-grid,
    .events-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        margin-top: 0;
        padding-top: 24px;
    }

    .section {
        padding: 64px 0;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .hero h1,
    .hero h2 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }
}

.content-page {
    max-width: 1100px;
}

.content-prose {
    max-width: 900px;
    margin-bottom: 24px;
}

.content-prose p {
    margin: 0 0 16px;
    font-size: 17px;
    color: var(--text);
}

.page-cards {
    margin-top: 24px;
}

.page-two-col {
    margin-top: 24px;
}

.page-subtitle {
    font-size: 28px;
    margin-bottom: 14px;
}

.top-space-sm {
    margin-top: 24px;
}

.content-list {
    margin: 0;
    padding-inline-start: 20px;
    color: var(--text);
}

.content-list li {
    margin-bottom: 10px;
}

.content-list.ordered {
    padding-inline-start: 22px;
}

.main-nav-wrap {
    position: relative;
    z-index: 100;
    margin-top: -18px;
    margin-bottom: 10px;
}

.main-nav {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(49, 109, 167, 0.10);
    overflow: visible;
}

.main-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}

.main-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.main-nav-menu > li {
    position: relative;
}

.main-nav-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 18px;
    color: var(--sheikan-deep);
    font-weight: 800;
    border-radius: 14px;
    white-space: nowrap;
    transition: 0.25s ease;
}

.main-nav-menu > li:hover > a,
.main-nav-menu > li.active > a,
.main-nav-menu > li.child-active > a {
    background: rgba(49, 109, 167, 0.10);
    color: var(--sheikan-maroon);
}

.dropdown {
    list-style: none;
    margin: 10px 0 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    border: 1px solid rgba(49, 109, 167, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 200;
}

.dropdown a {
    display: block;
    padding: 12px 18px;
    color: var(--sheikan-deep);
    font-weight: 700;
    border-radius: 10px;
    margin: 0 8px;
}

.dropdown a:hover {
    background: rgba(49, 109, 167, 0.08);
    color: var(--sheikan-maroon);
}

.main-nav-menu li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    color: var(--sheikan-deep);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sheikan-deep);
    margin: 5px auto;
}

.submenu-toggle {
    display: none;
}

@media (max-width: 860px) {
    .main-nav-wrap {
        margin-top: 10px;
    }

    .main-nav {
        border-radius: 18px;
    }

    .main-nav-inner {
        padding: 10px 14px;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-toggle {
        display: inline-block;
        align-self: flex-end;
    }

    .main-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    .main-nav-menu.is-open {
        display: flex;
    }

    .main-nav-menu > li > a {
        min-height: auto;
        padding: 14px 10px;
    }

    .submenu-toggle {
        display: inline-flex;
        position: absolute;
        top: 8px;
        inset-inline-end: 6px;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: rgba(49, 109, 167, 0.08);
        color: var(--sheikan-deep);
        border-radius: 10px;
        cursor: pointer;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        margin: 0;
        padding: 0 0 10px 0;
        display: none;
        background: transparent;
    }

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

.site-nav{
    position: relative;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    z-index: 1000;
}
.nav-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
}
.nav-brand{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-mark{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7a2e31;
    color: #fff;
    font-weight: 700;
}
.brand-text{
    color: #1b1b1b;
    font-size: 1.05rem;
    font-weight: 700;
}
.menu-root{
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-root > li{
    position: static;
}
.menu-root > li > a{
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    text-decoration: none;
    color: #1d2430;
    font-weight: 600;
    transition: .2s ease;
}
.menu-root > li > a:hover{
    color: #7a2e31;
}
.has-mega{
    position: static;
}
.mega-menu{
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    transform: translateY(14px);
    width: max-content;
    min-width: 320px;
    max-width: min(760px, calc(100vw - 32px));
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0,0,0,.14);
    border: 1px solid rgba(0,0,0,.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    padding: 22px;
}
.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.mega-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
    gap: 20px;
    align-items: start;
}
.mega-grid-3{
    grid-template-columns: repeat(3, minmax(0,1fr));
}
.mega-col h6{
    margin: 0 0 14px;
    color: #7a2e31;
    font-size: .95rem;
    font-weight: 700;
}
.mega-col a{
    display: block;
    text-decoration: none;
    color: #2d3748;
    padding: 8px 0;
    transition: .2s ease;
}
.mega-col a:hover{
    color: #316da7;
    transform: translateX(4px);
}
.mega-highlight{
    background: linear-gradient(135deg, #7a2e31 0%, #316da7 100%);
    border-radius: 16px;
    color: #fff;
    padding: 20px;
}
.mega-highlight{
    max-width: 220px;
}
.mega-highlight h5{
    margin: 10px 0 10px;
    font-size: 1.15rem;
    line-height: 1.35;
}
.mega-highlight p{
    margin: 0 0 14px;
    color: rgba(255,255,255,.92);
}
.mega-badge{
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: .78rem;
    font-weight: 700;
}
.mega-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    background: #fff;
    color: #7a2e31 !important;
    text-decoration: none;
    font-weight: 700;
}
.nav-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 0;
}
.nav-toggle span{
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #7a2e31;
    display: block;
}

@media (max-width: 991px){
    .nav-toggle{
        display: flex;
    }
    .menu-root{
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
        padding: 14px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .menu-root.is-open{
        display: flex;
    }
    .menu-root > li > a{
        min-height: auto;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .mega-menu{
        position: static;
        transform: none !important;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 10px 0 0;
    }
    .has-mega.is-open .mega-menu{
        display: block;
    }
    .mega-grid,
    .mega-grid-3{
        grid-template-columns: 1fr;
    }
}

.site-nav{
    position: relative;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    z-index: 1000;
}
.nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    min-height:78px;
}
.nav-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.brand-mark{
    width:44px;
    height:44px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#7a2e31;
    color:#fff;
    font-weight:700;
}
.brand-text{
    color:#1b1b1b;
    font-size:1.05rem;
    font-weight:700;
}
.menu-root{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}
.menu-root > li{
    position:static;
}
.menu-root > li > a{
    display:inline-flex;
    align-items:center;
    min-height:78px;
    text-decoration:none;
    color:#1d2430;
    font-weight:600;
}
.menu-root > li > a:hover{
    color:#7a2e31;
}
.has-mega{
    position:static;
}
.mega-menu{
    position:absolute;
    left:50%;
    top:calc(100% - 2px);
    transform:translateX(-50%) translateY(14px);
    width:min(1100px, calc(100vw - 32px));
    background:#fff;
    border-radius:18px;
    box-shadow:0 22px 60px rgba(0,0,0,.14);
    border:1px solid rgba(0,0,0,.05);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.25s ease;
    padding:26px;
}
.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}
.mega-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
}
.mega-col h6{
    margin:0 0 14px;
    color:#7a2e31;
    font-size:.95rem;
    font-weight:700;
}
.mega-col a{
    display:block;
    text-decoration:none;
    color:#2d3748;
    padding:8px 0;
}
.mega-col a:hover{
    color:#316da7;
    transform:translateX(4px);
}
.mega-highlight{
    background:linear-gradient(135deg, #7a2e31 0%, #316da7 100%);
    border-radius:16px;
    color:#fff;
    padding:20px;
}
.mega-badge{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    font-size:.78rem;
    font-weight:700;
}
.mega-highlight h5{
    margin:10px 0;
    font-size:1.1rem;
}
.mega-highlight p{
    margin:0 0 14px;
}
.mega-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 16px;
    border-radius:10px;
    background:#fff;
    color:#7a2e31 !important;
    text-decoration:none;
    font-weight:700;
}
.nav-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:transparent;
    border:0;
}
.nav-toggle span{
    width:26px;
    height:3px;
    border-radius:3px;
    background:#7a2e31;
    display:block;
}
@media (max-width: 991px){
    .nav-toggle{display:flex;}
    .menu-root{
        display:none;
        position:absolute;
        top:100%;
        left:16px;
        right:16px;
        background:#fff;
        border-radius:16px;
        box-shadow:0 20px 50px rgba(0,0,0,.12);
        padding:14px 18px;
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }
    .menu-root.is-open{display:flex;}
    .menu-root > li > a{
        min-height:auto;
        padding:14px 0;
        border-bottom:1px solid rgba(0,0,0,.06);
    }
    .mega-menu{
        position:static;
        transform:none !important;
        width:100%;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        display:none;
        box-shadow:none;
        border:0;
        padding:10px 0 0;
    }
    .has-mega.is-open .mega-menu{display:block;}
    .mega-grid{grid-template-columns:1fr;}
}


.site-nav{
    position: relative;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    z-index: 1000;
}
.nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    min-height:78px;
}
.nav-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.brand-mark{
    width:44px;
    height:44px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#7a2e31;
    color:#fff;
    font-weight:700;
}
.brand-text{
    color:#1b1b1b;
    font-size:1.05rem;
    font-weight:700;
}
.menu-root{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}
.menu-root > li{
    position:static;
}
.menu-root > li > a{
    display:inline-flex;
    align-items:center;
    min-height:78px;
    text-decoration:none;
    color:#1d2430;
    font-weight:600;
}
.menu-root > li > a:hover{
    color:#7a2e31;
}
.has-mega{
    position:static;
}
.mega-menu{
    position:absolute;
    left:50%;
    top:calc(100% - 2px);
    transform:translateX(-50%) translateY(14px);
    width:min(1100px, calc(100vw - 32px));
    background:#fff;
    border-radius:18px;
    box-shadow:0 22px 60px rgba(0,0,0,.14);
    border:1px solid rgba(0,0,0,.05);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.25s ease;
    padding:26px;
}
.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}
.mega-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:24px;
}
.mega-col h6{
    margin:0 0 14px;
    color:#7a2e31;
    font-size:.95rem;
    font-weight:700;
}
.mega-col a{
    display:block;
    text-decoration:none;
    color:#2d3748;
    padding:8px 0;
    transition:.2s ease;
}
.mega-col a:hover{
    color:#316da7;
    transform:translateX(4px);
}
.mega-highlight{
    background:linear-gradient(135deg, #7a2e31 0%, #316da7 100%);
    border-radius:16px;
    color:#fff;
    padding:20px;
}
.mega-badge{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    font-size:.78rem;
    font-weight:700;
}
.mega-highlight h5{
    margin:10px 0;
    font-size:1.1rem;
}
.mega-highlight p{
    margin:0 0 14px;
}
.mega-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 16px;
    border-radius:10px;
    background:#fff;
    color:#7a2e31 !important;
    text-decoration:none;
    font-weight:700;
}
.nav-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:transparent;
    border:0;
}
.nav-toggle span{
    width:26px;
    height:3px;
    border-radius:3px;
    background:#7a2e31;
    display:block;
}
@media (max-width: 991px){
    .nav-toggle{display:flex;}
    .menu-root{
        display:none;
        position:absolute;
        top:100%;
        left:16px;
        right:16px;
        background:#fff;
        border-radius:16px;
        box-shadow:0 20px 50px rgba(0,0,0,.12);
        padding:14px 18px;
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }
    .menu-root.is-open{display:flex;}
    .menu-root > li > a{
        min-height:auto;
        padding:14px 0;
        border-bottom:1px solid rgba(0,0,0,.06);
    }
    .mega-menu{
        position:static;
        transform:none !important;
        width:100%;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        display:none;
        box-shadow:none;
        border:0;
        padding:10px 0 0;
    }
    .has-mega.is-open .mega-menu{display:block;}
    .mega-grid{grid-template-columns:1fr;}
}

.nav-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.brand-logo{
    width:56px;
    height:56px;
    object-fit:contain;
    flex:0 0 auto;
}

.brand-text{
    font-size:1.05rem;
    font-weight:700;
    line-height:1.2;
    color:#1b1b1b;
}

.topbar{
    background: var(--sheikan-blue);
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: .9rem;
}

.topbar-wrap{
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-spacer{
    flex: 1 1 auto;
}

.topbar-actions{
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-link{
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.topbar-link:hover{
    color: #7a2e31;
}

.topbar-apply{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #7a2e31;
    color: #fff;
    font-weight: 700;
}

.topbar-apply:hover{
    background: #316da7;
    color: #fff;
}

.topbar-locale{
    display: inline-flex;
    align-items: center;
}

html[dir="rtl"] .topbar-wrap{
    flex-direction: row;
}

@media (max-width: 991px){
    .topbar-wrap{
        min-height: 34px;
    }

    .topbar-actions{
        gap: 10px;
        flex-wrap: wrap;
    }

    .topbar-link{
        font-size: .85rem;
    }

    .topbar-apply{
        padding: 2px 2px;
    }
}

.brand-text{
    display: inline-block;
    font-family: "Inter", "Cairo", sans-serif;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .4px;
    color: #7a2e31;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

html[dir="rtl"] .brand-text{
    font-family: "Cairo", sans-serif;
    font-size: clamp(1.45rem, 2vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="ltr"] .brand-text{
    font-family: "Inter", sans-serif;
}

.brand-text:hover{
    color: #316da7;
    transition: .2s ease;
}

.nav-brand{
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

html[dir="rtl"] .brand-text{
    font-family: "Cairo", sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0;
}

html[dir="ltr"] .brand-text{
    font-family: "Inter", sans-serif;
}

.brand-text:hover{
    color: #316da7;
    transition: .2s ease;
}


.brand-logo{
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
}

@media (max-width: 991px){
    .brand-logo{
        width: 44px;
        height: 44px;
    }

    .brand-text{
        font-size: 1.05rem;
    }

    html[dir="rtl"] .brand-text{
        font-size: 1.15rem;
    }
}

white-space: nowrap;

white-space: normal;
max-width: 220px;


.topbar{
    background: var(--sheikan-blue); !important;
    border-bottom: 0;
    
}

/* remove space between topbar and navbar */
.topbar{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-nav{
    margin-top: 0 !important;
    top: 0;
}

.topbar + .site-nav{
    margin-top: 0 !important;
}

.topbar-wrap{
    margin-bottom: 0 !important;
}

.topbar .topbar-link{
    color: #fff;
}

.topbar .topbar-link:hover{
    color: #f3d9da;
}

.topbar .topbar-apply{
    background: #316da7 !important;
    color: #fff !important;
}


.topbar{
    background: var(--sheikan-blue) !important;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.topbar .topbar-wrap{
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .topbar-actions{
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar .topbar-link{
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
}

.topbar .topbar-link:hover{
    color: #7a2e31;
}

.topbar .topbar-apply{
    background: var(--sheikan-blue);
    color: #fff !important;
    padding: 5px 0px;
    border-radius: 999px;
}

/* compact transparent About dropdown */
.has-mega-about{
    position: relative;
}

.mega-menu-about{
    left: 0;
    right: auto;
    transform: translateY(10px);
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 14px 16px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.has-mega:hover .mega-menu-about,
.has-mega.is-open .mega-menu-about{
    transform: translateY(0);
}

.mega-grid-about{
    display: grid;
    grid-template-columns: 56px max-content;
    gap: 14px;
    align-items: start;
}

.mega-grid-about .mega-col{
    min-width: 210px;
}

.mega-grid-about .mega-col h6{
    margin-bottom: 10px;
}

.mega-grid-about .mega-col a{
    white-space: nowrap;
    padding: 6px 0;
}

.mega-icon-col{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.menu-icon-badge{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a2e31;
    background: transparent;
    border: 1px solid rgba(122,46,49,.16);
}

.menu-icon{
    width: 24px;
    height: 24px;
}

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

@media (max-width: 991px){
    .mega-menu-about{
        width: 100%;
        max-width: 100%;
        padding: 10px 0 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 0;
        box-shadow: none;
    }

    .mega-grid-about{
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mega-icon-col{
        display: none;
    }

    .mega-grid-about .mega-col{
        min-width: 0;
    }

    .mega-grid-about .mega-col a{
        white-space: normal;
    }
}

/* make each dropdown anchor to its own menu item */
.has-mega{
    position: relative;
}

/* compact centered About dropdown */
.has-mega-about .mega-menu-about{
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
    width: max-content;
    min-width: 250px;
    max-width: 340px;
    padding: 14px 16px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(122,46,49,.12);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.has-mega-about:hover .mega-menu-about,
.has-mega-about.is-open .mega-menu-about{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-grid-about{
    display: grid;
    grid-template-columns: 44px max-content;
    gap: 12px;
    align-items: start;
}

.mega-grid-about .mega-col{
    min-width: 190px;
}

.mega-grid-about .mega-col h6{
    margin: 0 0 8px;
}

.mega-grid-about .mega-col a{
    display: block;
    padding: 6px 0;
    white-space: nowrap;
}

.mega-icon-col{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.menu-icon-badge{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a2e31;
    background: transparent;
    border: 1px solid rgba(122,46,49,.14);
}

.menu-icon{
    width: 22px;
    height: 22px;
}

/* mobile */
@media (max-width: 991px){
    .has-mega-about .mega-menu-about{
        position: static;
        left: auto;
        right: auto;
        transform: none !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 10px 0 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .has-mega-about.is-open .mega-menu-about{
        display: block;
    }

    .mega-grid-about{
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mega-icon-col{
        display: none;
    }

    .mega-grid-about .mega-col a{
        white-space: normal;
    }
}

header,
.header,
.site-header,
.main-nav-wrap{
    margin: 0 !important;
    padding: 0 !important;
}

.topbar{
    border-bottom: 0 !important;
}

.site-nav{
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}


.topbar-locale{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.locale-link{
    text-decoration: none;
    font-weight: 700;
    color: #2d3748;
    transition: .2s ease;
}

.locale-link:hover{
    color: #7a2e31;
}

.locale-link.is-active{
    color: #7a2e31;
}

.locale-sep{
    color: #8a8f98;
}

.read-more-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #7a2e31;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
}

.read-more-btn:hover{
    background: #316da7;
    color: #fff;
}