:root {
	--ink: #13202a;
	--muted: #65717c;
	--white: #ffffff;
	--teal: #0069b4;
	--copper: #8e949b;
	--logo-blue: #0057a8;
	--logo-blue-dark: #061f63;
	--steel: #9aa0a6;
	--color-theme-color: #0069b4;
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

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

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

.section {
	padding: 105px 0;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 42px;
}

.section-title {
	width: min(720px, 100%);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--teal);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 13px;
}

.eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--copper);
}

.products {
	overflow: hidden;
	background: #071521;
	color: var(--white);
}

.products h2 {
	margin: 0;
	color: var(--white);
	font-family: "Fira Sans", Barlow, Arial, sans-serif;
	font-size: clamp(34px, 4.4vw, 64px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.products .lead {
	color: rgba(255, 255, 255, 0.74);
	font-size: 17px;
	margin: 0;
}

.product-track {
	display: flex;
	gap: 22px;
	width: max-content;
	animation: productMarquee 34s linear infinite;
}

.product-slider:hover .product-track {
	animation-play-state: paused;
}

.product-card {
	width: 310px;
	flex: 0 0 310px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	transition: transform 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 105, 180, 0.9);
}

.product-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.product-card div {
	padding: 22px;
}

.product-card h3 {
	margin: 0;
	color: var(--white);
	font-family: Barlow, Arial, sans-serif;
	font-size: 24px;
	line-height: 1.05;
}

.product-card p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes productMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 11px));
	}
}

@media (max-width: 820px) {
	.section {
		padding: 78px 0;
	}

	.section-head {
		display: grid;
		grid-template-columns: 1fr;
	}

	.product-card {
		width: 282px;
		flex-basis: 282px;
	}
}



.footer {
	background: #06111a;
	color: rgba(255, 255, 255, 0.75);
	font-family: "Fira Sans", Barlow, Arial, sans-serif;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.95fr 0.95fr;
	gap: 32px;
	padding: 70px 0 48px;
}

.footer h3 {
	color: var(--white);
	font-family: "Fira Sans", Barlow, Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 18px;
}

.footer p,
.footer li {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.8;
}

.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer a:hover {
	color: var(--white);
}

.footer-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 24px;
}

.footer-brand img {
	width: 116px;
	height: auto;
	object-fit: contain;
	background: #fff;
	padding: 8px;
	border-radius: 4px;
}

.footer-brand strong {
	color: var(--white);
	font-family: Barlow, Arial, sans-serif;
	font-size: 20px;
	line-height: 1.1;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
	line-height: 1.6;
	flex-wrap: wrap;
}

:root {
	--color-theme-color: #0069b4;
}

.bg-theme-color,
.hover\:bg-theme-color:hover {
	background-color: var(--logo-blue) !important;
}

.text-theme-color,
.hover\:text-theme-color:hover {
	color: var(--logo-blue) !important;
}

.border-theme-color,
.hover\:border-theme-color:hover {
	border-color: var(--logo-blue) !important;
}

.elementor-element-9ca5b83 {
	position: relative;
	background-color: #06111a;
	background-image: linear-gradient(90deg, rgba(2, 10, 16, 0.9), rgba(2, 10, 16, 0.58)), url("img/industry.jpg");
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.elementor-element-9ca5b83::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(2, 10, 16, 0.9), rgba(2, 10, 16, 0.58));
	pointer-events: none;
}

.hero-background-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.elementor-element-9ca5b83 .elementor-background-video-container,
.elementor-element-9ca5b83 .elementor-background-video-embed,
.elementor-element-9ca5b83 iframe {
	display: none !important;
	pointer-events: none !important;
}

.elementor-element-9ca5b83 iframe {
	border: 0 !important;
}

.elementor-element-9ca5b83 .e-con-inner {
	position: relative;
	z-index: 2;
}

.menu-right-content h5 {
	white-space: nowrap;
	font-size: 15px;
	line-height: 1.35;
}

.menu-right-content .te-btn,
.menu-right-content a.bg-theme-color {
	white-space: nowrap;
	padding-left: 24px;
	padding-right: 24px;
}

@media (max-width: 1360px) {
	.menu-right-content h5 {
		display: none;
	}
}

@media (max-width: 1080px) {

	.footer-top {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {

	.footer-top {
		grid-template-columns: 1fr;
	}
}



/* /////////////////////// product pages css  */



/* ═══════════════════════════════════════════
   ROOT VARS — scoped with nma- prefix to
   prevent overlap with home page CSS
═══════════════════════════════════════════ */
:root {
	--nma-ink: #0d1a22;
	--nma-white: #ffffff;
	--nma-blue: #0057a8;
	--nma-blue-dark: #061f63;
	--nma-blue-light: #0069b4;
	--nma-steel: #9aa0a6;
	--nma-muted: #65717c;
	--nma-bg-dark: #06111a;
	--nma-bg-mid: #071521;
	--nma-accent: #d4870b;
	--nma-radius: 8px;
	--nma-radius-lg: 16px;
	--nma-font-head: "Fira Sans", Barlow, Arial, sans-serif;
	--nma-font-body: Barlow, "Fira Sans", Arial, sans-serif;
	--nma-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ RESET scoped to product page ═══ */
.nma-page * {
	box-sizing: border-box;
}

.nma-page {
	font-family: var(--nma-font-body);
	color: white;
	line-height: 1.65;
	background: #fff;
}

.nma-page img {
	display: block;
	max-width: 100%;
}

.nma-page a {
	text-decoration: none;
	color: inherit;
}

.nma-page h1,
.nma-page h2,
.nma-page h3,
.nma-page h4,
.nma-page h5,
.nma-page h6 {
	font-family: var(--nma-font-head);
	line-height: 1.15;
	margin: 0;
}

/* ═══ UTILITY ═══ */
.nma-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.nma-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--nma-blue-light);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 14px;
}

.nma-eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: var(--nma-steel);
}

.nma-section {
	padding: 80px 0;
}

.nma-section-title {
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 800;
	color: var(--nma-ink);
}

.nma-section-title span {
	color: var(--nma-blue-light);
}

/* ═══════════════════════════════════════
   NAVBAR — cloned from home page structure
═══════════════════════════════════════ */
.nma-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: rgba(6, 17, 26, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nma-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
}

.nma-logo img {
	height: 87px;
	width: auto;
	background: #fff;
	padding: 6px 10px;
	border-radius: 4px;
}

.nma-nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 6px;
}

.nma-nav-menu>li {
	position: relative;
}

