.elementor-237 .elementor-element.elementor-element-33e4517{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}body.elementor-page-237:not(.elementor-motion-effects-element-type-background), body.elementor-page-237 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#487DEE;}/* Start custom CSS for html, class: .elementor-element-e9fa8b4 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.futre-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 9999;
}

/* MAIN NAV CONTAINER */
.nav-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* LOGO */
.nav-logo img {
  height: 34px;
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2f6df6;
}

/* CTA */
.nav-cta a {
  background: #1f2937;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  margin-top: 12px;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mobile-menu a {
  text-decoration: none;
  color: #111;
  padding: 12px 0;
  font-size: 16px;
}

.mobile-cta {
  margin-top: 12px;
  background: #1f2937;
  color: #fff !important;
  padding: 12px;
  border-radius: 999px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}/* End custom CSS */