:root {
	--kvp-bg: #f5f8f6;
	--kvp-bg-soft: #eef4f0;
	--kvp-line: rgba(0, 21, 41, 0.09);
	--kvp-line-strong: rgba(0, 21, 41, 0.16);
	--kvp-radius: 18px;
	--kvp-radius-sm: 12px;
	--kvp-shadow: 0 18px 44px rgba(0, 21, 41, 0.08);
	--kvp-shadow-lg: 0 28px 70px rgba(0, 21, 41, 0.14);
	--kvp-heading: var(--govity-black);
}

html {
	scroll-behavior: smooth;
}

[id] {
	scroll-margin-top: 150px;
}

body {
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	letter-spacing: -0.005em;
}

::selection {
	background: rgba(var(--govity-base-rgb), 0.22);
	color: var(--govity-black);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid rgba(var(--govity-base-rgb), 0.45);
	outline-offset: 2px;
}

.page-wrapper {
	overflow: clip;
}
/* Regions */
.department-details__points-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.department-details__points-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--kvp-bg);
	border: 1px solid rgba(0, 21, 41, 0.05);
	border-radius: var(--kvp-radius-sm);
	padding: 16px 18px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-details__points-list li:hover {
	transform: translateY(-3px);
	box-shadow: var(--kvp-shadow);
}

.department-details__points-list li .icon {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 50%;
	background: rgba(var(--govity-base-rgb), 0.12);
	color: var(--govity-base);
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.department-details__points-list li .text p {
	color: var(--govity-heading);
	font-weight: 600;
	margin: 0;
}

.service-details__img img {
	border-radius: var(--kvp-radius);
	box-shadow: var(--kvp-shadow-lg);
	max-width: 100%;
}
/* Contact page */
.contact-page {
	background: #ffffff;
}

.contact-page__img img {
	border-radius: var(--kvp-radius);
	box-shadow: var(--kvp-shadow-lg);
	max-width: 100%;
}

.contact-page__text q {
	color: #52636f;
	font-size: 19px;
	font-style: normal;
	font-weight: 500;
}

.contact-page__contact-list li {
	display: flex;
	gap: 18px;
	background: var(--kvp-bg);
	border-radius: var(--kvp-radius-sm);
	padding: 18px 22px;
	margin-bottom: 14px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page__contact-list li:hover {
	transform: translateY(-3px);
	box-shadow: var(--kvp-shadow);
}

.contact-page__contact-list li .icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--govity-base), #0f7346);
	color: #ffffff;
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-page__contact-list li .content p {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #84929a;
	margin: 0 0 2px;
}

.contact-page__contact-list li .content h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--govity-heading);
	margin: 0;
}

.contact-page__contact-list li .content h4 a {
	color: inherit;
}

.contact-page__bottom {
	background: var(--govity-black);
	border-radius: var(--kvp-radius);
	padding: 34px 38px;
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	position: relative;
	overflow: hidden;
}

.contact-page__bottom::before {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 4px;
	background: linear-gradient(90deg, var(--govity-base), transparent);
}

.contact-page__bottom-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(var(--govity-base-rgb), 0.25);
	color: #ffffff;
	font-size: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-page__bottom-content li span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.contact-page__bottom-content li p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.contact-page__social > span {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #ffffff;
	margin-bottom: 12px;
}

.contact-page__social a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	transition: 0.3s ease;
}

.contact-page__social a:hover {
	background: var(--govity-base);
	transform: translateY(-3px);
}

.contact-page__social-shape-1 {
	display: none;
}

.contact-page__form {
	background: #ffffff;
	border-radius: var(--kvp-radius);
	box-shadow: var(--kvp-shadow-lg);
	border: 1px solid rgba(0, 21, 41, 0.06);
	padding: 52px 48px;
	margin-bottom: 0;
}

.billing_input_box {
	margin-bottom: 18px;
}

.billing_input_box input,
.billing_input_box textarea,
.billing_input_box select {
	background: var(--kvp-bg);
	border: 1px solid transparent;
	border-radius: var(--kvp-radius-sm);
	padding: 14px 18px;
	font-size: 15.5px;
	color: var(--govity-heading);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	width: 100%;
	display: block;
}

