.njs-site {
	--njs-blue: #0b4f9f;
	--njs-blue-dark: #07356e;
	--njs-gold: #f2b705;
	--njs-green: #14854f;
	--njs-ink: #162033;
	--njs-muted: #617089;
	--njs-soft: #f4f7fb;
	--njs-white: #ffffff;
	--njs-line: #dfe7f2;
	--njs-shadow: 0 18px 45px rgba(18, 39, 75, 0.13);
	color: var(--njs-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	background: var(--njs-white);
	overflow-x: clip;
}

body:has(.njs-site) {
	margin: 0;
	overflow-x: hidden;
}

body:has(.njs-site) .wp-site-blocks > header,
body:has(.njs-site) .wp-site-blocks > footer,
body:has(.njs-site) .wp-block-template-part,
body:has(.njs-site) .wp-block-post-title,
body:has(.njs-site) .entry-title,
body:has(.njs-site) .site-main > article > .entry-header,
body:has(.njs-site) main > article > .entry-header {
	display: none !important;
}

body:has(.njs-site) .wp-site-blocks,
body:has(.njs-site) main,
body:has(.njs-site) .site-main,
body:has(.njs-site) .entry-content,
body:has(.njs-site) .wp-block-post-content,
body:has(.njs-site) .wp-block-group,
body:has(.njs-site) .is-layout-constrained,
body:has(.njs-site) .has-global-padding {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body:has(.njs-site) .njs-site {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

body:has(.njs-site) .njs-card,
body:has(.njs-site) .njs-feature-card,
body:has(.njs-site) .njs-facility-card,
body:has(.njs-site) .njs-testimonial {
	padding: 26px !important;
}

body:has(.njs-site) .njs-facility-card {
	padding-top: 30px !important;
}

body.home.page .entry-title,
body.home.page .wp-block-post-title,
body.home.page .site-main > article > .entry-header,
body.home.page main > article > .entry-header {
	display: none;
}

.njs-site *,
.njs-site *::before,
.njs-site *::after {
	box-sizing: border-box;
}

.njs-site a {
	color: inherit;
	text-decoration: none;
}

.njs-site img {
	display: block;
	max-width: 100%;
}

.njs-container {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.njs-narrow {
	width: min(860px, calc(100% - 32px));
}

.njs-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	gap: 18px;
	align-items: center;
	min-height: 76px;
	padding: 12px max(20px, calc((100vw - 1160px) / 2));
	border-bottom: 1px solid rgba(223, 231, 242, 0.9);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	box-shadow: 0 8px 30px rgba(7, 53, 110, 0.08);
}

.njs-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.njs-brand__mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--njs-blue);
	color: var(--njs-white);
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0;
	box-shadow: 0 10px 24px rgba(11, 79, 159, 0.22);
}

.njs-brand__copy {
	display: grid;
	line-height: 1.05;
}

.njs-brand__copy strong {
	font-size: 1rem;
	color: var(--njs-blue-dark);
}

.njs-brand__copy span {
	color: var(--njs-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.njs-nav {
	display: flex;
	justify-content: center;
	gap: 4px;
}

.njs-nav a {
	border-radius: 999px;
	padding: 10px 12px;
	color: #31405a;
	font-size: 0.94rem;
	font-weight: 750;
	transition: background 0.2s ease, color 0.2s ease;
}

.njs-nav a:hover,
.njs-nav a.is-active {
	background: #e8f1ff;
	color: var(--njs-blue);
}

.njs-header__call,
.njs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 0;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 850;
	line-height: 1.1;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.njs-header__call,
.njs-btn--primary {
	background: var(--njs-gold);
	color: #172033;
	box-shadow: 0 12px 26px rgba(242, 183, 5, 0.28);
}

.njs-btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.68);
	background: rgba(255, 255, 255, 0.12);
	color: var(--njs-white);
	backdrop-filter: blur(8px);
}

.njs-header__call:hover,
.njs-btn:hover {
	transform: translateY(-2px);
}

.njs-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--njs-line);
	border-radius: 12px;
	background: var(--njs-white);
	padding: 10px;
	cursor: pointer;
}

.njs-menu-toggle span {
	display: block;
	height: 2px;
	margin: 5px 0;
	border-radius: 999px;
	background: var(--njs-blue-dark);
}

.njs-section {
	position: relative;
	padding: 92px 0;
	scroll-margin-top: 92px;
}

.njs-soft {
	background: var(--njs-soft);
}

