/* ════════════════════════════════════════
   NEW HEADER
════════════════════════════════════════ */

/* ── White Top ── */
.hdr-white {
  background: #ffffff;
  padding: 14px 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #efefef;
  width: 100%;
}

/* Logo */
.hdr-logo { flex-shrink: 0; }
.hdr-logo svg { display: block; }

/* Center text */
.hdr-center { flex: 1; text-align: center; line-height: 1.2; }
.hdr-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  color: #e8182c;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  line-height: 1.05;
}
.hdr-sub {
  font-size: 20px;
  font-weight: 800;
  color: #2e3092;
  text-transform: uppercase;
  letter-spacing: .6px;
  display: block;
  margin-top: 4px;
}
.hdr-locs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 5px;
}
.hdr-locs span {
  font-size: 20px;
  font-weight: 800;
  color: #1db954;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hdr-locs .sep { color: #bbb; font-weight: 300; font-size: 20px; }

/* EXCELLENT Live button */
.hdr-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a2c6e;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid #2a3c8e;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(26,44,110,.3);
  transition: background .2s;
  flex-shrink: 0;
}
.hdr-live-btn:hover { background: #253a90; }
.live-tag {
  background: #1db954;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── Red Contact Bar ── */
.hdr-contact {
  background: #e8182c;
  padding: 13px 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hdr-contact .ci {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.hdr-contact .ci svg {
  width: 20px; height: 20px;
  fill: none; stroke: #fff;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Blue Nav Bar ── */
.hdr-nav {
  background: #2e3092;
  display: flex;
  align-items: stretch;
  width: 100%;
  padding :0px 270px;
}
.hdr-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 15px 8px;
  border-right: 1px solid rgba(255,255,255,.18);
  transition: background .2s;
  white-space: nowrap;
  text-align: center;
}
.hdr-nav a:last-child { border-right: none; }
.hdr-nav a:hover { background: rgba(255,255,255,.12); }
.hdr-nav a svg {
  width: 17px; height: 17px;
  fill: none; stroke: #fff;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; opacity: .85;
}
.nav-arrow { font-size: 10px; opacity: .8; margin-left: 1px; }

/* Hamburger for mobile */
.hdr-hamburger {
  display: none;
  background: #2e3092;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  width: 100%;
  flex-direction: column; /* yeh add kiya */
  justify-content: center;
  align-items: center;
  gap: 5px; /* 8px se kam kiya taake bars paas paas rahein */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.hdr-hamburger span { width: 22px; height: 2px; background: #fff; display: block; }
.mob-nav { display: none; background: #1535a0; }
.mob-nav a {
  display: block; color: #d5e8ff;
  font-size: 13px; font-weight: 600;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mob-nav.open { display: block; }

@media(max-width:960px){
  .hdr-white{padding:14px 20px}
  .hdr-name{font-size:34px}
  .hdr-sub{font-size:14px}
  .hdr-locs span{font-size:14px}
  .hdr-contact{padding:10px 20px}
  .hdr-nav a{font-size:12px;padding:13px 6px;gap:5px}
  .hdr-nav a svg{width:14px;height:14px}
}
@media(max-width:640px){
  .hdr-white{flex-wrap:wrap;justify-content:center;padding:14px 16px;gap:12px}
  .hdr-center{width:100%}
  .hdr-name{font-size:26px}
  .hdr-sub{font-size:12px}
  .hdr-locs span{font-size:12px}
  .hdr-locs{gap:8px}
  .hdr-live-btn{font-size:14px;padding:10px 16px}
  .hdr-nav{display:none}
  .hdr-hamburger{display:flex}
  .hdr-contact{flex-direction:column;gap:6px;text-align:center;padding:10px 16px}
  .hdr-contact .ci{justify-content:center;font-size:13px}
  
}