/* Reset some basics */
.navigation {
  background: #fff;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 70px;
}

.brand a {
  color: #00d999;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand img {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  padding: 0 20px;
  line-height: 70px;
  color: #262626;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-list a:hover {
  background: #00d999;
  color: #fff;
}

.nav-list a:not(:only-child)::after {
  content: ' ▾';
  padding-left: 5px;
}

/* Dropdown */
.nav-dropdown {
  display: none;
  flex-direction: column; /* Needed for vertical layout */
  position: absolute;
  top: 70px;
  left: 0;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 1000;
}
/*
.nav-dropdown li a {
  padding: 15px 20px;
  display: block;
  white-space: nowrap;
} */

.nav-dropdown li a {
  padding: 15px 20px;
  display: block;
  /*font-size: 0.95rem; /* Optional: slightly smaller text */
  line-height: 1.2;   /* Reduce vertical space */
}

.nav-list li:hover > .nav-dropdown {
  display: flex;
}

/* Mobile nav toggle */
#nav-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
}

#nav-toggle span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #262626;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

#nav-toggle span::before,
#nav-toggle span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #262626;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#nav-toggle span::before {
  transform: translateY(-10px);
}

#nav-toggle span::after {
  transform: translateY(10px);
}

#nav-toggle.active span {
  background: transparent;
}

#nav-toggle.active span::before {
  transform: rotate(45deg);
  background: #00d999;
}

#nav-toggle.active span::after {
  transform: rotate(-45deg);
  background: #00d999;
}
/* Responsive nav */
@media screen and (max-width: 768px) {
  .nav-list {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    display: none;
  }
  .nav-list li {
    width: 100%;
    margin-bottom: 10px; /* Add spacing between items */
  }

  .nav-list li a {
    padding: 15px;
    line-height: 20px;
    /*  border-bottom: 1px solid #eee; /* Optional: light separator */
  }

  #nav-toggle {
    display: flex;
  }

  .nav-list.show {
    display: flex;
  }

  /*.nav-dropdown {
    position: static;
    box-shadow: none;
  } */
  .nav-dropdown {
    display: none;
    flex-direction: column;
  }

  .nav-dropdown.show-dropdown {
    display: flex;
  }
  .nav-list a:hover {
    background: none !important;
    color: inherit !important;
  }
}





/* .navigation {
	 height: 70px;
	 background: #fff;
	 
	 }
 .brand {
	 position: absolute;
	 padding-left: 20px;
	 float: left;
	 line-height: 70px;
	 text-transform: uppercase;
	 font-size: 1.4em;
}
 .brand a, .brand a:visited {
	 color: #fff;
	 text-decoration: none;
}
 .nav-container {
	 max-width: 1000px;
	 margin: 0 auto;
}
 nav {
	 float: right;
}
 nav ul {
	 list-style: none;
	 margin: 0;
	 padding: 0;
}
 nav ul li {
	 float: left;
	 position: relative;
}

 nav ul li a, nav ul li a:visited {
	 display: block;
	 padding: 0 20px;
	 line-height: 70px;
	 background: #fff;
	 color: #262626;
	 text-decoration: none;
}
a, a:active, a:focus {
   outline: none;
   text-decoration:none;
}
 nav ul li a:hover, nav ul li a:visited:hover {
	 background: #00d999;
	 color: #fff;
	 text-decoration:none;
	 outline: 0;
}
 nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
	 padding-left: 4px;
	 content: ' ▾';
}
 nav ul li ul li {
	 min-width: 190px;
}
 nav ul li ul li a {
	 padding: 15px;
	 line-height: 20px;
	 text-decoration:none;
}
 .nav-dropdown {
	 position: absolute;
	 display: none;
	 z-index: 1;
	 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
 /*
 .nav-mobile {
	 display: none;
	 position: absolute;
	 top: 0;
	 right: 0;
	 background: #fff;
	 height: 70px;
	 width: 70px;
}
 @media only screen and (max-width: 798px) {
	 .nav-mobile {
		 display: block;
	}
	 nav {
		 width: 100%;
		 padding: 70px 0 0px;
	}
	 nav ul {
		 display: none;
	}
	 nav ul li {
		 float: none;
	}
	 nav ul li a {
		 padding: 15px;
		 line-height: 20px;
		 text-decoration:none;
	}
	 nav ul li ul li a {
		 padding-left: 30px;
	}
	 .nav-dropdown {
		 position: static;
	}
} 
 @media screen and (min-width: 799px) {
	 .nav-list {
		 display: block !important;
	}
}
 #nav-toggle {
	 position: absolute;
	 left: 18px;
	 top: 22px;
	 cursor: pointer;
	 padding: 10px 35px 16px 0px;
}
 #nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
	 cursor: pointer;
	 border-radius: 1px;
	 height: 5px;
	 width: 35px;
	 background: #262626;
	 position: absolute;
	 display: block;
	 content: '';
	 transition: all 300ms ease-in-out;
}
 #nav-toggle span:before {
	 top: -10px;
}
 #nav-toggle span:after {
	 bottom: -10px;
}
 #nav-toggle.active span {
	 background-color: transparent;
}
 #nav-toggle.active span:before, #nav-toggle.active span:after {
	 top: 0;
}
 #nav-toggle.active span:before {
	 transform: rotate(45deg);
}
 #nav-toggle.active span:after {
	 transform: rotate(-45deg);
}
*/

 