.njs-hero {
	min-height: 760px;
	display: grid;
	align-items: center;
	padding: 120px 0 90px;
	color: var(--njs-white);
	overflow: hidden;
}

.njs-hero__image,
.njs-hero__shade {
	position: absolute;
	inset: 0;
}

.njs-hero__image {
	background-position: center;
	background-size: cover;
	transform: scale(1.02);
}

.njs-hero__shade {
	background:
		linear-gradient(90deg, rgba(7, 33, 68, 0.94), rgba(7, 53, 110, 0.75) 42%, rgba(20, 133, 79, 0.55)),
		linear-gradient(0deg, rgba(7, 33, 68, 0.28), rgba(7, 33, 68, 0.08));
}

.njs-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
	gap: 36px;
	align-items: end;
}

.njs-eyebrow {
	margin: 0 0 14px;
	color: var(--njs-green);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.njs-hero .njs-eyebrow {
	display: inline-flex;
	border-radius: 999px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff2bb;
}

.njs-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--njs-white);
	font-size: clamp(3rem, 8vw, 6.75rem);
	line-height: 0.95;
	letter-spacing: 0;
}

.njs-motto {
	margin: 22px 0 0;
	color: var(--njs-gold);
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 900;
}

.njs-hero__lead {
	max-width: 640px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.njs-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.njs-hero-card {
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 18px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.13);
	backdrop-filter: blur(16px);
	box-shadow: var(--njs-shadow);
}

.njs-hero-card h2 {
	margin: 0 0 18px;
	color: var(--njs-white);
	font-size: 1.15rem;
}

.njs-highlight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.njs-highlight-grid div {
	min-height: 110px;
	border-radius: 14px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--njs-ink);
}

.njs-highlight-grid strong,
.njs-highlight-grid span {
	display: block;
}

.njs-highlight-grid strong {
	color: var(--njs-blue-dark);
	font-size: 1.25rem;
	line-height: 1.1;
}

.njs-highlight-grid span {
	margin-top: 7px;
	color: var(--njs-muted);
	font-weight: 750;
}

.njs-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
	gap: 50px;
	align-items: center;
}

.njs-section-heading {
	max-width: 780px;
	margin-bottom: 34px;
}

.njs-section-heading.center {
	margin-inline: auto;
	text-align: center;
}

.njs-section-copy h2,
.njs-section-heading h2 {
	margin: 0;
	color: var(--njs-blue-dark);
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.06;
	letter-spacing: 0;
}

.njs-section-copy p,
.njs-section-heading p:not(.njs-eyebrow),
.njs-card p,
.njs-feature-card p,
.njs-facility-card p,
.njs-testimonial p {
	color: var(--njs-muted);
	font-size: 1rem;
}

.njs-section-copy p {
	margin: 18px 0 0;
}

.njs-image-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: var(--njs-shadow);
}

.njs-image-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.njs-image-card__badge {
	position: absolute;
	right: 18px;
	bottom: 18px;
	max-width: calc(100% - 36px);
	border-radius: 14px;
	padding: 14px 16px;
	background: var(--njs-white);
	box-shadow: 0 14px 28px rgba(22, 32, 51, 0.18);
}

.njs-image-card__badge strong,
.njs-image-card__badge span {
	display: block;
}

.njs-image-card__badge strong {
	color: var(--njs-blue);
}

.njs-card-grid {
	display: grid;
	gap: 18px;
}

.njs-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.njs-card-grid--six {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.njs-card,
.njs-feature-card,
.njs-facility-card,
.njs-profile-item,
.njs-testimonial,
.njs-contact-card,
.njs-contact-form {
	border: 1px solid var(--njs-line);
	border-radius: 18px;
	background: var(--njs-white);
	box-shadow: 0 12px 32px rgba(18, 39, 75, 0.07);
}

.njs-card,
.njs-feature-card,
.njs-facility-card,
.njs-testimonial {
	padding: 26px;
}

.njs-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	margin-bottom: 18px;
	background: #e8f1ff;
	color: var(--njs-blue);
	font-weight: 900;
}

.njs-card h3,
.njs-feature-card h3,
.njs-facility-card h3,
.njs-contact-card h3,
.njs-contact-form h3 {
	margin: 0 0 10px;
	color: var(--njs-blue-dark);
	font-size: 1.18rem;
	line-height: 1.25;
}

.njs-card p,
.njs-feature-card p,
.njs-facility-card p,
.njs-testimonial p {
	margin: 0;
}

