.elementor-39 .elementor-element.elementor-element-5de7107{--display:flex;--position:fixed;--min-height:80px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;top:0px;--z-index:3;}body:not(.rtl) .elementor-39 .elementor-element.elementor-element-5de7107{left:0px;}body.rtl .elementor-39 .elementor-element.elementor-element-5de7107{right:0px;}.elementor-39 .elementor-element.elementor-element-4f1b790{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4f1b790 */:root {
  --navy: #0A3D62;
  --ocean-blue: #1E6091;
  --sky-accent: #4FA3D1;
  --white: #FFFFFF;
  --muted: #C4D3DE;
  --hairline: rgba(255, 255, 255, 0.18);
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'Inter', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* No body overrides here — this menu should never change page-level
   padding or background. It positions itself via .menu__wrap below. */
/* Wrap this around <header class="menu"> and place it inside your
   banner/hero section (which needs position: relative).
   This is what floats the pill with spacing from the edges —
   NOT body padding — so it can't leak into the rest of your page. */
.menu__wrap {
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  right: 2rem;
  z-index: 10;
}
.menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 30, 48, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 8px 32px rgba(6, 30, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.menu__logo {
  display: flex;
  align-items: center;
}
.menu__logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
}
.menu__nav {
  display: flex;
  gap: 2.2rem;
}
.menu__nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  opacity: 0.88;
  transition: opacity 0.2s ease;
}
.menu__nav a:hover {
  opacity: 1;
}
.menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  transition: gap 0.2s ease;
}
.menu__cta svg {
  flex-shrink: 0;
}
.menu__cta:hover {
  gap: 0.6rem;
}

/* ============ NO-JS TOGGLE (checkbox hack) ============ */
/* The checkbox itself is invisible; the <label> is the visible button.
   Checking it (click/tap, or Enter/Space when focused) drives the
   dropdown open purely via the ~ sibling combinator below. */
.menu__toggle-input {
  position: absolute;
  opacity: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  cursor: pointer;
  /* kept in normal flow (not display:none) so it stays keyboard-focusable */
}

.menu__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
.menu__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Morph into an X when checked */
.menu__toggle-input:checked ~ .menu__toggle .menu__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu__toggle-input:checked ~ .menu__toggle .menu__toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu__toggle-input:checked ~ .menu__toggle .menu__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Visible focus ring for keyboard users tabbing to the checkbox */
.menu__toggle-input:focus-visible ~ .menu__toggle {
  outline: 2px solid var(--sky-accent);
  outline-offset: 2px;
}

/* ============ DROPDOWN PANEL ============ */
.menu__dropdown {
  display: none;
}

/* ============ RESPONSIVE: TABLET & MOBILE ============ */
/* Single breakpoint drives the hamburger + dropdown pattern for both
   tablet and mobile; the 480px query below only adjusts sizing. */
@media (max-width: 900px) {
  .menu__wrap {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }
  .menu {
    padding: 0.85rem 1.2rem;
    border-radius: 28px;
  }
  .menu__nav {
    display: none;
  }
  .menu__cta {
    display: none;
  }
  .menu__toggle {
    display: flex;
  }

  .menu__dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    padding: 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 30, 48, 0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
      0 8px 32px rgba(6, 30, 48, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);

    /* Closed state: collapsed, transparent, non-interactive */
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }
  /* The actual open trigger — pure CSS, driven by the checkbox state */
  .menu__toggle-input:checked ~ .menu__dropdown {
    max-height: 24rem;
    opacity: 1;
    padding: 0.75rem;
    pointer-events: auto;
  }
  .menu__dropdown a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 0.6rem;
    border-bottom: 1px solid var(--hairline);
  }
  .menu__dropdown a:last-child {
    border-bottom: none;
  }
  .menu__dropdown-cta {
    margin-top: 0.35rem;
    text-align: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 480px) {
  .menu__wrap {
    top: 0.85rem;
    left: 0.75rem;
    right: 0.75rem;
  }
  .menu {
    padding: 0.7rem 1rem;
  }
  .menu__logo img {
    height: 36px;
  }
}/* End custom CSS */