/* ===================================
   MANTRI HEADER STYLES (UPDATED)
=================================== */

.mantri-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.mantri-header.scrolled {
  background: #000;
  padding: 14px 0;
}

/* CENTER NAV USING GRID */
.mantri-header-inner {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LEFT SIDE EMPTY SPACE (for perfect centering) */
.mantri-logo {
  visibility: hidden; /* keeps layout balance */
}

/* DESKTOP NAV CENTER */
.mantri-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.mantri-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.mantri-nav a:hover {
  opacity: 0.7;
}

/* HAMBURGER RIGHT SIDE */
.mantri-hamburger {
  display: none;
  justify-self: end;   /* THIS pushes it to right */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mantri-hamburger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
}

/* =========================
   MOBILE MENU
========================= */

.mantri-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: right 0.4s ease;
  z-index: 99999;
}

.mantri-mobile-menu.active {
  right: 0;
}

.mantri-mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.mantri-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .mantri-nav {
    display: none;
  }

@media (max-width: 992px) {

  .mantri-hamburger {
    display: flex;
    justify-self: end;
    margin-right: -120px;   /* move more right */
  }

}

}

