.clientImg {
	min-width: 120px;
	width: 130px;
	flex-shrink: 0;
	filter: grayscale(100%);
	opacity: .7;
	transition: all .3s ease;
}

.clientImg:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.holographic-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	margin: 30px;
}

.holographic-card {
	transition: all .5s ease;
}

.holographic-card h2 {
	color: #0ff;
	font-size: 2rem;
	position: relative;
	z-index: 2;
}

.holographic-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	background: linear-gradient(0deg, transparent, transparent 30%, rgba(0,255,255,0.3));
	transition: all .5s ease;
	opacity: 0;
}

.holographic-card:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.holographic-card:hover::before {
	opacity: 1;
}

.nobelUseCaseText {
	background-image: none !important;
}

.nobelUseCaseText .gradient-text,
.nobelUseCaseText span.gradient-text {
	background: linear-gradient(90deg, #C9A84C, #F5D78E, #C9A84C) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	font-weight: 700 !important;
	display: inline !important;
	color: transparent !important;
}

.text-shadow-black {
	text-shadow: 1px 1px 8px rgba(255,255,255,0.9);
}

.text-shadow-white {
	text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hover-parent .hover-child {
	opacity: 0;
	transition: opacity .3s ease;
}

.hover-parent:hover .hover-child {
	opacity: 1;
}

.arrow-slide {
	display: inline-block;
	transition: transform .3s ease;
}

.arrow-slide:hover {
	transform: translateX(4px);
	cursor: pointer;
}

/* Header */
#masthead {
	position: sticky !important;
	top: 0 !important;
	z-index: 9999 !important;
	transition: all .3s ease;
}

#masthead.scrolled {
	background: rgba(255,255,255,0.8) !important;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

/* ============================================
   NOBEL FEATURES SECTION — ============================================ */
.nbl-wrap {
	font-family: 'Inter', sans-serif;
	padding: 1.5rem 1.5rem 3rem;
	max-width: 100%;
	margin: 0 auto;
}

.nbl-header {
	margin-bottom: 1.75rem;
}

.nbl-eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #888;
	font-weight: 500;
	margin-bottom: .6rem;
}

.nbl-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 2rem;
	line-height: 1.2;
	color: #111;
	font-weight: 700;
	margin-bottom: .85rem;
	max-width: 100%;
}

.nbl-title em {
	font-style: italic;
	font-weight: 700;
	background: linear-gradient(90deg, #FFC200, #F07C00);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nbl-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	max-width: 100%;
	font-weight: 400;
}

.nbl-divider {
	height: 1px;
	background: #efefef;
	margin: 1.75rem 0;
}

/* Grid */
.nbl-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

/* Card base */
.nbl-card {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none !important;
	display: block;
	transition: border-color 0.25s, box-shadow 0.25s, transform .2s;
}

.nbl-card:hover {
	transform: translateY(-3px);
}

/* Card top strip */
.nbl-card-top {
	padding: .85rem 1.25rem;
	border-bottom: .5px solid #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background .25s;
}

.nbl-card-top-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nbl-icon {
	width: 32px;
	height: 32px;
	border-radius: 7px;
	display: block;
	flex-shrink: 0;
}

.nbl-label {
	font-family: 'Inter', sans-serif;
	font-size: 9px;
	letter-spacing: .13em;
	text-transform: uppercase;
	font-weight: 700;
}

.nbl-ghost-num {
	font-size: 15px;
	font-weight: 800;
	opacity: .2;
}

/* Card body */
.nbl-card-body {
	padding: 1.1rem 1.25rem;
	position: relative;
	overflow: hidden;
	background: #fff;
}

.nbl-watermark {
	position: absolute;
	bottom: -14px;
	right: 8px;
	font-size: 80px;
	font-weight: 900;
	opacity: .05;
	line-height: 1;
	pointer-events: none;
	transition: opacity .25s;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.nbl-card:hover .nbl-watermark {
	opacity: .09;
}

.nbl-card-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #111 !important;
	margin-bottom: .5rem;
	line-height: 1.2;
	position: relative;
}

.nbl-desc {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 1rem;
	font-weight: 400;
	position: relative;
}

/* Checklist */
.nbl-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: relative;
}

.nbl-feat {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: #555;
}

