/* =========================================================
 * NationVoice — Image Hero (full image/video bg + overlay)
 * ========================================================= */

.nv-ih-wrapper {
	--nv-primary: #3c4d8c;
	--nv-font-body: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--nv-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--nv-trans: 0.3s var(--nv-ease);
	font-family: var(--nv-font-body);
}

.nv-ih-wrapper *, .nv-ih-wrapper *::before, .nv-ih-wrapper *::after { box-sizing: border-box; }

.elementor-page .nv-ih-wrapper,
.e-con .nv-ih-wrapper,
.elementor-widget-container .nv-ih-wrapper {
	font-family: var(--nv-font-body) !important;
}

/* Breadcrumb */
.nv-ih-wrapper .nv-ih__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 14px 32px;
	max-width: 1440px;
	margin: 0 auto;
	font-size: 13px;
	color: var(--nv-primary) !important;
	font-family: var(--nv-font-body) !important;
}
.nv-ih-wrapper .nv-ih__breadcrumb a { color: var(--nv-primary) !important; text-decoration: none !important; }
.nv-ih-wrapper .nv-ih__breadcrumb a:hover { opacity: 0.7; }
.nv-ih-wrapper .nv-ih__bc-current { color: #f2a541 !important; font-weight: 500; }

/* Hero */
.nv-ih-wrapper .nv-ih__hero {
	position: relative;
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
	background-color: #1a1a1a;
}

.nv-ih-wrapper .nv-ih__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.nv-ih-wrapper .nv-ih__bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.nv-ih-wrapper .nv-ih__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.45);
	z-index: 2;
}

.nv-ih-wrapper .nv-ih__overlay--gradient {
	background-color: transparent;
	background: linear-gradient(
		var(--nv-ih-gd, to bottom),
		var(--nv-ih-g1, rgba(60, 77, 140, 0.85)) 0%,
		var(--nv-ih-g2, rgba(220, 41, 84, 0.75)) 100%
	);
}

/* =========================================================
 * Bottom curve / clip-path divider
 * ========================================================= */
.nv-ih-wrapper .nv-ih__curve {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 120px;
	z-index: 4;
	pointer-events: none;
	line-height: 0;
}

.nv-ih-wrapper .nv-ih__curve svg {
	width: 100%;
	height: 100%;
	display: block;
}

.nv-ih-wrapper .nv-ih__curve path {
	fill: #ffffff;
}

.nv-ih-wrapper .nv-ih__container {
	position: relative;
	z-index: 3;
	max-width: 1320px;
	margin: 0 auto;
	min-height: inherit;
	padding: 56px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 24px;
}

.nv-ih-wrapper .nv-ih__heading {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	color: #ffffff !important;
	letter-spacing: -0.005em;
}

.nv-ih-wrapper .nv-ih__desc {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92) !important;
	max-width: 50ch;
}

.nv-ih-wrapper .nv-ih__btn {
	display: inline-block;
	width: fit-content;
	padding: 13px 28px;
	font-family: var(--nv-font-body) !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #ffffff !important;
	background-color: #dc2954 !important;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background var(--nv-trans), transform var(--nv-trans), box-shadow var(--nv-trans);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	margin-top: 4px;
}

.nv-ih-wrapper .nv-ih__btn:hover {
	background-color: #b8203f !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
	.nv-ih-wrapper .nv-ih__breadcrumb { padding: 10px 16px; font-size: 12px; }
	.nv-ih-wrapper .nv-ih__hero { min-height: 520px; }
	.nv-ih-wrapper .nv-ih__container { padding: 32px 20px; gap: 16px; }
	.nv-ih-wrapper .nv-ih__heading { font-size: 28px; }
	.nv-ih-wrapper .nv-ih__desc { font-size: 14px; }
	.nv-ih-wrapper .nv-ih__btn { padding: 11px 22px; font-size: 13px; }
}
