.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

.logo {
  font-family: 'Arial Black', sans-serif;
  font-size: 24px;
  color: black;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

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

.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.right-icons i {
  font-size: 16px;
  cursor: pointer;
}




.header-icon {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 50%;
}