.nma-nav-link {
	display: block;
	padding: 8px 14px;
	color: rgba(255, 255, 255, 0.82);
	font-family: var(--nma-font-head);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	border-radius: 4px;
	transition: color var(--nma-transition), background var(--nma-transition);
}

.nma-nav-link:hover,
.nma-nav-link.active {
	color: #fff;
	background: rgba(0, 105, 180, 0.3);
}

.nma-nav-link.active {
	color: var(--nma-blue-light);
}

.nma-nav-submenu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #06111a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	min-width: 200px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	z-index: 100;
}

.nma-nav-submenu li {
	list-style: none;
}

.nma-nav-submenu li::marker {
	content: "";
}

.nma-nav-menu>li:hover .nma-nav-submenu {
	display: block;
	animation: nmaFadeDown .2s ease;
}

.nma-nav-submenu a {
	display: block;
	padding: 9px 18px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13.5px;
	font-weight: 500;
	transition: color var(--nma-transition), background var(--nma-transition);
}

.nma-nav-submenu a:hover {
	color: #fff;
	background: rgba(0, 105, 180, 0.25);
}

.nma-has-children>.nma-nav-link::after {
	content: "›";
	margin-left: 5px;
	font-size: 16px;
}

.nma-nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--nma-blue);
	color: #fff !important;
	border-radius: 50px;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	transition: background var(--nma-transition);
}

.nma-nav-cta:hover {
	background: var(--nma-blue-dark) !important;
}

.nma-nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nma-nav-phone {
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	white-space: nowrap;
}

.nma-nav-phone a {
	color: rgba(255, 255, 255, 0.65);
}

.nma-nav-phone a:hover {
	color: var(--nma-blue-light);
}

/* hamburger */
.nma-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
}

.nma-hamburger span {
	width: 26px;
	height: 2px;
	background: var(--nma-blue-light);
	border-radius: 2px;
	transition: var(--nma-transition);
}

/* mobile drawer */
.nma-mobile-drawer {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
}

.nma-mobile-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.nma-mobile-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	background: #06111a;
	padding: 24px;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.nma-mobile-drawer.nma-open {
	display: block;
}

.nma-mobile-drawer.nma-open .nma-mobile-panel {
	transform: translateX(0);
}

.nma-mobile-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	float: right;
}

.nma-mobile-nav-list {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}

.nma-mobile-nav-list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nma-mobile-nav-list a {
	display: block;
	padding: 14px 0;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.nma-mobile-nav-list a:hover {
	color: var(--nma-blue-light);
}

/* ═══════════════════════════════════════
   BREADCRUMB HERO BANNER
═══════════════════════════════════════ */
.nma-breadcrumb-hero {
	position: relative;
	min-height: 260px;
	display: flex;
	align-items: center;
	background: linear-gradient(105deg, rgba(6, 17, 26, .92) 55%, rgba(0, 87, 168, 0.55) 100%),
		url('https://images.unsplash.com/photo-1567789884554-0b844b597180?w=1400&q=80') center/cover no-repeat;
	overflow: hidden;
}

.nma-breadcrumb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(90deg,
			transparent, transparent 80px,
			rgba(255, 255, 255, 0.015) 80px, rgba(255, 255, 255, 0.015) 81px);
}

.nma-breadcrumb-content {
	position: relative;
	z-index: 2;
	padding: 50px 0;
}

.nma-breadcrumb-trail {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.nma-breadcrumb-trail li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nma-breadcrumb-trail li::after {
	content: "›";
	color: rgba(255, 255, 255, 0.4);
	font-size: 16px;
}

.nma-breadcrumb-trail li:last-child::after {
	display: none;
}

.nma-breadcrumb-trail a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	transition: color var(--nma-transition);
}

.nma-breadcrumb-trail a:hover {
	color: var(--nma-blue-light);
}

.nma-breadcrumb-trail li:last-child span {
	color: var(--nma-blue-light);
	font-size: 13px;
	font-weight: 600;
}

.nma-breadcrumb-hero h1 {
	font-size: clamp(30px, 4.5vw, 54px);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	max-width: 720px;
}

.nma-breadcrumb-hero h1 span {
	color: var(--nma-blue-light);
}

/* ═══════════════════════════════════════
   MAIN LAYOUT: sidebar + content
═══════════════════════════════════════ */
.nma-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 40px;
	align-items: start;
	padding: 60px 0;
}

/* ═══ SIDEBAR ═══ */
.nma-sidebar {
	position: sticky;
	top: 100px;
}

.nma-sidebar-card {
	background: #f4f7fb;
	border: 1px solid #e2eaf4;
	border-radius: var(--nma-radius-lg);
	overflow: hidden;
	margin-bottom: 20px;
}

.nma-sidebar-head {
	background: var(--nma-bg-dark);
	color: #fff;
	padding: 16px 20px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.nma-sidebar-head .nma-sidebar-icon {
	margin-right: 8px;
}

/* toggle accordion */
.nma-toggle-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nma-toggle-item:last-child {
	border-bottom: none;
}

.nma-toggle-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--nma-font-head);
	font-size: 14px;
	font-weight: 600;
	color: var(--nma-ink);
	text-align: left;
	transition: background var(--nma-transition);
}

.nma-toggle-btn:hover {
	background: rgba(0, 87, 168, 0.06);
}

.nma-toggle-btn.active {
	color: var(--nma-blue);
}

.nma-toggle-icon {
	width: 18px;
	height: 18px;
	transition: transform .3s ease;
	flex-shrink: 0;
}

.nma-toggle-btn.active .nma-toggle-icon {
	transform: rotate(45deg);
}

.nma-toggle-body {
	display: none;
	padding: 0 20px 14px;
}

.nma-toggle-body.open {
	display: block;
	animation: nmaFadeDown .2s ease;
}

.nma-toggle-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nma-toggle-body ul li {
	padding: 5px 0;
}

.nma-toggle-body ul li a {
	font-size: 13px;
	color: var(--nma-muted);
	display: flex;
	align-items: center;
	gap: 7px;
	transition: color var(--nma-transition);
}

.nma-toggle-body ul li a::before {
	content: "→";
	color: var(--nma-blue);
	font-size: 11px;
}

.nma-toggle-body ul li a:hover {
	color: var(--nma-blue);
}

.nma-toggle-body ul li a.active {
	color: var(--nma-blue);
	font-weight: 700;
}

/* sidebar links */
.nma-sidebar-links {
	list-style: none;
	margin: 0;
	padding: 12px 0;
}

.nma-sidebar-links li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--nma-ink);
	transition: color var(--nma-transition), background var(--nma-transition);
	border-left: 3px solid transparent;
}

