img.fl-logo-img{
    max-width: 35px !important;
}

:root {
  --lb-bg-dark: #020711;
  --lb-panel: rgba(5, 14, 25, 0.72);
  --lb-panel-strong: rgba(7, 18, 31, 0.88);
  --lb-border: rgba(130, 255, 225, 0.18);
  --lb-border-strong: rgba(34, 230, 168, 0.45);
  --lb-green: #22e6a8;
  --lb-green-2: #12b981;
  --lb-cyan: #22d3ee;
  --lb-white: #ffffff;
  --lb-muted: rgba(255, 255, 255, 0.72);
  --lb-header-height: 96px;
}

/* Skip link */
.lb-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 10px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.lb-skip-link:focus {
  transform: translateY(0);
}

/* Header shell */
.lb-site-header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 99999;
  pointer-events: none;
}

.admin-bar .lb-site-header {
  top: 25px;
}

.lb-header-shell {
  position: relative;
  width: min(1380px, calc(100% - 56px));
  margin: 0 auto;
  padding: 5px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  pointer-events: auto;

  background:
    linear-gradient(135deg, rgba(8, 18, 31, 0.88), rgba(3, 9, 18, 0.68)),
    radial-gradient(circle at 98% 50%, rgba(34, 211, 238, 0.18), transparent 30%),
    radial-gradient(circle at 0% 50%, rgba(34, 230, 168, 0.14), transparent 26%);
  border: 1px solid var(--lb-border);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(34, 211, 238, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.lb-header-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
}

.lb-header-shell::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  width: 260px;
  height: 160px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(34, 230, 168, 0.28), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.lb-brand,
.lb-main-nav,
.lb-header-actions {
  position: relative;
  z-index: 2;
}

/* Brand */
.lb-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--lb-white);
  text-decoration: none !important;
  flex-shrink: 0;
}

.lb-brand:hover,
.lb-brand:focus {
  color: var(--lb-white);
  text-decoration: none !important;
}

.lb-brand-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(10, 25, 38, 0.96), rgba(3, 10, 18, 0.92));
  border: 1px solid rgba(34, 230, 168, 0.42);
  box-shadow:
    0 0 24px rgba(34, 230, 168, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}

.lb-brand-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.lb-fallback-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.lb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lb-brand-name {
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lb-brand-subtitle {
  margin-top: 8px;
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navigation */
.lb-main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.lb-main-nav ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lb-main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lb-main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.lb-main-nav a:hover,
.lb-main-nav a:focus,
.lb-main-nav .current-menu-item > a,
.lb-main-nav .current_page_item > a,
.lb-main-nav a[aria-current="page"] {
  color: var(--lb-green);
  background: rgba(34, 230, 168, 0.08);
}



/* Header actions */
.lb-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lb-search-btn,
.lb-mobile-toggle {
  width: 40px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(4, 13, 24, 0.74);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 12px 30px rgba(0,0,0,0.2);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.lb-search-btn:hover,
.lb-search-btn:focus,
.lb-mobile-toggle:hover,
.lb-mobile-toggle:focus {
  transform: translateY(-2px);
  border-color: rgba(34, 230, 168, 0.52);
  background: rgba(34, 230, 168, 0.1);
  color: #ffffff;
}

.lb-header-cta {
  min-height: 35px;
  padding: 0 5px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #22e6a8, #12b981);
  color: #02100c !important;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none !important;
  box-shadow:
    0 18px 42px rgba(18, 185, 129, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.36);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.lb-header-cta:hover,
.lb-header-cta:focus {
  transform: translateY(-2px);
  color: #02100c !important;
  filter: saturate(1.08);
  box-shadow:
    0 24px 56px rgba(18, 185, 129, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.48);
}

.lb-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.13);
  font-size: 18px;
  line-height: 1;
}

/* Mobile toggle */
.lb-mobile-toggle {
  display: none;
  gap: 4px;
}

.lb-mobile-toggle span {
  width: 15px;
  height: 1px;
  display: block;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.lb-site-header.is-open .lb-mobile-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.lb-site-header.is-open .lb-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.lb-site-header.is-open .lb-mobile-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.lb-mobile-menu {
  display: none;
  pointer-events: auto;
}

.lb-mobile-menu ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lb-mobile-menu li {
  list-style: none;
}

/* Search modal */
.lb-search-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
}

.lb-search-modal.is-active {
  display: block;
}

.lb-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lb-search-panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 120px auto 0;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(8, 18, 31, 0.96), rgba(3, 9, 18, 0.94));
  border: 1px solid rgba(130, 255, 225, 0.18);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
}

