.elementor-26 .elementor-element.elementor-element-996b553{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-14a994b */:root {
  --cyan: #53f4ff;
  --blue: #18a6e0;
  --navy: #163253;
}

.liquid-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 20px;
  background: radial-gradient(circle at top, #1a355a, #0b1d33);
}

.header-glass {
  max-width: 1200px;
  margin: auto;
  padding: 18px 32px;
  background: rgba(22, 50, 83, 0.55);
  backdrop-filter: blur(22px);
  border-radius: 18px;
  border: 1px solid rgba(83, 244, 255, 0.25);
  box-shadow: 0 0 60px rgba(83, 244, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Shine sweep */
.header-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(83, 244, 255, 0.18),
    transparent 65%
  );
  animation: shine 7s linear infinite;
}

@keyframes shine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* Logo */
.header-logo {
  font-family: "Orbitron", sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-glow {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(83, 244, 255, 0.8);
}

.header-logo small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
}

/* Nav */
.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: 0.3s;
}

.header-nav a:hover {
  color: var(--cyan);
}

.header-nav a:hover::after {
  width: 100%;
}

/* CTA */
.header-btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: none;
  border-radius: 14px;
  font-weight: 600;
  color: #0b1d33;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(83, 244, 255, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(83, 244, 255, 0.9);
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--cyan);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 50, 83, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .header-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }
}/* End custom CSS */