
    :root{
      /* Theme pulled from logo vibe: dark graphite + teal accent */
      --bg: #0B0F14;
      --bg2:#0E1520;
      --card:#0F1A24;
      --text:#EAF1F8;
      --muted:#AAB7C6;
      --line: rgba(255,255,255,.10);
      --teal:#19D3C5;      /* main accent */
      --teal2:#4FE7DD;     /* glow */
      --shadow: 0 18px 40px rgba(0,0,0,.45);
      --radius: 18px;
      --radius2: 26px;
      --max: 1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: radial-gradient(1100px 700px at 10% 10%, rgba(25,211,197,.18), transparent 55%),
                  radial-gradient(900px 600px at 90% 20%, rgba(25,211,197,.12), transparent 55%),
                  linear-gradient(180deg, var(--bg), var(--bg2));
      color: var(--text);
      overflow-x:hidden;
    }

    /* Subtle noise overlay (lightweight) */
    .noise:before{
      content:"";
      position:fixed; inset:0;
      pointer-events:none;
      opacity:.08;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{max-width:var(--max); margin:0 auto; padding:0 18px}
    .row{display:flex; gap:18px}
    .grid{display:grid; gap:18px}

    /* Top bar */
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(12px);
      background: rgba(11,15,20,.65);
      border-bottom:1px solid var(--line);
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:220px;
    }
    .brand img{height:34px; width:auto}
    .nav{
      display:flex; align-items:center; gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color: var(--muted);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: .18s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      color: var(--text);
      border-color: rgba(25,211,197,.35);
      background: rgba(25,211,197,.08);
    }
    .cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      font-weight:600;
      font-size:13px;
      border:1px solid rgba(25,211,197,.35);
      background: linear-gradient(180deg, rgba(25,211,197,.18), rgba(25,211,197,.06));
      color: var(--text);
      box-shadow: 0 10px 25px rgba(0,0,0,.22);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .btn:hover{transform: translateY(-1px); border-color: rgba(25,211,197,.55)}
    .btn.secondary{
      border-color: rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      color: var(--muted);
    }
    .btn.secondary:hover{color:var(--text); border-color: rgba(255,255,255,.22)}

    /* Hero */
    header.hero{
      padding:56px 0 28px;
    }
    .hero-wrap{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-card{
      border:1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(600px 300px at 25% 10%, rgba(25,211,197,.22), transparent 55%),
                  radial-gradient(500px 260px at 80% 15%, rgba(25,211,197,.14), transparent 55%);
      pointer-events:none;
    }
    .hero-content{position:relative}
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(25,211,197,.25);
      background: rgba(25,211,197,.08);
      color: var(--muted);
      font-size:12px;
      font-weight:600;
      letter-spacing:.2px;
      margin-bottom:14px;
    }
    .dot{
      width:9px; height:9px; border-radius:50%;
      background: var(--teal);
      box-shadow: 0 0 0 4px rgba(25,211,197,.15);
    }
    h1{
      margin:0 0 10px;
      font-size: clamp(30px, 3.2vw, 44px);
      line-height:1.08;
      letter-spacing:-.02em;
    }
    .sub{
      margin:0 0 16px;
      color: var(--muted);
      font-size: 15.5px;
      line-height:1.55;
      max-width: 62ch;
    }
    .tagline{
      display:flex; flex-wrap:wrap; gap:10px;
      margin: 14px 0 18px;
    }
    .pill{
      font-size:12px;
      color: var(--muted);
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding:8px 10px;
      border-radius:999px;
      display:inline-flex; gap:8px; align-items:center;
    }
    .pill svg{opacity:.85}
    .hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

    /* Hero side (showcase) */
    .showcase{
      border:1px solid var(--line);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius2);
      overflow:hidden;
      box-shadow: var(--shadow);
      display:flex;
      flex-direction:column;
    }
    .showcase-top{
      padding:18px 18px 12px;
      border-bottom:1px solid var(--line);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .showcase h3{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
    }
    .showcase p{
      margin:6px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.45;
    }
    .mini-badge{
      font-size:11px;
      color: rgba(234,241,248,.9);
      border:1px solid rgba(25,211,197,.25);
      background: rgba(25,211,197,.07);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .showcase-grid{
      padding:12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .showcase-grid--slider{
      grid-template-columns: 1fr;
    }
    .shot{
      border-radius: 16px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:#0A0F16;
      position:relative;
      min-height: 190px;
    }
    .shot img{width:100%; height:100%; object-fit:cover}
    .shot .cap{
      position:absolute; left:10px; bottom:10px;
      font-size:11px;
      color: rgba(234,241,248,.9);
      background: rgba(0,0,0,.35);
      border:1px solid rgba(255,255,255,.12);
      padding:6px 9px;
      border-radius:999px;
      backdrop-filter: blur(8px);
    }

    /* Sections */
    section{
      padding:44px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size: 22px;
      letter-spacing:-.01em;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.45;
      max-width: 58ch;
    }
    .card{
      border:1px solid var(--line);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      box-shadow: 0 12px 28px rgba(0,0,0,.25);
      padding:18px;
    }
    .two{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
    }

    /* Feature cards */
    .features{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .f{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    }
    .f strong{display:block; font-size:13px; margin-bottom:6px}
    .f span{color:var(--muted); font-size:12.5px; line-height:1.45; display:block}

    /* Services */
    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .service{
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-height: 150px;
    }
    .service:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(380px 220px at 20% 10%, rgba(25,211,197,.14), transparent 55%);
      pointer-events:none;
    }
    .service h4{margin:0 0 6px; font-size:14px; position:relative}
    .service p{margin:0; color:var(--muted); font-size:12.8px; line-height:1.5; position:relative}

    /* Levels */
    .levels{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .level-list{display:grid; gap:10px}
    details.level{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: 16px;
      padding: 12px 14px;
      overflow:hidden;
    }
    details.level summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:700;
      font-size:13px;
    }
    details.level summary::-webkit-details-marker{display:none}
    .lvl-tag{
      font-size:11px;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid rgba(25,211,197,.22);
      background: rgba(25,211,197,.07);
      color: rgba(234,241,248,.92);
      font-weight:700;
      flex:0 0 auto;
    }
    .level p{
      margin:10px 0 0;
      color: var(--muted);
      font-size: 12.7px;
      line-height:1.5;
    }

    /* Before/After Toggle cards */
    .ba-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
    }
    .ba{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      overflow:hidden;
    }
    .ba-top{
      padding:14px 14px 10px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .ba-top strong{font-size:13px}
    .toggle{
      display:flex; align-items:center; gap:10px;
      font-size:12px; color: var(--muted);
      user-select:none;
    }
    .switch{
      width:46px; height:26px;
      border-radius:999px;
      background: rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      position:relative;
      cursor:pointer;
    }
    .knob{
      width:20px; height:20px;
      border-radius:50%;
      position:absolute; top:50%; left:3px;
      transform:translateY(-50%);
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
      box-shadow: 0 8px 18px rgba(0,0,0,.35);
      transition: left .18s ease;
    }
    .switch.on{
      background: rgba(25,211,197,.20);
      border-color: rgba(25,211,197,.35);
    }
    .switch.on .knob{left:23px}
    .ba-media{
      position:relative;
      aspect-ratio: 4/3;
      background:#0A0F16;
    }
    .ba-media img{
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      transition: opacity .18s ease;
    }
    .ba-badge{
      position:absolute; left:12px; bottom:12px;
      font-size:11px;
      padding:6px 9px;
      border-radius:999px;
      background: rgba(0,0,0,.35);
      border:1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      color: rgba(234,241,248,.92);
    }
    .ba-foot{
      padding:12px 14px 14px;
      color: var(--muted);
      font-size:12.6px;
      line-height:1.45;
    }

    /* Contact */
    .contact{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .contact .card{height:100%}
    .contact-list{
      display:grid; gap:10px;
      margin-top:10px;
    }
    .contact-item{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: 14px;
      padding:12px 12px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .icon{
      width:34px; height:34px;
      border-radius:12px;
      display:grid; place-items:center;
      background: rgba(25,211,197,.10);
      border:1px solid rgba(25,211,197,.22);
      flex:0 0 auto;
    }
    .contact-item strong{display:block; font-size:13px; margin-bottom:3px}
    .contact-item span{color:var(--muted); font-size:12.6px; line-height:1.35}
    .form{
      display:grid; gap:10px;
    }
    .field{
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      padding:12px;
      color: var(--text);
      outline:none;
      font-size:13px;
    }
    textarea.field{min-height:120px; resize:vertical}
    .note{
      color: var(--muted);
      font-size:12px;
      line-height:1.45;
      margin-top:8px;
    }

    /* Footer */
    footer{
      padding:22px 0 34px;
      border-top:1px solid var(--line);
      background: rgba(0,0,0,.10);
    }
    .footer-inner{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .foot-left{display:flex; align-items:center; gap:12px}
    .foot-left img{height:30px; width:auto; opacity:.95}
    .foot-right{color: var(--muted); font-size:12px}

    /* Reveal on scroll */
    .reveal{opacity:0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease}
    .reveal.show{opacity:1; transform:none}

    /* Responsive */
    @media (max-width: 980px){
      .hero-wrap{grid-template-columns: 1fr}
      .levels{grid-template-columns: 1fr}
      .service-grid{grid-template-columns: 1fr 1fr}
      .features{grid-template-columns: 1fr 1fr}
      .contact{grid-template-columns: 1fr}
    }
    @media (max-width: 640px){
      .nav{display:none}
      header.hero{padding:34px 0 16px}
      section{padding:34px 0}
      .service-grid{grid-template-columns: 1fr}
      .two{grid-template-columns: 1fr}
      .ba-grid{grid-template-columns: 1fr}
      .brand{min-width:auto}
    }
  


/* === Mobile menu enhancements (added) === */
.topbar-inner{ position: relative; }
.menu-btn{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:11px 10px;
  align-items:stretch;
  justify-content:center;
  gap:6px;
}
.menu-btn span{
  display:block;
  width:100%;
  height:3px;
  border-radius:999px;
  background:#EAF1F8;
  opacity:1;
}
@media (max-width: 640px){
  .menu-btn{display:inline-flex; flex-direction:column; justify-content:center}
  /* Hide nav by default but allow toggle */
  .nav{display:none}
  .nav.open{
    display:flex;
    position:absolute;
    left:0; right:0;
    top:58px;
    flex-direction:column;
    gap:6px;
    padding:10px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(11,15,20,.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
  }
  .nav.open a{justify-content:flex-start}
}


/* =========================
   Visual enrichment (2026)
   ========================= */

/* Soft teal tint overlay for media (keeps theme consistent) */
.img-tinted{transform: translateZ(0);}

/* Parent overlays */
.shot--slide,
.service-media,
.masonry-item{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}
.shot--slide::after,
.service-media::after,
.masonry-item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,15,20,.15), rgba(25,211,197,.12));
  pointer-events:none;
}

/* Hero slider */
.hero-swiper{width:100%;}
.hero-swiper .swiper-pagination-bullet{
  background: rgba(234,241,248,.55);
  opacity: .55;
}
.hero-swiper .swiper-pagination-bullet-active{
  background: rgba(25,211,197,.95);
  opacity: 1;
}
.showcase-grid{padding:12px;}
.showcase-grid .shot{min-height:240px;}
@media (max-width:980px){
  .showcase-grid .shot{min-height:220px;}
}

/* Services media strip */
.service.has-media{padding-top:12px;}
.service-media{
  aspect-ratio: 1 / 1;
  width:100%;
  height:auto;
  border:1px solid rgba(255,255,255,.10);
  background:#0A0F16;
  margin:0 0 12px 0;
}
.service-media img{
  width:100%; height:100%;
  object-fit:contain;
  padding:8px;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

/* Masonry gallery (Samples page) */
.masonry{
  columns: 4;
  column-gap: 12px;
}
.masonry-item{
  display:block;
  margin:0 0 12px;
  border:1px solid rgba(255,255,255,.10);
  background:#0A0F16;
}
.masonry-item img{
  width:100%;
  height:auto;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
@media (max-width:980px){ .masonry{columns:2;} }
@media (max-width:640px){ .masonry{columns:1;} }

/* Lightbox (vanilla, no extra libs) */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}
.lightbox.open{display:flex;}
.lightbox img{
  max-width:min(1100px, 100%);
  max-height: min(82vh, 900px);
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.lightbox .lb-close{
  position:absolute;
  top:14px; right:14px;
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: rgba(234,241,248,.95);
  display:grid;
  place-items:center;
  cursor:pointer;
  backdrop-filter: blur(10px);
}


/* Swiper graceful fallback (ensures hero images show even if JS fails) */
.hero-swiper{height:auto;}
.hero-swiper .swiper-wrapper{height:auto;}
.hero-swiper .swiper-slide{height:auto;}


/* Before/After Drag Slider (Work page) */
.ba-media{position:relative; overflow:hidden}
.ba-media .img-before{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.ba-media .ba-after{position:absolute; inset:0; width:var(--pos,50%); overflow:hidden}
.ba-media .ba-after .img-after{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.ba-media .ba-divider{position:absolute; top:0; bottom:0; left:calc(var(--pos,50%) - 1px); width:2px; background:rgba(234,241,248,.85); box-shadow:0 0 0 1px rgba(0,0,0,.25)}
.ba-media .ba-handle{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:34px; height:34px; border-radius:50%; background:rgba(11,15,20,.55); border:1px solid rgba(234,241,248,.6); backdrop-filter:blur(8px); box-shadow:0 12px 24px rgba(0,0,0,.35)}
.ba-media .ba-handle:before,.ba-media .ba-handle:after{content:""; position:absolute; top:50%; width:10px; height:10px; border-top:2px solid rgba(234,241,248,.85); border-left:2px solid rgba(234,241,248,.85); transform:translateY(-50%) rotate(-45deg)}
.ba-media .ba-handle:before{left:8px}
.ba-media .ba-handle:after{right:8px; transform:translateY(-50%) rotate(135deg)}
.ba-media .ba-range{position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:ew-resize; -webkit-appearance:none; appearance:none}
.ba-media .ba-range::-webkit-slider-thumb{-webkit-appearance:none; appearance:none; width:42px; height:42px; border-radius:50%}
.ba-media .ba-range::-moz-range-thumb{width:42px; height:42px; border:none; border-radius:50%}
/* Hide old toggle switch (kept in markup to avoid content changes elsewhere) */
.ba .toggle .switch{display:none}


/* Arabic RTL support */
html[lang="ar"] body{
  font-family: "Modir MT","Cairo","Tajawal","Noto Kufi Arabic",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  letter-spacing: 0;
}
html[lang="ar"] .topbar-inner{ flex-direction: row-reverse; }
html[lang="ar"] .nav{ justify-content: flex-start; }
html[lang="ar"] .cta{ flex-direction: row-reverse; }
html[lang="ar"] .hero-wrap{ direction: rtl; }
html[lang="ar"] .section-head{ flex-direction: row-reverse; text-align:right; }
html[lang="ar"] .two{ direction: rtl; }
html[lang="ar"] .contact{ direction: rtl; }
html[lang="ar"] ul{ padding-right:18px; padding-left:0; }
html[lang="ar"] details.level summary{ flex-direction: row-reverse; }
html[lang="ar"] .ba-top{ flex-direction: row-reverse; text-align:right; }
html[lang="ar"] .ba-badge{ left:auto; right:12px; }
html[lang="ar"] .shot .cap{ left:auto; right:10px; }
html[lang="ar"] .showcase-top{ flex-direction: row-reverse; text-align:right; }
html[lang="ar"] .footer-inner{ flex-direction: row-reverse; }
@media (max-width: 640px){
  .hide-mobile{ display:none !important; }
  .lang-btn{ padding:10px 12px; }
}

