/* =============================================================
   Ahmed Abdulsalam — Landing Page Blocks : shared design system
   Loaded on the front end and inside the block editor canvas.
   ============================================================= */

:root {
  --alb-cyan: #3fc9f5;
  --alb-cyan-soft: #8fe3ff;
  --alb-chip-bg: #38bff0;
  --alb-chip-text: #061031;
  --alb-ink: #ffffff;
  --alb-ink-dim: #cdc9ee;
  --alb-ink-faint: #a9a4d8;
  --alb-card-bg: rgba(10, 14, 42, 0.78);
  --alb-card-border: rgba(96, 116, 232, 0.55);
  --alb-font: 'ClashDisplay-Variable', sans-serif;
  --alb-font-geo: 'ClashDisplay-Variable', sans-serif;
  --alb-font-round: 'Century Gothic', 'Montserrat Alternates', 'Didact Gothic', 'Poppins', sans-serif;
  --alb-font-arabic: 'Jameel Noori', sans-serif;
  --alb-font-callig: 'Aref Ruqaa', serif;
}


.wp-site-blocks {
  /* Clips the oversized decorative overlays.
     MUST be `clip`, not `hidden`: `hidden` makes this a scroll
     container, and clicking an anchor makes the browser scroll every
     scrollable ancestor to bring the target into view. That silently
     scrolled this box by ~92px (its scrollHeight exceeds clientHeight
     because of those same overlays), sliding the whole page up and
     leaving a blank strip under the last section until you clicked
     Home again. `clip` clips identically but is not scrollable.
     `hidden` is kept first as a fallback for browsers without `clip`. */
  overflow: hidden;
  overflow: clip;
}

/* ---------- section shells: one continuous vertical gradient ---------- */

.alb-section {
  position: relative;
  margin: 0 !important;
  font-family: var(--alb-font);
  color: var(--alb-ink);
  -webkit-font-smoothing: antialiased;
  background-color: #322f85;
}

.alb-section * {
  box-sizing: border-box;
}