.nma-sidebar-links li a:hover {
	color: var(--nma-blue);
	background: rgba(0, 87, 168, 0.05);
	border-left-color: var(--nma-blue);
}

.nma-sidebar-links li a.active {
	color: var(--nma-blue);
	background: rgba(0, 87, 168, 0.07);
	border-left-color: var(--nma-blue);
	font-weight: 700;
}

/* inquiry card */
.nma-inquiry-card {
	background: linear-gradient(135deg, var(--nma-blue-dark), var(--nma-blue));
	border-radius: var(--nma-radius-lg);
	padding: 24px;
	color: #fff;
	text-align: center;
}

.nma-inquiry-card h4 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
}

.nma-inquiry-card p {
	font-size: 13px;
	opacity: .85;
	margin-bottom: 18px;
}

.nma-inquiry-btn {
	display: block;
	background: #fff;
	color: var(--nma-blue);
	border-radius: 50px;
	padding: 12px 20px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .03em;
	transition: all var(--nma-transition);
}

.nma-inquiry-btn:hover {
	background: var(--nma-accent);
	color: #fff;
}

/* ═══════════════════════════════════════
   PRODUCT INTRO SECTION
═══════════════════════════════════════ */
.nma-product-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 56px;
}

.nma-product-img-wrap {
	position: relative;
	border-radius: var(--nma-radius-lg);
	overflow: hidden;
}

.nma-product-img-wrap img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	transition: transform .6s ease;
}

.nma-product-img-wrap:hover img {
	transform: scale(1.04);
}

.nma-product-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--nma-blue);
	color: #fff;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.nma-product-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 24px;
}

.nma-highlight-card {
	background: #f4f7fb;
	border: 1px solid #e2eaf4;
	border-radius: 10px;
	padding: 18px;
	transition: border-color var(--nma-transition), transform var(--nma-transition);
}

.nma-highlight-card:hover {
	border-color: var(--nma-blue);
	transform: translateY(-3px);
}

.nma-highlight-icon {
	font-size: 22px;
	margin-bottom: 8px;
}

.nma-highlight-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--nma-muted);
	margin-bottom: 4px;
}

.nma-highlight-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--nma-ink);
}

.nma-product-desc {
	font-size: 15.5px;
	color: #3a4550;
	line-height: 1.75;
}

.nma-product-desc p {
	margin: 0 0 14px;
}

/* ═══════════════════════════════════════
   SPECIFICATIONS SECTION
═══════════════════════════════════════ */
.nma-specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.nma-spec-card {
	background: #fff;
	border: 1px solid #e2eaf4;
	border-radius: 12px;
	padding: 22px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: border-color var(--nma-transition), box-shadow var(--nma-transition), transform var(--nma-transition);
	position: relative;
	overflow: hidden;
}

.nma-spec-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--nma-blue);
	transition: height .4s ease;
}

.nma-spec-card:hover {
	border-color: var(--nma-blue);
	box-shadow: 0 8px 32px rgba(0, 87, 168, 0.1);
	transform: translateY(-4px);
}

.nma-spec-card:hover::before {
	height: 100%;
}

.nma-spec-icon {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: rgba(0, 87, 168, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 22px;
}

.nma-spec-info {}

.nma-spec-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--nma-muted);
	margin-bottom: 5px;
}

.nma-spec-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--nma-ink);
	line-height: 1.5;
}

/* ═══════════════════════════════════════
   TABLES (Size chart, Dimensions)
═══════════════════════════════════════ */
.nma-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid #e2eaf4;
	margin-top: 28px;
}

.nma-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.nma-table thead tr {
	background: var(--nma-bg-dark);
}

.nma-table thead th {
	padding: 14px 18px;
	color: #fff;
	font-family: var(--nma-font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	white-space: nowrap;
	text-align: left;
}

.nma-table tbody tr {
	border-bottom: 1px solid #edf0f4;
	transition: background var(--nma-transition);
}

.nma-table tbody tr:last-child {
	border-bottom: none;
}

.nma-table tbody tr:hover {
	background: #f0f6ff;
}

.nma-table tbody td {
	padding: 12px 18px;
	color: #2d3b48;
	font-size: 13.5px;
	white-space: nowrap;
}

.nma-table tbody td:first-child {
	font-weight: 600;
	color: var(--nma-blue);
}

/* ═══════════════════════════════════════
   COMPOSITION / PROPERTY SECTIONS
═══════════════════════════════════════ */
.nma-composition-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.nma-element-card {
	background: linear-gradient(135deg, #f0f6ff 0%, #fff 100%);
	border: 1px solid #d4e4f7;
	border-radius: 12px;
	padding: 20px 14px;
	text-align: center;
	transition: border-color var(--nma-transition), transform var(--nma-transition), box-shadow var(--nma-transition);
}

.nma-element-card:hover {
	border-color: var(--nma-blue);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 87, 168, 0.12);
}

.nma-element-symbol {
	font-size: 28px;
	font-weight: 800;
	color: var(--nma-blue);
	font-family: var(--nma-font-head);
	line-height: 1;
}

.nma-element-name {
	font-size: 11px;
	color: var(--nma-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin: 4px 0;
}

.nma-element-pct {
	font-size: 15px;
	font-weight: 700;
	color: var(--nma-ink);
}

/* properties bar charts */
.nma-property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.nma-property-item {
	background: #fff;
	border: 1px solid #e2eaf4;
	border-radius: 12px;
	padding: 22px;
	transition: border-color var(--nma-transition), transform var(--nma-transition);
}

.nma-property-item:hover {
	border-color: var(--nma-blue);
	transform: translateY(-3px);
}

.nma-property-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.nma-property-icon {
	font-size: 24px;
}

.nma-property-name {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--nma-muted);
}

.nma-property-val {
	font-size: 22px;
	font-weight: 800;
	color: var(--nma-ink);
}

.nma-property-unit {
	font-size: 12px;
	color: var(--nma-muted);
	font-weight: 500;
}

.nma-property-bar {
	height: 6px;
	background: #e2eaf4;
	border-radius: 6px;
	overflow: hidden;
}

.nma-property-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--nma-blue-light), var(--nma-blue));
	border-radius: 6px;
	width: 0;
	transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.nma-property-item.nma-visible .nma-property-bar-fill {
	width: var(--nma-fill);
}

/* physical properties grid */
.nma-physical-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.nma-physical-card {
	background: #071521;
	color: #fff;
	border-radius: 12px;
	padding: 24px 18px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color var(--nma-transition), transform var(--nma-transition);
	position: relative;
	overflow: hidden;
}

