    :root {
      --ink:        #1a1209;
      --ink2:       #3b2e14;
      --text:       #2e2416;
      --muted:      #7a6a50;
      --bg:         #faf7f0;
      --parchment:  #f3edd8;
      --parchment2: #ece4c6;
      --cream:      #fefcf6;
      --gold:       #b8860b;
      --gold-mid:   #d4a017;
      --gold-light: #e8c84a;
      --gold-pale:  #fdf5d6;
      --emerald:    #0d4a2e;
      --emerald2:   #1a6b45;
      --emerald3:   #2a9060;
      --emerald-pale:#e5f2ea;
      --border:     #d8cdb0;
      --border2:    #c5b68a;
      --r:          16px;
      --shadow:     0 4px 24px rgba(26,18,9,0.10);
      --shadow2:    0 12px 48px rgba(26,18,9,0.16);
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Naskh Arabic', 'Scheherazade New', serif;
      padding-top: 74px;
      background: var(--bg);
      color: var(--text);
      direction: rtl;
      line-height: 1.75;
    }

    /* ══════════════════════════════════
       DECORATIVE GEOMETRIC BACKGROUND
    ══════════════════════════════════ */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.04'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
      z-index: -1;
    }

    /* ══════════════════════════════════
       HEADER
    ══════════════════════════════════ */
    header {
      position: fixed; top: 0; width: 100%;
      background: linear-gradient(180deg, #1a0e05 0%, #0d4a2e 100%);
      height: 74px;
      padding: 0 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 30px rgba(0,0,0,0.45);
    }

    /* Gold border bottom of header */
    header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-mid), var(--gold-light), var(--gold-mid), transparent);
    }

    .logo img {
      height: 50px;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
      transition: transform 0.3s ease;
    }
    .logo img:hover { transform: scale(1.05); }

    /* Decorative header text */
    .header-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }
    .header-brand .brand-ar {
      font-family: 'Scheherazade New', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 1px;
    }
    .header-brand .brand-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .menu { position: relative; }
    .menu-btn {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(200,168,75,0.3);
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--gold-light);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .menu-btn:hover { background: rgba(200,168,75,0.15); border-color: var(--gold-mid); }

    .dropdown {
      display: none;
      position: absolute; top: calc(100% + 12px); right: 0;
      background: var(--cream);
      min-width: 200px;
      border: 1px solid var(--border2);
      border-radius: 12px;
      box-shadow: var(--shadow2);
      overflow: hidden;
      animation: slideIn 0.2s ease;
    }
    @keyframes slideIn {
      from { opacity:0; transform:translateY(-8px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .dropdown a {
      display: flex; align-items: center; gap: 10px;
      padding: 13px 18px;
      font-size: 15px; font-weight: 600;
      color: var(--ink2);
      text-decoration: none;
      border-bottom: 1px solid var(--parchment2);
      transition: background 0.2s;
    }
    .dropdown a:last-child { border: none; }
    .dropdown a:hover { background: var(--gold-pale); color: var(--emerald); }
    .dropdown a i { color: var(--gold); }

    /* ══════════════════════════════════
       HERO
    ══════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
      background: var(--emerald);
    }

    .slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.4s ease;
    }
    .slide.active { opacity: 1; }

    /* Rich layered overlay */
    .slide::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(13,74,46,0.85) 0%, rgba(26,18,9,0.7) 100%);
    }

    /* Geometric frame decoration */
    .hero-deco {
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      overflow: hidden;
    }
    .hero-deco svg { position: absolute; }

    .slide-content {
      position: absolute; inset: 0; z-index: 3;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 40px 30px;
      color: white;
    }

    .hero-ornament {
      font-size: 28px;
      color: var(--gold-mid);
      margin-bottom: 10px;
      letter-spacing: 6px;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(212,160,23,0.45);
      border-radius: 4px;
      padding: 5px 18px;
      font-size: 12px; font-weight: 600;
      color: var(--gold-light);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 18px;
      background: rgba(184,134,11,0.12);
    }

    .hero-title {
      font-family: 'Scheherazade New', serif;
      font-size: clamp(26px, 5vw, 46px);
      font-weight: 700;
      line-height: 1.45;
      color: #fff;
      text-shadow: 0 3px 16px rgba(0,0,0,0.5);
      max-width: 720px;
    }
    .hero-title em {
      color: var(--gold-light);
      font-style: normal;
      display: block;
      font-size: 0.85em;
    }

    .hero-line {
      width: 80px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
      margin: 20px auto 0;
    }

    .dots {
      position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 8px; z-index: 5;
    }
    .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.3);
      border: 1px solid rgba(255,255,255,0.5);
      cursor: pointer; transition: all 0.3s;
    }
    .dot.active { background: var(--gold-mid); border-color: var(--gold-mid); width: 22px; border-radius: 3px; }

    /* ══════════════════════════════════
       BISMILLAH BANNER
    ══════════════════════════════════ */
    .bismillah-bar {
      background: linear-gradient(90deg, var(--emerald), var(--emerald2), var(--emerald));
      padding: 14px 24px;
      text-align: center;
      font-family: 'Scheherazade New', serif;
      font-size: clamp(18px, 3vw, 26px);
      color: var(--gold-light);
      letter-spacing: 3px;
      border-bottom: 2px solid var(--gold);
      position: relative;
    }
    .bismillah-bar::before,
    .bismillah-bar::after {
      content: '✦';
      position: absolute; top: 50%; transform: translateY(-50%);
      font-size: 14px; color: var(--gold-mid);
    }
    .bismillah-bar::before { right: 40px; }
    .bismillah-bar::after  { left: 40px; }

    /* ══════════════════════════════════
       WRAPPER
    ══════════════════════════════════ */
    .wrap {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ══════════════════════════════════
       SECTION TITLES
    ══════════════════════════════════ */
    .sec-head {
      text-align: center;
      margin-bottom: 36px;
    }
    .sec-eyebrow {
      display: inline-block;
      font-size: 11px; font-weight: 700;
      letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .sec-title {
      font-family: 'Scheherazade New', serif;
      font-size: clamp(24px, 3.5vw, 34px);
      font-weight: 700;
      color: var(--emerald);
      padding-bottom: 16px;
      position: relative;
      display: inline-block;
    }
    .sec-title::after {
      content: '';
      position: absolute;
      bottom: 0; right: 50%; transform: translateX(50%);
      width: 0; height: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 0;
    }
    /* Ornamental underline */
    .sec-title .ornament-line {
      display: block;
      margin: 10px auto 0;
      width: 100px;
      height: 24px;
      overflow: visible;
    }

    /* ══════════════════════════════════
       QUICK ACCESS CARDS
    ══════════════════════════════════ */
    .quick { padding: 56px 0 24px; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 22px;
    }

    .card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 36px 20px 28px;
      text-align: center;
      text-decoration: none;
      color: var(--text);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    /* Corner ornament */
    .card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 48px; height: 48px;
      background: var(--gold-pale);
      clip-path: polygon(100% 0, 0 0, 100% 100%);
      transition: background 0.3s;
    }
    .card::after {
      content: '';
      position: absolute;
      bottom: 0; width: 100%; left: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .card:hover::after { transform: scaleX(1); }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow2);
      border-color: var(--gold-mid);
    }
    .card:hover::before { background: rgba(184,134,11,0.15); }

    .card-ico {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--gold-pale);
      border: 2px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s;
    }
    .card:hover .card-ico {
      background: var(--emerald-pale);
      border-color: var(--emerald3);
    }
    .card-ico img { width: 36px; height: 36px; object-fit: contain; }
    .card-ico i { font-size: 26px; color: var(--emerald); }

    .card-name {
      font-size: 17px; font-weight: 700;
      color: var(--ink2);
    }
    .card-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ══════════════════════════════════
       STATS
    ══════════════════════════════════ */
    .stats { padding: 48px 0; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 18px;
    }
    .stat {
      background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald2) 100%);
      border-radius: var(--r);
      padding: 28px 16px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .stat::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    }
    .stat-num {
      font-family: 'Scheherazade New', serif;
      font-size: 42px; font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      position: relative;
    }
    .stat-lbl {
      font-size: 13px; color: rgba(255,255,255,0.7);
      margin-top: 6px; font-weight: 600;
      letter-spacing: 1px;
      position: relative;
    }

    /* ══════════════════════════════════
       DIRECTOR
    ══════════════════════════════════ */
    .director { padding: 20px 0 60px; }

    .director-wrap {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow2);
    }

    .dir-top {
      background: linear-gradient(135deg, #0a3d24 0%, #1a6b45 60%, #0d4a2e 100%);
      padding: 36px 40px;
      display: flex; align-items: center; gap: 22px;
      position: relative; overflow: hidden;
    }
    .dir-top::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    }
    .dir-top::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold-mid), var(--gold-light), var(--gold-mid), transparent);
    }

    .dir-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(212,160,23,0.2);
      border: 2px solid rgba(212,160,23,0.6);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: var(--gold-light);
      flex-shrink: 0;
      position: relative;
    }

    .dir-top-text { position: relative; }
    .dir-top-text h2 {
      font-family: 'Scheherazade New', serif;
      font-size: 26px; font-weight: 700;
      color: #fff;
    }
    .dir-top-text p { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

    .dir-body { padding: 44px 40px; }

    .ayah {
      text-align: center;
      font-family: 'Scheherazade New', serif;
      font-size: 22px;
      color: var(--emerald);
      background: var(--emerald-pale);
      border: 1px solid rgba(13,74,46,0.15);
      border-right: 5px solid var(--gold-mid);
      border-radius: 0 10px 10px 0;
      padding: 20px 30px;
      margin-bottom: 34px;
      line-height: 2.2;
      position: relative;
    }
    .ayah::before {
      content: '﴾';
      position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
      font-size: 28px; color: var(--gold-mid); opacity: 0.4;
    }

    .dir-text {
      font-size: 17px;
      line-height: 2.1;
      color: var(--text);
      text-align: justify;
    }
    .dir-text strong { color: var(--emerald); font-weight: 700; }

    .btn-more {
      display: inline-flex;
      align-items: center; gap: 10px;
      margin-top: 32px;
      padding: 14px 32px;
      background: var(--emerald);
      color: #fff;
      font-size: 15px; font-weight: 700;
      border-radius: 10px;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(13,74,46,0.3);
      position: relative; overflow: hidden;
    }
    .btn-more::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    }
    .btn-more:hover {
      background: var(--emerald2);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(13,74,46,0.4);
    }
    .btn-more i { font-size: 14px; }

    /* ══════════════════════════════════
       IMAGE STRIP
    ══════════════════════════════════ */
    .strip {
      overflow: hidden;
      border-radius: 12px;
      margin-top: 36px;
      position: relative;
    }
    .strip::before, .strip::after {
      content: '';
      position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
      pointer-events: none;
    }
    .strip::before { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
    .strip::after  { left: 0;  background: linear-gradient(to right, var(--cream), transparent); }

    .track {
      display: flex; width: max-content;
      animation: scrollIt 26s linear infinite;
      direction: ltr;
    }
    .track img {
      width: 290px; height: 178px;
      object-fit: cover;
      margin-left: 12px;
      border-radius: 10px;
      flex-shrink: 0;
    }
    @keyframes scrollIt {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer {
      background: linear-gradient(180deg, #0a1a10 0%, #060e08 100%);
      color: #fff;
      padding: 54px 24px 0;
      margin-top: 0;
      position: relative;
    }
    footer::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold-mid), var(--gold-light), var(--gold-mid), transparent);
    }

    .footer-grid {
      max-width: 1060px; margin: auto;
      display: grid;
      grid-template-columns: 180px 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .ft-logo img {
      height: 60px; border-radius: 12px; object-fit: contain;
    }
    .ft-logo p {
      font-size: 12px; color: rgba(255,255,255,0.4);
      margin-top: 12px; line-height: 1.7;
    }

    .ft-col h4 {
      font-family: 'Scheherazade New', serif;
      font-size: 18px; font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .ft-col a, .ft-col p {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: rgba(255,255,255,0.55);
      margin-bottom: 10px; text-decoration: none;
      transition: color 0.2s;
    }
    .ft-col a:hover { color: var(--gold-light); }
    .ft-col i { color: var(--gold); flex-shrink: 0; }

    .ft-map { border-radius: 10px; overflow: hidden; margin-top: 4px; }
    .ft-map iframe { width: 100%; height: 148px; border: none; display: block; opacity: 0.8; }

    .footer-bottom {
      max-width: 1060px; margin: 36px auto 0;
      padding: 18px 0;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12px; color: rgba(255,255,255,0.25);
    }
    .footer-bottom a { color: var(--gold-mid); text-decoration: none; }

    /* ══════════════════════════════════
       SCROLL REVEAL
    ══════════════════════════════════ */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
    @media (max-width: 768px) {
      header { padding: 0 16px; }
      .header-brand .brand-ar { font-size: 15px; }
      .hero { height: 300px; }
      .hero-title { font-size: 22px; }
      .dir-top { padding: 22px 20px; }
      .dir-body { padding: 28px 20px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
      .cards { grid-template-columns: repeat(2,1fr); gap: 14px; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 400px) {
      .cards { grid-template-columns: 1fr; }
    }