.alb-section--hero {
  background:
    radial-gradient(46% 40% at 88% 88%, rgba(58, 59, 166, 0.5), transparent 70%),
    radial-gradient(34% 30% at 8% 34%, rgba(44, 40, 110, 0.35), transparent 70%),
    radial-gradient(40% 26% at 60% 0%, rgba(40, 38, 92, 0.4), transparent 70%),
    linear-gradient(180deg, #0a0918 0%, #0b0a1e 55%, #100d2c 100%);
}

.alb-section--stats {
  background:
    radial-gradient(40% 90% at 92% 20%, rgba(58, 59, 166, 0.3), transparent 70%),
    linear-gradient(180deg, #0e0c26 0%, #0b0b1e 100%);
}

.alb-section--about {
  background:
    radial-gradient(55% 62% at 102% 55%, rgba(97, 89, 176, 0.72), transparent 72%),
    radial-gradient(42% 46% at 0% 104%, rgba(84, 68, 168, 0.5), transparent 72%),
    linear-gradient(165deg, #0b0a1e 0%, #171343 55%, #2f286a 100%);
}

.alb-section--certs {
  background:
    radial-gradient(45% 50% at 102% 6%, rgba(96, 86, 178, 0.45), transparent 72%),
    radial-gradient(38% 42% at 0% 102%, rgba(22, 18, 48, 0.65), transparent 72%),
    linear-gradient(180deg, #2f286a 0%, #333078 55%, #3a3486 100%);
}

.alb-section--journey {
  background:
    radial-gradient(40% 40% at 100% 15%, rgba(120, 110, 200, 0.35), transparent 70%),
    radial-gradient(35% 35% at 0% 5%, rgba(30, 24, 62, 0.5), transparent 70%),
    linear-gradient(180deg, #3a3486 0%, #46409a 55%, #57509f 100%);
}

.alb-section--video {
  background:
    radial-gradient(45% 55% at 0% 0%, rgba(14, 12, 44, 0.55), transparent 65%),
    radial-gradient(50% 60% at 100% 100%, rgba(190, 186, 230, 0.35), transparent 72%),
    linear-gradient(170deg, #57509f 0%, #605aad 55%, #7a73c2 100%);
  overflow: visible;
}

.alb-section--video .alb-video-section-ovrelay {
  position: absolute;
  z-index: 1;
  width: 100%;
  min-width: 1800px;
  bottom: 0;
  right: 0;
  pointer-events: none;
  user-select: none;
}

/* optional per-section background overlay image (PSD collage) */
.alb-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 92%);
}

.alb-section>.alb-container {
  position: relative;
  z-index: 2;
}

.alb-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

/* ambient glows */
.alb-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.alb-glow--cyan {
  background: rgba(63, 201, 245, 0.28);
}

.alb-glow--violet {
  background: rgba(124, 96, 255, 0.30);
}

/* glowing horizontal streak divider */
.alb-streak {
  position: relative;
  height: 2px;
  margin: 0 auto;
  max-width: 1180px;
  background: linear-gradient(90deg, transparent, rgba(63, 201, 245, 0.9), rgba(255, 255, 255, 0.95), rgba(63, 201, 245, 0.9), transparent);
  box-shadow: 0 0 18px 2px rgba(63, 201, 245, 0.55), 0 0 60px 8px rgba(63, 201, 245, 0.35);
  border-radius: 2px;
}

/* ---------- shared bits ---------- */

.alb-kicker {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: var(--alb-font-geo);
  font-size: clamp(18px, 2.4vw, 29px);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;

  background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 22%, #58c6f2 75%, #7ad9f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-kicker__pill {
  flex: none;
  width: 46px;
  height: 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #1f8fe8, #62d3f4);
  box-shadow: 0 0 14px rgba(63, 201, 245, 0.55);
}

.alb-kicker--center {
  justify-content: center;
  text-align: center;
}

.alb-kicker__dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--alb-cyan);
  box-shadow: 0 0 10px rgba(63, 201, 245, 0.9);
}

.alb-kicker__line {
  flex: none;
  width: 90px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(63, 201, 245, 0.85));
}

.alb-kicker__line--r {
  background: linear-gradient(90deg, rgba(63, 201, 245, 0.85), transparent);
}

/* image placeholder (until user swaps in real images) */
.alb-img-ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(96, 116, 232, 0.35), transparent 60%),
    linear-gradient(145deg, #1a1c4e 0%, #23205f 55%, #191642 100%);
  color: rgba(205, 201, 238, 0.65);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.alb-img-ph svg {
  opacity: 0.55;
}

/* buttons */
.alb-btn {
  display: inline-block;
  border-radius: 20px;
  font-family: var(--alb-font);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 13px 32px;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.alb-btn:hover {
  transform: translateY(-1px);
}

.alb-btn--solid {
  background: linear-gradient(180deg, #55d2ff, #2fb3e8);
  color: #06122f !important;
  box-shadow: 0 6px 22px rgba(63, 201, 245, 0.45);
}

.alb-btn--outline {
  border: 1.6px solid rgba(255, 255, 255, 0.9);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
}

/* =============================================================
   1. HERO
   ============================================================= */

.alb-section--hero {
  padding: 108px 0 0;
  position: relative;
  overflow: visible;

  .alb-container {
    @media(min-width:881px) {
      padding-inline-end: 0;
    }
  }
}

/* ── Fixed floating pill nav ─────────────────────────────── */
.alb-nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 2 * clamp(20px, 5vw, 40px));
  max-width: 1160px;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(6px, 1.5vw, 16px);
  padding: 12px clamp(18px, 3.5vw, 48px);
  border-radius: 999px;
  background: rgba(20, 18, 52, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px) saturate(160%);
  flex-wrap: nowrap;

  transition:
    background 400ms ease,
    border-color 400ms ease,
    box-shadow 400ms ease,
    top 400ms ease;
}

/* Scrolled state: more opaque, deeper shadow */
.alb-nav.is-scrolled {
  background: rgba(5, 4, 20, 0.90);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 4px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(63, 201, 245, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(200%);
  overflow: hidden;
}

.alb-nav a {
  color: rgba(255, 255, 255, 0.90) !important;
  font-family: var(--alb-font-geo);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none !important;
  padding: 5px 2px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.alb-nav a:hover {
  color: var(--alb-cyan) !important;
}

.alb-nav a:focus {
  outline: none;
}

/* Brand shown only on mobile — injected by JS */
.alb-nav-brand {
  display: none;
  font-family: var(--alb-font);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Hamburger toggle — injected by JS */
.alb-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, border-color 200ms ease;
}

.alb-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.alb-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: center;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.alb-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.alb-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.alb-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Full-screen mobile nav overlay ─────────────────────── */
.alb-nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(70% 55% at 50% 15%, rgba(56, 50, 145, 0.50), transparent 72%),
    rgba(4, 3, 18, 0.97);
  backdrop-filter: blur(28px) saturate(130%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.alb-nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.alb-nav-mobile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 20px;
}

.alb-nav-mobile__link {
  display: block;
  font-family: var(--alb-font);
  font-size: clamp(34px, 9vw, 58px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  letter-spacing: -0.5px;
  line-height: 1.3;
  padding: 4px 24px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition:
    color 180ms ease,
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

.alb-nav-mobile.is-open .alb-nav-mobile__link {
  opacity: 1;
  transform: translateY(0);
}

.alb-nav-mobile__link:hover {
  color: var(--alb-cyan) !important;
}

/* Decorative divider between links */
.alb-nav-mobile__link+.alb-nav-mobile__link {
  position: relative;
}

/* Subtle scroll-progress line along the bottom of the nav pill */
/* .alb-nav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  border-radius: 0 0 999px 999px;
  width: var(--alb-scroll-pct, 0%);
  background: linear-gradient(90deg, rgba(63, 201, 245, 0.85), rgb(63 119 245));
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
} */

.alb-nav.is-scrolled::after {
  opacity: 1;
}

/* Scroll margin so fixed nav doesn't cover section headings */
.alb-section[id] {
  scroll-margin-top: 84px;
}


.alb-hero-grid {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  padding-bottom: 84px;

  @media(min-width:1024px) {
    > :first-child {
      flex: 0 1 505px;
      max-width: 505px;
    }

    > :last-child {
      flex: 1;
      min-width: 0;
    }
  }

  @media(min-width:881px) and (max-width:1023px) {
    > :first-child {
      flex: 0 1 50%;
      max-width: 50%;
    }

    > :last-child {
      flex: 1;
      min-width: 0;
    }
  }

  /* 1200px rather than 1440px: inside the zoom bands below, the
     layout is ~1900px wide even though the viewport reports less,
     so this needs to apply there too. */
  @media(min-width:1200px) {
    > :first-child {
      margin-bottom: 32px;
    }
  }
}

.alb-hero-arabic {
  font-family: var(--alb-font-arabic);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 -20px;
  position: relative;
  z-index: 2;
}

.alb-hero-first {
  margin: 0;
  font-family: var(--alb-font);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0d5edf 0%, #8cc9ff 45%, #cdf1ff 75%, #a1e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-hero-last {
  margin: 0;
  font-family: 'ClashGrotesk-Extralight';
  font-size: clamp(32px, 6vw, 70px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: clamp(2px, 0.5vw, 6px);
  color: #ffffff;
  background: linear-gradient(180deg, #f4f4f6 0%, #d5d5d9 38%, #b5b5b9 60%, #6f6f73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-hero-last::after {
  content: '';
  display: block;
  margin: 22px 0 26px;
  height: 1px;
  width: min(440px, 92%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.06));
}

.alb-hero-role {
  margin: 0 0 10px;
  font-family: var(--alb-font-geo);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

.alb-hero-role b,
.alb-hero-role strong {
  font-weight: 600;
  color: #ffffff;
}

.alb-hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.alb-hero-actions .alb-btn {
  font-family: var(--alb-font-geo);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 600;
  padding-block: 17px;
  padding-inline: 5px;
  text-align: center;
  width: clamp(160px, 18vw, 210px);
}

.alb-hero-actions .alb-btn--solid {
  background: linear-gradient(90deg, #0f67f2 0%, #64a8f5 55%, #62d3f4 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 30px rgba(30, 130, 240, 0.45);
}

.alb-hero-actions .alb-btn--outline {
  background: rgba(12, 12, 33, 0.85);
  border: 2px solid #65c6e5;
  color: #ffffff !important;
}

.alb-hero-photo {
  position: relative;
  margin-top: 26px;
  aspect-ratio: 959 / 612;
  /* margin-right: min(0px, calc((1175px - 100vw) / 2)); */
  background: transparent;
}



.alb-hero-photo img,
.alb-hero-photo .alb-img-ph,
.alb-hero-photo>div {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.alb-hero-photo img {
  object-fit: cover;
  display: block;

}

.alb-hero-photo .alb-img-ph {
  border-radius: 6px 0 0 6px;
  box-shadow: 0 26px 70px rgba(3, 6, 25, 0.65);
}

.alb-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alb-hero-glow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 170px;
  background:
    radial-gradient(42% 90% at 46% 100%, rgba(140, 210, 255, 0.55), transparent 70%),
    radial-gradient(70% 130% at 64% 100%, rgba(70, 140, 255, 0.45), rgba(58, 59, 166, 0.28) 60%, transparent 82%);
  filter: blur(22px);
  transform: rotate(-3deg);
  transform-origin: right bottom;
  pointer-events: none;
  z-index: 1;
}

.alb-hero-section-ovrelay {
  position: absolute;
  z-index: 1;
  min-width: 1800px;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
}

.alb-hero-ahmed-overlay {
  position: absolute;
  z-index: 1;
  min-width: 1200px;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
}

/* =============================================================
   2. STATS
   ============================================================= */

.alb-section--stats {
  padding: 0;
}

.alb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 0px 0 64px;
}

.alb-stat__num {
  margin: 0 0 14px;
  font-family: 'Anton', 'Oswald', 'Arial Narrow', var(--alb-font);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #f4f4f6 0%, #d5d5d9 38%, #b5b5b9 60%, #6f6f73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-stat__label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 14px;
  border-radius: 9px;
  background: linear-gradient(90deg, #4bc2f4 0%, #0482f2 100%);
  color: #ffffff;
  font-family: var(--alb-font-geo);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.2;
  box-shadow: 0 6px 20px rgba(4, 130, 242, 0.35);
}

.alb-stat__desc {
  margin: 0;
  font-family: var(--alb-font-geo);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
  color: #ffffff;
  max-width: 292px;
}

/* =============================================================
   3. ABOUT + PROFESSIONAL FOCUS
   ============================================================= */

.alb-section--about {
  padding: 50px 0 64px;
  position: relative;
}

.alb-about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 372px) 1fr;
  gap: 62px;
  align-items: start;
}

.alb-photo-frame {
  position: relative;
  aspect-ratio: 514 / 1024;
  background: transparent;
  margin-top: -51px;
}



.alb-photo-frame img,
.alb-photo-frame .alb-img-ph,
.alb-photo-frame>div {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.alb-photo-frame img {
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.alb-photo-frame .alb-img-ph {
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(5, 6, 26, 0.6);
}

.alb-about-signature {
  margin: -48px 0 0;
  font-family: var(--alb-font-callig);
  font-size: 52px;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 8px 26px rgba(15, 12, 55, 0.85), 0 0 32px rgba(130, 150, 255, 0.35);
}

.alb-about-lead {
  margin: 20px 0 6px;
  font-family: var(--alb-font-geo);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 22%, #58c6f2 75%, #7ad9f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-about-body {
  margin: 0 0 30px;
  font-family: var(--alb-font-geo);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38;
  color: #ffffff;
  max-width: 720px;
}

.alb-about .alb-kicker {
  margin-bottom: 2px;
}

.alb-focus-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 26px;

  font-family: var(--alb-font-geo);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 22%, #58c6f2 75%, #7ad9f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-focus-heading .alb-kicker__pill {
  width: 46px;
  height: 20px;
}

.alb-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 38px;
  max-width: 706px;
}

.alb-focus-card {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(18, 22, 64, 0.72);
  border: 1.5px solid rgba(84, 102, 210, 0.55);
  box-shadow: 0px 0px 11px 4px rgb(54 63 157 / 40%);
  min-height: 79px;
}

.alb-focus-card__icon {
  flex: none;
  width: 47px;
  height: 47px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    height: 100%;
  }
}



.alb-focus-card__label {
  margin: 0;
  font-family: var(--alb-font-geo);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.3;
  color: #eef0fb;
}

.alb-about-ahmed-overlay {
  position: absolute;
  min-width: 800px;
  top: -370px;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

/* =============================================================
   4. CERTIFICATIONS
   ============================================================= */

.alb-section--certs {
  padding: 46px 0 62px;
  position: relative;
}

.alb-certs-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.alb-certs-head .alb-kicker {
  flex: none;
  font-size: 33px;
  gap: 16px;

  span {
    background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 45%, #58c6f2 75%, #7ad9f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    position: relative;
  }

  span::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 50%;
    width: 87px;
    filter: blur(12px);
    background-color: #6bb9ff;
    opacity: .4;
    z-index: 0;


  }
}

.alb-certs-head .alb-kicker img {
  width: 30px;

}

.alb-certs-head__line {
  flex: 0 1 300px;
  height: 1.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(63 181 242 / 3%), rgb(87 169 255));
  box-shadow: 0 0 14px rgba(63, 181, 245, 0.45);
  position: relative;
}

.alb-certs-head__line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 78%, #58c6f2 75%, #7ad9f7 100%);
  box-shadow: 0 0 16px rgba(82, 201, 255, 0.95);
}

.alb-certs-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 358px);
  gap: 70px;
  align-items: center;
  margin-bottom: 42px;
}

.alb-certs-title1 {
  margin: 0 0 8px;
  font-family: var(--alb-font-geo);
  font-size: clamp(36px, 5.5vw, 65px);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  background: linear-gradient(89deg, #f4f4f6 0%, #d5d5d9 60%, #b5b5b9 80%, #6f6f73 100%);
  letter-spacing: 0.5px;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-certs-title2 {
  margin: 0;
  font-family: var(--alb-font-geo);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
}

.alb-certs-title2 strong,
.alb-certs-title2 b {
  background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 45%, #58c6f2 75%, #7ad9f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}




.alb-certs-badges img,
.alb-certs-badges svg {
  height: 108px;
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.alb-certs-body {
  margin: 0;
  font-family: var(--alb-font-geo);
  font-size: 20.5px;
  font-weight: 500;
  line-height: 1.36;
  color: #ffffff;
  max-width: 690px;
}

.alb-certs-shield {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 24px 46px rgba(10, 8, 40, 0.6));
}

.alb-certs-shield img,
.alb-certs-shield svg {
  width: 280px;
  height: auto;
  opacity: .8;
  margin-top: -56px;
}

.alb-certs-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 20px;
  margin: 0 0 40px;
}

.alb-pill {
  display: inline-block;
  padding: 11px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(84, 132, 235, 0.8);
  background: rgba(14, 17, 50, 0.55);
  color: #55c3f6;
  font-family: var(--alb-font-geo);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.15;
  box-shadow: 0px 0px 15px 6px rgb(75 87 206 / 39%);

}

.alb-certs-foot {
  margin: 0;
  text-align: center;
  font-family: var(--alb-font-geo);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.alb-cert-ahmed-overlay {
  position: absolute;
  z-index: 3;
  min-width: 700px;
  width: 50%;
  top: -319px;
  right: 0;
  pointer-events: none;
  user-select: none;
}

/* =============================================================
   5. STRATEGIC JOURNEY GALLERY
   ============================================================= */

.alb-section--journey {
  padding: 0px 0 74px;
  position: relative;
}

.alb-journey-head {
  text-align: center;
  margin-bottom: 12px;
}

.alb-section--journey .alb-kicker,
.alb-section--video .alb-kicker {
  font-size: 40px;
  font-weight: 800;
  gap: 0px;
  letter-spacing: 0.5px;
}

.alb-section--video .alb-kicker__text,
.alb-section--journey .alb-kicker__text {
  background: linear-gradient(90deg, #0d5edf 0%, #6bb9ff 45%, #58c6f2 75%, #7ad9f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-inline: 12px;
}

.alb-section--journey .alb-kicker__dot,
.alb-section--video .alb-kicker__dot {
  width: 13px;
  height: 13px;
  background: #eef4ff;
  box-shadow: 0 0 14px rgba(170, 205, 255, 0.9);
}

.alb-section--journey .alb-kicker__line,
.alb-section--video .alb-kicker__line {

  background: linear-gradient(90deg, transparent, rgba(220, 232, 255, 0.8));

  @media(min-width:992px) {
    width: 110px;
  }

  @media(max-width:991px) {
    width: 100px;
  }

  @media(max-width:575px) {
    width: 60px;
  }
}

.alb-section--journey .alb-kicker__line--r,
.alb-section--video .alb-kicker__line--r {
  background: linear-gradient(90deg, rgba(220, 232, 255, 0.8), transparent);
}

.alb-journey-title {
  margin: 0;
  font-family: var(--alb-font-geo);
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.alb-journey-sub {
  margin: 0 auto;
  font-family: var(--alb-font-geo);
  font-size: clamp(18px, 2.6vw, 20px);
  font-weight: 300;
  line-height: 1.35;
  color: #ffffff;
  max-width: 780px;
}

.alb-journey-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(89.2vw, 1286px);
}

.alb-jcard {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 205px;
  background: #14113c;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 34px rgba(5, 6, 26, 0.45);
}

.alb-jcard.alb-span-3 {
  min-height: 164px;
}

.alb-jcard img.alb-jcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alb-jcard .alb-img-ph {
  position: absolute;
  inset: 0;
}

.alb-jcard__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 30, 0) 40%, rgba(8, 8, 30, 0.9) 100%);
}

.alb-jcard__meta {
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 10px;
  text-align: center;
  z-index: 2;
}

.alb-jcard__title {
  display: inline-block;
  margin-bottom: -4px;
  padding: 5px 18px;
  border-radius: 999px;
  background: rgba(10, 14, 45, 0.88);
  border: 1px solid rgba(120, 170, 250, 0.7);
  color: #ffffff;
  font-family: var(--alb-font-geo);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;

  /* one line max — overflow becomes an ellipsis */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alb-jcard__caption {
  margin: 0px auto 0;
  font-family: var(--alb-font-geo);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  max-width: 96%;
  text-shadow: 0 1px 6px rgba(5, 6, 26, 0.8);

  /* two lines max — overflow becomes an ellipsis */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.alb-jcard.alb-span-3 .alb-jcard__title {
  font-size: 9.5px;
  padding: 4px 14px;
}

.alb-jcard.alb-span-3 .alb-jcard__caption {
  font-size: 10.8px;
}

/* column spans (set per card in the editor) */
.alb-span-3 {
  grid-column: span 3;
}

.alb-span-4 {
  grid-column: span 4;
}

.alb-span-5 {
  grid-column: span 5;
}

.alb-span-6 {
  grid-column: span 6;
}

.alb-span-7 {
  grid-column: span 7;
}

.alb-span-8 {
  grid-column: span 8;
}

.alb-span-9 {
  grid-column: span 9;
}

.alb-span-12 {
  grid-column: span 12;
}

.alb-journey-ahmed-overlay {
  position: absolute;
  z-index: 3;
  min-width: 700px;
  width: 50%;
  top: -419px;
  left: 0;
  pointer-events: none;
  user-select: none;
}

/* =============================================================
   6. VIDEO
   ============================================================= */

.alb-section--video {
  padding: 46px 0 96px;
  position: relative;
  padding: 0 !important;
  height: 0 !important;
}

.alb-video-head {
  text-align: center;
  margin-bottom: 34px;
}

.alb-video-title {
  margin: 18px 0 0;
  font-family: var(--alb-font-geo);
  font-size: clamp(22px, 3.8vw, 46px);
  font-weight: 300;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.alb-video-title .alb-strong-cyan,
.alb-strong-cyan {
  font-weight: 700;
  background: linear-gradient(90deg, #166ff1 0%, #46aef0 55%, #6cd6f8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alb-video-frame {
  position: relative;
  border-radius: 46px;
  overflow: hidden;
  aspect-ratio: 14 / 5;
  left: 50%;
  transform: translateX(-50%);
  width: min(88.4vw, 1274px);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(96, 90, 190, 0.5), transparent 70%),
    linear-gradient(180deg, #534ead 0%, #6a64b8 55%, #7d77c0 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 34px 80px rgba(10, 8, 40, 0.5), inset 0 0 90px rgba(255, 255, 255, 0.08);
}

.alb-video-frame img.alb-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.alb-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alb-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 44px rgba(8, 8, 30, 0.35);
}

.alb-video-play svg {
  margin-left: 8px;
  width: 44px;
  height: 44px;
}

.alb-video-bar {
  position: absolute;
  left: 9%;
  right: 11%;
  bottom: 24px;
  z-index: 2;
}

.alb-video-bar__track {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: rgba(18, 16, 70, 0.5);
  margin-bottom: 14px;
}

.alb-video-bar__track::after {
  content: '';
  position: absolute;
  left: 1.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c4212d;
  box-shadow: 0 2px 8px rgba(90, 10, 20, 0.5);
}

.alb-video-bar__row {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #22205e;
}

.alb-video-bar__row svg {
  display: block;
  width: 25px;
  height: 25px;
  filter: brightness(0.22) saturate(2);
  opacity: 0.88;
}

.alb-video-bar__time {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--alb-font-geo);
  color: #22205e;
}

.alb-video-bar__spacer {
  flex: 1;
}

.alb-video-ahmed-overlay {
  position: absolute;
  z-index: 3;
  min-width: 700px;
  width: 50%;
  top: -400px;
  right: 0;
  pointer-events: none;
  user-select: none;
}

/* =============================================================
   Editor niceties
   ============================================================= */

.alb-section [data-rich-text-placeholder]::after {
  color: rgba(255, 255, 255, 0.35);
}

.alb-item-toolbar {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 1024px) {
  .alb-about-grid {
    gap: 40px;
  }
}

/* Show hamburger, hide desktop nav links */
@media (max-width: 768px) {
  .alb-nav a:not(.alb-nav-brand) {
    display: none;
  }

  .alb-nav-brand {
    display: block;
  }

  .alb-nav-toggle {
    display: flex;
  }

  .alb-nav {
    padding: 10px 16px;
    width: calc(100% - 32px);
    top: 0;
    border-radius: 0;
  }

  .alb-section--hero {
    padding-top: 82px;
  }
}

@media (max-width: 480px) {
  .alb-nav {
    width: calc(100% - 24px);
    top: 0;
  }

  .alb-section--hero {
    padding-top: 74px;
  }
}

/* Tablet — collapse two-col layouts */
@media (max-width: 880px) {

  .alb-hero-grid {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .alb-hero-grid> :first-child {
    flex: none;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .alb-hero-grid> :last-child {
    width: 100%;
    min-width: 0;
  }

  .alb-about-grid,
  .alb-certs-grid {
    grid-template-columns: 1fr;
  }

  .alb-hero-photo {
    margin-right: 0;
    margin-top: 8px;
    max-height: 55vw;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .alb-hero-photo img,
  .alb-hero-photo .alb-img-ph {
    border-radius: 6px;
    object-position: top center;
  }

  .alb-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }

  .alb-journey-grid {
    width: 100%;
    left: auto;
    transform: none;
  }

  .alb-journey-grid .alb-jcard {
    grid-column: span 6;
  }

  .alb-photo-frame {
    max-width: 360px;
    margin-inline: auto;
  }

  .alb-about-signature {
    font-size: 38px;
  }

  .alb-certs-shield {
    order: -1;
  }

  .alb-certs-shield img,
  .alb-certs-shield svg {
    margin-top: 0;
    width: 200px;
  }

  .alb-video-frame {
    width: 100%;
    left: auto;
    transform: none;
    border-radius: 24px;
    aspect-ratio: 16 / 7;
  }

  .alb-section--journey .alb-kicker,
  .alb-section--video .alb-kicker {
    font-size: clamp(18px, 3vw, 28px);
  }

  .alb-cert-ahmed-overlay,
  .alb-journey-ahmed-overlay,
  .alb-video-ahmed-overlay,
  .alb-about-ahmed-overlay {
    display: none;
  }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
  .alb-hero-grid {
    padding-bottom: 48px;
  }



  .alb-hero-actions .alb-btn {
    width: 100%;
    max-width: 300px;
  }

  .alb-hero-photo {
    max-height: 62vw;
  }

  .alb-focus-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .alb-certs-pills {
    gap: 10px;
  }

  .alb-pill {
    font-size: clamp(13px, 3.5vw, 18px);
    padding: 9px 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .alb-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .alb-stats-grid .alb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .alb-journey-grid .alb-jcard {
    grid-column: span 12;
  }

  .alb-certs-body {
    font-size: 16px;
  }

  .alb-video-frame {
    border-radius: 16px;
    aspect-ratio: 16 / 8;
  }

  .alb-video-play {
    width: 72px;
    height: 72px;
  }

  .alb-about-body {
    font-size: 16px;
  }

  .alb-certs-foot {
    font-size: 18px;
  }

  .alb-section--about,
  .alb-section--certs,
  .alb-section--journey,
  .alb-section--video {
    padding-top: 36px;
    padding-bottom: 48px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .alb-hero-actions .alb-btn {
    font-size: 14px;
    padding-block: 14px;
  }

  .alb-focus-card {
    padding: 10px;
  }

  .alb-focus-card__icon {
    width: 38px;
    height: 38px;
  }
}

/* ══════════════════════════════════════════════════════════
   Journey cards — clickable, with a full-size preview
   ══════════════════════════════════════════════════════════ */

/* In the editor the text stays unclamped so captions remain
   editable; the clamp above is what the front end renders. */
.editor-styles-wrapper .alb-jcard__title {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.editor-styles-wrapper .alb-jcard__caption {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

/* Hover/focus affordance. NB: the card itself carries a reveal
   animation with animation-fill-mode:both, so a transform here
   would be overridden — the inner image is scaled instead. */
.alb-jcard--clickable {
  cursor: pointer;
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.alb-jcard--clickable img.alb-jcard__img {
  transition: transform 520ms var(--alb-ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.alb-jcard--clickable:hover,
.alb-jcard--clickable:focus-visible {
  border-color: rgba(120, 170, 250, 0.85);
  box-shadow: 0 20px 44px rgba(5, 6, 26, 0.62);
}

.alb-jcard--clickable:hover img.alb-jcard__img,
.alb-jcard--clickable:focus-visible img.alb-jcard__img {
  transform: scale(1.06);
}

.alb-jcard--clickable:focus-visible {
  outline: 2px solid var(--alb-cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .alb-jcard--clickable img.alb-jcard__img {
    transition: none;
  }

  .alb-jcard--clickable:hover img.alb-jcard__img,
  .alb-jcard--clickable:focus-visible img.alb-jcard__img {
    transform: none;
  }
}

/* ── Preview lightbox (injected into <body> by alb-motion.js) ── */
.alb-lightbox,
.alb-lightbox * {
  box-sizing: border-box;
}

.alb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 0s linear 260ms;
}

.alb-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms ease;
}

.alb-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 18, 0.86);
  backdrop-filter: blur(6px);
}

.alb-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(980px, 100%);
  max-height: 100%;
  background: #14113c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 260ms var(--alb-ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.alb-lightbox.is-open .alb-lightbox__panel {
  transform: scale(1);
}

.alb-lightbox__img {
  display: block;
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  background: #0a0920;
}

.alb-lightbox__meta {
  padding: clamp(14px, 2.5vw, 26px);
  text-align: center;
  overflow-y: auto;
}

.alb-lightbox__title {
  margin: 0 0 9px;
  font-family: var(--alb-font-geo);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

.alb-lightbox__caption {
  margin: 0;
  font-family: var(--alb-font-geo);
  font-size: clamp(12.5px, 1.5vw, 15px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.alb-lightbox__title[hidden],
.alb-lightbox__caption[hidden] {
  display: none;
}

.alb-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 32, 0.75);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 200ms ease,
    border-color 200ms ease;
}

.alb-lightbox__close:hover {
  background: rgba(63, 201, 245, 0.22);
  border-color: var(--alb-cyan);
}

.alb-lightbox__close:focus-visible {
  outline: 2px solid var(--alb-cyan);
  outline-offset: 2px;
}

body.alb-lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

  .alb-lightbox,
  .alb-lightbox__panel {
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════
   Nav — active section link
   ══════════════════════════════════════════════════════════ */
/* The underline itself reuses the existing hover bar in
   alb-motion.css (.alb-nav a::after), which .is-active now
   also expands — no second underline needed here. */
.alb-nav a.is-active {
  color: var(--alb-cyan) !important;
}

.alb-nav-mobile__link.is-active {
  color: var(--alb-cyan) !important;
}

/* Nested anchor targets (e.g. #expertise) need the same
   offset as sections so the fixed nav doesn't cover them. */
.alb-section [id] {
  scroll-margin-top: 84px;
}

/* ══════════════════════════════════════════════════════════
   Narrow-desktop correction (Windows 125%/150% scaling, laptops)
   ──────────────────────────────────────────────────────────
   This layout is drawn for a ~1920px viewport. Windows display
   scaling doesn't change the screen, it shrinks the CSS viewport:
   a 1920px monitor at 125% reports 1536px, at 150% it reports
   1280px. The page then renders correctly but cramped — the
   1240px container eats 81% of the screen instead of 65%.

   There is no media feature that reports "the OS is magnifying".
   Resolution is NOT a usable proxy: a Retina Mac is 2dppx and a
   phone is 3dppx, and scaling those down would be wrong. The CSS
   viewport width is the thing that actually changed, so that is
   what we key on — which also picks up genuinely small laptops.

   zoom (not transform: scale) because it is a layout-affecting
   scale: no overflow, no gap at the bottom, and position:fixed
   children keep working. Each band lands the layout at roughly
   the 1800–1950px the design expects.

   On a 125%-scaled display this does not make anything physically
   smaller — zoom 0.8 against the OS's 1.25 magnification returns
   text to the same physical size as an unscaled 1920px screen.
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1600px) and (max-width: 1799px) {
  body:not(.wp-admin):not(.editor-styles-wrapper) {
    zoom: 0.86;
  }
}

@media (min-width: 1450px) and (max-width: 1599px) {
  body:not(.wp-admin):not(.editor-styles-wrapper) {
    zoom: 0.84;
  }
}

@media (min-width: 1320px) and (max-width: 1449px) {
  body:not(.wp-admin):not(.editor-styles-wrapper) {
    zoom: 0.82;
  }
}

@media (min-width: 1200px) and (max-width: 1319px) {
  body:not(.wp-admin):not(.editor-styles-wrapper) {
    zoom: 0.8;
  }
}

/* Smallest desktop band — a 1440px monitor at 125% lands here.
   Stops at 1025px, below which the tablet/mobile rules take over. */
@media (min-width: 1025px) and (max-width: 1199px) {
  body:not(.wp-admin):not(.editor-styles-wrapper) {
    zoom: 0.62;
  }
}