.elementor-30341 .elementor-element.elementor-element-17f7982{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cc90c3b */:root {
  --green: #0f3d2e;
  --gold: #d4af37;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 8px;
}

.top-bar a {
  color: var(--gold);
}

/* HEADER */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* LOGO */
.logo img {
  height: 75px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ICONS */
.left-section, .right-section {
  display: flex;
  gap: 18px;
}

.left-section div, .right-section div {
  cursor: pointer;
  transition: 0.3s;
}

.left-section div:hover,
.right-section div:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* MENU WRAPPER (NEW BG) */
.menu-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* MENU BG PILL */
.desktop-menu {
  display: flex;
  gap: 30px;
  padding: 12px 25px;
  background: #f9f9f9;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* MENU LINKS */
.desktop-menu a {
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

/* HOVER LINE */
.desktop-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--gold);
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.desktop-menu a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropbtn {
  border: none;
  background: none;
  color: var(--green);
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  top: 35px;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.dropdown-content a {
  padding: 10px;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* SEARCH */
.search-box {
  display: none;
  padding: 15px;
  background: #f5f5f5;
  text-align: center;
}

.search-box input {
  width: 80%;
  padding: 12px;
}

.close-search {
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  width: 280px;
  height: 100%;
  background: var(--green);
  padding: 20px;
  transition: 0.3s;
  z-index: 999;
}

.mobile-menu.active {
  left: 0;
}

/* MOBILE LINKS HOVER FIX ✅ */
.mobile-menu a {
  color: #fff;
  display: block;
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: var(--gold);
  color: #000;
  transform: translateX(5px);
}

/* MOBILE DROPDOWN */
.mobile-dropdown-content {
  display: none;
  padding-left: 10px;
}

.mobile-dropdown-content a {
  font-size: 14px;
}

/* CLOSE BTN */
.close-btn {
  color: #ffffff;
  text-align: right;
  cursor: pointer;
}

/* MOBILE ICONS */
.mobile-icons {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 20px;
  color: #fff;
}

/* LOGIN */
.login-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-content {
  background: #fff;
  padding: 20px;
  width: 300px;
  margin: 100px auto;
}

/* RESPONSIVE */
@media(max-width:768px){
  .menu-wrapper {
    display: none;
  }
}/* End custom CSS */