.elementor-62 .elementor-element.elementor-element-f3be90a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-724e6d5 *//* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
header.navbar {
  background-color: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Container */
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  max-height: 50px;
}

/* Nav Menu */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu ul li a {
  color: #444;
  font-weight: 500;
  padding: 10px 5px;
  transition: color 0.2s ease;
}

.nav-menu ul li a:hover {
  color: #000;
}

/* Search Modal */
.search-icon {
  font-size: 18px;
  cursor: pointer;
}

.search-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.search-modal.open {
  display: flex;
}

.search-box {
  position: relative;
  width: 90%;
  max-width: 500px;
}

.search-box input {
  width: 100%;
  padding: 20px;
  font-size: 20px;
  border: none;
  outline: none;
}

.close-button {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}/* End custom CSS */