/* Start custom CSS for html, class: .elementor-element-6125fa0 *//* HEADER */
.mobile-header {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO SECTION */
.mobile-logo {
  background: #fff;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* PERFECT SLASH (NO GAP) */
.mobile-logo::before,
.mobile-logo::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  background: inherit; /* same purple */
  z-index: -1;
}

/* LEFT SLASH */
.mobile-logo::before {
  left: -20px;
  transform: skewX(-25deg);
}

/* RIGHT SLASH */
.mobile-logo::after {
  right: -20px;
  transform: skewX(-25deg);
}

/* LOGO */
.mobile-logo img {
  height: 45px;
}

/* NAV */
.mobile-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 10px;
}

/* MENU */
.mobile-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
}

/* ACTIVE */
.mobile-nav .active {
  background: #fff;
  color: #4c1d95;
}

/* WHATSAPP */
.whatsapp {
  background: #25D366;
  border-radius: 50%;
  padding: 8px 10px;
}

/* MOBILE ONLY */
@media(min-width: 769px) {
  .mobile-header {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-50a46cd *//* ===== DESKTOP HEADER ===== */
.desktop-header {
  width: 100%;
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* INNER CONTAINER (MAIN FIX) */
.header-container {
  max-width: 1200px;       /* control width */
  margin: 0 auto;          /* center */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  overflow: hidden;
}

/* ===== LOGO ===== */
.desktop-logo {
  background: #fff;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* SLASH DESIGN SAME */
.desktop-logo::before,
.desktop-logo::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  z-index: -1;
}

.desktop-logo::before {
  left: -15px;
  transform: skewX(-25deg);
}

.desktop-logo::after {
  right: -15px;
  transform: skewX(-25deg);
}

/* LOGO IMAGE */
.desktop-logo img {
  height: 55px;
  display: block;
}

/* ===== NAV ===== */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* MENU */
.desktop-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  transition: 0.3s;
}

/* ACTIVE */
.desktop-nav .active {
  background: #fff;
  color: #4c1d95;
}

/* HOVER */
.desktop-nav a:hover {
  background: #fff;
  color: #4c1d95;
}

/* WHATSAPP */
.desktop-nav .whatsapp {
  background: #25D366;
  border-radius: 50%;
  padding: 10px 12px;
}

/* ===== MOBILE HIDE ===== */
@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
}
.header-container {
  width: 100%;
  padding: 0 20px;
}
.header-container {
  max-width: 900px;   /* 🔥 100 se kam kar */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}/* End custom CSS */