/* Start custom CSS for html, class: .elementor-element-d5157f7 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* HEADER BASE */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

/* ✅ Logo Styling */
.header-logo img {
  height: 65px;
  width: auto;
  transition: 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

/* ✅ NAVIGATION MENU */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.header-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
  padding-bottom: 3px;
}

.header-nav a:hover {
  color: #d7522d;
  border-bottom: 2px solid #d7522d;
}

/* ✅ MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #d7522d;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* ✅ MOBILE MENU DROPDOWN */
@media (max-width: 900px) {
  .main-header {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav ul {
    position: absolute;
    top: 78px; /* perfect spacing below header */
    right: 20px;
    background: #fff;
    width: 200px;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    display: none; /* hidden by default */
  }

  .header-nav ul.active {
    display: flex; /* show when clicked */
  }

  .header-nav a {/* End custom CSS */