.elementor-30199 .elementor-element.elementor-element-c0098d1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-379eaa7 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
  margin: 0;
}

.mps-header {
  font-family: 'Poppins', sans-serif;
}

.mps-topbar {
  background: #ffffff;
  color: #ffffff;   /* White text */
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.mps-topbar span {
  border-bottom: 1px solid #d4af37;
  cursor: pointer;
}

/* Navbar */
.mps-navbar {
  background: #123c2f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Logo */
.mps-logo img {
  height: 70px;   /* circular logo ke liye thoda bada */
  width: auto;
  transition: 0.3s ease;
}

.mps-logo img:hover {
  transform: scale(1.05);
}

/* Menu */
.mps-menu ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.mps-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Golden Underline Animation */
.mps-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: 0.3s ease;
}

.mps-menu ul li a:hover {
  color: #d4af37;
}

.mps-menu ul li a:hover::after {
  width: 100%;
}

/* Icons */
.mps-icons a {
  color: #ffffff;
  margin-left: 20px;
  font-size: 18px;
  transition: 0.3s ease;
}

.mps-icons a:hover {
  color: #d4af37;
}

/* Mobile Toggle */
.mps-toggle {
  display: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 991px) {

  .mps-navbar {
    padding: 15px 25px;
  }

  .mps-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: #123c2f;
    transition: 0.4s ease;
  }

  .mps-menu ul {
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }

  .mps-menu.active {
    left: 0;
  }

  .mps-toggle {
    display: block;
  }

  .mps-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mps-icons {
    display: flex;
  }

  .mps-logo img {
    height: 55px;
  }
}/* End custom CSS */