.lb-search-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.lb-search-form label {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.lb-search-input-wrap {
  display: flex;
  gap: 10px;
}

.lb-search-input-wrap input {
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  outline: none;
}

.lb-search-input-wrap input::placeholder {
  color: rgba(255,255,255,0.48);
}

.lb-search-input-wrap button {
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #22e6a8, #12b981);
  color: #02100c;
  font-weight: 900;
  cursor: pointer;
}

/* Main content spacing because header is fixed */
.lb-main-content {
  min-height: 100vh;
}

/* Add spacing only to the first major section/page content */
body:not(.fl-builder-edit) .lb-main-content > .fl-builder-content:first-child,
body:not(.fl-builder-edit) .lb-main-content > article:first-child,
body:not(.fl-builder-edit) .lb-main-content > .entry-content:first-child {
  padding-top: 132px;
}

/* Remove annoying focus border but keep accessible focus style */
.lb-site-header a:focus,
.lb-site-header button:focus {
  outline: none;
}

.lb-site-header a:focus-visible,
.lb-site-header button:focus-visible {
  box-shadow:
    0 0 0 3px rgba(34, 230, 168, 0.18),
    0 0 0 1px rgba(34, 230, 168, 0.65);
}

/* Tablet */
@media (max-width: 1180px) {
  .lb-brand-text {
    display: none;
  }

  .lb-main-nav a {
    padding: 0 16px;
  }

  .lb-header-shell {
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 920px) {
    
    
  .fl-page-header-logo img[data-mobile] {
    max-width: 20px !important;
  }
    
    
  .lb-site-header {
    top: 14px;
  }

  .admin-bar .lb-site-header {
    top: 60px;
  }

  .lb-header-shell {
    width: calc(100% - 24px);
    min-height: 35px;
    padding: 5px 25px;
    border-radius: 24px;
  }

  .lb-brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .lb-main-nav,
  .lb-search-btn,
  .lb-header-cta {
    display: none;
  }

  .lb-mobile-toggle {
    display: grid;
  }

  .lb-site-header.is-open .lb-mobile-menu {
    display: grid;
  }

  .lb-mobile-menu {
    width: calc(100% - 24px);
    margin: 10px auto 0;
    padding: 14px;
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(8, 18, 31, 0.96), rgba(3, 9, 18, 0.94));
    border: 1px solid rgba(130, 255, 225, 0.18);
    box-shadow:
      0 24px 70px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 8px;
  }

  .lb-mobile-menu a {
    display: block;
    padding: 15px 16px;
    border-radius: 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    background: rgba(255,255,255,0.045);
  }

  .lb-mobile-menu .current-menu-item > a,
  .lb-mobile-menu .current_page_item > a,
  .lb-mobile-menu a[aria-current="page"] {
    color: var(--lb-green);
    background: rgba(34, 230, 168, 0.1);
  }

  .lb-mobile-cta {
    margin-top: 6px;
    text-align: center;
    color: #02100c !important;
    background: linear-gradient(135deg, #22e6a8, #12b981) !important;
  }

  body:not(.fl-builder-edit) .lb-main-content > .fl-builder-content:first-child,
  body:not(.fl-builder-edit) .lb-main-content > article:first-child,
  body:not(.fl-builder-edit) .lb-main-content > .entry-content:first-child {
    padding-top: 108px;
  }

  .lb-search-panel {
    margin-top: 90px;
    padding: 24px;
  }

  .lb-search-input-wrap {
    flex-direction: column;
  }
}

/* Very small screens */
@media (max-width: 420px) {
  .lb-header-shell {
    width: calc(100% - 18px);
  }

  .lb-mobile-menu {
    width: calc(100% - 18px);
  }

  .lb-brand-mark {
    width: 50px;
    height: 50px;
  }
}