.billing_input_box textarea {
	min-height: 150px;
	resize: vertical;
}

.billing_input_box input:focus,
.billing_input_box textarea:focus,
.billing_input_box select:focus {
	border-color: var(--govity-base);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(var(--govity-base-rgb), 0.12);
}

.contact-page__form .thm-btn {
	margin-top: 10px;
}

.google-map iframe.google-map__one {
	height: 420px;
	border-radius: var(--kvp-radius);
	filter: grayscale(0.2);
	margin-bottom: 0;
}

/* Our history timeline */
.our-history {
	padding: 45px 0;
	background: var(--kvp-bg);
}

.our-history__year-box p {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #ffffff;
	background: linear-gradient(135deg, var(--govity-base), #0f7346);
	border-radius: 999px;
	padding: 12px 30px;
	box-shadow: 0 12px 30px rgba(var(--govity-base-rgb), 0.3);
	display: inline-block;
	margin: 0;
}

.our-history__content-one,
.our-history__content-two {
	background: #ffffff;
	border-radius: var(--kvp-radius);
	border: 1px solid rgba(0, 21, 41, 0.05);
	box-shadow: var(--kvp-shadow);
	padding: 34px 32px;
	height: 100%;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.our-history__content-one:hover,
.our-history__content-two:hover {
	transform: translateY(-6px);
	box-shadow: var(--kvp-shadow-lg);
}

.our-history__content-one-title,
.our-history__content-two-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--govity-heading);
	margin: 10px 0 0;
}

.our-history__content-one-sub-title,
.our-history__content-two-sub-title {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--govity-base);
	font-weight: 700;
	margin: 4px 0 0;
}

.our-history__content-one-text,
.our-history__content-two-text {
	color: #52636f;
	line-height: 1.8;
	margin-bottom: 0;
}

.our-history__content-one-circle-one,
.our-history__content-two-circle-one,
.our-history__content-one-circle-two,
.our-history__content-two-circle-two,
.our-history__content-one-circle-three,
.our-history__content-two-circle-three {
	display: none;
}

.our-history__img,
.our-history__img-two {
	overflow: hidden;
	border-radius: var(--kvp-radius);
	box-shadow: var(--kvp-shadow);
	height: 100%;
}

.our-history__img img,
.our-history__img-two img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	transition: transform 0.6s ease;
	border-radius: var(--kvp-radius);
}

.our-history__img:hover img,
.our-history__img-two:hover img {
	transform: scale(1.05);
}

/* Typography content */
.kvp-content {
	color: #41525f;
	font-size: 17.5px;
	line-height: 1.9;
}

.kvp-content h1,
.kvp-content h2,
.kvp-content h3,
.kvp-content h4,
.kvp-content h5,
.kvp-content h6 {
	color: var(--govity-heading);
	font-weight: 700;
	letter-spacing: -0.015em;
}

.kvp-content a {
	color: var(--govity-base);
	text-decoration: none;
	text-underline-offset: 3px;
}

.kvp-content a:hover {
	text-decoration: underline;
	color: #127a4b;
}

.kvp-content img {
	border-radius: var(--kvp-radius-sm);
}

.kvp-content blockquote {
	background: var(--kvp-bg);
	border-left: 4px solid var(--govity-base);
	border-radius: 0 var(--kvp-radius-sm) var(--kvp-radius-sm) 0;
}

.kvp-content blockquote p {
	margin: 0;
}

.kvp-content table th {
	background: var(--kvp-bg-soft);
	color: var(--govity-heading);
}

/* Single */
.kvp-single {
	border-radius: var(--kvp-radius);
	box-shadow: var(--kvp-shadow);
	padding: 34px 40px 46px;
}

.kvp-single__img {
	margin: -34px -40px 26px;
}

.kvp-single__img img {
	border-radius: 0;
}

