/**
 * BusinessZindagi New Homepage — Header & Navigation
 * Mobile-first, accessible, always-visible menu control
 */

:root {
	--bznh-navy: #0f2744;
	--bznh-navy-mid: #1a3a5c;
	--bznh-accent: #ff5a36;
	--bznh-accent-dark: #a00d25;
	--bznh-text: #1a2332;
	--bznh-muted: #5a6b7d;
	--bznh-border: #e3e8ef;
	--bznh-bg: #ffffff;
	--bznh-soft: #f4f7fb;
	--bznh-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--bznh-max: 1120px;
	--bznh-header-h: 86px;
	--bznh-radius: 12px;
}

.bznh-topbar{background:#1243a8;color:#fff;font-size:12px;font-weight:650}.bznh-topbar-inner{min-height:34px!important;height:34px!important;padding-top:0!important;padding-bottom:0!important;display:flex;align-items:center;justify-content:space-between}.bznh-topbar-links{display:flex;gap:18px}.bznh-topbar a{color:#fff;text-decoration:none;opacity:.94}.bznh-topbar a:hover{text-decoration:underline}.bznh-topbar .bznh-header-inner{max-width:1180px}
.bznh-header {
	font-family: var(--bznh-font);
	position: sticky;
	top: 0;
	z-index: 100000;
	background: var(--bznh-bg);
	border-bottom: 1px solid var(--bznh-border);
	box-shadow: 0 1px 3px rgba(15, 39, 68, 0.06);
	-webkit-font-smoothing: antialiased;
}

.bznh-header *,
.bznh-header *::before,
.bznh-header *::after {
	box-sizing: border-box;
}

.bznh-header-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: var(--bznh-max);
	margin: 0 auto;
	padding: 0 16px;
	min-height: var(--bznh-header-h);
	height: var(--bznh-header-h);
}

/* Menu toggle — always visible on small screens, left side */
.bznh-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	margin: 0;
	border: 1px solid var(--bznh-border);
	border-radius: 10px;
	background: var(--bznh-soft);
	color: var(--bznh-navy);
	cursor: pointer;
	flex-shrink: 0;
	z-index: 2;
	-webkit-tap-highlight-color: transparent;
}

.bznh-menu-toggle:hover,
.bznh-menu-toggle:focus-visible {
	background: #e8eef5;
	outline: 2px solid var(--bznh-accent);
	outline-offset: 2px;
}

.bznh-menu-bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 20px;
}

.bznh-menu-bars span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--bznh-navy);
	border-radius: 1px;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.bznh-menu-toggle.is-open .bznh-menu-bars span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.bznh-menu-toggle.is-open .bznh-menu-bars span:nth-child(2) {
	opacity: 0;
}
.bznh-menu-toggle.is-open .bznh-menu-bars span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Logo */
.bznh-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--bznh-navy);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.bznh-logo-img {
	max-height: 75px;
	width: auto;
	display: block;
}

.bznh-logo--large .bznh-logo-text {
	font-size: 1.35rem;
	font-weight: 800;
	}

.bznh-logo-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Desktop nav — hidden on mobile */
.bznh-nav-desktop {
	display: none;
}

.bznh-nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
}

.bznh-nav-list a {
	display: block;
	padding: 8px 11px;
	color: var(--bznh-muted);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	border-radius: 8px;
	white-space: nowrap;
}

.bznh-nav-list a:hover,
.bznh-nav-list a:focus-visible {
	color: var(--bznh-navy);
	background: var(--bznh-soft);
}

.bznh-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.bznh-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 10px;
	background: transparent;
	color: var(--bznh-muted);
	cursor: pointer;
	padding: 0;
}

.bznh-search-toggle:hover,
.bznh-search-toggle:focus-visible {
	background: var(--bznh-soft);
	color: var(--bznh-navy);
	outline: 2px solid var(--bznh-accent);
	outline-offset: 2px;
}

/* Search panel */
.bznh-search-panel {
	display: none;
	padding: 0 16px 14px;
	background: var(--bznh-bg);
	border-bottom: 1px solid var(--bznh-border);
	max-width: var(--bznh-max);
	margin: 0 auto;
	width: 100%;
}

