/* ===== Make Navbar Static, Visible & Responsive (No Toggle) ===== */

/* Make the header fixed and visible */
#site-header, 
.main-navigation, 
.elementor-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  border-bottom: 1px solid #eee;
}

/* Push page content below header */
body {
  padding-top: 90px; /* Adjust for your header height */
}

/* Hide hamburger/toggle icons completely */
.menu-toggle,
.mobile-menu-toggle,
.elementor-menu-toggle,
.elementor-nav-menu--dropdown {
  display: none !important;
  visibility: hidden !important;
}

/* Always show the main menu */
.main-navigation ul,
.elementor-nav-menu {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center; /* Change to flex-start or space-between if you prefer */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Adjust list items */
.main-navigation li,
.elementor-nav-menu li {
  margin: 10px 15px;
}

/* Links styling */
.main-navigation a,
.elementor-nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
}

.main-navigation a:hover,
.elementor-nav-menu a:hover {
  color: #605be5; /* Theme color */
}

/* Make it mobile responsive */
@media (max-width: 768px) {
  .main-navigation ul,
  .elementor-nav-menu {
    flex-direction: column; /* Stack vertically */
    background: #ffffff;
    padding: 15px 0;
  }
  .main-navigation li,
  .elementor-nav-menu li {
    margin: 8px 0;
  }
  .main-navigation a,
  .elementor-nav-menu a {
    font-size: 16px;
  }
}