.nma-physical-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--nma-blue-light), var(--nma-blue));
	transform: scaleX(0);
	transition: transform var(--nma-transition);
}

.nma-physical-card:hover {
	border-color: rgba(0, 105, 180, 0.5);
	transform: translateY(-4px);
}

.nma-physical-card:hover::after {
	transform: scaleX(1);
}

.nma-physical-icon {
	font-size: 26px;
	margin-bottom: 10px;
}

.nma-physical-name {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 8px;
}

.nma-physical-val {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}

.nma-physical-unit {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 3px;
}

/* ═══════════════════════════════════════
   PRODUCT TYPE IMAGES
═══════════════════════════════════════ */
.nma-types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 22px;
	margin-top: 32px;
}

.nma-type-card {
	border-radius: var(--nma-radius-lg);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	group: true;
	border: 2px solid transparent;
	transition: border-color var(--nma-transition), transform var(--nma-transition);
}

.nma-type-card:hover {
	border-color: var(--nma-blue);
	transform: translateY(-5px);
}

.nma-type-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform .5s ease;
	background: linear-gradient(135deg, #1a2a38, #0a1a2a);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nma-type-card:hover .nma-type-img {
	transform: scale(1.06);
}

.nma-type-img-wrap {
	overflow: hidden;
	height: 200px;
}

.nma-type-img-wrap img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform .5s ease;
}

.nma-type-card:hover .nma-type-img-wrap img {
	transform: scale(1.06);
}

.nma-type-label {
	background: var(--nma-bg-dark);
	color: #fff;
	padding: 14px 18px;
	font-family: var(--nma-font-head);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	border-top: 2px solid var(--nma-blue);
}

.nma-type-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(0, 87, 168, 0.85);
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
}

/* SVG placeholders for product types */
.nma-type-svg {
	width: 100%;
	height: 200px;
	display: none;
}

/* ═══════════════════════════════════════
   INDUSTRIES WE SERVE
═══════════════════════════════════════ */
.nma-industries {
	background: var(--nma-bg-mid);
	padding: 80px 0;
}

.nma-industries .nma-section-title {
	color: #fff;
}

.nma-industries .nma-eyebrow {
	color: rgba(255, 255, 255, 0.65);
}

.nma-industries .nma-eyebrow::before {
	background: rgba(255, 255, 255, 0.3);
}

.nma-industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 36px;
}

.nma-industry-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--nma-radius-lg);
	padding: 30px 20px;
	text-align: center;
	transition: background var(--nma-transition), border-color var(--nma-transition), transform var(--nma-transition);
	cursor: default;
}

.nma-industry-card:hover {
	background: rgba(0, 105, 180, 0.18);
	border-color: rgba(0, 105, 180, 0.6);
	transform: translateY(-6px);
}

.nma-industry-icon {
	font-size: 38px;
	margin-bottom: 14px;
	display: block;
}

.nma-industry-name {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	font-family: var(--nma-font-head);
}

.nma-industry-desc {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 6px;
	line-height: 1.55;
}

/* ═══════════════════════════════════════
   FOOTER — cloned from home page
═══════════════════════════════════════ */
.nma-footer {
	background: #06111a;
	color: rgba(255, 255, 255, 0.75);
	font-family: var(--nma-font-head);
}

.nma-footer-top {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.95fr 0.95fr;
	gap: 32px;
	padding: 70px 0 48px;
}

.nma-footer h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 18px;
}

.nma-footer p,
.nma-footer li {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.8;
}

.nma-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nma-footer a {
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--nma-transition);
}

.nma-footer a:hover {
	color: #fff;
}

