.elementor-2087 .elementor-element.elementor-element-64bf85f5{--display:flex;--position:absolute;--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;top:0px;}body:not(.rtl) .elementor-2087 .elementor-element.elementor-element-64bf85f5{left:0px;}body.rtl .elementor-2087 .elementor-element.elementor-element-64bf85f5{right:0px;}.elementor-2087 .elementor-element.elementor-element-17324ab3.elementor-element{--align-self:center;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-17324ab3 *//* HEADER BASE */
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.88);
  color: #fff;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.custom-header.active {
  transform: translateY(0);
  opacity: 1;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 30px;
  height: 100%;
  margin: 0 auto;
}

.header-logo {
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.header-nav a {
  color: #fff;
  margin-left: 25px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #00ffff;
}

/* TRIGGER BUTTON */
.trigger-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #00ffff 30%, #003333 100%);
  box-shadow: 0 0 20px #00ffff;
  z-index: 99999;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.pulse-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s infinite ease-out;
  background: rgba(0, 255, 255, 0.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* HOLD ON EFFECT (ACTIVE STATE) */
.trigger-button.active-trigger {
  background: radial-gradient(circle, #00bbff 20%, #001e2e 100%);
  box-shadow: 0 0 24px #00bbff;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    padding: 20px;
  }

  .header-nav a {
    margin: 10px 0;
    display: block;
  }

  .trigger-button {
    bottom: 20px;
    right: 20px;
  }
}/* End custom CSS */