.elementor-287 .elementor-element.elementor-element-cfa0008{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1e5f5c4 */.mt-header {
  width: 100%;
  background: #F8FAFC;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.mt-container {
  max-width: 1250px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mt-logo img {
  height: 55px;
}

/* Desktop Menu */
.mt-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  list-style: none;
}

.mt-nav a {
  color: #0F172A;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.mt-nav a:hover {
  color: #0EA5E9;
}

/* Hamburger */
.mt-hamburger {
  width: 28px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.mt-hamburger span {
  height: 3px;
  background: #0EA5E9;
  border-radius: 3px;
  display: block;
}

/* Mobile Menu */
.mt-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: white;
  box-shadow: -3px 0 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  padding-top: 90px;
  z-index: 99999;
}

.mt-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mt-mobile-menu li {
  padding: 18px 22px;
}

.mt-mobile-menu a {
  color: #0F172A;
  font-size: 18px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

body.mt-menu-open .mt-mobile-menu {
  right: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .mt-nav {
    display: none;
  }
  .mt-hamburger {
    display: flex;
  }
}/* End custom CSS */