/* Floating Navbar */
.navbarx {
  position: fixed;
  width: 100vw;
  background: linear-gradient(to bottom, rgba(0, 41, 87, 0.637), transparent);
  /* background: rgba(52, 0, 87, 0.637); */
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  transition: transform 0.3s ease-in-out;
}

.nav-logo-container {
  /* background-color: red; */
  width: calc(var(--vh) * 3);
  height: calc(var(--vh) * 3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-container img {
  height: 100%;
}

/* Navbar Container */
.nav-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

/* Logo */
.logo {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* Navbar Links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}
