/* Hover Effect */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: block;
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.primo-logo {
  width: 150px;
}

/* Navigation bar Default style */
.nav-bar {
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 100;
  transition: background-color 0.3s ease;
}

.nav-bar-con {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar .logo img.default-logo {
  display: block;
}

.nav-bar .logo img.white-logo {
  display: none;
}

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-transform: uppercase;
  height: 100%;
  padding: 0.5rem 0;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:active {
  color: #46ada2;
}

.nav-dropdown .nav-link:visited {
  color: #000000;
}

.nav-dropdown:hover .nav-link {
  color: #46ada2;
}

.nav-dropdown:hover .nav-dropdown-icon.default path {
  stroke: #46ada2;
  transition: all 0.3s ease;
}

.nav-dropdown-toggle .nav-link.active,
.nav-dropdown-toggle .nav-dropdown-icon.active path {
  color: #46ada2;
  stroke: #46ada2;
}

.nav-bar .nav-button {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #1e9a8d;
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-bar .nav-button:hover {
  background-color: #000000;
}

.nav-bar .nav-button:active {
  background-color: #125c55;
}

.nav-bar .nav-dropdown-icon {
  width: 10px;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.nav-dropdown-icon.rotated {
  transform: rotate(180deg);
}

.nav-dropdown-icon.default {
  display: inline;
}

.nav-dropdown-icon.white {
  display: none;
}

/* Navigation Bar White Style */
.nav-bar.nav-white {
  background-color: transparent;
}

.nav-bar.nav-white .logo img.default-logo {
  display: none;
}

.nav-bar.nav-white .logo img.white-logo {
  display: block;
}

.nav-bar.nav-white .nav-link {
  color: #ffffff;
}

.nav-bar.nav-white .nav-link:hover {
  color: #46ada2;
}

.nav-bar.nav-white .nav-button:hover {
  background-color: #ffffff;
  color: #1e9a8d;
}

.nav-bar.nav-white .nav-button:hover .arrow-right path {
  stroke: #1e9a8d;
  transition: stroke 0.3s ease;
}

.nav-bar.nav-white .nav-button:active {
  background-color: #125c55;
  color: #ffffff;
}

.nav-bar.nav-white .nav-button:active .arrow-right path {
  stroke: #ffffff;
}

.nav-bar.nav-white .nav-dropdown-icon.default {
  display: none;
}

.nav-bar.nav-white .nav-dropdown-icon.white {
  display: inline;
}

.nav-bar.nav-white .nav-dropdown-toggle:hover .nav-dropdown-icon.white path {
  stroke: #46ada2;
  transition: all 0.3s ease;
}

/* Dropdown - Sub Menu Style */
.nav-dropdown-wrap {
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.nav-dropdown-content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 48px 135px;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
}

.nav-dropdown-wrap.show {
  max-height: 300px;
}

.nav-dropdown-wrap.show .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.sub-menu-head {
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  text-decoration: none;
  line-height: 24px;
  text-transform: uppercase;
}

a.sub-menu-head:hover {
  color: #1e9a8d;
}

.sub-menu-box {
  width: 100%;
  display: flex;
  gap: 24px;
}

.sub-menu-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 1rem;
  width: 300px;
}

.sub-menu-title {
  color: #202020;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.sub-menu-title:hover {
  color: #18988b;
}

.sub-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sub-menu-link {
  color: #ffffff;
  text-decoration: none;
  color: #202020;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}

.sub-menu-link:hover {
  color: #18988b;
}
