* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #fff;
            color: #1a1a2e;
        }

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

        :root {
            --gold: #c98516;
            --black: #1a1a2e;
            --grey: #2d2d44;
            --light: #eeeeee;
        }

        /* =====================================================
           RTL SUPPORT
        ===================================================== */
        [dir="rtl"] {
            text-align: right;
        }
        [dir="rtl"] .gold-line {
            margin-right: 0;
            margin-left: 0;
        }
        [dir="rtl"] .meet-experts span:last-child {
            display: inline-block;
            transform: rotate(180deg);
        }
        [dir="rtl"] .meet-experts:hover span:last-child {
            transform: rotate(180deg) translateX(4px);
        }
        [dir="rtl"] .nav-menu .dropdown-menu {
            left: auto;
            right: 0;
        }
        [dir="rtl"] .nav-menu .dropdown-menu a {
            padding: 8px 18px;
        }
        [dir="rtl"] .meet-experts {
            gap: 30px;
        }
        @media (max-width: 850px) {
            [dir="rtl"] .nav-menu {
                transform: translateX(100%);
                left: auto;
                right: 0;
            }
            [dir="rtl"] .nav-menu.active {
                transform: translateX(0);
            }
            [dir="rtl"] .nav-menu .dropdown-menu a {
                padding: 8px 30px 8px 18px;
            }
        }
        @media (max-width: 850px) {
            [dir="rtl"] .nav-menu .dropdown-menu a {
                padding: 8px 30px 8px 18px;
            }
        }

        /* =====================================================
           NAVBAR
        ===================================================== */

        .navbar {
            width: 100%;
            height: 76px;

            background: #fff;

            display: flex;
            align-items: center;

            border-bottom: 1px solid #eeeeee;

            position: relative;
            z-index: 1000;
        }

        .nav-container {
            width: 100%;
            height: 100%;

            padding: 0 32px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* LOGO */
        .logo {
            display: flex;
            align-items: center;
            width: 220px;
            min-width: 170px;
            height: 100%;
            text-decoration: none;
        }
        .corexion-logo {
            display: block;
            width: 220px;
            height: 75px;
            object-fit: contain;
            object-position: left center;
        }

        /* NAVIGATION */
        .nav-menu {
            list-style: none;

            display: flex;
            align-items: center;

            gap: 38px;
        }

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

        .nav-menu a {
            position: relative;

            font-size: 12px;

            font-weight: 700;

            letter-spacing: .6px;

            color: #1a1a2e;

            white-space: nowrap;

            display: inline-block;
            padding-bottom: 4px;
        }

        .nav-menu a::after {
            content: "";

            position: absolute;

            left: 0;
            bottom: -9px;

            width: 0;
            height: 2px;

            background: var(--gold);

            transition: .25s ease;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a.active {
            color: var(--gold);
        }

        .nav-menu a:hover {
            color: var(--gold);
        }

        /* DROPDOWN */
        .dropdown-toggle {
            cursor: pointer;
            user-select: none;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 180px;
            box-shadow: 0 8px 20px rgba(0,0,0,.1);
            border-radius: 4px;
            padding: 8px 0;
            z-index: 200;
            margin-top: 6px;
        }

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

        .dropdown-menu li {
            list-style: none;
            padding: 0;
            border-bottom: none;
        }

        .dropdown-menu a {
            display: block;
            padding: 8px 18px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .3px;
            color: #1a1a2e;
            transition: background .2s, color .2s;
        }

        .dropdown-menu a:hover {
            background: #f5f5f5;
            color: var(--gold);
        }

        .dropdown-menu a::after {
            display: none;
        }

        .dropdown-menu.wide {
            min-width: 200px;
        }

        /* =====================================================
           MOBILE BUTTON
        ===================================================== */

        .menu-button {
            display: none;

            width: 40px;
            height: 40px;

            border: 0;

            background: transparent;

            cursor: pointer;

            position: relative;
            z-index: 1200;
        }

        .menu-button span {
            display: block;

            width: 24px;
            height: 2px;

            margin: 5px auto;

            background: #1a1a2e;

            transition: transform .28s ease, opacity .2s ease;
        }

        .menu-button.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .menu-button.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-button.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            top: 76px;
            background: rgba(0,0,0,.35);
            z-index: 900;
            opacity: 0;
            transition: opacity .25s ease;
        }
        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        /* =====================================================
           PAGE HERO
        ===================================================== */

        .leadership-hero {
            width: 100%;

            display: grid;

            grid-template-columns: 35% 65%;

            min-height: 270px;
        }

        /* LEFT */
        .leadership-intro {
            padding: 25px 38px 30px;

            background: #fff;

            display: flex;

            flex-direction: column;

            justify-content: center;
        }

        /* BREADCRUMB */
        .breadcrumb {
            display: flex;

            align-items: center;

            gap: 8px;

            margin-bottom: 42px;
        }

        .breadcrumb span {
            font-size: 9px;

            font-weight: 600;

            letter-spacing: .5px;

            color: #2d2d44;
        }

        .breadcrumb .separator {
            color: #999;
        }

        .breadcrumb .current {
            color: var(--gold);
        }

        /* TITLE */
        .leadership-intro h1 {
            font-size: clamp(46px, 4.5vw, 58px);

            line-height: 1.05;

            font-weight: 300;

            letter-spacing: 1px;

            color: #1a1a2e;

            margin-bottom: 12px;
        }

        .gold-line {
            width: 28px;

            height: 3px;

            background: var(--gold);

            margin-bottom: 12px;
        }

        .leadership-intro p {
            color: #2d2d44;

            font-size: 16px;

            line-height: 1.5;

            max-width: 300px;
        }

        /* RIGHT IMAGE */
        .leadership-hero-image {
            width: 100%;

            height: 253px;

            overflow: hidden;

            background: #eee;
        }

        .leadership-hero-image img {
            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;

            object-position: center;

            transition: transform .7s ease;
        }

        .leadership-hero-image:hover img {
            transform: scale(1.015);
        }

        /* =====================================================
           EXPERTS
        ===================================================== */

        .experts-section {
            width: 100%;

            padding: 18px 36px 0;
        }

        .experts-grid {
            width: 100%;

            display: grid;

            grid-template-columns: repeat(6, 1fr);

            gap: 14px;
        }

        /* EXPERT CARD */
        .expert-card {
            min-width: 0;
        }

        .expert-image {
            width: 100%;

            aspect-ratio: 0.82;

            overflow: hidden;

            background: #eeeeee;

            margin-bottom: 13px;
        }

        .expert-image img {
            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;

            filter: grayscale(100%);

            transition: .5s ease;
        }

        .expert-card:hover .expert-image img {
            filter: grayscale(0);

            transform: scale(1.025);
        }

        /* EXPERT ROLE */
        .expert-role {
            text-align: center;

            color: var(--gold);

            font-size: 11px;

            font-weight: 700;

            letter-spacing: .6px;

            line-height: 1.2;
        }

        /* =====================================================
           MEET OUR EXPERTS
        ===================================================== */

        .experts-action {
            margin-top: 12px;
        }

        .meet-experts {
            display: inline-flex;

            align-items: center;

            justify-content: space-between;

            gap: 30px;

            min-width: 180px;

            padding: 11px 15px;

            border: 1px solid var(--gold);

            color: #1a1a2e;

            font-size: 11px;

            font-weight: 600;

            transition: .25s ease;
        }

        .meet-experts span:last-child {
            color: var(--gold);

            font-size: 20px;

            line-height: 10px;
        }

        .meet-experts:hover {
            background: var(--gold);

            color: #fff;
        }

        .meet-experts:hover span:last-child {
            color: #fff;

            transform: translateX(4px);
        }

        /* =====================================================
           FOOTER (زي الأول بالظبط)
        ===================================================== */

        .footer {
            background: #17181a;
            color: white;
            padding: 85px 85px 85px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-logo-img {
            width: 180px;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .footer-right {
            display: flex;
            align-items: flex-start;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px 70px;
        }

        .footer-links-grid a {
            color: #bcbcbc;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.25s ease;
            font-weight: 500;
            white-space: nowrap;
        }

        .footer-links-grid a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 18px auto 0;
            display: flex;
            justify-content: space-between;
            color: #777777;
            font-size: 12px;
        }

        /* =====================================================
           TABLET
        ===================================================== */

        @media (max-width: 1100px) {
            .logo {
                width: 220px;
                min-width: 170px;
            }
            .corexion-logo {
                width: 220px;
                height: 66px;
            }
            .nav-menu {
                gap: 20px;
            }
            .leadership-intro {
                padding-left: 30px;
                padding-right: 25px;
            }
            .experts-section {
                padding-left: 25px;
                padding-right: 25px;
            }
            .experts-grid {
                gap: 10px;
            }
        }

        /* =====================================================
           MOBILE
        ===================================================== */

        @media (max-width: 850px) {
            .navbar {
                height: 70px;
            }
            .nav-container {
                padding: 0 20px;
            }
            .logo {
                width: 220px;
                min-width: 150px;
            }
            .corexion-logo {
                width: 220px;
                height: 66px;
            }

            /* MOBILE NAV */
            .nav-menu {
                position: fixed;

                top: 70px;
                right: 0;
                left: auto;

                width: min(78%, 340px);
                max-width: 340px;

                height: calc(100vh - 70px);

                background: #fff;

                display: flex;

                flex-direction: column;

                align-items: stretch;

                padding: 10px 0 30px;

                gap: 0;

                transform: translateX(100%);

                transition: .35s ease;

                overflow-y: auto;

                box-shadow: -6px 0 24px rgba(0,0,0,.12);
                z-index: 950;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu > li {
                width: 100%;
                padding: 0;
                border-bottom: 1px solid #eee;
                display: block;
            }

            .nav-menu > li > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 16px 25px;
                font-size: 13px;
                letter-spacing: .8px;
                color: #1a1a2e;
            }

            .nav-menu > li > a::after {
                display: none;
            }

            .nav-menu > li > a.active {
                background: #faf6ee;
            }

            .nav-menu .dropdown-toggle::before {
                content: "";
                width: 8px;
                height: 8px;
                border-right: 1.6px solid #999;
                border-bottom: 1.6px solid #999;
                transform: rotate(45deg);
                transition: transform .25s ease, border-color .25s ease;
                margin-left: 10px;
                flex-shrink: 0;
            }

            .nav-menu .dropdown-toggle.open::before {
                transform: rotate(-135deg);
                border-color: var(--gold);
            }

            /* mobile dropdown reset */
            .nav-menu .dropdown-menu {
                position: static;
                box-shadow: none;
                padding: 0;
                margin: 0;
                border-radius: 0;
                background: #faf8f4;
                display: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height .3s ease;
            }

            .nav-menu .dropdown-menu.open {
                display: block;
                max-height: 600px;
            }

            .nav-menu .dropdown-menu li {
                padding: 0;
                border-bottom: 1px solid #efece4;
            }

            .nav-menu .dropdown-menu li:last-child {
                border-bottom: none;
            }

            .nav-menu .dropdown-menu a {
                padding: 12px 25px 12px 38px;
                font-size: 11.5px;
                font-weight: 600;
                color: #1a1a2e;
                position: relative;
            }

            .nav-menu .dropdown-menu a::before {
                content: "–";
                position: absolute;
                left: 25px;
                color: var(--gold);
            }

            .nav-menu .dropdown-menu a:hover,
            .nav-menu .dropdown-menu a.active {
                color: var(--gold);
                background: #f3ecdd;
            }

            body.nav-open {
                overflow: hidden;
            }

            .menu-button {
                display: block;
            }

            /* HERO */
            .leadership-hero {
                display: flex;

                flex-direction: column;

                min-height: auto;
            }

            .leadership-intro {
                padding: 35px 25px 35px;

                min-height: 300px;
            }

            .breadcrumb {
                margin-bottom: 35px;
            }

            .leadership-intro h1 {
                font-size: clamp(45px, 12vw, 65px);
            }

            .leadership-hero-image {
                height: 55vw;

                min-height: 280px;
            }

            /* EXPERTS */
            .experts-section {
                padding: 25px 20px 0;
            }

            .experts-grid {
                grid-template-columns: repeat(2, 1fr);

                gap: 25px 12px;
            }

            .expert-role {
                font-size: 10px;
            }

            /* FOOTER RESPONSIVE */
            .footer {
                padding: 40px 25px 20px;
            }

            .footer-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }

            .footer-links-grid {
                gap: 10px 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        @media (max-width: 500px) {
            .logo {
                width: 220px;
                min-width: 150px;
            }
            .corexion-logo {
                width: 220px;
                height: 75px;
            }
            .leadership-intro {
                padding-left: 22px;
                padding-right: 22px;
            }
            .experts-section {
                padding-left: 15px;
                padding-right: 15px;
            }
            .experts-grid {
                gap: 20px 10px;
            }
            .expert-role {
                font-size: 9px;
            }

            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px 20px;
            }

            .footer-links-grid a {
                font-size: 10px;
            }

            .footer-logo-img {
                width: 140px;
            }
        }

        /* override for RTL on mobile */
        [dir="rtl"] .nav-menu .dropdown-menu a::before {
            content: "–";
            left: auto;
            right: 25px;
        }
        [dir="rtl"] .nav-menu .dropdown-menu a {
            padding: 12px 38px 12px 25px;
        }
        @media (max-width: 850px) {
            [dir="rtl"] .nav-menu .dropdown-menu a {
                padding: 12px 38px 12px 25px;
            }
            [dir="rtl"] .nav-menu .dropdown-toggle::before {
                margin-left: 0;
                margin-right: 10px;
            }
        }