.nma-footer-brand {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

.nma-footer-brand img {
	width: 116px;
	height: auto;
	background: #fff;
	padding: 8px;
	border-radius: 4px;
}

.nma-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
	flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
@keyframes nmaFadeDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nmaFadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nmaSlideLeft {
	from {
		opacity: 0;
		transform: translateX(-24px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.nma-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

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

.nma-reveal-left {
	opacity: 0;
	transform: translateX(-28px);
	transition: opacity .7s ease, transform .7s ease;
}

.nma-reveal-left.nma-visible {
	opacity: 1;
	transform: translateX(0);
}

/* ═══════════════════════════════════════
   SECTION BG ALTERNATING
═══════════════════════════════════════ */
.nma-bg-alt {
	background: #f8fafc;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:1100px) {
	.nma-layout {
		grid-template-columns: 240px 1fr;
		gap: 28px;
	}
}

@media (max-width:900px) {
	.nma-layout {
		grid-template-columns: 1fr;
	}

	.nma-sidebar {
		position: static;
	}

	.nma-product-intro {
		grid-template-columns: 1fr;
	}

	.nma-footer-top {
		grid-template-columns: repeat(2, 1fr);
	}

	.nma-nav-menu,
	.nma-nav-phone {
		display: none;
	}

	.nma-hamburger {
		display: flex;
	}

	.nma-faq-head {
		align-items: stretch;
		flex-direction: column;
	}

	.nma-whatsapp-cta {
		width: 100%;
	}

	.nma-faq-layout {
		grid-template-columns: 1fr;
	}

	.nma-faq-side {
		position: static;
	}
}

@media (max-width:640px) {
	.nma-breadcrumb-hero {
		min-height: 200px;
	}

	.nma-breadcrumb-hero h1 {
		font-size: clamp(24px, 7vw, 36px);
	}

	.nma-product-highlights {
		grid-template-columns: 1fr 1fr;
	}

	.nma-footer-top {
		grid-template-columns: 1fr;
	}

	.nma-industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nma-types-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nma-physical-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nma-faq-section {
		padding: 32px 18px;
		border-radius: 12px;
	}

	.nma-faq-item summary {
		font-size: 15px;
		padding: 16px 50px 16px 16px;
	}

	.nma-faq-item p {
		padding: 0 16px 16px;
	}
}

@media (max-width:400px) {
	.nma-product-highlights {
		grid-template-columns: 1fr;
	}

	.nma-types-grid {
		grid-template-columns: 1fr;
	}
}

/* Nickel Alloy 200 page refinements */
.nma-page {
	overflow-x: hidden;
}

.nma-page main,
.nma-main-content,
.nma-table-wrap {
	min-width: 0;
}

.nma-has-children::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

.nma-nav-submenu {
	display: block;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nma-nav-menu>li:hover .nma-nav-submenu,
.nma-nav-menu>li:focus-within .nma-nav-submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.nma-product-intro {
	align-items: stretch;
}

.nma-product-img-wrap {
	height: 100%;
	min-height: 392px;
}

.nma-product-img-wrap img {
	height: 100%;
	min-height: 392px;
	object-position: center;
}

.nma-property-svg {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	color: var(--nma-blue);
}

.nma-line-icon,
.nma-highlight-svg,
.nma-physical-svg,
.nma-industry-svg {
	width: 34px;
	height: 34px;
	display: block;
	color: var(--nma-blue);
}

.nma-highlight-svg {
	width: 30px;
	height: 30px;
}

.nma-highlight-icon,
.nma-physical-icon,
.nma-industry-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--nma-blue);
}

.nma-industry-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #e6f2fc;
	border: 1px solid #c5ddf1;
}

.nma-inquiry-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 48px;
	background: #fff !important;
	color: var(--nma-blue) !important;
	font-size: 14px !important;
	font-weight: 800;
}

.nma-inquiry-btn svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.nma-spec-icon {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: #eaf2f9;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--nma-blue);
}

.nma-spec-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.nma-physical-card {
	background: linear-gradient(145deg, #eef6ff 0%, #dbeaf8 100%);
	color: var(--nma-ink);
	border-color: #c8dced;
	box-shadow: 0 10px 28px rgba(5, 30, 48, 0.07);
}

.nma-physical-card:hover {
	border-color: rgba(0, 105, 180, 0.45);
	background: linear-gradient(145deg, #f7fbff 0%, #d8ebfb 100%);
}

.nma-physical-name {
	color: #627383;
}

.nma-physical-val {
	color: var(--nma-ink);
}

.nma-physical-unit {
	color: #65717c;
}

/* FAQ section */
.nma-faq-section {
	margin-top: 48px;
	padding: 42px 32px;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
	border: 1px solid #d8e7f5;
	box-shadow: 0 18px 50px rgba(6, 17, 26, 0.08);
}

.nma-faq-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.nma-faq-head p {
	max-width: 650px;
	margin: 8px 0 0;
	color: var(--nma-muted);
	font-size: 15px;
	line-height: 1.7;
}

.nma-whatsapp-cta {
	display: inline-grid;
	grid-template-columns: 34px auto;
	align-items: center;
	column-gap: 10px;
	min-width: 210px;
	padding: 12px 16px;
	border-radius: 12px;
	background: #0aa84f;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(10, 168, 79, 0.25);
	transition: transform var(--nma-transition), box-shadow var(--nma-transition);
}

.nma-whatsapp-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(10, 168, 79, 0.32);
}

.nma-whatsapp-cta span {
	grid-row: span 2;
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.nma-whatsapp-cta svg {
	width: 23px;
	height: 23px;
}

.nma-whatsapp-cta strong {
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.nma-whatsapp-cta em {
	font-style: normal;
	font-size: 13px;
	opacity: .9;
	line-height: 1.1;
}

.nma-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 22px;
	align-items: start;
}

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

.nma-faq-item {
	background: #fff;
	border: 1px solid #dbe8f5;
	border-radius: 12px;
	overflow: hidden;
	transition: border-color var(--nma-transition), box-shadow var(--nma-transition), transform var(--nma-transition);
}

.nma-faq-item[open],
.nma-faq-item:hover {
	border-color: rgba(0, 105, 180, 0.45);
	box-shadow: 0 14px 34px rgba(0, 87, 168, 0.1);
}

.nma-faq-item summary {
	position: relative;
	cursor: pointer;
	list-style: none;
	padding: 18px 54px 18px 20px;
	font-family: var(--nma-font-head);
	font-size: 16px;
	font-weight: 700;
	color: var(--nma-ink);
}

.nma-faq-item summary::-webkit-details-marker {
	display: none;
}

.nma-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 28px;
	height: 28px;
	transform: translateY(-50%);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e8f3fc;
	color: var(--nma-blue);
	font-size: 21px;
	font-weight: 600;
	transition: background var(--nma-transition), color var(--nma-transition);
}

.nma-faq-item[open] summary::after {
	content: "-";
	background: var(--nma-blue);
	color: #fff;
}

.nma-faq-item p {
	margin: 0;
	padding: 0 20px 18px;
	color: #3f4d5a;
	font-size: 14.5px;
	line-height: 1.75;
}

.nma-faq-side {
	position: sticky;
	top: 112px;
	padding: 24px;
	border-radius: 16px;
	background: #06111a;
	color: #fff;
	border-top: 4px solid var(--nma-accent);
}

.nma-faq-side-kicker {
	color: var(--nma-blue-light);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 10px;
}

.nma-faq-side h4 {
	font-size: 20px;
	margin: 0 0 10px;
}

.nma-faq-side p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0 0 16px;
}

.nma-faq-side ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.nma-faq-side li {
	position: relative;
	padding-left: 22px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 13.5px;
}

.nma-faq-side li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--nma-accent);
	box-shadow: 0 0 0 4px rgba(212, 135, 11, 0.18);
}