.njs-card ul {
	margin: 0;
	padding-left: 20px;
}

.njs-card--blue {
	background: var(--njs-blue-dark);
	color: var(--njs-white);
}

.njs-card--blue h3,
.njs-card--blue li {
	color: var(--njs-white);
}

.njs-card--blue .njs-card__icon {
	background: var(--njs-gold);
	color: #172033;
}

.njs-profile-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.njs-profile-item {
	min-height: 132px;
	padding: 20px;
}

.njs-profile-item span,
.njs-profile-item strong {
	display: block;
}

.njs-profile-item span {
	margin-bottom: 10px;
	color: var(--njs-muted);
	font-size: 0.86rem;
	font-weight: 850;
	text-transform: uppercase;
}

.njs-profile-item strong {
	color: var(--njs-blue-dark);
	font-size: 1.06rem;
	line-height: 1.25;
}

.njs-feature-card span {
	display: block;
	width: 40px;
	height: 5px;
	border-radius: 999px;
	margin-bottom: 20px;
	background: linear-gradient(90deg, var(--njs-gold), var(--njs-green));
}

.njs-facility-card {
	position: relative;
	overflow: hidden;
}

.njs-facility-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--njs-blue);
}

.njs-admissions {
	background: var(--njs-blue-dark);
	color: var(--njs-white);
}

.njs-admissions .njs-section-copy h2,
.njs-admissions .njs-section-copy p {
	color: var(--njs-white);
}

.njs-admissions .njs-eyebrow {
	color: #ffe28a;
}

.njs-steps {
	display: grid;
	gap: 12px;
}

.njs-steps div {
	display: grid;
	grid-template-columns: 52px 1fr;
	align-items: center;
	gap: 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.1);
}

.njs-steps span {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--njs-gold);
	color: #172033;
	font-weight: 900;
}

.njs-steps p {
	margin: 0;
	color: var(--njs-white);
	font-weight: 850;
}

.njs-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.njs-gallery-card {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	margin: 0;
	border-radius: 18px;
	background: var(--njs-soft);
	box-shadow: var(--njs-shadow);
}

.njs-gallery-card img {
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
	filter: saturate(1.02) contrast(1.03);
	transition: transform 0.35s ease;
}

.njs-gallery-card:hover img {
	transform: scale(1.05);
}

.njs-gallery-card figcaption {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	border-radius: 12px;
	padding: 10px 12px;
	background: rgba(7, 53, 110, 0.88);
	color: var(--njs-white);
	font-weight: 850;
}

.njs-video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.njs-video-card {
	overflow: hidden;
	border: 1px solid var(--njs-line);
	border-radius: 18px;
	background: var(--njs-white);
	box-shadow: var(--njs-shadow);
}

.njs-video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #071f40;
}

.njs-video-frame iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.njs-video-card h3 {
	margin: 0;
	padding: 18px 20px 20px;
	color: var(--njs-blue-dark);
	font-size: 1.1rem;
	line-height: 1.25;
}

.njs-testimonial {
	margin: 0;
}

.njs-testimonial p {
	font-size: 1.04rem;
}

.njs-testimonial cite {
	display: block;
	margin-top: 18px;
	color: var(--njs-green);
	font-style: normal;
	font-weight: 900;
}

.njs-faq-list {
	display: grid;
	gap: 12px;
}

.njs-faq-item {
	border: 1px solid var(--njs-line);
	border-radius: 16px;
	background: var(--njs-white);
	overflow: hidden;
}

.njs-faq-item button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 20px;
	color: var(--njs-blue-dark);
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.njs-faq-item button span {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #e8f1ff;
	color: var(--njs-blue);
}

.njs-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.25s ease;
}

.njs-faq-answer p {
	overflow: hidden;
	margin: 0;
	padding: 0 20px;
	color: var(--njs-muted);
}

.njs-faq-item.is-open .njs-faq-answer {
	grid-template-rows: 1fr;
}

.njs-faq-item.is-open .njs-faq-answer p {
	padding-bottom: 20px;
}

.njs-contact {
	background: #fbfcff;
}

.njs-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
	gap: 22px;
	align-items: start;
}

.njs-contact-card,
.njs-contact-form {
	padding: 26px;
}

.njs-contact-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.njs-contact-card li {
	color: var(--njs-muted);
}

.njs-contact-card strong,
.njs-contact-card a {
	color: var(--njs-blue-dark);
}

