.elementor-2383 .elementor-element.elementor-element-a6b907d{--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-78ce0cf */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #020617;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 40px);
  max-width: 1200px;

  padding: 14px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(2,6,23,0.85); /* DARK FIX */
  backdrop-filter: blur(16px);

  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 10px 40px rgba(0,0,0,0.6);

  z-index: 1000;
}

/* LOGO */
.logo img {
  height: 44px; /* FIX SIZE */
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #e2e8f0; /* BRIGHTER TEXT */
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #ffffff;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 0;

  background: #0f172a;
  padding: 14px;
  border-radius: 12px;

  display: none;
  flex-direction: column;
  gap: 10px;

  min-width: 230px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: rgba(59,130,246,0.15);
}

/* 🔥 CTA FINAL FIX */
.cta {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  padding: 12px 26px;
  border-radius: 40px;

  color: #fff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 8px 30px rgba(59,130,246,0.6);
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(59,130,246,0.9);
}

/* MOBILE */
.menu-toggle {
  display: none;
  color: white;
  font-size: 24px;
}

@media(max-width:768px){

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .cta {
    display: none;
  }

  .menu-wrapper {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #020617;
    display: none;
  }

  .menu-wrapper.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px;
  }

  .dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}/* End custom CSS */