.nbl-feat-check {
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

/* Bottom text */
.nbl-bottom {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #efefef;
}

.nbl-bottom-text {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #888;
	line-height: 1.7;
	max-width: 100%;
}

.nbl-bottom-text strong {
	color: #444;
	font-weight: 500;
}

/* Applicant — teal */
.nbl-applicant:hover {
	border-color: #0F6E56;
	box-shadow: 0 8px 28px rgba(29,158,117,0.18);
}

.nbl-applicant:hover .nbl-card-top {
	background: #f0faf6;
}

.nbl-applicant .nbl-label {
	color: #0F6E56;
}

.nbl-applicant .nbl-ghost-num {
	color: #0F6E56;
}

.nbl-applicant .nbl-watermark {
	color: #0F6E56;
}

.nbl-applicant .nbl-feat-check {
	color: #0F6E56;
}

.nbl-applicant .nbl-icon {
	background-color: #E1F5EE;
}

/* Judges — purple */
.nbl-judge:hover {
	border-color: #534AB7;
	box-shadow: 0 8px 28px rgba(83,74,183,0.18);
}

.nbl-judge:hover .nbl-card-top {
	background: #f5f4fe;
}

.nbl-judge .nbl-label {
	color: #534AB7;
}

.nbl-judge .nbl-ghost-num {
	color: #534AB7;
}

.nbl-judge .nbl-watermark {
	color: #534AB7;
}

.nbl-judge .nbl-feat-check {
	color: #534AB7;
}

.nbl-judge .nbl-icon {
	background-color: #EEEDFE;
}

/* Program Managers — blue */
.nbl-manager:hover {
	border-color: #185FA5;
	box-shadow: 0 8px 28px rgba(24,95,165,0.18);
}

.nbl-manager:hover .nbl-card-top {
	background: #f0f6fd;
}

.nbl-manager .nbl-label {
	color: #185FA5;
}

.nbl-manager .nbl-ghost-num {
	color: #185FA5;
}

.nbl-manager .nbl-watermark {
	color: #185FA5;
}

.nbl-manager .nbl-feat-check {
	color: #185FA5;
}

.nbl-manager .nbl-icon {
	background-color: #E6F1FB;
}

/* Sponsors — amber */
.nbl-sponsor:hover {
	border-color: #BA7517;
	box-shadow: 0 8px 28px rgba(186,117,23,0.18);
}

.nbl-sponsor:hover .nbl-card-top {
	background: #fdf7ee;
}

.nbl-sponsor .nbl-label {
	color: #BA7517;
}

.nbl-sponsor .nbl-ghost-num {
	color: #BA7517;
}

.nbl-sponsor .nbl-watermark {
	color: #BA7517;
}

.nbl-sponsor .nbl-feat-check {
	color: #BA7517;
}

.nbl-sponsor .nbl-icon {
	background-color: #FAEEDA;
}

/* Auditors — slate */
.nbl-auditor:hover {
	border-color: #3D5166;
	box-shadow: 0 8px 28px rgba(61,81,102,0.18);
}

.nbl-auditor:hover .nbl-card-top {
	background: #f2f4f7;
}

.nbl-auditor .nbl-label {
	color: #3D5166;
}

.nbl-auditor .nbl-ghost-num {
	color: #3D5166;
}

.nbl-auditor .nbl-watermark {
	color: #3D5166;
}

.nbl-auditor .nbl-feat-check {
	color: #3D5166;
}

.nbl-auditor .nbl-icon {
	background-color: #E8ECF0;
}

/* Platform Intelligence — crimson */
.nbl-platform:hover {
	border-color: #B91C1C;
	box-shadow: 0 8px 28px rgba(185,28,28,0.18);
}

.nbl-platform:hover .nbl-card-top {
	background: #fef2f2;
}

.nbl-platform .nbl-label {
	color: #B91C1C;
}

.nbl-platform .nbl-ghost-num {
	color: #B91C1C;
}

.nbl-platform .nbl-watermark {
	color: #B91C1C;
}

.nbl-platform .nbl-feat-check {
	color: #B91C1C;
}

.nbl-platform .nbl-icon {
	background-color: #fee2e2;
}

@media (max-width: 640px) {
	.nbl-grid {
		grid-template-columns: 1fr;
	}
	
	.nbl-title {
		font-size: 1.75rem;
	}
}

/* ============================================
   NOBEL SOLUTIONS SECTION — CUSTOMIZER CSS
   ============================================ */
/* Centered, larger header */
.nbl-sol .nbl-header {
	text-align: center;
}

.nbl-sol .nbl-title {
	font-size: 2.6rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.nbl-sol .nbl-subtitle {
	font-size: 16px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Label — bigger than the 9px base */
.nbl-sol .nbl-label {
	font-size: 12px;
	letter-spacing: .1em;
}

/* Card top — left-aligned, no space-between */
.nbl-sol .nbl-card-top {
	justify-content: flex-start;
	gap: 12px;
}

/* Icon — flex so inline SVG centres inside it */
.nbl-sol .nbl-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* View button */
.nbl-sol .nbl-view-btn {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .03em;
	padding: 8px 20px;
	border-radius: 6px;
	color: #fff;
	text-decoration: none !important;
	transition: opacity .2s;
	cursor: pointer;
	margin-top: .25rem;
}

.nbl-sol .nbl-card:hover .nbl-view-btn {
	opacity: .87;
}

/* Grant Makers — teal */
.nbl-sol .nbl-grant:hover {
	border-color: #0F6E56;
	box-shadow: 0 8px 28px rgba(29,158,117,0.18);
}

.nbl-sol .nbl-grant:hover .nbl-card-top {
	background: #f0faf6;
}

.nbl-sol .nbl-grant .nbl-label {
	color: #0F6E56;
}

.nbl-sol .nbl-grant .nbl-watermark {
	color: #0F6E56;
}

.nbl-sol .nbl-grant .nbl-feat-check {
	color: #0F6E56;
}

.nbl-sol .nbl-grant .nbl-icon {
	background-color: #E1F5EE;
	color: #0F6E56;
}

.nbl-sol .nbl-grant .nbl-view-btn {
	background: #0F6E56;
}

/* Awards — purple */
.nbl-sol .nbl-awards:hover {
	border-color: #534AB7;
	box-shadow: 0 8px 28px rgba(83,74,183,0.18);
}

.nbl-sol .nbl-awards:hover .nbl-card-top {
	background: #f5f4fe;
}

.nbl-sol .nbl-awards .nbl-label {
	color: #534AB7;
}

.nbl-sol .nbl-awards .nbl-watermark {
	color: #534AB7;
}

.nbl-sol .nbl-awards .nbl-feat-check {
	color: #534AB7;
}

.nbl-sol .nbl-awards .nbl-icon {
	background-color: #EEEDFE;
	color: #534AB7;
}

.nbl-sol .nbl-awards .nbl-view-btn {
	background: #534AB7;
}

/* Scholarships — blue */
.nbl-sol .nbl-scholar:hover {
	border-color: #185FA5;
	box-shadow: 0 8px 28px rgba(24,95,165,0.18);
}

.nbl-sol .nbl-scholar:hover .nbl-card-top {
	background: #f0f6fd;
}

.nbl-sol .nbl-scholar .nbl-label {
	color: #185FA5;
}

.nbl-sol .nbl-scholar .nbl-watermark {
	color: #185FA5;
}

.nbl-sol .nbl-scholar .nbl-feat-check {
	color: #185FA5;
}

.nbl-sol .nbl-scholar .nbl-icon {
	background-color: #E6F1FB;
	color: #185FA5;
}

.nbl-sol .nbl-scholar .nbl-view-btn {
	background: #185FA5;
}

/* Accelerators — amber */
.nbl-sol .nbl-accel:hover {
	border-color: #BA7517;
	box-shadow: 0 8px 28px rgba(186,117,23,0.18);
}

.nbl-sol .nbl-accel:hover .nbl-card-top {
	background: #fdf7ee;
}

.nbl-sol .nbl-accel .nbl-label {
	color: #BA7517;
}

.nbl-sol .nbl-accel .nbl-watermark {
	color: #BA7517;
}

.nbl-sol .nbl-accel .nbl-feat-check {
	color: #BA7517;
}

.nbl-sol .nbl-accel .nbl-icon {
	background-color: #FAEEDA;
	color: #BA7517;
}

.nbl-sol .nbl-accel .nbl-view-btn {
	background: #BA7517;
}

.nbl-sol .nbl-card .nbl-card-body {
	position: relative !important;
	overflow: hidden !important;
}

.nbl-sol .nbl-card {
	position: relative;
}

@media (max-width: 640px) {
	.nbl-sol .nbl-title {
		font-size: 1.9rem;
	}
}