.elementor-127 .elementor-element.elementor-element-f8d73df{--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-6653ebd */.star-header-fixed {
  width: 100%;
  background: linear-gradient(135deg, #081523, #0b1c2d);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  position: relative;
  z-index: 50;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO FIX */
.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap img {
  height: 78px;        /* 🔥 FOOTER JITNA BADA */
  width: auto;
  display: block;
}

/* MENU */
.main-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-menu a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #7bc043;
  transition: 0.3s;
}

.main-menu a:hover::after {
  width: 100%;
}

/* CTA */
.menu-btn {
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f6a623, #7bc043);
  color: #0b1c2d !important;
  font-weight: 600;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.circle-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7bc043;
  text-decoration: none;
  transition: 0.3s;
}

.circle-icon:hover {
  background: #7bc043;
  color: #0b1c2d;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
}

/* MOBILE MENU */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0b1c2d;
  padding: 22px;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-contacts {
  margin-top: 15px;
}

.mobile-contacts a {
  display: block;
  margin-top: 10px;
  color: #7bc043;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }

  .logo-wrap img {
    height: 64px;
  }
}/* End custom CSS */