.navbar-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 60px;
  background-color: #0c0617;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar-logo {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.navbar-logoText {
  background: linear-gradient(90deg, #CB93FF 0%, #56BEFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 10px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.navbar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #CB93FF;
  font-size: 13px;
  white-space: nowrap;
}

.navbar-demoButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0c0617;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 900px) {
  .navbar-navbar {
    padding: 18px 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .navbar-navbar {
    justify-content: center;
    padding: 16px 20px;
  }

  .navbar-badge {
    display: none;
  }
  .navbar-demoButton {
  display: none;
}
}
