@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    --navy: #061f3d;
    --blue: #0b4778;
    --blue2: #0f6aa3;
    --gold: #d6a744;
    --gold-light: #f8dfa1;
    --ink: #132033;
    --muted: #667085;
    --light: #f6f8fb;
    --white: #fff;
    --border: #e6ebf2;
    --shadow: 0 22px 55px rgba(6, 31, 61, .10);
    --radius: 26px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Tajawal, Arial, sans-serif;
    background: #fff;
    color: var(--ink);
    line-height: 1.9
}

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

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1240px, 92%);
    margin: auto
}

.topbar {
    background: var(--navy);
    color: #dce8f6;
    font-size: 14px
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 9px 0
}

.topbar b {
    color: var(--gold-light)
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border)
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0
}

.logo img {
    width: 222px
}

.menu {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 800;
    color: #243650
}

.menu a {
    position: relative
}

.menu a:after {
    content: "";
    height: 3px;
    width: 0;
    background: var(--gold);
    position: absolute;
    right: 0;
    bottom: -7px;
    border-radius: 999px;
    transition: .25s
}

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

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

.mobile-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 900
}

.hero {
    min-height: 760px;
    color: white;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(6, 31, 61, .98), rgba(6, 31, 61, .78), rgba(6, 31, 61, .20)), url('../img/hero-campus.svg') center/cover no-repeat;
    position: relative;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 35%, rgba(214, 167, 68, .25), transparent 32%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214, 167, 68, .18);
    border: 1px solid rgba(214, 167, 68, .5);
    color: #ffe5a4;
    border-radius: 999px;
    padding: 7px 16px;
    font-weight: 900;
    margin-bottom: 18px
}

.hero h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.12;
    margin: 0 0 20px;
    font-weight: 900;
    letter-spacing: -1px
}

.hero p {
    font-size: 22px;
    color: #e9f1fb;
    max-width: 850px
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer
}

.btn.gold {
    background: var(--gold);
    color: var(--navy)
}

.btn.navy {
    background: var(--navy);
    color: white
}

.btn.white {
    background: white;
    color: var(--navy)
}

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, .75);
    color: white;
    background: transparent
}

.btn.outline {
    border: 1px solid var(--border);
    background: white;
    color: var(--navy)
}

.section {
    padding: 86px 0
}

.light {
    background: var(--light)
}

.pattern {
    background: var(--light) url('../img/pattern.svg') center/340px
}

.dark {
    background: linear-gradient(135deg, var(--navy), #0b4778);
    color: white
}

.title {
    font-size: 42px;
    line-height: 1.28;
    margin: 0 0 14px;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -.5px
}

.dark .title {
    color: white
}

.lead {
    font-size: 20px;
    color: var(--muted);
    max-width: 930px
}

.dark .lead {
    color: #dbe7f4
}

.kicker {
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px
}

.grid {
    display: grid;
    gap: 24px
}

.two {
    grid-template-columns: 1fr 1fr
}

.three {
    grid-template-columns: repeat(3, 1fr)
}

.four {
    grid-template-columns: repeat(4, 1fr)
}

.five {
    grid-template-columns: repeat(5, 1fr)
}

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: .25s
}

.card:hover {
    transform: translateY(-4px)
}

.card.flat {
    box-shadow: none
}

.card h3 {
    color: var(--navy);
    font-size: 24px;
    margin: 0 0 10px
}

.card p {
    color: var(--muted);
    margin: 0
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff4d9;
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 18px
}

.num {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px
}

.stat {
    padding: 25px;
    text-align: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px
}

.stat strong {
    font-size: 42px;
    color: #ffe3a2;
    display: block
}

.stat span {
    color: #e9f1fb
}

.page-hero {
    padding: 92px 0;
    background: linear-gradient(135deg, var(--navy), #0b4778);
    color: white;
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "";
    position: absolute;
    left: -80px;
    top: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(214, 167, 68, .16)
}

.page-hero h1 {
    font-size: 52px;
    margin: 0 0 12px
}

.page-hero p {
    font-size: 21px;
    color: #dbe7f4;
    max-width: 820px
}

.breadcrumb {
    color: #f8dfa1;
    font-weight: 800;
    margin-bottom: 14px
}

.leader-card {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 28px;
    align-items: center
}

.leader-card img {
    height: 390px;
    width: 310px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border)
}

.position {
    display: inline-block;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 6px
}

.quote {
    border-right: 5px solid var(--gold);
    background: #fffaf0;
    border-radius: 18px;
    padding: 26px;
    color: #344054
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px
}

.partner {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(6, 31, 61, .04)
}

.timeline {
    border-right: 3px solid #e8d29a;
    padding-right: 26px
}

.timeline-item {
    position: relative;
    margin-bottom: 26px
}

.timeline-item:before {
    content: "";
    position: absolute;
    right: -36px;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px #fff4d9
}

.news-date {
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 8px
}

.pill {
    display: inline-block;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 800;
    background: white;
    margin: 5px
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: white
}

.table th,
.table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: right
}

.table th {
    background: #eef4fb;
    color: var(--navy);
    font-weight: 900
}

.table tr:last-child td {
    border-bottom: 0
}

.form {
    display: grid;
    gap: 14px
}

.input {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 13px;
    font-family: inherit;
    font-size: 16px
}

.textarea {
    min-height: 140px
}

.footer {
    background: #041529;
    color: #d9e4f2;
    padding: 54px 0 26px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 30px
}

.footer h3 {
    color: white;
    margin: 0 0 12px
}

.footer p,
.footer a {
    color: #b8c7d9
}

.subfooter {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 34px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.small {
    font-size: 14px;
    color: #748198
}

.page-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px
}

.page-nav a {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 900
}

.split-feature {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center
}

.feature-img {
    border-radius: 28px;
    min-height: 400px;
    background: linear-gradient(135deg, #082344, #0b4778);
    position: relative;
    overflow: hidden
}

.feature-img:after {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    background: radial-gradient(circle at 20% 25%, rgba(214, 167, 68, .35), transparent 35%)
}

.lang-note {
    direction: ltr;
    text-align: left
}

@media(max-width:1000px) {
    .menu {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .mobile-open .menu {
        display: flex;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 92px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 22px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start
    }

    .two,
    .three,
    .four,
    .five,
    .footer-grid,
    .leader-card,
    .split-feature {
        grid-template-columns: 1fr
    }

    .stats {
        grid-template-columns: 1fr 1fr
    }

    .leader-card img {
        width: 100%;
        height: auto;
        max-width: 350px
    }

    .section {
        padding: 64px 0
    }

    .hero {
        min-height: 650px
    }

    .hero p {
        font-size: 19px
    }

    .page-hero h1 {
        font-size: 40px
    }
}

@media(max-width:560px) {
    .stats {
        grid-template-columns: 1fr
    }

    .logo img {
        width: 178px
    }

    .hero h1 {
        font-size: 38px
    }

    .title {
        font-size: 32px
    }

    .page-hero h1 {
        font-size: 34px
    }

    .table {
        font-size: 14px
    }

    .table th,
    .table td {
        padding: 10px
    }
}