.njs-map-placeholder {
	display: grid;
	place-items: center;
	min-height: 220px;
	margin-top: 22px;
	border: 1px dashed #9bb4d5;
	border-radius: 16px;
	padding: 22px;
	background: linear-gradient(135deg, #e8f1ff, #eef9f3);
	color: var(--njs-blue-dark);
	font-weight: 900;
	text-align: center;
}

.njs-map-embed {
	overflow: hidden;
	margin-top: 22px;
	border: 1px solid var(--njs-line);
	border-radius: 16px;
	background: var(--njs-soft);
}

.njs-map-embed iframe {
	display: block;
	width: 100%;
	min-height: 320px;
	border: 0;
}

.njs-map-embed .njs-map-placeholder {
	margin-top: 0;
	border: 0;
	border-radius: 0;
}

.njs-map-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 14px;
	border-radius: 999px;
	padding: 10px 16px;
	background: #e8f1ff;
	color: var(--njs-blue-dark);
	font-weight: 900;
}

.njs-contact-form {
	display: grid;
	gap: 14px;
}

.njs-contact-form label {
	display: grid;
	gap: 7px;
	color: var(--njs-blue-dark);
	font-weight: 850;
}

.njs-contact-form input,
.njs-contact-form select,
.njs-contact-form textarea {
	width: 100%;
	border: 1px solid var(--njs-line);
	border-radius: 12px;
	background: var(--njs-white);
	padding: 13px 14px;
	color: var(--njs-ink);
	font: inherit;
}

.njs-contact-form input:focus,
.njs-contact-form select:focus,
.njs-contact-form textarea:focus {
	outline: 3px solid rgba(11, 79, 159, 0.16);
	border-color: var(--njs-blue);
}

.njs-form-success {
	min-height: 24px;
	margin: 0;
	color: var(--njs-green);
	font-weight: 900;
}

.njs-footer {
	background: #071f40;
	color: rgba(255, 255, 255, 0.84);
}

.njs-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 28px;
	padding: 54px 0;
}

.njs-footer h2,
.njs-footer h3 {
	margin: 0 0 12px;
	color: var(--njs-white);
}

.njs-footer p {
	margin: 0;
}

.njs-footer a {
	display: block;
	margin: 8px 0;
	color: rgba(255, 255, 255, 0.84);
}

.njs-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 18px;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.94rem;
}

.njs-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.njs-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	.njs-header {
		grid-template-columns: auto 1fr auto;
	}

	.njs-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 16px;
		right: 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		border: 1px solid var(--njs-line);
		border-radius: 18px;
		padding: 12px;
		background: var(--njs-white);
		box-shadow: var(--njs-shadow);
	}

	.njs-nav.is-open {
		display: flex;
	}

	.njs-nav a {
		border-radius: 12px;
	}

	.njs-menu-toggle {
		display: block;
	}

	.njs-hero__grid,
	.njs-split,
	.njs-contact-grid {
		grid-template-columns: 1fr;
	}

	.njs-hero {
		min-height: auto;
	}

	.njs-card-grid--three,
	.njs-card-grid--six,
	.njs-profile-grid,
	.njs-gallery-grid,
	.njs-video-grid,
	.njs-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.njs-header {
		min-height: 68px;
		padding: 10px 16px;
	}

	.njs-brand__mark {
		width: 44px;
		height: 44px;
	}

	.njs-brand__copy strong {
		font-size: 0.92rem;
	}

	.njs-brand__copy span {
		font-size: 0.82rem;
	}

	.njs-header__call {
		display: none;
	}

	.njs-section {
		padding: 68px 0;
		scroll-margin-top: 78px;
	}

	.njs-hero {
		padding: 96px 0 68px;
	}

	.njs-hero__grid {
		gap: 26px;
	}

	.njs-actions,
	.njs-btn {
		width: 100%;
	}

	.njs-highlight-grid,
	.njs-card-grid--three,
	.njs-card-grid--six,
	.njs-profile-grid,
	.njs-gallery-grid,
	.njs-video-grid,
	.njs-footer__grid {
		grid-template-columns: 1fr;
	}

	.njs-profile-item,
	.njs-gallery-card,
	.njs-gallery-card img {
		min-height: 210px;
	}

	.njs-steps div {
		grid-template-columns: 44px 1fr;
	}

	.njs-steps span {
		width: 44px;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.njs-site *,
	.njs-site *::before,
	.njs-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
	}

	.njs-reveal {
		opacity: 1;
		transform: none;
	}
}
