.navbarx {
  position: fixed;
  width: 100vw;
  /* background: linear-gradient(to bottom, rgba(16, 0, 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) * 4);
  height: calc(var(--vh) * 5);
  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;
  align-items: center;
  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;
}

.mobile-only {
  display: none !important;
}

.whatsapp-float {
  position: fixed;
  bottom: calc(var(--vh) * 5);
  right: 3vw;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  width: calc(var(--vh) * 8);
  height: calc(var(--vh) * 8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(37, 16, 16, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 10000;
}

.whatsapp-float a {
  color: white !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.portal-btn {
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: bold !important;
  color: white !important;
  background: linear-gradient(135deg, #2c81ff, #2c81ff, #2c81ff);
  background-size: 200% 200%;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: background-position 0.4s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.portal-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
}

/* Shine effect */
.portal-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