.kvp-single__title {
	font-size: clamp(26px, 3.6vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.kvp-single__meta {
	gap: 22px;
}

.kvp-sidebar__item {
	background: #ffffff;
	border: 1px solid rgba(0, 21, 41, 0.06);
	box-shadow: var(--kvp-shadow);
}

/* Pagination */
.navigation.pagination .page-numbers {
	box-shadow: var(--kvp-shadow);
	background: #ffffff;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: linear-gradient(135deg, var(--govity-base), #0f7346);
	box-shadow: 0 10px 26px rgba(var(--govity-base-rgb), 0.3);
}

/* Elementor */
.kvp-elementor-shell {
	width: 100%;
}

.elementor-widget:not(:last-child) {
	margin-bottom: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1320px;
}
/* Registration page */
.billing_details {
	background: #ffffff;
	border: 1px solid rgba(0, 21, 41, 0.06);
	border-radius: var(--kvp-radius);
	box-shadow: var(--kvp-shadow-lg);
	padding: 48px 44px;
}

.billing_title p {
	color: #6c7d89;
	font-size: 15px;
	margin-bottom: 6px !important;
}

.billing_title p a {
	color: var(--govity-base);
	font-weight: 700;
}

.billing_title h2 {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--govity-heading);
	margin-bottom: 16px;
}

.checked-box {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.checked-box input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--govity-base);
}

.checked-box label {
	color: var(--govity-heading);
	font-weight: 600;
	margin: 0;
}

.imgUp label.btn.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 30px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: linear-gradient(120deg, var(--govity-base), #0f7346);
	border: none;
	box-shadow: 0 12px 26px rgba(var(--govity-base-rgb), 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	margin-bottom: 14px;
}

.imgUp label.btn.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(var(--govity-base-rgb), 0.4);
}

.imagePreview {
	border-radius: var(--kvp-radius-sm);
	border: 1px dashed rgba(0, 21, 41, 0.15);
}

/* Scroll reveal (activated by front.js; inert without JS) */
.kvp-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.kvp-reveal--in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.kvp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Homepage — Word from the Leadership Team */
.leadership-slider {
	padding: 90px 0;
	background: var(--kvp-bg);
}

.leadership-slider .section-title {
	margin-bottom: 44px;
}

.leadership-slider__carousel .team-one__single {
	margin-bottom: 0;
}

.leadership-slider .owl-theme .owl-dots {
	margin-top: 28px;
}

.leadership-slider .owl-theme .owl-dots .owl-dot span {
	transition: width 0.3s ease, background-color 0.3s ease;
}

.leadership-slider .owl-theme .owl-dots .owl-dot.active span {
	width: 30px;
	background: var(--govity-base);
}

/* Responsive (custom WP sections) */
@media (max-width: 1199.98px) {
	.our-history__img img,
	.our-history__img-two img {
		min-height: 280px;
	}
}

@media (max-width: 991.98px) {
	.department-details__points-list {
		grid-template-columns: 1fr;
	}

	.site-footer__middle .footer-widget__column {
		margin-bottom: 34px;
	}

	.contact-page__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.kvp-single__img {
		margin: -34px -40px 24px;
	}
}