.nma-faq-side a {
	display: block;
	text-align: center;
	padding: 12px 14px;
	border-radius: 999px;
	background: #0aa84f;
	color: #fff !important;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

@media (max-width:900px) {
	.nma-faq-head {
		align-items: stretch;
		flex-direction: column;
	}

	.nma-whatsapp-cta {
		width: 100%;
	}

	.nma-faq-layout {
		grid-template-columns: 1fr;
	}

	.nma-faq-side {
		position: static;
	}
}

@media (max-width:640px) {
	.nma-faq-section {
		padding: 32px 18px;
		border-radius: 12px;
	}

	.nma-faq-item summary {
		font-size: 15px;
		padding: 16px 50px 16px 16px;
	}

	.nma-faq-item p {
		padding: 0 16px 16px;
	}
}

.nma-industries {
	background: linear-gradient(180deg, #eef5fb 0%, #dfeaf3 100%);
}

.nma-industries .nma-section-title,
.nma-industries #nma-h2-industries,
.nma-industries .nma-industry-name {
	color: var(--nma-ink) !important;
}

.nma-industries .nma-eyebrow {
	color: var(--nma-blue-light);
}

.nma-industries .nma-eyebrow::before {
	background: var(--nma-steel);
}

.nma-industries p.nma-reveal {
	color: #63717d !important;
}

.nma-industry-card {
	background: rgba(255, 255, 255, 0.78);
	border-color: #c8dced;
	box-shadow: 0 12px 30px rgba(5, 30, 48, 0.08);
}

.nma-industry-card:hover {
	background: #ffffff;
	border-color: rgba(0, 105, 180, 0.45);
}

.nma-industry-desc {
	color: #65717c;
}

/* Materials overview page */
.materials-page {
	background: #f3f7fb;
	color: var(--nma-ink);
}

.materials-page .nma-header,
.nma-materials-nav .nma-header {
	background: #071521;
}

.materials-page .nma-nav-link,
.nma-materials-nav .nma-nav-link {
	color: #f7fbff !important;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.materials-page .nma-nav-link:hover,
.materials-page .nma-nav-link.active,
.nma-materials-nav .nma-nav-link:hover,
.nma-materials-nav .nma-nav-link.active {
	color: #ffffff !important;
	background: #0057a8;
}

.materials-page .nma-nav-submenu a,
.nma-materials-nav .nma-nav-submenu a {
	color: rgba(255, 255, 255, 0.9);
}

.materials-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 58px;
	background:
		linear-gradient(135deg, rgba(6, 17, 26, 0.96), rgba(0, 87, 168, 0.88)),
		url("../img/pipe.jpg") center/cover no-repeat;
	color: #fff;
}

.materials-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 80px;
	background: linear-gradient(180deg, rgba(243, 247, 251, 0), #f3f7fb);
	pointer-events: none;
}

.materials-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
	gap: 48px;
	align-items: center;
}

.materials-breadcrumb {
	margin-bottom: 28px;
}

.materials-breadcrumb li,
.materials-breadcrumb a {
	color: rgba(255, 255, 255, 0.78);
}

.materials-hero-copy h1 {
	max-width: 820px;
	font-size: clamp(38px, 6vw, 76px);
	font-weight: 800;
	letter-spacing: 0;
	color: #fff;
}

.materials-hero-copy h1 span {
	display: block;
	color: #8bc7f2;
}

.materials-hero-copy p:not(.nma-eyebrow) {
	max-width: 620px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.materials-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.materials-hero-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	transition: transform var(--nma-transition), background var(--nma-transition), border-color var(--nma-transition);
}

.materials-hero-actions a:hover {
	transform: translateY(-3px);
	background: rgba(0, 105, 180, 0.55);
	border-color: rgba(139, 199, 242, 0.7);
}

.materials-hero-media {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.materials-hero-media img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	object-position: center;
}

.materials-total-card {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: min(220px, calc(100% - 36px));
	padding: 18px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--nma-ink);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.materials-total-card strong {
	display: block;
	font-size: 34px;
	line-height: 1;
	color: var(--nma-blue);
}

.materials-total-card span {
	display: block;
	margin-top: 6px;
	color: var(--nma-muted);
	font-size: 14px;
	font-weight: 700;
}

.materials-shell {
	padding: 74px 0 92px;
}

.materials-section-head {
	margin-bottom: 34px;
}

.materials-directory {
	display: grid;
	gap: 32px;
}

.material-band {
	scroll-margin-top: 105px;
	background: #fff;
	border: 1px solid #d8e4ed;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(5, 30, 48, 0.08);
}

.material-band::before {
	content: "";
	display: block;
	height: 5px;
	background: linear-gradient(90deg, var(--nma-blue), #8bc7f2, var(--nma-accent));
}

.material-band-top {
	display: block;
	background: linear-gradient(135deg, #ffffff, #eef6fc);
}

.material-band-copy {
	padding: 30px 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.material-count {
	width: max-content;
	margin-bottom: 12px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(0, 105, 180, 0.12);
	color: var(--nma-blue);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.material-band-copy h3 {
	color: var(--nma-ink);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
}

.material-band-copy p {
	max-width: 690px;
	margin: 12px 0 0;
	color: var(--nma-muted);
	font-size: 16px;
}

.material-grade-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 246, 252, 0.9)),
		repeating-linear-gradient(90deg, transparent 0 34px, rgba(0, 87, 168, 0.035) 34px 35px);
}

.material-grade-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	border: 1px solid #d5e2ec;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
	overflow: hidden;
	transition: transform var(--nma-transition), border-color var(--nma-transition), box-shadow var(--nma-transition);
}

.material-grade-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 105, 180, 0.42);
	box-shadow: 0 18px 34px rgba(5, 30, 48, 0.12);
}

.grade-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 66px;
	padding: 16px 18px;
	background: #071521;
	color: #fff;
}

.grade-card-head h4 {
	font-size: 20px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.grade-card-head span {
	flex: 0 0 auto;
	max-width: 48%;
	color: #9bd2f7;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: right;
	line-height: 1.25;
}

.grade-link-list {
	display: grid;
	gap: 8px;
	padding: 14px;
}

.grade-link-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #dbe6ef;
	border-radius: 7px;
	background: #f8fbfd;
	color: #263743;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	transition: color var(--nma-transition), background var(--nma-transition), border-color var(--nma-transition), transform var(--nma-transition);
}

.grade-link-list a:hover {
	transform: translateX(4px);
	background: #eaf5fd;
	border-color: rgba(0, 105, 180, 0.35);
	color: var(--nma-blue);
}

.grade-link-list svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: var(--nma-blue);
}

@media (max-width: 1100px) {
	.material-grade-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.materials-hero-grid {
		grid-template-columns: 1fr;
	}

	.materials-hero-media img {
		height: 340px;
	}
}

@media (max-width: 680px) {
	.materials-hero {
		padding: 46px 0 42px;
	}

	.materials-hero-copy p:not(.nma-eyebrow) {
		font-size: 16px;
	}

	.materials-hero-actions a {
		flex: 1 1 calc(50% - 10px);
		padding-inline: 10px;
	}

	.materials-shell {
		padding: 48px 0 62px;
	}

	.material-grade-grid {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.material-band-copy {
		padding: 24px 20px;
	}
}

@media (max-width: 460px) {
	.materials-hero-actions a {
		flex-basis: 100%;
	}

	.materials-hero-media img {
		height: 260px;
	}

	.grade-card-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.grade-card-head span {
		max-width: 100%;
		text-align: left;
	}
}

.materials-page .nma-nav-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.materials-page .nma-nav-menu > li {
	display: block;
}

.materials-page .nma-nav-menu .nma-nav-link {
	display: block;
	visibility: visible;
	opacity: 1;
	color: #f7fbff !important;
}

@media (max-width: 1024px) {
	.materials-page .nma-nav-menu,
	.nma-materials-nav .nma-nav-menu,
	.materials-page .nma-nav-phone,
	.nma-materials-nav .nma-nav-phone {
		display: none !important;
	}

	.materials-page .nma-hamburger,
	.nma-materials-nav .nma-hamburger {
		display: flex !important;
	}
}

@media (max-width: 420px) {
	.materials-page .nma-nav-cta,
	.nma-materials-nav .nma-nav-cta {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.materials-page .nma-nav-menu,
	.nma-materials-nav .nma-nav-menu,
	.materials-page .nma-nav-phone,
	.nma-materials-nav .nma-nav-phone {
		display: none;
	}

	.materials-page .nma-hamburger,
	.nma-materials-nav .nma-hamburger {
		display: flex;
	}
}

@media (max-width: 420px) {
	.materials-page .nma-nav-cta,
	.nma-materials-nav .nma-nav-cta {
		display: none;
	}
}

.nma-sidebar-link-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--nma-blue);
}