.bznh-search-panel.is-open,
.bznh-search-panel:not([hidden]) {
	display: block;
}

.bznh-search-form {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.bznh-search-input {
	flex: 1;
	min-width: 0;
	border: 1.5px solid var(--bznh-border);
	border-right: none;
	border-radius: 10px 0 0 10px;
	padding: 10px 14px;
	font-size: 15px;
	font-family: inherit;
	color: var(--bznh-text);
	background: #fff;
	outline: none;
}

.bznh-search-input:focus {
	border-color: var(--bznh-accent);
	box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.12);
}

.bznh-search-submit {
	border: 1.5px solid var(--bznh-accent);
	background: var(--bznh-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	padding: 10px 16px;
	border-radius: 0 10px 10px 0;
	cursor: pointer;
}

.bznh-search-submit:hover {
	background: var(--bznh-accent-dark);
	border-color: var(--bznh-accent-dark);
}

/* Mobile nav panel */
.bznh-mobile-nav {
	display: none;
	background: var(--bznh-bg);
	border-bottom: 1px solid var(--bznh-border);
	max-height: min(80vh, 520px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.bznh-mobile-nav.is-open,
.bznh-mobile-nav:not([hidden]) {
	display: block;
}

.bznh-mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 8px 12px 12px;
}

.bznh-mobile-nav-list a {
	display: block;
	padding: 14px 12px;
	min-height: 48px;
	color: var(--bznh-text);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	border-radius: 10px;
}

.bznh-mobile-nav-list a:hover,
.bznh-mobile-nav-list a:focus-visible {
	background: var(--bznh-soft);
	color: var(--bznh-navy);
}

.bznh-mobile-search {
	padding: 0 12px 16px;
}

.bznh-nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	top: var(--bznh-header-h);
	background: rgba(15, 39, 68, 0.35);
	z-index: 99999;
}

.bznh-nav-backdrop.is-open,
.bznh-nav-backdrop:not([hidden]) {
	display: block;
}

html.bznh-nav-open {
	overflow: hidden;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Tablet+ desktop */
@media (min-width: 900px) {
	:root {
		--bznh-header-h: 78px;
	}

	.bznh-header-inner {
		padding: 0 22px;
		gap: 18px;
	}

	.bznh-menu-toggle {
		display: none;
	}

	.bznh-logo-img {
		max-height: 63px;
	}

	.bznh-nav-desktop {
		display: block;
		flex: 1 1 auto;
	}

	.bznh-nav-list {
		justify-content: center;
		flex-wrap: wrap;
	}

	.bznh-mobile-nav,
	.bznh-nav-backdrop {
		display: none !important;
	}

	.bznh-search-panel {
		padding-left: 22px;
		padding-right: 22px;
	}
}

/* v1.2.0: friendlier typography across BusinessZindagi content pages */
body.bznh-has-header {
	font-size: 17px;
}
body.bznh-has-header main p,
body.bznh-has-header .entry-content p,
body.bznh-has-header .post-content p,
body.bznh-has-header .page-content p {
	font-size: 17px;
	line-height: 1.7;
}
body.bznh-has-header main li,
body.bznh-has-header .entry-content li,
body.bznh-has-header .post-content li,
body.bznh-has-header .page-content li {
	font-size: 17px;
	line-height: 1.65;
}
body.bznh-has-header main h1,
body.bznh-has-header .entry-content h1,
body.bznh-has-header .post-content h1,
body.bznh-has-header .page-content h1 {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.15;
}
body.bznh-has-header main h2,
body.bznh-has-header .entry-content h2,
body.bznh-has-header .post-content h2,
body.bznh-has-header .page-content h2 {
	font-size: clamp(1.65rem, 3.5vw, 2.35rem);
	line-height: 1.2;
}
body.bznh-has-header main h3,
body.bznh-has-header .entry-content h3,
body.bznh-has-header .post-content h3,
body.bznh-has-header .page-content h3 {
	font-size: clamp(1.3rem, 2.5vw, 1.7rem);
	line-height: 1.25;
}

/* v1.3.0 — cleaner, larger, screenshot-inspired navigation */
.bznh-topbar{background:#1243a8;color:#fff;font-size:12px;font-weight:650}.bznh-topbar-inner{min-height:34px!important;height:34px!important;padding-top:0!important;padding-bottom:0!important;display:flex;align-items:center;justify-content:space-between}.bznh-topbar-links{display:flex;gap:18px}.bznh-topbar a{color:#fff;text-decoration:none;opacity:.94}.bznh-topbar a:hover{text-decoration:underline}.bznh-topbar .bznh-header-inner{max-width:1180px}
.bznh-header { box-shadow: 0 1px 0 rgba(17,24,39,.08); }
.bznh-header-inner { min-height: 72px; height: 72px; }
.bznh-logo { font-size: 1.25rem; }
.bznh-nav-list a { font-size: 16px; font-weight: 650; padding: 10px 13px; }
.bznh-search-toggle, .bznh-menu-toggle { width: 48px; height: 48px; }
.bznh-menu-toggle { background: #fff; border: 2px solid #111827; color: #111827; border-radius: 4px; }
.bznh-menu-bars span { height: 3px; background: #111827; }
.bznh-mobile-nav-list a { font-size: 18px; padding: 16px 14px; }
body.bznh-has-header main p,
body.bznh-has-header .entry-content p,
body.bznh-has-header .post-content p,
body.bznh-has-header .page-content p { font-size: 18px; line-height: 1.75; }
body.bznh-has-header main li,
body.bznh-has-header .entry-content li,
body.bznh-has-header .post-content li,
body.bznh-has-header .page-content li { font-size: 18px; line-height: 1.7; }
body.bznh-has-header main h1,
body.bznh-has-header .entry-content h1,
body.bznh-has-header .post-content h1,
body.bznh-has-header .page-content h1 { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.08; }
body.bznh-has-header main h2,
body.bznh-has-header .entry-content h2,
body.bznh-has-header .post-content h2,
body.bznh-has-header .page-content h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; }

@media (min-width: 900px) {
	.bznh-header-inner { min-height: 76px; height: 76px; }
}
/* v2.0 editorial header polish */
.bznh-header{background:#fff;box-shadow:0 1px 0 rgba(16,21,40,.09)}
.bznh-header-inner{min-height:82px;height:82px}
.bznh-logo{font-size:1.35rem;color:#111528}
.bznh-logo-img{max-height:58px;width:auto}
.bznh-logo-text{font-size:1.5rem!important;font-weight:850!important;letter-spacing:-.04em}
.bznh-search-toggle{width:50px;height:50px;color:#111528}
.bznh-search-toggle svg{width:25px;height:25px}
@media(max-width:899px){.bznh-header-inner{min-height:76px;height:76px}.bznh-logo-img{max-height:56px}.bznh-logo-text{font-size:1.45rem!important}.bznh-search-toggle{width:48px;height:48px}}

/* v2.0.0 — Logo scale matched to the large editorial masthead reference.
 * Keep the BusinessZindagi logo visually prominent without stretching it.
 */
.bznh-header-inner{min-height:94px;height:94px}
.bznh-logo{align-self:center}
.bznh-logo-img{height:72px;max-height:72px;width:auto;max-width:min(420px,72vw);object-fit:contain}
.bznh-logo--large .bznh-logo-text{font-size:2.05rem!important;font-weight:850!important;letter-spacing:-.045em}
@media(max-width:899px){
  .bznh-header-inner{min-height:94px;height:94px;padding-left:14px;padding-right:14px;gap:12px}
  .bznh-logo-img{height:72px;max-height:72px;max-width:72vw}
  .bznh-logo--large .bznh-logo-text{font-size:2rem!important}
}
@media(min-width:900px){
  .bznh-header-inner{min-height:94px;height:94px}
  .bznh-logo-img{height:72px;max-height:72px}
}

@media(max-width:899px){.bznh-topbar{display:none}.bznh-header-inner{min-height:86px;height:86px}.bznh-logo-img{max-height:75px}.bznh-logo{justify-content:center}.bznh-logo-text{font-size:1.4rem}.bznh-menu-toggle{width:48px;height:48px}.bznh-search-toggle{width:48px;height:48px}}