@media (max-width: 767.98px) {
	.contact-page__form {
		padding: 36px 24px;
	}

	.about-four__points li {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.our-history__content-one,
	.our-history__content-two {
		padding: 26px 22px;
		margin-bottom: 20px;
	}

	.our-history__year-box {
		margin-bottom: 14px;
	}

	.service-details__text-box {
		padding: 28px 24px;
	}
}

/* Editor-driven page sections */
.kvp-page {
	padding: 40px 0;
}

.kvp-section {
	padding: 40px 0;
}

.kvp-section .kvp-content {
	max-width: 900px;
}

.kvp-content p,
.kvp-msg-card__text,
.kvp-award__text {
	color: #667085;
	line-height: 1.9;
	font-size: 16px;
	margin-bottom: 20px;
}

.kvp-content h2,
.kvp-content h3,
.kvp-content h4 {
	color: var(--govity-black);
	margin: 28px 0 14px;
	font-weight: 800;
}

.kvp-content ul {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.kvp-content ul li {
	position: relative;
	padding-left: 28px;
	color: #667085;
	line-height: 1.9;
	margin-bottom: 10px;
}

.kvp-content ul li::before {
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 1px;
	color: var(--govity-base);
}

.kvp-content blockquote {
	background: #ecf7f1;
	border-left: 4px solid var(--govity-base);
	padding: 22px 26px;
	margin: 24px 0;
	font-style: italic;
	color: #0f172a;
}

.kvp-points__lead {
	color: #667085;
	line-height: 1.9;
	margin-bottom: 26px;
}

.kvp-award {
	background: #fff;
	border: 1px solid #e7eff3;
	border-radius: 10px;
	padding: 46px 40px;
	text-align: center;
	box-shadow: 0 14px 40px rgba(0, 21, 41, 0.06);
}

.kvp-award__icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--govity-base);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

.kvp-award__title {
	color: var(--govity-black);
	font-size: 30px;
	margin-bottom: 6px;
}

.kvp-award__meta {
	color: #7a8288;
	margin-bottom: 18px;
}

.kvp-award__meta .fa {
	color: var(--govity-base);
	margin: 0 4px 0 14px;
}

.kvp-award__meta .fa:first-child {
	margin-left: 0;
}

.kvp-award__text {
	max-width: 780px;
	margin: 0 auto;
}

.kvp-msg-card {
	text-align: center;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e7eff3;
	padding: 44px 36px;
	box-shadow: 0 14px 40px rgba(0, 21, 41, 0.06);
}

.kvp-msg-card__icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--govity-base);
	color: #fff;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kvp-msg-card__title {
	color: var(--govity-black);
	font-size: 24px;
	margin-bottom: 14px;
}

.kvp-member-page__card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e7eff3;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(0, 21, 41, 0.06);
	text-align: center;
}

.kvp-member-page__img img {
	width: 100%;
	object-fit: cover;
}

.kvp-member-page__inner {
	padding: 30px 24px;
}

.kvp-member-page__name {
	color: var(--govity-black);
	font-size: 26px;
}

.kvp-member-page__role {
	color: var(--govity-base);
	font-weight: 700;
	margin-bottom: 18px;
}

.kvp-member-page__email {
	font-size: 14px;
	padding: 13px 22px;
}

.kvp-member-page__bio p {
	color: #667085;
	line-height: 1.9;
	margin-bottom: 20px;
}

.kvp-member-page__back {
	margin-top: 26px;
}

.team-one__name a {
	color: inherit;
}

.team-one__name a:hover {
	color: var(--govity-base);
}

