/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(45, 45, 68, 0);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.036);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}

.navbar .logo a {
  color: var(--accent);
  text-decoration: none;
}

.navbar .nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar .nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: var(--accent);
}

.navbar .nav-links a.active {
  color: var(--accent);
}

.navbar .btn-hire {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar .btn-hire:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.navbar .menu-icon {
  display: none;
  font-size: 1.5rem;
  color: var(--light);
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(45, 45, 68, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .navbar .menu-icon {
    display: block;
  }
}