﻿    :root {
      --blue-deep:  #0D3769;
      --blue-main:  #1B5089;
      --blue-mid:   #2A7BC8;
      --blue-light: #D6E8FA;
      --gold:       #F5A623;
      --gold-dark:  #D4891A;
      --sand:       #FBF5EC;
      --white:      #FFFFFF;
      --gray-bg:    #F4F8FC;
      --gray-line:  #E2EAF3;
      --text-dark:  #12243A;
      --text-mid:   #46647F;
      --text-soft:  #8BA3BB;
      --shadow-s:   0 2px 10px rgba(13,55,105,.07);
      --shadow-m:   0 6px 28px rgba(13,55,105,.12);
      --shadow-l:   0 14px 50px rgba(13,55,105,.18);
      --radius-s:   10px;
      --radius-m:   16px;
      --radius-l:   24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Cairo', sans-serif;
      direction: rtl;
      text-align: right;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* â”€â”€ SCROLLBAR â”€â”€ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--gray-bg); }
    ::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       HEADER
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #site-header {
      position: fixed; top: 0; right: 0; left: 0; z-index: 9999;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--gray-line);
      transition: box-shadow .3s;
    }
    #site-header.scrolled { box-shadow: var(--shadow-m); }

    .header-inner {
      max-width: 1240px; margin: 0 auto;
      padding: 0 28px;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
    }

    .logo-wrap {
      display: flex; align-items: center; gap: 11px;
      text-decoration: none;
    }
    .logo-wrap img { height: 50px; width: auto; }
    .logo-text span { display: block; }
    .logo-ar { font-size: 15px; font-weight: 800; color: var(--blue-main); line-height: 1.2; }
    .logo-en { font-size: 10.5px; font-weight: 400; color: var(--text-mid); letter-spacing: .3px; }

    .main-nav ul {
      list-style: none; display: flex; align-items: center; gap: 2px;
    }
    .main-nav a {
      display: block; padding: 8px 13px;
      text-decoration: none;
      font-size: 14.5px; font-weight: 600;
      color: var(--text-mid);
      border-radius: var(--radius-s);
      transition: all .2s;
    }
    .main-nav a:hover, .main-nav a.nav-active {
      color: var(--blue-main); background: var(--blue-light);
    }
    .nav-contact-btn {
      background: var(--gold) !important;
      color: #fff !important;
      font-weight: 700 !important;
      padding: 9px 18px !important;
    }
    .nav-contact-btn:hover { background: var(--gold-dark) !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
    }
    .hamburger span {
      display: block; width: 23px; height: 2px;
      background: var(--blue-main); border-radius: 2px; transition: .3s;
    }

    /* â”€â”€ MOBILE NAV â”€â”€ */
    #mobile-nav {
      display: none; flex-direction: column; gap: 3px;
      position: fixed; top: 72px; right: 0; left: 0; z-index: 9998;
      background: #fff; border-bottom: 1px solid var(--gray-line);
      box-shadow: var(--shadow-m); padding: 18px 24px 22px;
    }
    #mobile-nav a {
      display: block; padding: 11px 14px;
      text-decoration: none; color: var(--text-mid);
      font-size: 15px; font-weight: 600;
      border-radius: var(--radius-s); transition: .2s;
    }
    #mobile-nav a:hover { background: var(--gray-bg); color: var(--blue-main); }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       HERO
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #home {
      min-height: 100vh;
      background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-main) 55%, var(--blue-mid) 100%);
      position: relative; display: flex; align-items: center; overflow: hidden;
    }

    /* decorative blobs */
    #home::before, #home::after {
      content: ''; position: absolute; border-radius: 50%;
    }
    #home::before {
      width: 500px; height: 500px;
      background: rgba(255,255,255,.04);
      top: -160px; left: -120px;
    }
    #home::after {
      width: 350px; height: 350px;
      background: rgba(245,166,35,.06);
      bottom: 40px; right: -100px;
    }

    /* dot pattern */
    .hero-dots {
      position: absolute; inset: 0; opacity: .04;
      background-image: radial-gradient(white 1.5px, transparent 1.5px);
      background-size: 32px 32px;
    }

    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1240px; margin: 0 auto;
      padding: 130px 28px 100px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(8px);
      border-radius: 50px; padding: 6px 15px;
      font-size: 12.5px; font-weight: 600;
      color: var(--gold); margin-bottom: 22px;
    }

    .hero-title {
      font-size: clamp(30px, 4.5vw, 54px);
      font-weight: 900; line-height: 1.28;
      color: #fff; margin-bottom: 18px;
      text-shadow: 0 2px 16px rgba(0,0,0,.2);
    }
    .hero-title .accent { color: var(--gold); }

    .hero-body {
      font-size: 17px; font-weight: 400; line-height: 1.85;
      color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 500px;
    }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn {
      display: inline-flex; align-items: center; gap: 7px;
      text-decoration: none; border: none; cursor: pointer;
      font-family: 'Cairo', sans-serif; font-size: 15px; font-weight: 700;
      border-radius: var(--radius-s); padding: 13px 26px;
      transition: all .3s;
    }
    .btn-gold {
      background: var(--gold); color: #fff;
      box-shadow: 0 5px 20px rgba(245,166,35,.45);
    }
    .btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
    .btn-ghost {
      background: rgba(255,255,255,.1);
      border: 2px solid rgba(255,255,255,.45);
      color: #fff;
    }
    .btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; }
    .btn-blue {
      background: var(--blue-main); color: #fff;
    }
    .btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow-m); }

    /* Hero Visual */
    .hero-visual { position: relative; }
    .hero-photo-wrap {
      position: relative; max-width: 480px; margin-right: auto;
    }
    .hero-photo {
      width: 100%; height: 370px; object-fit: cover;
      border-radius: var(--radius-l);
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }
    .hero-bubble {
      position: absolute; background: #fff;
      border-radius: var(--radius-m); padding: 14px 18px;
      box-shadow: var(--shadow-l);
    }
    .hero-bubble.b1 { bottom: -18px; right: -18px; }
    .hero-bubble.b2 { top: -18px; left: -18px; }
    .bubble-icon { font-size: 22px; margin-bottom: 4px; }
    .bubble-num { font-size: 24px; font-weight: 900; color: var(--blue-main); line-height: 1; }
    .bubble-lbl { font-size: 11px; color: var(--text-mid); font-weight: 500; margin-top: 2px; }

    /* wave */
    .hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       SHARED SECTION STYLES
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    section { padding: 88px 28px; }
    .container { max-width: 1240px; margin: 0 auto; }

    .sec-eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 12.5px; font-weight: 700; letter-spacing: .8px;
      color: var(--gold-dark); margin-bottom: 10px;
    }
    .sec-eyebrow::before {
      content: ''; display: block;
      width: 26px; height: 3px; border-radius: 2px; background: var(--gold);
    }

    .sec-title {
      font-size: clamp(24px, 3.5vw, 40px); font-weight: 900;
      color: var(--text-dark); line-height: 1.3; margin-bottom: 14px;
    }
    .sec-title .hl { color: var(--blue-main); }

    .sec-body {
      font-size: 16.5px; color: var(--text-mid); line-height: 1.85; max-width: 620px;
    }

    .sec-head { margin-bottom: 52px; }
    .sec-head.center { text-align: center; }
    .sec-head.center .sec-eyebrow { justify-content: center; }
    .sec-head.center .sec-body { margin: 0 auto; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       ABOUT
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #about { background: var(--gray-bg); }

    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }

    .about-photos { position: relative; }
    .about-main-photo {
      width: 100%; height: 440px; object-fit: cover;
      border-radius: var(--radius-l); box-shadow: var(--shadow-l);
    }
    .about-small-photo {
      position: absolute; bottom: -28px; left: -28px;
      width: 190px; height: 155px; object-fit: cover;
      border-radius: var(--radius-m); border: 5px solid #fff; box-shadow: var(--shadow-m);
    }
    .about-badge {
      position: absolute; top: -18px; right: -18px;
      background: var(--blue-main); color: #fff;
      border-radius: var(--radius-m); padding: 16px 18px;
      text-align: center; box-shadow: var(--shadow-m);
    }
    .badge-yr { font-size: 28px; font-weight: 900; display: block; line-height: 1; }
    .badge-lbl { font-size: 11px; opacity: .8; margin-top: 4px; }

    .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
    .value-card {
      display: flex; align-items: flex-start; gap: 11px;
      padding: 15px; background: #fff; border-radius: var(--radius-m);
      border: 1px solid var(--gray-line); transition: all .3s;
    }
    .value-card:hover {
      border-color: var(--blue-mid); box-shadow: var(--shadow-s); transform: translateY(-2px);
    }
    .vc-icon { font-size: 24px; flex-shrink: 0; }
    .vc-name { font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
    .vc-text { font-size: 12px; color: var(--text-mid); line-height: 1.55; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PROGRAMS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #programs { background: var(--white); }

    .programs-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
    }

    .prog-card {
      background: #fff; border-radius: var(--radius-l);
      border: 1px solid var(--gray-line); overflow: hidden;
      box-shadow: var(--shadow-s); transition: all .4s;
    }
    .prog-card:hover {
      transform: translateY(-7px); box-shadow: var(--shadow-l); border-color: transparent;
    }
    .prog-top {
      padding: 34px 28px 20px;
      background: linear-gradient(135deg, var(--gray-bg), var(--blue-light));
      position: relative; overflow: hidden;
    }
    .prog-top::after {
      content: ''; position: absolute;
      bottom: -35px; right: -35px;
      width: 100px; height: 100px; border-radius: 50%;
      background: var(--blue-main); opacity: .05;
    }
    .prog-icon { font-size: 42px; display: block; margin-bottom: 12px; }
    .prog-name { font-size: 17px; font-weight: 800; color: var(--text-dark); }
    .prog-body { padding: 18px 26px 26px; }
    .prog-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
    .prog-tag {
      display: inline-block; padding: 4px 12px; border-radius: 50px;
      background: rgba(27,80,137,.08); color: var(--blue-main);
      font-size: 11.5px; font-weight: 700;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       IMPACT
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #impact {
      background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-main) 100%);
      padding: 68px 28px;
    }

    .impact-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
    }
    .impact-item { padding: 28px 16px; }
    .imp-num { font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 7px; }
    .imp-label { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .imp-sub { font-size: 13px; color: rgba(255,255,255,.55); }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       GALLERY
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #gallery { background: var(--sand); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .g-item {
      position: relative; border-radius: var(--radius-m);
      overflow: hidden; cursor: pointer;
    }
    .g-item img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; transition: transform .5s;
    }
    .g-item:hover img { transform: scale(1.05); }
    .g-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,55,105,.72) 0%, transparent 55%);
      opacity: 0; transition: opacity .3s;
      display: flex; align-items: flex-end; padding: 18px;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-cap { color: #fff; font-size: 13px; font-weight: 600; }
    .g-item.tall { grid-row: span 2; }
    .g-item.tall img { height: 100%; min-height: 300px; }
    .g-item img { height: 240px; }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CONTACT
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #contact { background: var(--white); }

    .contact-layout {
      display: grid; grid-template-columns: 1fr; max-width: 600px;
    }

    .contact-info {
      background: linear-gradient(145deg, var(--blue-deep), var(--blue-main));
      border-radius: var(--radius-l); padding: 44px 34px; color: #fff;
      
    }
    .ci-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
    .ci-sub { font-size: 14.5px; opacity: .78; line-height: 1.7; margin-bottom: 36px; }

    .ci-items { display: flex; flex-direction: column; gap: 22px; }
    .ci-item { display: flex; align-items: center; gap: 14px; }
    .ci-icon {
      width: 44px; height: 44px; border-radius: var(--radius-s);
      background: rgba(255,255,255,.14);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .ci-lbl { font-size: 11.5px; opacity: .65; margin-bottom: 2px; }
    .ci-val { font-size: 14.5px; font-weight: 600; }
    .ci-val a { color: var(--gold); text-decoration: none; }
    .ci-val a:hover { text-decoration: underline; }

    /* FORM */
    .contact-form-wrap {
      background: var(--gray-bg); border-radius: var(--radius-l); padding: 42px 38px;
    }
    .form-heading { font-size: 21px; font-weight: 800; color: var(--text-dark); margin-bottom: 28px; }

    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .f-group { margin-bottom: 18px; }
    .f-group.span2 { grid-column: span 2; }

    .f-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }

    .f-input, .f-textarea {
      width: 100%; padding: 11px 15px;
      border: 2px solid var(--gray-line); border-radius: var(--radius-s);
      font-family: 'Cairo', sans-serif; font-size: 14px;
      color: var(--text-dark); background: #fff;
      direction: rtl; transition: .2s;
    }
    .f-input:focus, .f-textarea:focus {
      outline: none; border-color: var(--blue-mid);
      box-shadow: 0 0 0 3px rgba(42,123,200,.12);
    }
    .f-textarea { resize: vertical; min-height: 120px; }

    .f-submit {
      width: 100%; padding: 14px;
      background: var(--blue-main); color: #fff;
      border: none; border-radius: var(--radius-s);
      font-family: 'Cairo', sans-serif; font-size: 15.5px; font-weight: 700;
      cursor: pointer; transition: .3s;
    }
    .f-submit:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow-m); }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       FOOTER
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    footer {
      background: var(--text-dark); color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-grid {
      max-width: 1240px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .f-logo img { height: 44px; }
    .f-logo-text { font-size: 13.5px; font-weight: 700; line-height: 1.4; }
    .f-desc { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 270px; }
    .f-col-title { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 18px; }
    .f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .f-links a {
      text-decoration: none; color: rgba(255,255,255,.55);
      font-size: 13.5px; transition: .2s;
    }
    .f-links a:hover { color: #fff; }
    .footer-bottom {
      max-width: 1240px; margin: 0 auto;
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    }
    .f-copy { font-size: 12.5px; color: rgba(255,255,255,.38); }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       RESPONSIVE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    @media (max-width: 1000px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
      .hero-body { margin: 0 auto 32px; }
      .hero-btns { justify-content: center; }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .programs-grid { grid-template-columns: 1fr 1fr; }
      .impact-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-layout { grid-template-columns: 1fr; }
      .contact-info { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .main-nav { display: none; }
      .hamburger { display: flex; }
    }

    @media (max-width: 640px) {
      section { padding: 64px 20px; }
      .programs-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .g-item.tall { grid-row: span 1; }
      .g-item.tall img { min-height: unset; }
      .f-row { grid-template-columns: 1fr; }
      .f-group.span2 { grid-column: span 1; }
      .contact-form-wrap { padding: 28px 22px; }
      .about-small-photo { display: none; }
      .impact-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .header-inner { padding: 0 18px; }
    }