/* Equal-sized leadership cards across every page/grid */
.team-one__single {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.team-one__single .team-one__content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.team-one__img-box {
	width: 100%;
}

.team-one__img-box,
.team-one__img {
	aspect-ratio: 1 / 1;
}

.team-one__img {
	width: 100%;
	height: 100%;
}

.team-one__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Refined leadership / member card look */
.team-two .team-one__single,
.leadership-slider .team-one__single,
.kvp-members .team-one__single,
.team-one__inner .team-one__single {
	border: 1px solid rgba(0, 21, 41, 0.08);
	box-shadow: 0 14px 34px rgba(0, 21, 41, 0.07);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.team-two .team-one__single:hover,
.leadership-slider .team-one__single:hover,
.kvp-members .team-one__single:hover,
.team-one__inner .team-one__single:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 52px rgba(0, 21, 41, 0.14);
}

.team-two .team-one__content,
.leadership-slider .team-one__content,
.kvp-members .team-one__content {
	padding: 22px 18px 26px;
}

.team-two .team-one__name,
.leadership-slider .team-one__name,
.kvp-members .team-one__name {
	font-size: 20px;
	line-height: 1.35;
}

.team-two .team-one__sub-title,
.leadership-slider .team-one__sub-title,
.kvp-members .team-one__sub-title {
	font-size: 14px;
	letter-spacing: 0.02em;
}

/* Equal-sized grid columns only where executive cards live */
.team-one__inner .row > [class*="col-"],
.leadership-slider .row > [class*="col-"],
body.kvp-slug-leadership .team-two .row > [class*="col-"] {
	display: flex;
	flex-direction: column;
}

.team-one__inner .row > [class*="col-"] .team-one__single,
.leadership-slider .row > [class*="col-"] .team-one__single,
body.kvp-slug-leadership .team-two .row > [class*="col-"] .team-one__single {
	margin-bottom: 0;
	flex: 1 1 auto;
}

/* Well-spaced 4-column leadership rows */
.team-one__inner .row,
body.kvp-slug-leadership .team-two .row {
	row-gap: 36px;
}

.team-one__email {
	margin: 8px 0 0;
}

.team-one__email a {
	color: var(--govity-base);
	font-size: 13px;
}

.team-one__email .fa {
	margin-right: 6px;
}

/* --------------------------------------------------------------------------
 * Members page — approved member grid (page-members.php)
 * -------------------------------------------------------------------------- */
.kvp-members {
	padding: 90px 0 110px;
	background: #ffffff;
}

.kvp-members__intro {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
	color: #6b7a72;
	font-size: 16px;
	line-height: 1.8;
}

.kvp-members__intro h3 {
	color: var(--govity-black);
	font-size: 26px;
	margin-bottom: 12px;
}

.kvp-members__intro a {
	color: var(--govity-base);
	font-weight: 600;
}

.kvp-members__grid .team-one__single {
	border-radius: 18px;
	overflow: hidden;
}

.kvp-members__join {
	margin-top: 50px;
	text-align: center;
}

.kvp-members__join .thm-btn {
	min-width: 240px;
	padding: 16px 34px;
	font-size: 16px;
}

@media (max-width: 991.98px) {
	.kvp-member-page__card {
		margin-bottom: 34px;
	}

	.kvp-section .kvp-content {
		max-width: 100%;
	}
}

@media (max-width: 767.98px) {
	.kvp-page,
	.kvp-section {
		padding: 60px 0;
	}

	.kvp-award {
		padding: 34px 22px;
	}

	.kvp-msg-card {
		padding: 30px 20px;
	}
}

/* --------------------------------------------------------------------------
 * Single member (Executive) page — photo left, info right, quote + back link.
 * Empty bio/quote render as calm placeholders so the layout keeps its rhythm.
 * -------------------------------------------------------------------------- */
.kvp-member {
	padding: 96px 0 110px;
}

.kvp-member__row {
	align-items: flex-start;
}

.kvp-member__photo {
	position: sticky;
	top: 24px;
	border-radius: 16px;
	overflow: hidden;
	background: #0d1f17;
	border: 1px solid #d9e8e0;
	box-shadow: 0 18px 46px rgba(0, 21, 41, 0.12);
}

.kvp-member__photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.kvp-member__photo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	color: #5d7a6a;
	font-size: 64px;
}

.kvp-member__content {
	padding: 4px 0 0 30px;
}

.kvp-member__head {
	border-bottom: 1px solid #e3ece7;
	padding-bottom: 22px;
	margin-bottom: 26px;
}

.kvp-member__name {
	color: var(--govity-black);
	font-size: 38px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 6px;
}

.kvp-member__role {
	color: var(--govity-base);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.4px;
	margin-bottom: 10px;
}

.kvp-member__email {
	color: #475467;
	font-size: 15px;
	margin: 0;
}

.kvp-member__email .fa {
	color: var(--govity-base);
	margin-right: 8px;
}

.kvp-member__email a {
	color: #475467;
	text-decoration: none;
	transition: color 300ms ease;
}

.kvp-member__email a:hover {
	color: var(--govity-base);
}

.kvp-member__section {
	margin-bottom: 28px;
}

.kvp-member__label {
	position: relative;
	color: var(--govity-black);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding-left: 16px;
	margin: 0 0 14px;
}

.kvp-member__label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 4px;
	border-radius: 2px;
	background: var(--govity-base);
}

.kvp-member__bio > p,
.kvp-member__bio p {
	color: #42526b;
	line-height: 1.9;
	font-size: 16px;
	margin-bottom: 16px;
}

.kvp-member__quote {
	position: relative;
	background: #ecf7f1;
	border-left: 4px solid var(--govity-base);
	border-radius: 8px;
	padding: 22px 26px;
}

.kvp-member__quote-text {
	color: #0f172a;
	font-style: italic;
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
}

