  <style>
        /* ===== RESET & VARIABLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0B3D91;
            --primary-light: #2E86DE;
            --gold: #4FC3F7;
            --bg: #f4f6f8;
            --text: #1a1a1a;
            --muted: #555;
            --white: #fff;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
            --radius: 16px;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }

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

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: linear-gradient(135deg, var(--primary), #0a2a5e);
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 900;
            font-family: 'Tajawal', sans-serif;
            font-size: 1.1rem;
        }

        .logo img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            object-fit: cover;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 700;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
        }

        .nav-links a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                padding: 0;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            }

            .nav-links.open {
                max-height: 400px;
                padding: 16px 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 12px;
                font-size: 1rem;
            }

            .nav-toggle {
                display: flex;
            }
        }

        /* ===== HERO with Unsplash background ===== */
        .hero {
            background: linear-gradient(135deg, rgba(11, 61, 145, 0.85), rgba(46, 134, 222, 0.75)), url('https://ik.imagekit.io/ivlemahff/p.jpeg') center/cover no-repeat;
            color: #fff;
            text-align: center;
            padding: 100px 20px 110px;
            position: relative;
        }

        .hero h1 {
            font-family: 'Tajawal', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 12px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            opacity: 0.95;
            margin-bottom: 30px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: 0.25s;
            display: inline-block;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--gold);
            color: #1a1a1a;
        }

        .btn-primary:hover {
            background: #fff;
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-3px);
        }

        @media (max-width: 600px) {
            .hero {
                padding: 70px 20px 80px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }

        /* ===== SECTIONS ===== */
        .section-title {
            text-align: center;
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .section-sub {
            text-align: center;
            color: var(--muted);
            margin-bottom: 36px;
            font-size: 1rem;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .card {
            background: var(--white);
            padding: 24px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-right: 4px solid var(--gold);
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
        }

        .card h3 {
            color: var(--primary);
            font-family: 'Tajawal', sans-serif;
            margin-bottom: 6px;
        }

        .card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .about-box {
            background: var(--white);
            padding: 28px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-right: 4px solid var(--gold);
            margin-bottom: 30px;
        }

        .about-box p {
            margin-bottom: 14px;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }

        @media (max-width: 700px) {
            .vm-grid {
                grid-template-columns: 1fr;
            }
        }

        .vm-card {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            padding: 24px;
            border-radius: var(--radius);
        }

        .vm-card h4 {
            font-family: 'Tajawal', sans-serif;
            margin-bottom: 8px;
        }

        .goals-list {
            list-style: none;
            padding: 0;
        }

        .goals-list li {
            display: flex;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }

        .goals-list li svg {
            width: 18px;
            height: 18px;
            stroke: var(--primary);
            stroke-width: 3;
            fill: none;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .slogan-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            text-align: center;
            padding: 28px;
            border-radius: var(--radius);
            font-family: 'Tajawal', sans-serif;
            font-weight: 900;
            font-size: 1.3rem;
            margin-top: 20px;
        }

        /* ===== NEWS ===== */
        .news-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: flex;
            gap: 18px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: 0.3s;
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }

        .news-card:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 4px;
        }

        .news-thumb {
            width: 180px;
            min-width: 180px;
            background-size: cover;
            background-position: center;
            background-color: #d0d7de;
        }

        .news-body {
            padding: 16px 18px;
        }

        .news-date {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.8rem;
        }

        .news-body h3 {
            color: var(--primary);
            font-family: 'Tajawal', sans-serif;
            margin: 4px 0;
        }

        .news-body p {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .news-link {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 2px solid var(--gold);
        }

        @media (max-width: 600px) {
            .news-card {
                flex-direction: column;
            }

            .news-thumb {
                width: 100%;
                height: 160px;
            }
        }

        .news-modal {
            position: fixed;
            inset: 0;
            background: rgba(7, 27, 61, 0.92);
            z-index: 1300;
            display: none;
            padding: 0;
        }

        .news-modal.show {
            display: block;
        }

        .news-modal-panel {
            background: #fff;
            width: 100%;
            height: 100%;
            border-radius: 0;
            overflow: hidden;
            display: grid;
            grid-template-rows: auto 1fr;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
        }

        .news-modal-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 24px;
            border-bottom: 1px solid #e5e7eb;
            background: #fff;
        }

        .news-modal-head h2 {
            color: var(--primary);
            font-family: 'Tajawal', sans-serif;
            font-size: 1.45rem;
            line-height: 1.4;
            margin: 0;
        }

        .news-modal-close {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: var(--primary);
            color: #fff;
            font-size: 26px;
            line-height: 1;
            cursor: pointer;
            flex-shrink: 0;
        }

        .news-modal-close:hover {
            background: var(--primary-light);
        }

        .news-modal-content {
            overflow-y: auto;
            padding: 24px;
        }

        .news-modal-date {
            color: var(--gold);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .news-modal-text p {
            color: var(--text);
            font-size: 1rem;
            line-height: 2;
            margin-bottom: 12px;
        }

        .news-modal-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 14px;
            margin-top: 22px;
        }

        .news-modal-gallery img,
        .news-modal-gallery video {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
        }

        @media (max-width: 600px) {
            .news-modal-head {
                padding: 14px 16px;
            }

            .news-modal-head h2 {
                font-size: 1.1rem;
            }

            .news-modal-content {
                padding: 16px;
            }

            .news-modal-gallery {
                grid-template-columns: 1fr;
            }
        }

        /* ===== JOIN (Google Form only) ===== */
        .join-box {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
        }

        .join-box h3 {
            font-family: 'Tajawal', sans-serif;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .join-box p {
            color: var(--muted);
            margin-bottom: 24px;
        }

        .btn-join {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 16px 40px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: 0.25s;
            border: none;
            cursor: pointer;
        }

        .btn-join:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(11, 61, 145, 0.3);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #071B3D;
            color: #c9c9c9;
            padding: 40px 20px 20px;
            margin-top: 30px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 30px;
        }

        @media (max-width: 800px) {
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .footer h4 {
            color: #fff;
            font-family: 'Tajawal', sans-serif;
            margin-bottom: 12px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 8px;
        }

        .footer ul li a {
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .footer ul li a:hover {
            color: var(--gold);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        @media (max-width: 800px) {
            .social-icons {
                justify-content: center;
            }
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.25s;
        }

        .social-icons a:hover {
            background: var(--gold);
        }

        .social-icons svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 28px;
            padding-top: 16px;
            font-size: 0.8rem;
            color: #888;
        }

        /* ===== FLOAT ===== */
        .wa-float {
            position: fixed;
            bottom: 24px;
            left: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(11, 61, 145, 0.4);
            z-index: 998;
            transition: 0.25s;
        }

        .wa-float:hover {
            background: var(--primary-light);
            transform: scale(1.05);
        }

        .wa-float svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        .back-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--gold);
            color: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            z-index: 998;
        }

        .back-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-top svg {
            width: 20px;
            height: 20px;
            stroke: #1a1a1a;
            stroke-width: 2;
            fill: none;
        }

        /* ===== LEADER WELCOME MODAL ===== */
        .leader-modal {
            position: fixed;
            inset: 0;
            background: rgba(7, 27, 61, 0.8);
            display: none;
            padding: 24px;
            z-index: 1400;
            overflow-y: auto;
        }

        .leader-modal.show {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .leader-modal-panel {
            background: #fff;
            width: min(980px, 100%);
            border-radius: 18px;
            overflow: hidden;
            display: block;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
        }

        .leader-media {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            justify-content: center;
            padding: 28px 24px 12px;
        }

        .leader-media img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #fff;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            display: block;
        }

        .leader-content {
            padding: 20px 26px 24px;
            overflow: visible;
        }

        .leader-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 14px;
        }

        .leader-kicker {
            color: var(--gold);
            font-weight: 800;
            font-size: 0.86rem;
            margin-bottom: 4px;
        }

        .leader-content h2 {
            font-family: 'Tajawal', sans-serif;
            color: var(--primary);
            line-height: 1.4;
            margin: 0;
        }

        .leader-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--primary);
            color: #fff;
            font-size: 25px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .leader-close:hover {
            background: var(--primary-light);
        }

        .leader-content p {
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 12px;
        }

        .leader-facts {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin: 16px 0;
        }

        .leader-fact {
            background: #f4f8ff;
            border-right: 3px solid var(--gold);
            border-radius: 10px;
            padding: 10px 12px;
            font-size: 0.9rem;
        }

        .leader-fact strong {
            display: block;
            color: var(--primary);
            margin-bottom: 2px;
        }

        .leader-content h3 {
            color: var(--primary);
            font-family: 'Tajawal', sans-serif;
            margin: 18px 0 8px;
        }

        .leader-list {
            margin: 0 0 10px;
            padding: 0 20px 0 0;
        }

        .leader-list li {
            margin-bottom: 6px;
            line-height: 1.8;
        }

        @media (max-width: 760px) {
            .leader-modal {
                padding: 0;
            }

            .leader-modal-panel {
                width: 100%;
                border-radius: 0;
            }

            .leader-media {
                padding: 20px 16px 10px;
            }

            .leader-media img {
                width: 140px;
                height: 140px;
            }

            .leader-content {
                padding: 18px;
            }

            .leader-facts {
                grid-template-columns: 1fr;
            }
        }

        /* ===== WELCOME MODAL ===== */
        .welcome-overlay {
            position: fixed;
            inset: 0;
            background: rgba(7, 27, 61, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 1200;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .welcome-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }

        .welcome-box {
            background: #fff;
            max-width: 480px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            transform: translateY(20px);
            transition: transform 0.35s ease;
        }

        .welcome-overlay.show .welcome-box {
            transform: translateY(0);
        }

        .welcome-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            height: 90px;
            position: relative;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: center;
        }

        .welcome-close {
            position: absolute;
            top: 10px;
            left: 14px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            line-height: 1;
        }

        .welcome-close:hover {
            background: rgba(255, 255, 255, 0.35);
        }

        .welcome-photo {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #fff;
            position: absolute;
            top: 40px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        }

        .welcome-content {
            padding: 70px 24px 28px;
            text-align: center;
        }

        .welcome-tag {
            display: inline-block;
            background: rgba(11, 61, 145, 0.08);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 20px;
            margin-bottom: 8px;
        }

        .welcome-content h3 {
            font-family: 'Tajawal', sans-serif;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .welcome-desc {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.8;
            text-align: right;
            margin: 0 0 12px;
        }

        .welcome-facts {
            list-style: none;
            padding: 12px 16px;
            background: #f4f8ff;
            border-radius: 12px;
            text-align: right;
            margin: 0 0 14px;
        }

        .welcome-facts li {
            font-size: 0.9rem;
            padding: 4px 0;
        }

        .welcome-rest {
            font-family: 'Tajawal', sans-serif;
            color: var(--primary);
            font-weight: 700;
            margin: 0 0 16px;
        }

        .welcome-btn {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 32px;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s;
        }

        .welcome-btn:hover {
            background: var(--primary-light);
        }
    </style>