
/* ======== NAVBAR ======== */
/* General Navbar Styling */
/* ===== Navbar Base ===== */
body{
    background: #fff;
    width: 100vw;
}

.navbar {
  background: #ffffff;
  padding: 15px 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo ===== */
/* .logo {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
} */

/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d43cd4;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #371c50, #ea00ff);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ===== Mobile Menu Button ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #ff009d;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 25px 0;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.4s ease forwards;
  }

  .nav-links.active {
    display: flex;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

