.elementor-66 .elementor-element.elementor-element-dcd753c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ad9d633 */.fk-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 136, 0.12), transparent 30%),
    rgba(3, 18, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.18);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* Full width header with 5% left and right padding */
.fk-header-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 14px 5%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Logo */
.fk-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.fk-logo img {
  max-width: 165px;
  height: auto;
  display: block;
}

/* Navigation */
.fk-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.fk-nav a {
  position: relative;
  color: #d7e5df;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.fk-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00ff88, #ffd700);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.55);
  transition: width 0.25s ease;
}

.fk-nav a:hover {
  color: #ffffff;
}

.fk-nav a:hover::after {
  width: 100%;
}

/* CTA Button */
.fk-header-btn,
.fk-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ff88, #00b86b);
  color: #03120d;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.28);
  border: 1px solid rgba(255, 215, 0, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.fk-header-btn:hover,
.fk-mobile-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffd700, #00ff88);
  color: #03120d;
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.45);
}

/* Mobile Toggle */
.fk-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 12px;
  background: rgba(0, 255, 136, 0.08);
  cursor: pointer;
  padding: 9px;
}

.fk-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 10px;
  background: #00ff88;
  transition: all 0.25s ease;
}

.fk-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.fk-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.fk-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.fk-mobile-menu {
  display: none;
  background:
    radial-gradient(circle at top right, rgba(0, 255, 136, 0.12), transparent 35%),
    #06120d;
  border-top: 1px solid rgba(0, 255, 136, 0.18);
  padding: 16px 5% 22px;
}

.fk-mobile-menu a {
  display: block;
  color: #d7e5df;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fk-mobile-menu a:hover {
  color: #00ff88;
}

.fk-mobile-menu .fk-mobile-btn {
  margin-top: 16px;
  border-bottom: none;
  padding: 14px 20px;
  color: #03120d;
}

/* Tablet / Mobile */
@media (max-width: 900px) {
  .fk-header-inner {
    min-height: 70px;
    padding: 12px 5%;
  }

  .fk-logo img {
    max-width: 135px;
  }

  .fk-nav,
  .fk-header-btn {
    display: none;
  }

  .fk-menu-toggle {
    display: block;
  }

  .fk-mobile-menu.active {
    display: block;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .fk-header-inner {
    min-height: 64px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .fk-logo img {
    max-width: 120px;
  }

  .fk-menu-toggle {
    width: 40px;
    height: 40px;
  }
}/* End custom CSS */