/* BANNER IMAGE */
.banner {
  height: 300px;
  background: url("images/new_banner.png") center/cover no-repeat;
  position: relative;
}

/* TRANSPARENT NAVBAR */
.navbar {
  position: absolute;   /* banner ke upar */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: transparent;   /* 🔥 PURE TRANSPARENT */
  z-index: 10;
}

/* MENU CENTER */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  list-style: none;
}

/* MENU TEXT */
.nav-menu a {
  color: #ffffff;        /* banner ke upar visible */
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.nav-menu a:hover {
  color: #ffcc00;
}

/* ACTIVE */
.nav-menu a.active {
  color: #ffcc00;
}