.nma-sidebar-link-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.nma-standalone-page {
	background: #f4f8fb;
	color: var(--nma-ink);
}

.nma-standalone-hero {
	position: relative;
	overflow: hidden;
	padding: 84px 0 62px;
	background: linear-gradient(105deg, rgba(6, 17, 26, .93), rgba(0, 87, 168, .72)), var(--nma-standalone-image) center/cover no-repeat;
	color: #fff;
}

.nma-standalone-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 44px;
	align-items: end;
}

.nma-standalone-hero h1 {
	max-width: 760px;
	color: #fff;
	font-size: clamp(38px, 6vw, 72px);
	font-weight: 800;
	letter-spacing: 0;
}

.nma-standalone-hero h1 span {
	color: #8bc7f2;
}

.nma-standalone-hero p {
	max-width: 660px;
	color: rgba(255, 255, 255, .78);
	font-size: 18px;
	margin: 18px 0 0;
}

.nma-standalone-panel {
	border-radius: 10px;
	padding: 22px;
	background: rgba(255, 255, 255, .94);
	color: var(--nma-ink);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.nma-standalone-panel strong {
	display: block;
	color: var(--nma-blue);
	font-size: 36px;
	line-height: 1;
}

.nma-standalone-panel span {
	display: block;
	margin-top: 8px;
	color: var(--nma-muted);
	font-weight: 700;
}

.nma-standalone-section {
	padding: 72px 0;
}

.nma-standalone-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.nma-standalone-card {
	min-width: 0;
	padding: 26px;
	border: 1px solid #d9e6f0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(5, 30, 48, .07);
}

.nma-standalone-card-icon {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #eaf4fc;
	color: var(--nma-blue);
	margin-bottom: 18px;
}

.nma-standalone-card-icon svg {
	width: 30px;
	height: 30px;
}

.nma-standalone-card h3 {
	color: var(--nma-ink);
	font-size: 22px;
	margin-bottom: 10px;
}

.nma-standalone-card p,
.nma-standalone-card li {
	color: var(--nma-muted);
	font-size: 15px;
	line-height: 1.7;
}

.nma-standalone-card ul {
	margin: 0;
	padding-left: 18px;
}

.nma-process-band {
	background: linear-gradient(180deg, #eef5fb 0%, #dfeaf3 100%);
	color: var(--nma-ink);
}

.nma-process-band .nma-section-title {
	color: var(--nma-ink);
}

.nma-process-band .nma-standalone-card {
	background: #fff;
	border-color: #d2e2ef;
	box-shadow: 0 14px 34px rgba(5, 30, 48, .07);
}

.nma-process-band .nma-standalone-card h3 {
	color: var(--nma-ink);
}

.nma-process-band .nma-standalone-card p,
.nma-process-band .nma-standalone-card li {
	color: var(--nma-muted);
}

.nma-contact-strip {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-top: 40px;
	padding: 28px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--nma-blue), var(--nma-blue-dark));
	color: #fff;
}

.nma-contact-strip h3 {
	color: #fff;
	font-size: 28px;
}

.nma-contact-strip p {
	color: rgba(255, 255, 255, .76);
	margin: 8px 0 0;
}

.nma-contact-strip a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 999px;
	background: #fff;
	color: var(--nma-blue) !important;
	font-weight: 800;
	white-space: nowrap;
}

.nma-rich-intro {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: center;
}

.nma-rich-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #d9e6f0;
	box-shadow: 0 18px 50px rgba(5, 30, 48, .12);
	background: #fff;
}

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

.nma-rich-badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--nma-blue);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	box-shadow: 0 12px 28px rgba(0, 87, 168, .28);
}

.nma-rich-copy p {
	margin: 0 0 15px;
	color: var(--nma-muted);
	font-size: 16px;
	line-height: 1.8;
}

.nma-stat-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.nma-stat-tile {
	padding: 18px;
	border-radius: 8px;
	border: 1px solid #d9e6f0;
	background: #fff;
}

.nma-stat-tile strong {
	display: block;
	color: var(--nma-blue);
	font-size: 26px;
	line-height: 1;
}

.nma-stat-tile span {
	display: block;
	margin-top: 7px;
	color: var(--nma-muted);
	font-size: 13px;
	font-weight: 700;
}

.nma-mini-chart {
	display: grid;
	gap: 16px;
	margin-top: 30px;
}

.nma-mini-chart-item {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px 18px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #d9e6f0;
}

.nma-mini-chart-label {
	color: var(--nma-ink);
	font-weight: 800;
}

.nma-mini-chart-track {
	height: 8px;
	border-radius: 999px;
	background: #dde9f4;
	overflow: hidden;
}

.nma-mini-chart-fill {
	display: block;
	height: 100%;
	width: var(--fill);
	border-radius: inherit;
	background: linear-gradient(90deg, var(--nma-blue-light), var(--nma-blue));
}

.nma-mini-chart-value {
	color: var(--nma-muted);
	font-weight: 800;
	font-size: 13px;
	white-space: nowrap;
}

.nma-two-col {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	margin-top: 30px;
}

.nma-list-panel {
	padding: 28px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #d9e6f0;
	box-shadow: 0 14px 34px rgba(5, 30, 48, .07);
}

.nma-list-panel h3 {
	color: var(--nma-ink);
	font-size: 24px;
	margin-bottom: 16px;
}

.nma-list-panel ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nma-list-panel li {
	position: relative;
	padding-left: 24px;
	color: var(--nma-muted);
	line-height: 1.65;
}

.nma-list-panel li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .68em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--nma-accent);
	box-shadow: 0 0 0 4px rgba(212, 135, 11, .16);
}

.nma-timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 32px;
	counter-reset: step;
}

.nma-timeline-card {
	position: relative;
	padding: 26px 22px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #d2e2ef;
	box-shadow: 0 14px 34px rgba(5, 30, 48, .07);
}

