/* =========================================================
 * NationVoice — Reality Section
 * Dark/colored full-bleed section with heading + description + outlined button
 * ========================================================= */

.nv-rs-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-rs-wrapper *, .nv-rs-wrapper *::before, .nv-rs-wrapper *::after { box-sizing: border-box; }

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

.nv-rs-wrapper .nv-rs {
	width: 100%;
	background-color: var(--nv-primary);
	padding: 120px 32px;
}

.nv-rs-wrapper .nv-rs__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.nv-rs-wrapper .nv-rs__heading {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.25;
	color: #ffffff !important;
}

.nv-rs-wrapper .nv-rs__desc {
	margin: 0;
	font-family: var(--nv-font-body) !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92) !important;
	max-width: 80ch;
}

.nv-rs-wrapper .nv-rs__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 22px;
	font-family: var(--nv-font-body) !important;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff !important;
	background-color: transparent;
	border: 1px solid #ffffff;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background var(--nv-trans), color var(--nv-trans), transform var(--nv-trans), box-shadow var(--nv-trans);
	margin-top: 8px;
}

.nv-rs-wrapper .nv-rs__btn svg {
	transition: transform var(--nv-trans);
	flex-shrink: 0;
}

.nv-rs-wrapper .nv-rs__btn:hover {
	background-color: #ffffff;
	color: var(--nv-primary) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nv-rs-wrapper .nv-rs__btn:hover svg {
	transform: translateX(4px);
	color: var(--nv-primary) !important;
}

@media (max-width: 1024px) {
	.nv-rs-wrapper .nv-rs { padding: 80px 24px; }
	.nv-rs-wrapper .nv-rs__heading { font-size: 28px; }
}

@media (max-width: 768px) {
	.nv-rs-wrapper .nv-rs { padding: 56px 16px; }
	.nv-rs-wrapper .nv-rs__heading { font-size: 24px; }
	.nv-rs-wrapper .nv-rs__desc { font-size: 15px; }
	.nv-rs-wrapper .nv-rs__inner { gap: 24px; }
	.nv-rs-wrapper .nv-rs__btn { padding: 10px 20px; font-size: 13px; }
}
