.site-header {
  width: 100%;

  z-index: 99999;
}

.header-fixed {
  position: fixed;

  top: 0;

  left: 0;
}

.header-static {
  position: relative;
}
.glass-navbar {
  width: 100%;

  backdrop-filter: blur(18px);

  background: rgba(7, 11, 26, 0.7);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-container {
  min-height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  transition: 0.3s ease;
}

.nav-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  transform: translateY(-3px);
}

.navbar-logo img {
  max-height: 60px;
}
.navbar-logo h2 {
  font-size: 28px;
  font-weight: 700;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;

  gap: 40px;

  list-style: none;
}

.nav-menu li a {
  position: relative;

  color: var(--white);

  font-size: 15px;

  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--secondary);
}
.navbar-menu ul {
  display: flex;

  align-items: center;

  gap: 40px;

  list-style: none;

  margin: 0;

  padding: 0;
}

.navbar-menu ul li {
  list-style: none;
}

.nav-cta-btn {
  padding: 14px 28px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-weight: 600;
}

.mobile-toggle {
  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;

  background: white;

  border-radius: 50px;

  transition: 0.3s ease;
}


/* ADMIN BAR FIX */

.admin-bar .header-fixed {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .header-fixed {
    top: 46px;
  }
}

