.elementor-12487 .elementor-element.elementor-element-c1ca913{--display:flex;--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;}/* Start custom CSS for html, class: .elementor-element-da87826 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: 'Inter', sans-serif;
}

.custom-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.navbar {
  display: flex;
  align-items: center;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  max-width: 1100px;
  width: 100%;
  gap: 1rem;
  justify-content: space-between;
}

.logo {
  width: 145px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* ✅ Solution Mize color CTA button */
.cta-btn {
  background: #FFD700;
  color: #172755;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  border: 1px solid #333;
  padding: 8px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 16px;
  background: white;
  transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 1rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
  margin-top: 1rem;
  gap: 1rem;
}

.mobile-menu a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu .cta-btn {
  background: #FFD700;
  color: #172755;
  text-align: center;
}

.mobile-menu.open {
  display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}/* End custom CSS */