/* BASIC */
.header {
  background: #fff;
  width: 100%;
  z-index: 9999;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 58px;
}

.logo-text h2 {
  margin: 0;
  font-size: 20px;
  color: #b51f1f;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
}

/* NAV */
.header-right {
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  color: #b51f1f;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 15px;
  margin-right: 25px;   /* 🔥 burger ko left laata hai */

  position: relative;
.burger {
  position: relative;
  z-index: 100000;   /* 🔥 sabse upar */
}



.burger span {
  width: 26px;
  height: 3px;
  background: #b51f1f;
  margin: 4px 0;
}

/* MOBILE */
@media (max-width: 992px) {

  .nav {
    pointer-events: none;   /* 🔥 click block hatao */
  }

  .nav.active {
    pointer-events: auto;   /* sirf open hone par click */
  }
}


  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
}

/* STICKY */
.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
}
/* =====================
   TOP BAR FIX
   ===================== */

.top-bar {
  background: #b51f1f;
  color: #fff;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

/* SOCIAL ICON POSITION FIX */
.top-bar .social {
  margin-right: 60px;   /* 🔥 icons thoda left aa jayenge */
}

/* phone text */
.top-bar span {
  white-space: nowrap;
}

/* social icons */
.top-bar .social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar .social i {
  cursor: pointer;
}
/* STICKY ONLY HEADER */
.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

/*Aur mobile dropdown me:*/
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
  }
}
.burger,
.burger * {
  pointer-events: auto;
}
/* ===== BURGER RESET (FINAL FIX) ===== */

/* default – hide on desktop */
.burger {
  display: none;
}

/* force show on mobile */
@media (max-width: 992px) {
  .burger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    margin-right: 40px;
    position: relative;
    z-index: 100000;     /* sabse upar */
  }

  .burger span {
    width: 26px;
    height: 3px;
    background: #b51f1f;
    margin: 4px 0;
  }

  /* nav closed state */
  .nav {
    display: none !important;
    pointer-events: none;
  }

  /* nav open state */
  .nav.active {
    display: flex !important;
    pointer-events: auto;
  }
}
/* ===== BURGER CLICK FIX ===== */
.burger {
  position: relative !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
}
@media (max-width: 992px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
  }
  .nav.active {
    display: flex;
  }
}
/* ===== BURGER & MOBILE NAV FINAL ===== */

@media (max-width: 992px) {

  .burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-right: 40px;
    position: relative;
    z-index: 999999;   /* 🔥 sabse upar */
  }

  .burger span {
    width: 26px;
    height: 3px;
    background: #b51f1f;
    margin: 4px 0;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;    /* 🔥 CLICK PAR OPEN */
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
}
@media (max-width: 992px) {

  .nav {
    display: none;
  }

  .nav.active {
    display: flex;   /* 🔥 sirf click se open */
  }
}
.header {
  position: relative;
  z-index: 10000;
}
/* REMOVE GAP BETWEEN TOP BAR & HEADER */
.top-bar {
  margin-bottom: 0 !important;
}

.header {
  margin-top: 0 !important;
}
.top-bar,
.header {
  line-height: normal;
}


/* ⭐ KEY FIX */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu:hover {
  display: block;
}

/* arrow */
.submenu-toggle {
  font-size: 11px;
  cursor: pointer;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-parent {
  display: flex;
  align-items: center;
  gap: 5px;
}
/* NAV ALIGNMENT */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* parent row */
.nav-parent {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

/* dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;          /* 🔥 NO GAP */
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 8px 0;
  display: none;
  z-index: 999;
}

/* ⭐⭐⭐ THIS IS THE MAGIC */
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* submenu hover safe */
.dropdown-menu:hover {
  display: block;
}

/* arrow */
.submenu-toggle {
  font-size: 11px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown-menu.open {
    display: block;
  }
}

/* NAV BASE */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* DROPDOWN WRAPPER */
.nav-dropdown {
  position: relative;
}

/* PARENT ROW */
.nav-parent {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ARROW */
.submenu-toggle {
  cursor: pointer;
  font-size: 11px;
  user-select: none;
}

/* SUBMENU */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 8px 0;
  z-index: 999;
}

/* OPEN STATE */
.dropdown-menu.open {
  display: block;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu a:hover {
  background: #f2f6fa;
}

/* ===== STICKY HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: #ffffff;
}

/* top bar ke niche sticky chahiye ho to */
.top-bar + .header {
  top: 40px; /* agar top-bar ki height ~40px hai */
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
}

.header {
  position: fixed;
  top: 40px; /* top-bar height */
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #fff;
}

body {
  padding-top: 128px; /* top-bar + header */
}

