.elementor-461 .elementor-element.elementor-element-ed2a56d{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-d051eed *//* Outer header */
header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  z-index: 1000;
}

/* Inner structure */
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}

/* Logo */
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
nav#navMenu {
  display: flex;
  align-items: center;
}
nav#navMenu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}
nav#navMenu a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}
nav#navMenu a:hover {
  color: #f15a29;
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 32px;
  height: 26px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2001;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Overlay (for mobile) */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
}
.menu-overlay.active {
  display: block;
}

/* Mobile Styles */
@media (max-width: 992px) {
  nav#navMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    box-shadow: -6px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
    z-index: 2100;
  }
  nav#navMenu.active {
    right: 0;
  }

  nav#navMenu ul {
    flex-direction: column;
    gap: 20px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Animate Hamburger → X */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}/* End custom CSS */