.kvp-member__quote-text .fa {
	color: var(--govity-base);
	margin-right: 10px;
}

/* Empty-state containers: keep the slot, give breathing room with a slim,
 * green-black margin so the page never looks broken or lopsided. */
.kvp-member__empty {
	background: #fbfdfc;
	border: 1px dashed #b8c9c0;
	border-radius: 8px;
	padding: 22px 24px;
	color: #7a8b82;
	font-size: 15px;
	line-height: 1.8;
}

.kvp-member__empty > p {
	margin: 0;
	color: #7a8b82;
}

.kvp-member__back {
	margin-top: 6px;
}

.kvp-member__back-btn {
	padding: 15px 30px;
	font-size: 15px;
}

.kvp-member__back-btn .fa {
	margin-right: 8px;
}

/* --------------------------------------------------------------------------
 * Balanced section spacing across desktop / tablet / mobile for breathing
 * room and a more professional rhythm. modern.css loads last so these win.
 * -------------------------------------------------------------------------- */
.about-two,
.testimonial-three,
.leadership-slider,
.news-one,
.contact-page {
	padding-right: 0;
	padding-left: 0;
}

@media (min-width: 1200px) {
	.about-two,
	.news-one,
	.leadership-slider,
	.testimonial-three,
	.contact-page {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.news-one {
		padding-bottom: 41px;
	}

	.kvp-section,
	.kvp-page {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.about-two,
	.news-one,
	.leadership-slider,
	.testimonial-three,
	.contact-page,
	.kvp-section,
	.kvp-page {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.about-two,
	.news-one,
	.leadership-slider,
	.testimonial-three,
	.contact-page,
	.kvp-section,
	.kvp-page {
		padding-top: 34px;
		padding-bottom: 34px;
	}

	.kvp-member {
		padding: 34px 0 54px;
	}

	.kvp-member__content {
		padding-left: 0;
	}

	.kvp-member__photo {
		position: relative;
		top: auto;
		margin-bottom: 28px;
	}
}

@media (max-width: 767.98px) {
	.about-two,
	.news-one,
	.leadership-slider,
	.testimonial-three,
	.contact-page,
	.kvp-section,
	.kvp-page {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.kvp-member {
		padding: 28px 0 44px;
	}

	.kvp-member__content {
		padding-left: 0;
		padding-top: 24px;
	}

	.kvp-member__photo {
		position: relative;
		top: auto;
		margin-bottom: 0;
	}

	.kvp-member__name {
		font-size: 30px;
	}

	.kvp-member__back-btn {
		padding: 13px 24px;
	}
}

/* Desktop header: everything reduced ~10% and held FIXED across all desktop widths.
   Scoped to ≥1200px only; tablet/mobile (below 1200px) keep the theme's responsive layout. */
@media (min-width: 1200px) {
	/* Logo column — constant size · reduced 10% */
	.main-menu__logo {
		width: 144px;
	}

	.main-menu__logo a {
		padding: 0;
	}

	.main-menu__logo img {
		max-width: 100%;
		height: auto;
		max-height: 130px;
	}

	/* Constant 5px gap after the logo (both bars share the same column width) */
	.main-menu__top-inner,
	.main-menu__bottom-inner {
		padding-left: 149px;
	}

	/* Top bar */
	.main-menu__top-left {
		margin-right: 7px;
		padding: 12px 0;
	}

	.main-menu__top-right {
		padding: 5px 22px 5px 14px;
	}

	.main-menu__social a + a {
		margin-left: 9px;
	}

	.main-menu__social a {
		font-size: 11.5px;
	}

	.main-menu__top-menu li + li {
		margin-left: 12px;
	}

	.main-menu__top-menu li a {
		font-size: 12.5px;
	}

	.main-menu__contact-list li + li {
		margin-left: 11px;
	}

	.main-menu__contact-list li .text p,
	.main-menu__contact-list li .text p a {
		font-size: 12.5px;
	}

	/* Menu bar */
	.main-menu .main-menu__list,
	.stricky-header .main-menu__list {
		gap: 0;
	}

	.main-menu .main-menu__list > li,
	.stricky-header .main-menu__list > li {
		padding-top: 23px;
		padding-bottom: 23px;
	}

	.main-menu .main-menu__list > li + li,
	.stricky-header .main-menu__list > li + li {
		margin-left: 13px;
	}

	.main-menu .main-menu__list > li > a,
	.stricky-header .main-menu__list > li > a {
		font-size: 18px;
		font-weight: 500;
		color: var(--govity-black);
	}

	.main-menu .main-menu__list > li.current > a,
	.main-menu .main-menu__list > li:hover > a,
	.stricky-header .main-menu__list > li.current > a,
	.stricky-header .main-menu__list > li:hover > a {
		color: var(--govity-base);
		text-shadow: none;
	}

	.main-menu__main-menu-box {
		flex: 1 1 auto;
		display: flex;
		justify-content: center;
	}

	.main-menu .main-menu__list,
	.stricky-header .main-menu__list {
		justify-content: center;
	}

	/* Right side */
	.main-menu__search-box {
		display: block;
		margin-left: 11px;
		margin-right: 7px;
		padding: 10px 0;
	}

	.main-menu__search {
		font-size: 19px;
	}

	.language-switcher {
		display: flex;
		padding: 10px 0;
	}

	.language-switcher .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
		width: 76px;
	}

	.language-switcher .bootstrap-select > .dropdown-toggle {
		font-size: 12.5px;
	}

	.main-menu__btn-box {
		margin-left: 7px;
	}

	.main-menu__btn {
		padding: 9px 22px;
		font-size: 12.5px;
	}

	.main-menu__bottom-inner {
		padding-right: 25px;
	}

	/* Call block — kept visible and constant across all desktop widths */
	.main-menu__call {
		display: flex;
	}

	.main-menu__call-content {
		margin-left: 7px;
	}

	.main-menu__call-sub-title {
		font-size: 10px;
	}

	.main-menu__call-number {
		font-size: 12.5px;
	}

	.main-menu__call-icon {
		height: 30px;
		width: 30px;
		font-size: 11.5px;
	}
}

/* Mobile header — fixed, shorter, with KVP initials between logo and hamburger */
@media (max-width: 1199.98px) {
	.main-header,
	.main-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
		background-color: #ffffff;
		box-shadow: 0 6px 20px rgba(0, 21, 41, 0.08);
	}

	.main-menu__bottom-inner {
		position: relative;
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.main-menu__logo a {
		background-color: transparent;
		padding: 0;
	}

	.main-menu__logo img {
		max-height: 62px;
		width: auto;
	}

	.kvp-mobile-initials {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		font-size: 26px;
		font-weight: 800;
		letter-spacing: 0.02em;
		color: var(--govity-base);
		line-height: 1;
		pointer-events: none;
		z-index: 2;
	}

	.main-menu .mobile-nav__toggler {
		font-size: 24px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		border-radius: 8px;
		background-color: rgba(49, 144, 95, 0.1);
		color: var(--govity-base);
	}

	.main-menu .mobile-nav__toggler:hover,
	.main-menu .mobile-nav__toggler:focus {
		background-color: var(--govity-base);
		color: #ffffff;
	}

	.page-wrapper {
		padding-top: 96px;
	}
}

@media (min-width: 1200px) {
	.kvp-mobile-initials {
		display: none;
	}
}

/* Uniform program images (cards + single page) */
.kvp-program-card__img {
	position: relative;
}

.kvp-program-single__img {
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
}

.kvp-program-single__img img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

@media (max-width: 767.98px) {
	.kvp-program-single__img img {
		height: 240px;
	}
}

/* Contact page — details left, form right, middle band, map below */
.contact-page__left,
.contact-page__right {
	margin-left: 0;
}

.contact-page__right {
	display: block;
}

.contact-page__middle {
	background: #000000;
	padding: 20px 0;
	margin: 0;
	border-top: 2px solid #8cc63e;
	border-bottom: 2px solid #8cc63e;
}

.contact-page__middle .contact-page__social {
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	padding-left: 36px;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex-wrap: wrap;
}

.contact-page__middle .contact-page__social > span {
	position: static;
	transform: none;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #ffffff;
	font-weight: 700;
	margin: 0;
}

.contact-page__middle .contact-page__social a {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #ffffff;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	line-height: 32px;
	text-align: center;
	display: inline-block;
	margin: 0;
}

.contact-page__middle .contact-page__social a::after {
	display: none;
}

.contact-page__middle .contact-page__social a:hover {
	background: #8cc63e;
	color: #000000;
	border-color: #8cc63e;
}

.contact-page__hours {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 100%;
}

.contact-page__hours-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 4px;
}

.contact-page__hours .contact-page__bottom-content {
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.contact-page__hours .contact-page__bottom-content li {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.contact-page__hours .contact-page__bottom-content li span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.contact-page__hours .contact-page__bottom-content li p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

@media (max-width: 991.98px) {
	.contact-page__middle .contact-page__social {
		border-left: 0;
		padding-left: 0;
		justify-content: flex-start;
	}
}

@media (max-width: 767.98px) {
	.contact-page__form {
		padding: 30px 22px;
	}

	.contact-page__middle {
		padding: 20px 0;
	}

	.contact-page__hours {
		flex-wrap: wrap;
	}
}

/* =====================================================================
   Per-page section spacing — targeted via kvp-slug-* body classes.
   "Current" baseline: who-we-are/leadership/regions -> 30%,
   programs -> 20%, contact -> 20px between sections.
   ===================================================================== */
@media (min-width: 992px) {
	body.kvp-slug-who-we-are .kvp-section,
	body.kvp-slug-who-we-are .kvp-page,
	body.kvp-slug-who-we-are .about-four,
	body.kvp-slug-who-we-are .social-one,
	body.kvp-slug-who-we-are .counter-three,
	body.kvp-slug-who-we-are .testimonial-three,
	body.kvp-slug-who-we-are .event-two,
	body.kvp-slug-who-we-are .team-two,
	body.kvp-slug-leadership .kvp-section,
	body.kvp-slug-leadership .kvp-page,
	body.kvp-slug-leadership .team-two,
	body.kvp-slug-regions .kvp-section,
	body.kvp-slug-regions .kvp-page,
	body.kvp-slug-regions .about-four,
	body.kvp-slug-programs .kvp-section,
	body.kvp-slug-programs .kvp-page,
	body.kvp-slug-programs .kvp-programs-home,
	body.kvp-slug-contact-us .kvp-section,
	body.kvp-slug-contact-us .kvp-page,
	body.kvp-slug-contact-us .contact-page,
	body.kvp-slug-our-history .kvp-page,
	body.kvp-slug-our-history .our-history {
		padding-top: 15px;
		padding-bottom: 15px;
		margin-top: 0;
		margin-bottom: 0;
	}
}

@media (max-width: 991.98px) {
	body.kvp-slug-who-we-are .kvp-section,
	body.kvp-slug-who-we-are .kvp-page,
	body.kvp-slug-who-we-are .about-four,
	body.kvp-slug-who-we-are .social-one,
	body.kvp-slug-who-we-are .counter-three,
	body.kvp-slug-who-we-are .testimonial-three,
	body.kvp-slug-who-we-are .event-two,
	body.kvp-slug-who-we-are .team-two,
	body.kvp-slug-leadership .kvp-section,
	body.kvp-slug-leadership .kvp-page,
	body.kvp-slug-leadership .team-two,
	body.kvp-slug-regions .kvp-section,
	body.kvp-slug-regions .kvp-page,
	body.kvp-slug-regions .about-four,
	body.kvp-slug-programs .kvp-section,
	body.kvp-slug-programs .kvp-page,
	body.kvp-slug-programs .kvp-programs-home,
	body.kvp-slug-contact-us .kvp-section,
	body.kvp-slug-contact-us .kvp-page,
	body.kvp-slug-contact-us .contact-page,
	body.kvp-slug-our-history .kvp-page,
	body.kvp-slug-our-history .our-history {
		padding-top: 7.5px;
		padding-bottom: 7.5px;
		margin-top: 0;
		margin-bottom: 0;
	}
}