.nma-timeline-card::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--nma-blue);
	color: #fff;
	font-weight: 800;
}

.nma-timeline-card h3 {
	color: var(--nma-ink);
	font-size: 20px;
	margin-bottom: 8px;
}

.nma-timeline-card p {
	color: var(--nma-muted);
	line-height: 1.7;
	margin: 0;
}

.nma-process-band .nma-table-wrap {
	background: #fff;
	border-color: #c9dceb;
	box-shadow: 0 14px 34px rgba(5, 30, 48, .07);
}

.nma-process-band .nma-table tbody td {
	color: #2d3b48;
}

.nma-map-box {
	overflow: hidden;
	min-height: 420px;
	border-radius: 10px;
	border: 1px solid #d9e6f0;
	background: #fff;
	box-shadow: 0 14px 34px rgba(5, 30, 48, .08);
}

.nma-map-box iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
}

.nma-contact-detail-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	margin-top: 30px;
}

.nma-contact-box {
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #d9e6f0;
	box-shadow: 0 14px 34px rgba(5, 30, 48, .07);
}

.nma-contact-box h3 {
	color: var(--nma-ink);
	font-size: 26px;
	margin-bottom: 14px;
}

.nma-contact-box p,
.nma-contact-box a {
	color: var(--nma-muted);
	line-height: 1.75;
}

.nma-contact-box a {
	font-weight: 800;
	color: var(--nma-blue);
}

@media (max-width: 900px) {
	.nma-standalone-hero-grid,
	.nma-contact-strip {
		grid-template-columns: 1fr;
	}

	.nma-standalone-grid,
	.nma-rich-intro,
	.nma-two-col,
	.nma-contact-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nma-rich-intro,
	.nma-contact-detail-grid {
		grid-template-columns: 1fr;
	}

	.nma-timeline,
	.nma-stat-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.nma-standalone-hero {
		padding: 58px 0 46px;
	}

	.nma-standalone-hero h1 {
		font-size: clamp(32px, 12vw, 46px);
	}

	.nma-standalone-grid {
		grid-template-columns: 1fr;
	}

	.nma-two-col,
	.nma-timeline,
	.nma-stat-row {
		grid-template-columns: 1fr;
	}

	.nma-mini-chart-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.nma-standalone-section {
		padding: 52px 0;
	}

	.nma-contact-strip {
		padding: 22px;
	}
}

@media (max-width: 1024px) {
	.materials-page .nma-nav-menu,
	.nma-materials-nav .nma-nav-menu,
	.materials-page .nma-nav-phone,
	.nma-materials-nav .nma-nav-phone {
		display: none;
	}

	.materials-page .nma-hamburger,
	.nma-materials-nav .nma-hamburger {
		display: flex;
	}
}

@media (max-width: 680px) {
	.materials-page .nma-container {
		width: min(100% - 24px, 1180px);
	}

	.materials-hero-grid {
		gap: 28px;
	}

	.materials-hero-copy h1 {
		font-size: clamp(34px, 10vw, 48px);
	}

	.materials-shell {
		padding: 42px 0 58px;
	}

	.material-band {
		border-radius: 8px;
	}

	.grade-link-list a {
		align-items: flex-start;
	}
}

@media (max-width: 420px) {
	.materials-page .nma-nav-cta,
	.nma-materials-nav .nma-nav-cta {
		display: none;
	}

	.materials-hero-actions a {
		min-height: 40px;
		font-size: 13px;
	}
}

@media (max-width: 1180px) {
	.nma-nav-link {
		padding-inline: 10px;
		font-size: 13px;
	}

	.nma-nav-right {
		gap: 10px;
	}
}

@media (max-width: 1024px) {
	.nma-nav-menu,
	.nma-nav-phone {
		display: none;
	}

	.nma-hamburger {
		display: flex;
	}

	.nma-layout {
		grid-template-columns: 1fr;
	}

	.nma-sidebar {
		position: static;
	}
}

@media (max-width: 760px) {
	.nma-container {
		width: min(100% - 24px, 1180px);
	}

	.nma-layout {
		padding: 34px 0;
		gap: 28px;
	}

	.nma-product-intro,
	.nma-property-grid {
		grid-template-columns: 1fr;
	}

	.nma-product-img-wrap,
	.nma-product-img-wrap img {
		min-height: 280px;
	}

	.nma-section[style],
	.nma-bg-alt[style] {
		padding-left: 18px !important;
		padding-right: 18px !important;
		border-radius: 10px !important;
	}

	.nma-section-title {
		font-size: clamp(26px, 8vw, 36px);
	}

	.nma-breadcrumb-hero h1 {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.nma-table {
		min-width: 640px;
	}
}

@media (max-width: 560px) {
	.nma-logo img {
		height: 46px;
		padding: 5px 8px;
	}

	.nma-nav-right {
		gap: 8px;
	}

	.nma-nav-cta {
		padding: 9px 12px;
		font-size: 12px;
	}

	.nma-hamburger span {
		width: 23px;
	}

	.nma-product-highlights,
	.nma-physical-grid,
	.nma-industries-grid,
	.nma-types-grid {
		grid-template-columns: 1fr;
	}

	.nma-highlight-card,
	.nma-property-item,
	.nma-physical-card,
	.nma-industry-card {
		border-radius: 8px;
	}

	.nma-breadcrumb-trail {
		flex-wrap: wrap;
	}

	.nma-breadcrumb-hero h1 span {
		display: block;
	}
}

@media (max-width: 420px) {
	.nma-container {
		width: min(100% - 18px, 1180px);
	}

	.nma-nav-inner {
		gap: 8px;
	}

	.nma-nav-cta {
		padding-inline: 12px;
	}

	.nma-product-img-wrap,
	.nma-product-img-wrap img {
		min-height: 240px;
	}
}

.materials-page .nma-nav-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.materials-page .nma-nav-menu > li {
	display: block;
}

.materials-page .nma-nav-menu .nma-nav-link {
	display: block;
	visibility: visible;
	opacity: 1;
	color: #f7fbff !important;
}

@media (max-width: 1024px) {
	.materials-page .nma-nav-menu,
	.nma-materials-nav .nma-nav-menu,
	.materials-page .nma-nav-phone,
	.nma-materials-nav .nma-nav-phone {
		display: none !important;
	}

	.materials-page .nma-hamburger,
	.nma-materials-nav .nma-hamburger {
		display: flex !important;
	}
}

@media (max-width: 420px) {
	.materials-page .nma-nav-cta,
	.nma-materials-nav .nma-nav-cta {
		display: none !important;
	}
}
