/* =============================================================
   AZEEZIA PRELOADER
   ============================================================= */

/* Hide old loader */
#loader-wrapper { display: none !important; }

#az-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#az-preloader.az-preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.az-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── Logo ── */
.az-preloader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.az-preloader__logo img {
  height: 80px;
  width: auto;
}

/* ── ECG / heartbeat line ── */
.az-preloader__ecg {
  width: 200px;
  height: 40px;
  overflow: visible;
}

.az-preloader__ecg-line {
  fill: none;
  stroke: #07728a;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: az-ecg-draw 1.8s ease-in-out infinite;
}

@keyframes az-ecg-draw {
  0%   { stroke-dashoffset: 320; opacity: 1; }
  70%  { stroke-dashoffset: 0;   opacity: 1; }
  90%  { stroke-dashoffset: 0;   opacity: 0; }
  100% { stroke-dashoffset: 320; opacity: 0; }
}

/* =============================================================
   AZEEZIA HEADER — Transparent over hero, solid on scroll
   ============================================================= */

/* ── Main header wrapper ── */
.az-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* ── Default: transparent (over hero) ── */
.az-header__bar {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  height: 76px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* ── Scrolled: white solid ── */
.az-header.scrolled .az-header__bar {
  background: #ffffff !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10) !important;
}

/* ── Inner wrapper — aligned with banner & cards ── */
.az-header__bar .wsmainwp {
  display: flex !important;
  align-items: center !important;
  height: 76px;
  padding: 0 clamp(24px, 5vw, 80px) !important;
  max-width: 100%;
  margin: 0 !important;
  float: none !important;
}

/* ── Logo ── */
.az-header__logo {
  flex-shrink: 0;
  margin-right: 40px;
  float: none !important;
}

.az-header__logo a {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
}

.az-header.scrolled .az-header__logo a {
  background: transparent;
  padding: 0;
}

.az-header__logo img {
  height: 50px;
  width: auto;
}

/* ── Nav wrapper ── */
.az-header__bar .wsmenu {
  flex: 1;
  float: none !important;
  background: transparent !important;
}

.az-header__bar .wsmenu-list {
  display: flex !important;
  align-items: center;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.az-header__bar .wsmenu-list > li {
  float: none !important;
}

/* ── Nav links — white on transparent, dark on scrolled ── */
.az-header__bar .wsmenu-list > li > a {
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  padding: 26px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px;
  background: transparent !important;
  border: none !important;
  white-space: nowrap;
  transition: color 0.2s ease !important;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.az-header__bar .wsmenu-list > li > a:hover {
  color: var(--secondary-color, #15bef0) !important;
  background: transparent !important;
}

/* Active nav item — teal */
.az-header__bar .wsmenu-list > li.active > a,
.az-header__bar .wsmenu-list > li > a.active {
  color: var(--secondary-color, #15bef0) !important;
}

/* When scrolled — nav links go dark, no shadow */
.az-header.scrolled .wsmenu-list > li > a {
  color: #2d2d2d !important;
  text-shadow: none !important;
  font-weight: 500 !important;
}

.az-header.scrolled .wsmenu-list > li > a:hover {
  color: var(--primary-color, #07728a) !important;
}

.az-header.scrolled .az-header__phone {
  text-shadow: none;
  font-weight: 500;
}

/* ── Chevron arrow ── */
.az-nav__arrow {
  font-size: 9px !important;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.az-header__bar .wsmenu-list > li:hover .az-nav__arrow {
  transform: rotate(180deg);
}

/* ── Mega menu / dropdown ── */
.az-header__bar .wsmegamenu,
.az-header__bar .sub-menu {
  border-top: 3px solid var(--primary-color, #07728a) !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14) !important;
  background: #ffffff !important;
  margin-top: 0 !important;
}

.az-header__bar .sub-menu li a {
  color: #444 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 9px 22px !important;
  transition: color 0.2s, background 0.2s !important;
}

.az-header__bar .sub-menu li a:hover {
  color: var(--primary-color, #07728a) !important;
  background: #f4fafc !important;
}

.az-header__bar .link-list li a {
  color: #444 !important;
  font-size: 14px !important;
  padding: 8px 14px !important;
  transition: color 0.2s !important;
}

.az-header__bar .link-list li a:hover {
  color: var(--primary-color, #07728a) !important;
}

.az-megamenu__heading {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--primary-color, #07728a) !important;
  padding: 14px 14px 6px !important;
}

/* ── Right: phone + CTA ── */
.az-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Divider between phone numbers */
.az-header__phone + .az-header__phone {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.az-header.scrolled .az-header__phone + .az-header__phone {
  border-left-color: rgba(0, 0, 0, 0.15);
}

.az-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.az-header__phone i {
  font-size: 13px;
}

.az-header__phone:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Phone goes dark on scroll */
.az-header.scrolled .az-header__phone {
  color: #444;
}

.az-header.scrolled .az-header__phone:hover {
  color: var(--primary-color, #07728a);
}

/* CTA Button */
.az-header__cta {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-color, #15bef0);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
  border: 2px solid var(--secondary-color, #15bef0);
}

.az-header__cta:hover {
  background: transparent;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* On scroll, CTA adapts */
.az-header.scrolled .az-header__cta {
  border-color: var(--primary-color, #07728a);
  background: var(--primary-color, #07728a);
}

.az-header.scrolled .az-header__cta:hover {
  background: transparent;
  color: var(--primary-color, #07728a) !important;
}

/* ── Sidebar logo ── */
.az-mobile__sidebar-logo {
  display: none;
}

@media (max-width: 991px) {
  .az-mobile__sidebar-logo {
    display: block !important;
    padding: 20px 20px 16px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    margin-bottom: 8px;
  }

  .az-mobile__sidebar-logo a {
    display: inline-flex;
    align-items: center;
    border-bottom: none !important;
  }

  .az-mobile__sidebar-logo img {
    height: 60px;
    width: auto;
  }
}

/* ── Mega menu link-list — remove dashed separators ── */
.wsmenu > .wsmenu-list > li > .wsmegamenu .link-list li {
  border-bottom: none !important;
}

/* ── Mobile side panel — CTA + contacts — hidden on desktop ── */
@media (min-width: 992px) {
  .wsmenu-list > li.az-mobile__appt-li,
  .wsmenu-list > li.az-mobile__sidebar-logo {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  .az-mobile__appt-li {
    display: block;
    padding: 20px 17px 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 8px;
  }

  .az-mobile__appt-panel-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--primary-color, #07728a) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 13px 22px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-shadow: none !important;
    border-bottom: none !important;
  }

  .az-mobile__appt-panel-btn:hover {
    background: var(--secondary-color, #15bef0) !important;
    color: #ffffff !important;
  }

  .az-mobile__contact-nums {
    display: flex;
    gap: 0;
    margin-top: 0;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
  }

  .az-mobile__contact-num {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 12px 14px !important;
    background: #f8fbfc !important;
    border-bottom: none !important;
    text-shadow: none !important;
  }

  .az-mobile__contact-num + .az-mobile__contact-num {
    border-left: 1px solid rgba(0,0,0,0.08);
  }

  .az-mobile__contact-num i {
    color: var(--primary-color, #07728a) !important;
    font-size: 15px !important;
    flex-shrink: 0;
  }

  .az-mobile__contact-num:hover {
    background: #e8f5f8 !important;
    color: var(--primary-color, #07728a) !important;
  }
}

/* ── Mobile header ── */
.wsmobileheader {
  background: var(--primary-color, #07728a) !important;
  box-shadow: none !important;
  border-bottom: none !important;
  height: 64px !important;
  line-height: 64px !important;
}

.wsmobileheader .smllogo {
  display: inline-flex !important;
  align-items: center;
  height: 64px;
  vertical-align: middle;
  margin-top: 0 !important;
}

.wsmobileheader .smllogo a {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 10px;
}

.wsmobileheader .smllogo img {
  height: 44px;
  width: auto;
  display: block;
}

.wsmobileheader .callusbtn {
  color: var(--secondary-color, #15bef0) !important;
  font-size: 18px !important;
}

/* ── Hamburger / Close icon toggle ── */
.wsanimated-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px !important;
  margin: 10px 0 0 10px !important;
  padding: 0 !important;
}

.wsanimated-arrow span { display: none !important; }

.az-nav-open-icon,
.az-nav-close-icon {
  font-size: 22px;
  color: #ffffff;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.az-nav-close-icon {
  display: none !important;
}

body.wsactive .az-nav-open-icon {
  display: none !important;
}

body.wsactive .az-nav-close-icon {
  display: block !important;
}

/* ── Remove padding-top from page since header is transparent overlay ── */
.page {
  padding-top: 0 !important;
}

.home-body {
  padding-top: 0 !important;
}

/* Non-home pages need offset */
body.inner-page .page {
  padding-top: 76px !important;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 991px) {
  /* Hide the desktop bar visually but keep the wsmenu in the DOM
     so the position:fixed mobile slide-in panel can still render */
  .az-header__bar {
    height: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  /* Hide only the desktop-specific elements, NOT wsmainwp (wsmenu lives inside it) */
  .az-header__logo,
  .az-header__right {
    display: none !important;
  }

  /* Reset desktop flex/transparency overrides for the mobile panel */
  .az-header__bar .wsmenu {
    flex: unset !important;
    background: rgba(0, 0, 0, 0) none !important;
  }

  .az-header__bar .wsmenu-list {
    display: block !important;
    background: #ffffff !important;
    flex-wrap: unset !important;
    align-items: unset !important;
    gap: unset !important;
  }

  .az-header__bar .wsmenu-list > li {
    float: none !important;
    width: 100% !important;
    display: block !important;
  }

  .az-header__bar .wsmenu-list > li > a {
    color: #444444 !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    padding: 12px 17px !important;
    background-color: transparent !important;
  }

  /* Hide the inline chevron — wsmenu already adds its own right-side arrow */
  .az-header__bar .wsmenu-list > li > a .az-nav__arrow {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Header bar + full-screen menu overlay.

   This is the header markup in Web/default.php. Moved here from the
   /home-video2.html preview stylesheet when the design was adopted as the
   site header. The .az-header__* rules above style the previous header and
   are kept for the /home-video3.html preview, which still uses them.
   ───────────────────────────────────────────────────────────────────────── */

/* ── Undo the previous header's frame ──
   The rules above were written for a header that was transparent, fixed as
   an overlay, clamped to a 76px bar, and collapsed to height 0 on mobile
   (its links moved into the wsmenu slide-in panel). This header is a solid
   white bar that sits in normal flow and keeps its own links at every width,
   so those assumptions are reversed here. They use !important above, hence
   the !important here. */
.az-header {
  position: relative;
  z-index: 4;
}

.az-header__bar {
  background: #ffffff !important;
  height: auto !important;
  overflow: visible !important;
}

@media (max-width: 991px) {
  .az-header__bar {
    height: auto !important;
    background: #ffffff !important;
  }
}

/* The 76px offset compensated for the fixed overlay; in normal flow the
   header takes its own space and the offset would leave a gap below it. */
body.inner-page .page {
  padding-top: 0 !important;
}

/* Palette pulled from the Azeezia logo.
   Blue      = primary brand colour.
   Lime      = small accent colour inside the mark.
   Navy      = near-black used for logo text. */
:root {
  --az-demo-blue: #0e58a5;
  --az-demo-blue-dark: #0a3f78;
  --az-demo-blue-light: #b4d8e4;
  --az-demo-lime: #8dc63f;
  --az-demo-navy: #17233a;
}

.az-vhead {
  position: relative;
  width: 100%;
  z-index: 4;
  background: transparent;
}

.az-vhead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 56px);
}

.az-vhead__logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.az-vhead__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.az-vhead__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.az-vhead__nav a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--az-demo-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.az-vhead__nav a i {
  font-size: 10px;
  opacity: 0.6;
}

.az-vhead__nav a:hover {
  opacity: 1;
  color: var(--az-demo-blue);
  text-decoration: none;
}

.az-vhead__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  /* Vertical padding cancelled by an equal negative margin: it widens the
     hover target down to the panel without changing the bar's layout, so
     the pointer never leaves :hover on its way into the dropdown. */
  padding: 20px 0;
  margin: -20px 0;
}

.az-vhead__caret {
  transition: transform 0.25s ease;
}

.az-vhead__nav-item:hover .az-vhead__caret,
.az-vhead__nav-item:focus-within .az-vhead__caret {
  transform: rotate(180deg);
}

.az-vhead__dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translate(-50%, 8px);
  z-index: 60;
  min-width: 248px;
  padding: 10px 0;
  background: #ffffff;
  border: 1px solid rgba(23, 35, 58, 0.08);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(23, 35, 58, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.az-vhead__nav-item:hover .az-vhead__dropdown,
.az-vhead__nav-item:focus-within .az-vhead__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.az-vhead__dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(23, 35, 58, 0.75);
  white-space: nowrap;
  opacity: 1;
}

.az-vhead__dropdown a:hover {
  background: rgba(14, 88, 165, 0.07);
  color: var(--az-demo-blue);
  text-decoration: none;
}

.az-vhead__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.az-vhead__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--az-demo-navy);
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 50px;
  background: rgba(23, 35, 58, 0.06);
  border: 1px solid rgba(23, 35, 58, 0.15);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.az-vhead__pill:hover {
  background: rgba(23, 35, 58, 0.1);
  color: var(--az-demo-navy);
  text-decoration: none;
}

.az-vhead__pill--solid {
  background: var(--az-demo-navy);
  color: #ffffff;
  border-color: var(--az-demo-navy);
}

.az-vhead__pill--solid:hover {
  background: var(--az-demo-blue-dark);
  color: #ffffff;
}

.az-vhead__menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 50px;
  background: #000000;
  border: 1px solid #000000;
  cursor: pointer;
  transition: background 0.25s ease;
}

.az-vhead__menu:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

@media (max-width: 1599px) {
  .az-vhead__nav { gap: 14px;
  }
  .az-vhead__nav a { font-size: 18px;
  }
  .az-vhead__pill:not(.az-vhead__pill--solid) { display: none;
  }
}

@media (max-width: 1299px) {
  .az-vhead__nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .az-vhead__inner {
    padding: 16px 20px;
  }
  .az-vhead__logo {
    padding: 6px 12px;
  }
  .az-vhead__logo img {
    /* The phone pill hides at this width (see the rule right below), so
       the row is just the logo and the MENU button — plenty of room to
       keep the logo closer to its desktop size instead of shrinking it. */
    height: 52px;
  }
  .az-vhead__pill:not(.az-vhead__pill--solid) {
    display: none;
  }
  .az-vhead__pill--solid {
    padding: 9px 14px;
    font-size: 12.5px;
  }
  .az-vhead__menu span {
    display: none;
  }
}

/* Below this, logo + menu icon + the full "Book Appointment" pill no
   longer fit on a single row on real phones (verified 320-414px all
   overflowed past the viewport with no visible scrollbar — the pill was
   simply unreachable). Shrink the logo, tighten the gaps, and swap the
   pill to its short "Book" label so the row always fits. */
@media (max-width: 480px) {
  .az-vhead__inner {
    padding: 12px 14px;
    gap: 10px;
  }
  .az-vhead__logo img {
    height: 44px;
  }
  .az-vhead__actions {
    gap: 8px;
  }
  .az-vhead__pill-full {
    display: none;
  }
  .az-vhead__pill--solid {
    padding: 9px 12px;
    font-size: 12.5px;
  }
  .az-vhead__menu {
    padding: 9px 12px;
  }
}

.az-vmenu {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 32px;
  background: #f6f8f9;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
  overflow-y: auto;
  /* Without this, overflow-x is silently promoted to 'auto' (see rule
     above), so the decorative rings below — which are meant to bleed past
     the edges — make the whole overlay horizontally scrollable on phones. */
  overflow-x: hidden;
}

.az-vmenu--open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
}

.az-vmenu__ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.az-vmenu__ring--a {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -140px;
  background: rgba(14, 88, 165, 0.35);
}

.az-vmenu__ring--b {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -160px;
  background: rgba(141, 198, 63, 0.16);
}

.az-vmenu__inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.az-vmenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.az-vmenu__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent;
  border-radius: 12px;
  padding: 8px 16px;
}

.az-vmenu__brand img {
  height: 60px;
  width: auto;
  display: block;
}

.az-vmenu__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: var(--az-demo-navy);
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.az-vmenu__close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.az-vmenu__body {
  position: relative;
  flex: 1;
  display: grid;
  /* Menu | Overview | Specialities+Institutions | Reach Us */
  grid-template-columns: 1.1fr 0.85fr 0.85fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-content: start;
}

.az-vmenu__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.az-vmenu__col-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--az-demo-navy);
  margin-bottom: 4px;
}

.az-vmenu__col--primary {
  padding-top: 6px;
}

.az-vmenu__col--primary a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(23, 35, 58, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.az-vmenu__col--primary a:hover {
  color: var(--az-demo-navy);
  text-decoration: none;
}

.az-vmenu__link--active {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--az-demo-navy) !important;
  font-weight: 700 !important;
}

.az-vmenu__link--active i {
  font-size: 0.7em;
  color: var(--az-demo-lime);
}

.az-vmenu__col-title--stacked {
  margin-top: 26px;
}

.az-vmenu__col--secondary {
  padding-top: 6px;
}

.az-vmenu__col--secondary a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(23, 35, 58, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.az-vmenu__col--secondary a:hover {
  color: var(--az-demo-navy);
  text-decoration: none;
}

.az-vmenu__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(23, 35, 58, 0.04);
  border: 1px solid rgba(23, 35, 58, 0.12);
  border-radius: 24px;
  padding: 26px;
  align-self: start;
}

.az-vmenu__info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(23, 35, 58, 0.75);
}

.az-vmenu__info-row a {
  color: var(--az-demo-navy);
  text-decoration: none;
  font-weight: 600;
}

.az-vmenu__info-row a:hover {
  color: var(--az-demo-lime);
  text-decoration: none;
}

.az-vmenu__info-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(141, 198, 63, 0.16);
  color: var(--az-demo-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.az-vmenu__info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--az-demo-lime);
  color: var(--az-demo-navy);
  font-family: "Nunito Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 8px 8px 8px 22px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.az-vmenu__info-btn:hover {
  color: var(--az-demo-navy);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.az-vmenu__info-btn-arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--az-demo-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

@media (max-width: 1199px) {
  .az-vmenu__body {
    grid-template-columns: 1fr 1fr;
  }
  .az-vmenu__info {
    grid-column: 1 / 3;
  }
}

@media (max-width: 767px) {
  .az-vmenu {
    padding: 20px;
  }
  .az-vmenu__body {
    grid-template-columns: 1fr;
  }
  .az-vmenu__info {
    grid-column: 1;
  }
}

/* Brand logo + CLOSE button verified overflowing the row on every phone
   width from 320-414px (the CLOSE button landed partly or fully off
   screen). Shrink the logo and drop CLOSE to an icon-only button, same
   treatment as the header's MENU button at this width. */
@media (max-width: 480px) {
  .az-vmenu__top {
    gap: 12px;
    margin-bottom: clamp(28px, 8vw, 48px);
  }
  .az-vmenu__brand {
    padding: 4px 0;
  }
  .az-vmenu__brand img {
    height: 36px;
  }
  .az-vmenu__close {
    padding: 10px 14px;
  }
  .az-vmenu__close-label {
    display: none;
  }
}
