/**
 * NXT Theme - Pure Class-Based CSS (no variables)
 *
 * @package NXT_Theme
 */

/* Base */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html { scroll-behavior: smooth; }
body {
	background-color: #f9fafb;
	color: #0f172a;
	font-family: 'Inter', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
}

li {
	list-style: none;
}

/* Layout */
.nxt-container {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) { .nxt-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nxt-container { padding: 0 2rem; } }

.nxt-container-narrow { max-width: 1060px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .nxt-container-narrow { padding: 0 1.5rem; } }

.nxt-flex { display: flex; }
.nxt-flex-col { flex-direction: column; }
.nxt-flex-wrap { flex-wrap: wrap; }
.nxt-items-center { align-items: center; }
.nxt-items-start { align-items: flex-start; }
.nxt-justify-between { justify-content: space-between; }
.nxt-justify-center { justify-content: center; }
.nxt-flex-shrink-0 { flex-shrink: 0; }

.nxt-grid { display: grid; gap: 2rem; }
.nxt-grid-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
	.nxt-grid-2 { grid-template-columns: repeat(2, 1fr); }
	.nxt-grid-3 { grid-template-columns: repeat(3, 1fr); }
	.nxt-grid-4 { grid-template-columns: repeat(4, 1fr); }
	.nxt-nav-show { display: flex; }
}
@media (min-width: 1024px) {
	.nxt-lg-half { width: 50%; }
	.nxt-lg-flex-row { flex-direction: row; }
}

.nxt-gap-4 { gap: 1rem; }
.nxt-gap-8 { gap: 2rem; }
.nxt-gap-12 { gap: 3rem; }
.nxt-space-x-2 > * + * { margin-left: 0.5rem; }
.nxt-space-x-6 > * + * { margin-left: 1.5rem; }
.nxt-space-x-8 > * + * { margin-left: 2rem; }
.nxt-space-y-3 > * + * { margin-top: 0.75rem; }
.nxt-space-y-4 > * + * { margin-top: 1rem; }

/* Spacing */
.nxt-p-2 { padding: 0.5rem; }
.nxt-p-6 { padding: 1.5rem; }
.nxt-p-8 { padding: 2rem; }
.nxt-p-10 { padding: 2.5rem; }
.nxt-px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.nxt-px-4 { padding-left: 1rem; padding-right: 1rem; }
.nxt-px-8 { padding-left: 2rem; padding-right: 2rem; }
.nxt-px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.nxt-py-2 { padding: 0.5rem 0; }
.nxt-py-3 { padding: 0.75rem 0; }
.nxt-py-4 { padding: 1rem 0; }
.nxt-py-16 { padding: 4rem 0; }
.nxt-py-24 { padding: 6rem 0; }
.nxt-py-32 { padding: 8rem 0; }
.nxt-pt-10 { padding-top: 2.5rem; }
.nxt-pt-20 { padding-top: 5rem; }
.nxt-pb-10 { padding-bottom: 2.5rem; }
.nxt-mb-1 { margin-bottom: 0.25rem; }
.nxt-mb-2 { margin-bottom: 0.5rem; }
.nxt-mb-3 { margin-bottom: 0.75rem; }
.nxt-mb-4 { margin-bottom: 1rem; }
.nxt-mb-6 { margin-bottom: 1.5rem; }
.nxt-mb-8 { margin-bottom: 2rem; }
.nxt-mb-10 { margin-bottom: 2.5rem; }
.nxt-mb-12 { margin-bottom: 3rem; }
.nxt-mb-16 { margin-bottom: 4rem; }
.nxt-mb-20 { margin-bottom: 5rem; }
.nxt-mt-4 { margin-top: 1rem; }
.nxt-mt-12 { margin-top: 3rem; }
.nxt-mr-1 { margin-right: 0.25rem; }
.nxt-mr-2 { margin-right: 0.5rem; }
.nxt-mr-3 { margin-right: 0.75rem; }
.nxt-mx-auto { margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .nxt-md-mt-0 { margin-top: 0; } }

/* Sizing */
.nxt-h-20 { height: 5rem; }
.nxt-h-48 { height: 12rem; }
.nxt-h-64 { height: 16rem; }
.nxt-h-80vh { height: 80vh; }
.nxt-min-h-screen { min-height: 100vh; }
.nxt-w-full { width: 100%; }
.nxt-w-64 { width: 16rem; }
.nxt-max-w-2xl { max-width: 42rem; }
.nxt-max-w-3xl { max-width: 48rem; }
.nxt-max-w-4xl { max-width: 56rem; }

/* Typography */
.nxt-font-display { font-family: 'Outfit', sans-serif; }
.nxt-font-bold { font-weight: 700; }
.nxt-font-semibold { font-weight: 600; }
.nxt-font-light { font-weight: 300; }
.nxt-text-xs { font-size: 0.75rem; }
.nxt-text-sm { font-size: 0.875rem; }
.nxt-text-base { font-size: 1rem; }
.nxt-text-lg { font-size: 1.125rem; }
.nxt-text-xl { font-size: 1.25rem; }
.nxt-text-2xl { font-size: 1.5rem; }
.nxt-text-3xl { font-size: 1.875rem; }
.nxt-text-4xl { font-size: 2.25rem; }
.nxt-text-5xl { font-size: 3rem; }
.nxt-text-6xl { font-size: 3.75rem; }
.nxt-text-7xl { font-size: 4.5rem; }
.nxt-text-10px { font-size: 10px; }
.nxt-leading-tight { line-height: 1.25; }
.nxt-leading-relaxed { line-height: 1.625; }
.nxt-tracking-tighter { letter-spacing: -0.05em; }
.nxt-tracking-widest { letter-spacing: 0.1em; }
.nxt-uppercase { text-transform: uppercase; }
.nxt-text-center { text-align: center; }
.nxt-block { display: block; }
.nxt-inline-flex { display: inline-flex; }
@media (min-width: 768px) { .nxt-text-md-4xl { font-size: 2.25rem; } }

/* Colors - Text */
.nxt-text-primary { color: #6b21a8; }
.nxt-text-white { color: #ffffff; }
.nxt-text-slate-200 { color: #e2e8f0; }
.nxt-text-slate-300 { color: #cbd5e1; }
.nxt-text-slate-400 { color: #94a3b8; }
.nxt-text-slate-500 { color: #64748b; }
.nxt-text-slate-600 { color: #475569; }
.nxt-text-slate-700 { color: #334155; }
.nxt-text-slate-900 { color: #0f172a; }

/* Colors - Background */
.nxt-bg-primary { background-color: #6b21a8; }
.nxt-bg-white { background-color: #ffffff; }
.nxt-bg-slate-50 { background-color: #f8fafc; }
.nxt-bg-slate-100 { background-color: #f1f5f9; }
.nxt-bg-slate-300 { background-color: #cbd5e1; }
.nxt-bg-slate-800 { background-color: #1e293b; }
.nxt-bg-slate-900 { background-color: #0f172a; }
.nxt-bg-slate-950 { background-color: #020617; }
.nxt-bg-purple-50 { background-color: #faf5ff; }

/* Borders */
.nxt-border-slate-100 { border: 1px solid #f1f5f9; }
.nxt-border-slate-200 { border: 1px solid #e2e8f0; }
.nxt-border-slate-700 { border: 1px solid #334155; }
.nxt-border-slate-800 { border: 1px solid #1e293b; }
.nxt-border-t { border-top: 1px solid #1e293b; }
.nxt-border-y { border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }

/* Radius */
.nxt-rounded { border-radius: 0.5rem; }
.nxt-rounded-lg { border-radius: 0.75rem; }
.nxt-rounded-xl { border-radius: 1rem; }
.nxt-rounded-2xl { border-radius: 1.5rem; }
.nxt-rounded-full { border-radius: 9999px; }

/* Effects */
.nxt-shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.nxt-shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.nxt-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.nxt-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.nxt-shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.nxt-brightness-50 { filter: brightness(0.5); }
.nxt-object-cover { object-fit: cover; }
.nxt-overflow-hidden { overflow: hidden; }
.nxt-opacity-50 { opacity: 0.5; }
.nxt-grayscale { filter: grayscale(100%); }

/* Transitions */
.nxt-transition-all { transition: all 0.15s ease; }
.nxt-transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.nxt-transition-transform { transition: transform 0.5s ease; }
.nxt-transition-transform-700 { transition: transform 0.7s ease; }

/* Position */
.nxt-relative { position: relative; }
.nxt-absolute { position: absolute; }
.nxt-fixed { position: fixed; }
.nxt-inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.nxt-top-0 { top: 0; }
.nxt-z-0 { z-index: 0; }
.nxt-z-10 { z-index: 10; }
.nxt-z-50 { z-index: 50; }

/* Header */
.nxt-header {
	position: sticky;
	top: 0px;
	z-index: 9999;
	background: #FFFFFF;
	padding: 24px 0;
}

.nxt-header .nxt-container {
	max-width: 1280px;
	margin: 0 auto;
}
.nxt-logo {
	font-family: 'Outfit', sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: -0.05em;
	color: #0f172a;
	text-decoration: none;
}
.nxt-logo:hover { color: #6b21a8; }
.nxt-header .custom-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.nxt-header .custom-logo-link .custom-logo {
	width: auto;
	height: auto;
	display: block;
}
.nxt-nav { display: none; }

/* Hamburger - visible on mobile only, right side */
.nxt-hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: #211030;
}
.nxt-hamburger:hover { color: #6b21a8; }
.nxt-hamburger-line {
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 768px) {
	.nxt-hamburger { display: none; }
}

/* Mobile full-screen menu overlay */
.nxt-mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #fff;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100%);
	transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.nxt-mobile-menu-overlay.is-open {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}
body.nxt-mobile-menu-open { overflow: hidden; }
.nxt-mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	flex-shrink: 0;
}
.nxt-mobile-menu-logo .custom-logo-link,
.nxt-mobile-menu-logo .nxt-logo {
	display: block;
}
.nxt-mobile-menu-logo .custom-logo {
	height: 40px;
	width: auto;
}
.nxt-mobile-menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: #211030;
}
.nxt-mobile-menu-close:hover { color: #6b21a8; }
.nxt-mobile-menu-nav {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
}
.nxt-mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.nxt-mobile-menu-list li {
	margin: 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.nxt-mobile-menu-list a {
	display: block;
	padding: 1rem 0;
	font-size: 18px;
	font-weight: 500;
	color: #211030;
	text-decoration: none;
}
.nxt-mobile-menu-list a:hover { color: #6b21a8; }
.nxt-mobile-menu-list .menu-item-has-children > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 0.5rem;
}
.nxt-mobile-menu-list .menu-item-has-children > a::after {
	content: '';
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid currentColor;
	flex-shrink: 0;
	margin-left: 0.5rem;
	transition: transform 0.2s ease;
}
.nxt-mobile-menu-list .menu-item-has-children.is-expanded > a::after {
	transform: rotate(90deg);
}
.nxt-mobile-menu-list .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: none;
	border-radius: 0;
	padding: 0 0 0 1rem;
	margin: 0;
	background: rgba(15, 23, 42, 0.02);
	display: none;
	overflow: hidden;
}
.nxt-mobile-menu-list .menu-item-has-children.is-expanded > .sub-menu {
	display: block;
}
.nxt-mobile-menu-list .sub-menu li { border-bottom: none; }
.nxt-mobile-menu-list .sub-menu a {
	font-size: 16px;
	padding: 0.75rem 0;
}
@media (min-width: 768px) {
	.nxt-mobile-menu-overlay { display: none; }
}

.nxt-nav ul {
	margin: 0;
	padding: 0;
}
@media (min-width: 768px) { 
	.nxt-nav { display: flex; align-items: center; } 
	.nxt-nav ul li {
		margin: 0 18px;
	}
}
.nxt-nav a, .nxt-nav-link {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #211030;
	text-decoration: none;
}
.nxt-nav a:hover, .nxt-nav-link:hover { color: #6b21a8; }
.nxt-search-btn {
	padding: 0.5rem;
	color: #000;
	background: none;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.nxt-search-btn:hover { color: #6b21a8; }
.nxt-search-btn .nxt-search-icon {
	display: block;
}

/* Nav submenu dropdown */
.nxt-nav ul li {
	position: relative;
	list-style: none;
}

.nxt-nav ul li.current-menu-item > a {
	font-weight: 700;
	color: #551C8E;
}
.nxt-nav .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}
.nxt-nav .menu-item-has-children > a::after {
	content: '';
	width: 10px;
	height: 6px;
	background: url('https://honeydew-flamingo-674206.hostingersite.com/nxt/wp-content/uploads/2026/03/downmenuarrow.svg') no-repeat left center;
	background-size: 10px;
}
.nxt-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
	border-radius: 8px;
	padding: 0.5rem 0;
	margin: 8px 0 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	z-index: 100;
	list-style: none;
	border: 1px solid rgba(15, 23, 42, 0.08);
}
.nxt-nav .menu-item-has-children:hover > .sub-menu,
.nxt-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nxt-nav .sub-menu li {
	margin: 0;
}
.nxt-nav .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	font-size: 14px;
	white-space: nowrap;
	color: #211030;
}
.nxt-nav .sub-menu a:hover {
	background: rgba(107, 33, 168, 0.08);
	color: #6b21a8;
}
.nxt-nav .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin: 0 0 0 4px;
}
.nxt-nav .sub-menu .menu-item-has-children > a::after {
	border-left: 5px solid currentColor;
	border-right: 0;
	border-top: 4px solid transparent;
	margin-left: auto;
}

/* Hero */
.nxt-hero {
	position: relative;
	padding: 50px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	/* background: linear-gradient(to bottom, rgba(15,23,42,0.8), rgba(15,23,42,0.95)),
		url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80');
	background-size: cover;
	background-position: center; */
	overflow: hidden;
}

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

.nxt-hero .nxt-container-narrow {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) { 
	.nxt-hero {
		padding: 135px 0 110px;
		min-height: calc(100vh - 87px);
		box-sizing: border-box;
	}
}

.nxt-hero h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	color: #FFFFFF;
	margin: 0 0 10px;
}
.nxt-hero p {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	text-align: center;
	color: #FFFFFF;
	margin: 0 0 20px
}

/* .page-template-page-services-php .nxt-hero h1,
.page-template-page-services-php .nxt-hero p {
	color: #211030;
} */
 
.about-text-section {
	padding: 50px 0;
	text-align: center;
	background-color: #F0F0F0;
}

.about-text-section p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #211030;
	max-width: 940px;
	width: calc(100% - 40px);
	margin: 0 auto 24px;
}

@media (min-width: 768px) { 
	.nxt-hero h1 { font-size: 60px; margin-bottom: 24px;} 
	.nxt-hero p { font-size: 24px; margin-bottom: 36px;}
 
	.about-text-section {
		padding: 84px 0;
	}

	.about-text-section p {
		font-size: 24px;
		margin: 0 auto 36px;
	}
}

/* Buttons */
.nxt-btn {
	font-weight: 600;
	font-size: 15px;
	line-height: 120%;
	color: #FFFFFF;
	padding: 12px 24px;
	background: #6321A5;
	border-radius: 5px;
	text-decoration: none;
}
.nxt-btn-primary { background-color: #6b21a8; color: #ffffff; }
.nxt-btn-primary:hover { background-color: #7c3aed; }
.nxt-btn-primary.nxt-hover-scale:hover { transform: scale(1.05); }
.nxt-btn-sm { padding: 0.5rem 1.5rem; font-size: 0.875rem; }
.nxt-btn .nxt-explore-icon { margin-left: 0.5rem; vertical-align: middle; display: inline-block; }
.nxt-btn-rounded { border-radius: 9999px; padding: 0.75rem 2rem; }
.nxt-btn-lg { padding: 1rem 2.5rem; font-weight: 700; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

.what-we-do {
	padding: 50px 0 26px;
}

.what-we-do-card-body .what-we-do-card-icon,
.what-we-do-card-body img.what-we-do-card-icon {
	width: auto;
	height: 48px;
	object-fit: contain;
	display: block;
	margin-bottom: 24px;
}

.what-we-do .nxt-container {
	max-width: 1080px;
	margin: 0 auto;
}

.nxt-section-heading {
	text-align: center;
	margin: 0 auto 24px;
	max-width: 870px;
}

.about-mission-container,
.about-mission-heading {
	max-width: 1185px !important;
}

.about-mission-heading {
	margin-bottom: 24px !important;
}

.nxt-section-heading h1,
.nxt-section-heading h2 {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	text-align: center;
	color: #211030;
	margin: 0 0 12px;
}

.nxt-section-heading h3 {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	text-align: center;
	color: #211030;
	margin: 0 0 12px;
}

.nxt-section-heading p {
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	text-align: center;
	color: #211030;
}

.what-we-do-cards {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.what-we-do-card {
	width: 100%;
	margin: 0 12px 24px;
	border-radius: 9px;
	background: #FFFFFF;
	box-sizing: border-box;
	transition: all 0.3s ease;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
}

.what-we-do-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.what-we-do-card-img img {
	border-radius: 9px 9px 0 0;
	display: block;
}

.what-we-do-card-body {
	padding: 15px;
	margin-bottom: 46px;
}

.what-we-do-card-icon {
	height: 50px;
	width: auto;
}

.what-we-do-card-body h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 125%;
	color: #551C8E;
	margin: 10px 0 12px;
}

.what-we-do-card-body p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0;
}

.what-we-do-card-body a {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	padding: 12px 24px;
	gap: 6px;
	background: #6321A5;
	border-radius: 5px;
	font-weight: 600;
	font-size: 15px;
	line-height: 150%;
	color: #FFFFFF;
}

@media (min-width: 768px) { 
	.what-we-do {
		padding: 84px 0 60px;
	}

	.nxt-section-heading {
		margin-bottom: 48px	;
	}

	.nxt-section-heading h1,
	.nxt-section-heading h2 {
		font-size: 48px;
		margin: 0 0 24px;
	}

	.nxt-section-heading h3 {
		font-size: 24px;
		margin: 0 0 24px;
	}

	.nxt-section-heading p {
		font-size: 16px;
		margin: 0 0 24px;
	}

	.what-we-do-card {
		width: calc(50% - 24px);
		position: relative;
	}

	.what-we-do-card-body {
		padding: 25px 36px 72px;
	}

	.what-we-do-card-body h3 {
		font-size: 26px;
		margin: 22px 0 12px;
	}
	
	.what-we-do-card-body a {
		position: absolute;
		left: 36px;
		bottom: 36px;
	}
}

.ai-product-lab {
	padding: 50px;
	text-align: center;
	background-color: #BFBFBF;
}

.ai-product-lab .nxt-container {
	max-width: 1090px;
	margin: 0 auto;
}

.ai-product-lab h2 {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	text-align: center;
	color: #FFFFFF;
	margin: 0 0 12px;
}

.ai-product-lab p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #FFFFFF;
	margin: 0 auto 12px;
}

.about-bg-content-text p,
.about-bg-content-text .about-hero-intro,
.about-bg-content-text .about-hero-intro p {
	max-width: 510px;
	margin: 0 auto !important;
}

.ai-product-lab a {
	display: inline-block;
	padding: 12px 24px;
	background: #6321A5;
	border-radius: 5px;
	font-weight: 600;
	font-size: 15px;
	line-height: 120%;
	color: #FFFFFF;
	text-decoration: none;
}

.ai-product-lab a:hover { background-color: #7c3aed; }

@media (min-width: 768px) {
	.ai-product-lab {
		padding: 235px 0;
	}

	.about-bg-content-text {
		padding: 145px 0;
	}

	.ai-product-lab h2 {
		font-size: 48px;
		margin-bottom: 24px;
	}

	.ai-product-lab p {
		font-size: 24px;
		margin: 0 0 24px;
	}
}

/* Industries We Serve */
.industries-we-serve {
	padding: 50px 0 26px;
	background: #F0F0F0;
}

.industries-we-serve .nxt-container {
	max-width: 1305px;
	margin: 0 auto;
}

.industries-cards {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.industries-card {
	width: 100%;
	margin: 0 12px 24px;
	background: #FFFFFF;
	border-radius: 9px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.industries-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.industries-card-img img {
	border-radius: 9px 9px 0 0;
	display: block;
	width: 100%;
}

.industries-card-body {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.industries-card-content {
	flex: 1;
}

.industries-card-body h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 12px;
}

.industries-card-body p {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #211030;
	margin: 0 0 12px;
}

.industries-card-body a {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	font-weight: 600;
	font-size: 15px;
	line-height: 150%;
	color: #6321A5;
	text-decoration: none;
	margin-top: auto;
}

@media (min-width: 768px) {
	.industries-we-serve {
		padding: 84px 0;
	}

	.industries-card {
		width: calc(33.333% - 24px);
	}

	.industries-card-body {
		padding: 36px;
	}

	.industries-card-body h3 {
		font-size: 25px;
		margin-bottom: 24px;
	}

	.industries-card-body p {
		font-size: 16px;
		margin: 0 0 36px;
	}
}

.operating-system {
	padding: 50px 0;
	display: none !important;
}

.operating-system .nxt-section-heading {
	text-align: center;
	margin: 0 auto 24px;
	max-width: 770px;
}

.operating-system-card {
	background: #FFFFFF;
	border: 3px solid #F0F0F0;
	border-radius: 9px;
	padding: 24px;
	text-align: left;
	margin: 0 0 0 24px;
	min-height: 275px !important;
	box-sizing: border-box;
}

.operating-system-cards .slick-list{padding:0 80px 0 0;}

.operating-system-card img {
	height: 70px;
	width: auto;
	display: block;
	margin-bottom: 12px;
}
.operating-system-card h4 {
	font-weight: 700;
	font-size: 24px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 6px;
	text-align: left;
}

.operating-system-card p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0;
	text-align: left;
}

@media (min-width: 768px) {
	.operating-system {
		padding: 84px 0;
	}

	.operating-system-card {
		padding: 36px;
	}
}

/* Cards */
.nxt-card {
	background-color: #f8fafc;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
	border: 1px solid #f1f5f9;
	transition: all 0.15s ease;
}
.nxt-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.nxt-card-img { height: 12rem; overflow: hidden; }
.nxt-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nxt-card:hover .nxt-card-img img { transform: scale(1.05); }
.nxt-card-body { padding: 2rem; }
.nxt-card-body-sm { padding: 1.5rem; }
.nxt-icon { color: #6b21a8; font-size: 2.25rem; margin-bottom: 1rem; }
.nxt-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.nxt-card p { color: #475569; margin-bottom: 1.5rem; font-size: 0.875rem; line-height: 1.625; }
.nxt-link-arrow { color: #6b21a8; font-weight: 700; font-size: 0.875rem; display: inline-flex; align-items: center; text-decoration: none; }
.nxt-link-arrow:hover { text-decoration: underline; }

/* OS Cards */
.nxt-os-card {
	padding: 2rem;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	text-align: center;
	width: 16rem;
	transition: border-color 0.15s ease;
}
.nxt-os-card:hover { border-color: #6b21a8; }
.nxt-os-card .nxt-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.nxt-os-card h4 { font-weight: 700; margin-bottom: 0.25rem; }
.nxt-os-card p { font-size: 0.75rem; color: #64748b; margin-bottom: 0; }

/* Case Study */
.case-studies {
	background-color: #F0F0F0;
	padding: 50px 0;
}

.case-studies .nxt-container {
	max-width: 1285px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.case-studies {
		padding: 84px 0;
	}

	.case-studies .nxt-section-heading {
		margin: 0 auto 63px;
	}
}

.case-studies-card {
	padding: 24px;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 24px;
	transition: all 0.3s ease;
}

.case-studies-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.case-studies-card .case-studies-card-img {
	width: 100%;
	margin: 0 0 15px
}

.case-studies-card .case-studies-card-body {
	width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
}

.case-studies-card .case-studies-card-body .case-studies-card-tags {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.case-studies-card .case-studies-card-body .case-studies-card-tags span {
	margin: 0 12px 12px 0;
	padding: 2px 8px;
	border: 1px solid #F0F0F0;
	border-radius: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #802CD7;
}

.case-studies-card .case-studies-card-body h3 {
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 12px;
}

.case-studies-card-content {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
}

.case-studies-card-content ul {
	margin: 24px 0;
	padding: 0;
}

.case-studies-card-content ul li {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0 0 12px;
	position: relative;
	padding: 5px 0 5px 12px;
}

.case-studies-card-content ul li::before {
	content: '';
	background-color: #802CD7;
	height: 100%;
	width: 2px;
	position: absolute;
	left: 0;
	top: 0;
}

.case-studies-card-body a {
	display: flex;
	align-items: center;
	gap: 6px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 15px;
	line-height: 150%;
	color: #6321A5;
	text-decoration: none;
}

@media (min-width: 768px) {
	.case-studies-card .case-studies-card-img {
		width: 605px;
		margin: 0;
	}

	.case-studies-card .case-studies-card-body {
		width: calc(100% - 605px);
		padding: 0 24px;
	}

	.case-studies-card .case-studies-card-body .case-studies-card-tags {
		margin-bottom: 36px;
	}

	.case-studies-card-content ul {
		margin: 36px 0 36px;
	}

	.case-studies-card-content ul li {
		padding-left: 24px;
	}
}

/* Resources */
.nxt-resources {
	padding: 50px 0;
	background-color: #fff;
}
@media (min-width: 768px) {
	.nxt-resources { padding: 84px 0; }
	.nxt-resources .nxt-section-heading { margin-bottom: 63px; }
}
.nxt-resources-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.nxt-resources-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.nxt-resources-cards { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.nxt-resource-card {
	box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
	border: 1px solid #f1f5f9;
	transition: box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	transition: all 0.3s ease;
	border-radius: 9px;
}
.nxt-resource-card:hover { box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);}
.nxt-resource-card-img {
	width: 100%;
	overflow: hidden;
	border-radius: 9px 9px 0 0;
}
.nxt-resource-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	border-radius: 9px 9px 0 0;
}
.nxt-resource-card:hover .nxt-resource-card-img img { transform: scale(1.05); }
.nxt-resource-card-body { padding: 36px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.nxt-resource-card-tags {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.nxt-resource-card-tags .nxt-tag {
	margin: 0 12px 12px 0;
	padding: 2px 8px;
	border: 1px solid #F0F0F0;
	border-radius: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #802CD7;
}

.nxt-resource-card-title {
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 12px;
}
.nxt-resource-card-content {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
}
.nxt-resource-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 36px;
}
.nxt-resource-card-date {
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: #802CD7;
}
.nxt-resource-card-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
}
.nxt-resource-card-download:hover { opacity: 0.8; }
.nxt-resource-card-download svg { display: block; }

/* Partners */
.partners {
	padding: 50px 0;
	background-color: #F0F0F0;
}
@media (min-width: 768px) {
	.partners { padding: 84px 0; }
}

.nxt-partners {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.nxt-partners span { font-weight: 700; font-size: 1.25rem; color: #0f172a; text-align: center; margin-right: 20px; }
.nxt-partners span img,
.nxt-partners img {
	width: auto;
	height: 36px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

/* Certifications */
.certifications {
	padding: 50px 0;
	background-color: #fff;
}
@media (min-width: 768px) {
	.certifications { padding: 84px 0; }
}

.nxt-certifications {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 3rem;
}
.nxt-certifications img,
.nxt-cert-badge-img {
	width: auto;
	height: 5rem;
	object-fit: contain;
	display: block;
}

.nxt-cert-badge {
	height: 5rem;
	width: 8rem;
	background: #f1f5f9;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.75rem;
	text-align: center;
	padding: 0.5rem;
	border: 1px solid #e2e8f0;
	text-transform: uppercase;
}

/* CTA (background image from Careers Page settings or inline fallback on section) */
.bring-your-mission {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 50px 0;
	text-align: center;
}

.bring-your-mission .nxt-container {
	max-width: 660px;
	margin: 0 auto;
}

.home .bring-your-mission .nxt-container,
.home .bring-your-mission .nxt-container .nxt-section-heading{
	max-width: 1200px;
}

.bring-your-mission h2,
.bring-your-mission p,
.bring-your-mission .about-cta-text,
.bring-your-mission .about-cta-text p,
.bring-your-mission .homepage-footer-cta-text,
.bring-your-mission .homepage-footer-cta-text p {
	color: #FFFFFF;
	text-align: center;
	margin: 0 0 24px;
}

.bring-your-mission p,
.bring-your-mission .about-cta-text p,
.bring-your-mission .homepage-footer-cta-text p,
.bring-your-mission .nxt-aipl-cta-text,
.bring-your-mission .nxt-aipl-cta-text p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
	margin-bottom: 36px;
}

.nxt-footer { 
	background-image: url('https://honeydew-flamingo-674206.hostingersite.com/nxt/wp-content/uploads/2026/04/Rectangle-69.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 768px) {
	.bring-your-mission { padding: 112px 0 84px; }
}

/* Footer */
.nxt-footer {
	color: #ffffff;
	padding: 5rem 0 2.5rem;
}
.nxt-footer .nxt-container {
	max-width: 1280px;
	margin: 0 auto;
}
.nxt-footer-grid {
	display: flex;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.nxt-footer-grid {
		gap: 36px;
	}
	.nxt-footer-col:nth-child(2) {
		width: 325px;
	}
	.nxt-footer-col {
		width: 275px;
	}
	.nxt-footer-mission {
		width: calc(100% - 325px - 275px - 72px);
	}
}
.nxt-footer-heading {
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #FFFFFF;
	margin: 0 0 12px;
}

.nxt-footer-tagline {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
	margin: 0 0 55px;
}

.nxt-footer-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
}
@media (min-width: 640px) {
	.nxt-footer-contact-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}
.nxt-footer-contact-item {
	display: flex;
	align-items: center;
	gap: 24px;
}
.nxt-footer-icon {
	flex-shrink: 0;
	line-height: 0;
}
.nxt-footer-icon svg {
	width: 36px;
	height: 36px;
}
.nxt-footer-contact-item a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.15s ease;
}
.nxt-footer-contact-item a:hover {
	color: #ffffff;
}

.nxt-footer-col-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
}

.nxt-footer-col-title a {
	color: #fff;
	text-decoration: none;
}

.nxt-footer-links {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #FFFFFF;
	margin: 0 0 24px;
	padding: 0;
}
.nxt-footer-links li {
	margin: 0;
}
.nxt-footer-links a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 150%;
	text-decoration: none;
	transition: color 0.15s ease;
}
.nxt-footer-links a:hover {
	color: #ffffff;
}

.nxt-footer-nav-list {
	font-weight: 700;
	margin: 0;
}

.nxt-footer-nav-list li {
	margin-bottom: 25px;
}

.nxt-footer-nav-list li:last-child {
	margin-bottom: 0;
}

.nxt-footer-nav-list li a {
	font-size: 18px;
	line-height: 150%;
}

.nxt-footer-nav-list li ul {
	margin: 0;
	padding: 0;
}

.nxt-footer-nav-list li ul li {
	margin: 0;
}

.nxt-footer-nav-list li ul li a {
	font-size: 16px;
	line-height: 150%;
	font-weight: 400;
}

.nxt-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #B376F6;
	text-align: center;
	margin-top: 35px;
}
.nxt-footer-copyright {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

@media (max-width: 767px) {
	.nxt-footer {
		padding-top: 50px;
	}
	.nxt-footer-tagline {
		margin-bottom: 30px;
	}
	.nxt-footer-contact-grid {
		gap: 15px;
		margin-bottom: 30px;
	}

	.nxt-footer-col {
		width: 100%;
	}

	.nxt-footer-links {
		margin-bottom: 30px;
	}
}

/* Services Page */
.nxt-services-header {
	padding: 50px 0;
	background-color: #fff;
}

.nxt-services-header--has-video {
	position: relative;
	overflow: hidden;
}

.nxt-services-header--has-video .nxt-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.nxt-services-header--has-video .nxt-container {
	position: relative;
	z-index: 1;
}

/* Careers top banner: text only (no image/video); dark backdrop */
.careers-page-hero-text-only {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, #1e1b4b 100%);
	background-size: cover;
	background-position: center;
}

.careers-page-hero-text-only .careers-page-hero-intro,
.careers-page-hero-text-only .careers-page-hero-intro p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #ffffff;
	margin: 0;
}

@media (min-width: 768px) {
	.careers-page-hero-text-only .careers-page-hero-intro,
	.careers-page-hero-text-only .careers-page-hero-intro p {
		font-size: 24px;
	}
}

.nxt-services-header .nxt-container {
	max-width: 860px;
	margin: 0 auto;
}

.nxt-services-header .nxt-container h1 {
	max-width: 700px;
	margin: 0 auto 12px;
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	text-align: center;
	color: #211030;
}

.nxt-industries-header.nxt-services-header .nxt-container h1 {
	max-width: 750px;
}

.nxt-about-header.nxt-services-header .nxt-container h1 {
	max-width: 920px;
}

.nxt-services-header.isDark .nxt-container h1,
.nxt-services-header.isDark .nxt-container p,
.nxt-services-header.isDark .nxt-container .nxt-service-hero-subtitle {
	color: #FFFFFF;
}

.nxt-services-header .nxt-container p,
.nxt-services-header .nxt-container .nxt-service-hero-subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
	text-align: center;
	color: #211030;
	margin: 0;
}

.nxt-capabilities .nxt-container {
	max-width: 1100px;
	margin: 0 auto;
}

.nxt-capabilities {
	padding: 50px 0;
	background-color: #fff;
}

.nxt-capabilities-heading {
	font-weight: 700;
	font-size: 28px;
	line-height: 120%;
	text-align: center;
	color: #211030;
	margin: 0 0 24px;
}

.nxt-capabilities-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.nxt-capability-card {
	width: calc(100% - 24px);
	margin: 0 12px 24px;
	background: #FFFFFF;
	border-radius: 9px;	
	box-sizing: border-box;
	transition: all 0.3s ease;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
}

.nxt-capability-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.nxt-capability-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 9px 9px 0 0;
	display: block;
}

.nxt-capability-card-content {
	padding: 20px;
}

.nxt-capability-card-title {
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 24px;
}

.nxt-capability-card-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin-bottom: 15px;
}

.nxt-capability-card-desc p {
	margin: 0;
}

.nxt-capability-card-content a {
	display: inline-block;
}

@media (min-width: 768px) {
	.nxt-services-header {
		padding: 135px 0 110px;
		min-height: calc(100vh - 87px);
		box-sizing: border-box;
		display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	}

	.nxt-services-header .nxt-container h1 {
		font-size: 60px;
		margin: 0 auto 24px;
	}

	.nxt-services-header .nxt-container p {
		font-size: 24px;
	}

	.nxt-capabilities {
		padding: 84px 0;
	}

	.nxt-capabilities-heading {
		font-size: 48px;
		margin-bottom: 48px;
	}

	.nxt-capability-card {
		width: calc(50% - 24px);
	}

	.nxt-capability-card-content {
		padding: 36px;
	}
}
/* Hover utilities */
.nxt-group:hover .nxt-group-hover-underline { text-decoration: underline; }
.nxt-group:hover .nxt-group-hover-scale { transform: scale(1.05); }
.nxt-group:hover .nxt-group-hover-scale-110 { transform: scale(1.1); }
.nxt-group:hover .nxt-group-hover-text-primary { color: #6b21a8; }
.nxt-link-hover-primary:hover { color: #6b21a8; }

/* Prose */
.nxt-prose { max-width: none; }
.nxt-prose p { margin-bottom: 1em; }
.nxt-prose a { color: #6b21a8; }
.nxt-prose a:hover { text-decoration: underline; }

.mission-content,
.vision-content {
	padding: 50px 0;
}

.vision-content {
	background-color: #F0F0F0;
}

.mission-content h3,
.vision-content h3 {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	margin: 0 0 24px;
	text-align: center;
	color: #211030;
}

.mission-content h4,
.vision-content h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 12px;
	text-align: center;
	color: #551C8E;
}

.mission-content p,
.vision-content p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	margin: 0 auto 12px;
	text-align: center;
	color: #211030;
	font-family: 'Roboto';
	width: calc(100% - 24px);
}

.mission-content p {
	max-width: 950px;
}

.vision-content p {
	max-width: 700px;
}

.mission-items {
	display: flex;
	flex-wrap: wrap;
	margin: 30px auto 0;
	max-width: 1280px;
	width: calc(100% - 24px);
}

.mission-item {
	width: calc(50% - 24px);
	margin: 0 12px 24px;
	background: #FFFFFF;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	border-radius: 9px;
	transition: all 0.3s ease;
	padding: 20px;
	box-sizing: border-box;
}
.mission-item:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.mission-item .mission-item-icn {
	margin-bottom: 20px;
}

.mission-item .mission-item-icn img {
	width: auto;
	height: 55px;
}

.mission-item h4 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #551C8E;
	margin: 0 0 12px;
	text-align: left;
}

.mission-item p {
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #211030;
	margin: 0 !important;
	text-align: left;
	width: 100% !important;
}

.mission-item:last-child {
	background: linear-gradient(180deg, #6321A5 0%, #260D3F 100%);
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
}
.mission-item:last-child:hover {
	background: linear-gradient(180deg, #551C8E 0%, #260D3F 100%);
}

.mission-item:last-child h4 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #FFFFFF;
	width: 100%;
}

@media (min-width: 768px) {
	.mission-content,
	.vision-content {
		padding: 85px 0;
	}

	.mission-content h3,
	.vision-content h3 {
		font-size: 48px;
		line-height: 58px;
		margin: 0 0 48px;
	}
	
	.mission-content h4,
	.vision-content h4 {
		font-size: 26px;
		line-height: 32px;
	}
	
	.mission-content p,
	.vision-content p {
		font-size: 18px;
		line-height: 24px;
		margin: 0 auto 24px;
	}

	.mission-items {
		margin-top: 48px;
	}

	.mission-item {
		width: calc(33.33% - 24px);
		padding: 36px 24px;
	}

	.mission-item h4 {
		font-size: 26px;
		line-height: 32px;
	}
	
	.mission-item p {
		font-size: 16px;
		line-height: 24px;
	}
}


/* ==========================================================================
   OUR DNA Section
   ========================================================================== */

.our-dna {
	background-color: #f8f8f8;
	padding: 60px 0;
}

.our-dna-layout {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.our-dna-heading {
	text-align: left;
}

.our-dna-heading h2 {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	color: #211030;
	margin: 0 0 48px;
}

.our-dna-heading h4 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	color: #551C8E;
	margin: 0;
}

.our-dna-items {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.our-dna-item {
	display: flex;
	align-items: flex-start;
	position: relative;
	padding: 20px;
	background: #FFFFFF;
	border-radius: 9px;	
	transition: all 0.3s ease;
}

.our-dna-item:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.our-dna-item-number {
	font-size: 56px;
	font-weight: 700;
	color: #330066;
	line-height: 1;
	flex-shrink: 0;
	min-width: 60px;
	text-align: left;
}

.our-dna-item-content {
	flex: 1;
	min-width: 0;
}

.our-dna-item-content h3 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	color: #551C8E;
	margin: 0 0 12px;
}

.our-dna-item-content h5 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	color: #802CD7;
	margin: 0 0 23px;
	display: flex;
	align-items: center;
}

.our-dna-item-content p {
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin: 0;
}

@media (min-width: 768px) {
	.our-dna {
		padding: 80px 0;
	}

	.our-dna-layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 48px;
	}

	.our-dna-heading {
		width: 340px;
		flex-shrink: 0;
		position: sticky;
		top: 92px;
	}

	.our-dna-items {
		flex: 1;
	}

	.our-dna-item {
		padding: 40px 48px;
		gap: 62px;
	}
}

@media (max-width: 767px) {
	.our-dna {
		padding: 40px 0;
	}

	.our-dna-layout {
		gap: 0;
	}

	.our-dna-heading {
		margin-bottom: 30px;
	}

	.our-dna-heading h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 15px;
		text-align: center;
	}

	.our-dna-heading h4 {
		font-size: 20px;
		line-height: 28px;
		margin: 0;
		text-align: center;
	}

	.our-dna-item {
		gap: 20px;
	}

	.our-dna-item-content h3 {
		font-size: 24px;
		line-height: 32px;
	}

	.our-dna-item-content h5 {
		font-size: 20px;
		line-height: 30px;
	}

	.our-dna-item-content p {
		font-size: 14px;
		line-height: 24px;
	}

	.our-dna-item-number {
		font-size: 40px;
		line-height: 50px;
	}

	.mission-item {
		width: calc(100% - 24px)
	}
}

/* Homepage Our DNA (front page, repeater: heading / subheading / body) */
.homepage-our-dna {
	padding: 50px 0;
	background-color: #fff;
}

.homepage-our-dna .nxt-container {
	max-width: 1060px;
}

.homepage-our-dna__intro {
	text-align: left;
	margin-bottom: 32px;
}

.homepage-our-dna__intro h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	color: #211030;
	margin: 0 0 16px;
}

.homepage-our-dna__section-sub {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	color: #551c8e;
	margin: 0;
}

.homepage-our-dna__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.homepage-our-dna__row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 24px;
	background: #ffffff;
	border-radius: 9px;
}

.homepage-our-dna__left {
	flex-shrink: 0;
	width: 100%;
}

.homepage-our-dna__heading {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	color: #551c8e;
	margin: 0 0 12px;
}

.homepage-our-dna__subheading {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	color: #802cd7;
	margin: 0;
	padding-left: 20px;
	position: relative;
}

.homepage-our-dna__subheading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: #802CD7;
}

.homepage-our-dna__right {
	width: 100%;
	min-width: 0;
}

.homepage-our-dna__body,
.homepage-our-dna__body p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin: 0;
}

.homepage-our-dna__body p + p {
	margin-top: 12px;
}

@media (min-width: 768px) {
	.homepage-our-dna {
		padding: 80px 0;
	}

	.homepage-our-dna__intro {
		margin-bottom: 48px;
	}

	.homepage-our-dna__row {
		flex-direction: row;
		align-items: flex-start;
		gap: 65px;
		margin-bottom: 48px;
	}

	.homepage-our-dna__left {
		flex: 0 0 38%;
		max-width: 350px;
		width: auto;
	}

	.homepage-our-dna__right {
		flex: 1;
	}
}

@media (max-width: 767px) {
	.homepage-our-dna {
		padding: 40px 0;
	}

	.homepage-our-dna__intro h2 {
		font-size: 32px;
		line-height: 40px;
		text-align: center;
	}

	.homepage-our-dna__section-sub {
		font-size: 20px;
		line-height: 28px;
		text-align: center;
	}

	.homepage-our-dna__subheading {
		font-size: 20px;
		line-height: 30px;
		gap: 10px;
	}

	.homepage-our-dna__heading {
		font-size: 24px;
		line-height: 32px;
	}
}


/* ==========================================================================
   Careers Page
   ========================================================================== */

.careers-placeholder-img {
	display: block;
}

.careers-hero,
.careers-section {
	position: relative;
}

.careers-hero .nxt-container,
.careers-section .nxt-container {
	max-width: 1280px;
}

.careers-hero {
	background: #FFFFFF;
	padding: 84px 0;
}

.careers-hero-inner {
	max-width: 1280px;
}

	.careers-hero-heading {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #211030;
	margin: 0 0 48px;
}

.careers-hero-content {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
	justify-content: center;
}

.careers-hero-image img {
	width: 100%;
	height: auto;
	display: block;
}

.careers-hero-image .careers-placeholder-img {
	width: 100%;
	max-width: 628px;
	height: 500px;
}

.careers-hero-text {
	flex: 1;
	min-width: 280px;
	max-width: 603px;
}

.careers-hero-text p {
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin: 0 0 24px;
}

.careers-hero-text p:last-child {
	margin-bottom: 0;
}

/* Section common */
.careers-section {
	padding: 84px 0;
	position: relative;
	background-color: #F0F0F0;
}

.careers-geeks-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 240px;
	background-color: #fff;
	z-index: 0;
}

.careers-section .nxt-container {
	position: relative;
	z-index: 1;
}

.careers-section-heading {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 120%;
	text-align: center;
	color: #211030;
	margin: 0 0 48px;
}

.careers-section-subtext {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #211030;
	margin: 0 auto 48px;
	max-width: 1060px;
}

/* Section 2: Data geeks */
.careers-section-text {
	text-align: center;
	margin-bottom: 48px;
}

.careers-section-text p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0 auto 16px;
	max-width: 1062px;
}

.careers-wide-image {
	max-width: 1280px;
	margin: 0 auto;
}

.careers-wide-image img {
	width: 100%;
	height: auto;
	display: block;
}

.careers-wide-image .careers-placeholder-img {
	width: 100%;
	height: 387px;
}

/* Section 3: Impact cards */
.careers-impact-section {
	background-color: #fff;
}
.careers-impact-section .careers-section-heading {
	max-width: 770px;
	margin: 0 auto 26px;
}

.careers-impact-section .careers-section-subtext {
	max-width: 840px;
	margin: 0 auto 48px;
}

.careers-impact-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}

.careers-impact-card {
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	border-radius: 9px;
	overflow: hidden;
	width: 100%;
	max-width: 519px;
	transition: all 0.3s ease;
}

.careers-impact-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.careers-card-image .careers-placeholder-img,
.careers-card-image img {
	width: 100%;
	height: 203px;
}

.careers-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 36px;
	position: relative;
}

.careers-card-icon {
	width: 47px;
	height: 47px;
	margin-bottom: 24px;
}

.careers-card-body h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 12px;
}

.careers-card-body p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0 0 52px;
}

.careers-card-body .careers-btn {
	margin-top: auto;
	width: fit-content;
	align-self: flex-start;
}

.careers-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	background: #6321A5;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 150%;
	color: #FFFFFF;
	text-decoration: none;
	transition: background 0.2s;
}

.careers-btn:hover {
	background: #551C8E;
	color: #FFFFFF;
}

.careers-btn svg {
	width: 6.5px;
	height: 11px;
}

/* Section 4: Benefits grid */
.careers-benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 48px;
}

.careers-benefit-card {
	background: #FFFFFF;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	border-radius: 9px;
	padding: 40px 36px;
	transition: all 0.3s ease;
}

.careers-benefit-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.careers-benefit-icon {
	width: auto;
	height: 67px;
	margin-bottom: 24px;
}

.careers-benefit-card h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 12px;
}

.careers-benefit-card p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0;
}

/* Section 5: Day-to-day cards */
.careers-day-section {
	background-color: #fff;
}
.careers-day-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 48px;
}

.careers-day-card {
	background: #FFFFFF;
	border-radius: 9px;
	overflow: hidden;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.careers-day-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.careers-day-card-image .careers-placeholder-img,
.careers-day-card-image img {
	width: 100%;
	height: 250px;
}

.careers-day-card-body {
	padding: 36px 36px 40px;
}

.careers-day-card-body h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 125%;
	color: #551C8E;
	margin: 0 0 16px;
}

.careers-day-card-body p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #211030;
	margin: 0;
}

/* Careers responsive */
@media (min-width: 768px) {
	.careers-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.careers-day-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.careers-hero-content {
		align-items: center;
	}

	.careers-hero-image {
		width: 50%;
	}

	.careers-hero-text {
		width: 50%;
	}

	.careers-benefits-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 35px;
	}

	.careers-day-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}


.what-we-do-card-content ul {
	margin: 0 0 0 20px;
	padding: 0;
}

.what-we-do-card-content ul li {
	list-style-type: disc;
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin: 0 0 12px !important;
}

.what-we-do-card-content ul li p {
	margin: 0 !important;
}

.services-what-we-do {
	background-color: #fff;
}

.our-5p-framework {
	padding: 50px 0;
}

.our-5p-framework .nxt-container {
	max-width: 850px;
	margin: 0 auto;
}

.our-5p-framework .nxt-container .nxt-section-heading {
	margin-bottom: 0;
}

.our-5p-framework .nxt-container h3 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #551C8E;
	margin: 0 0 12px;
}

.services-circle {
	padding: 50px 0;
	background-color: #fff;
}

.services-circle img {
	width: calc(100% - 48px);
	max-width: 1065px;
	height: auto;
	margin: 0 auto;
	display: block;
}

@media (min-width: 768px) {
	.our-5p-framework {
		padding: 84px 0;
	}

	.our-5p-framework .nxt-container h3 {
		font-size: 26px;
		line-height: 32px;
	}

	.services-circle {
		padding: 84px 0;
	}
}

.nxt-contact-section {
	padding: 50px 0;
	background-color: #fff;
}

.nxt-contact-section .nxt-container {
	max-width: 1280px;
	margin: 0 auto;
	width: calc(100% - 48px);
}

.nxt-contact-content h2 {
	font-family: 'Montserrat';
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	color: #211030;
	margin: 0 0 24px;
}

.nxt-contact-content h3 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	color: #551C8E;
	margin: 0 0 24px;
}

.nxt-contact-content-items {
	padding: 36px 0 24px;
}

.nxt-contact-content-item {
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.nxt-contact-content-item-icon {
	width: 32px;
}

.nxt-contact-content-item-content,
.nxt-contact-content-item-content a {
	text-decoration: none;
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
}

.flw-us a {
	display: inline-block;
}

.flw-us img {
	width: 32px;
	height: 32px;
	display: block;
	margin: 0 auto;
}

.reach-us-form {
	max-width: 620px;
	background: #FFFFFF;
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
	border-radius: 9px;
	padding: 24px 36px;
}

.reach-us-form h2 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	color: #551C8E;
	margin: 0 0 24px;
}

.reach-us-form .form-field {
	margin-bottom: 24px;
}

.reach-us-form .form-field:last-child {
	margin-bottom: 0;
}

.reach-us-form .form-field p {
	margin: 0 !important;
}

.reach-us-form .form-field br {
	display: none !important;
}

.reach-us-form label {
	display: block;
	margin: 0 0 8px;
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
}

.reach-us-form input[type="text"],
.reach-us-form input[type="email"],
.reach-us-form input[type="tel"],
.reach-us-form input[type="number"],
.reach-us-form input[type="date"],
.reach-us-form input[type="time"],
.reach-us-form input[type="url"],
.reach-us-form input[type="search"],
.reach-us-form input[type="password"],
.reach-us-form input[type="range"],
.reach-us-form input[type="color"],
.reach-us-form input[type="file"],
.reach-us-form input[type="hidden"],
.reach-us-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #211030;
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	outline: none;
	box-sizing: border-box;
	resize: none;
}

.reach-us-form textarea {
	height: 100px;
}

.reach-us-form input[type="submit"],
.reach-us-form button {
	width: 100%;
	cursor: pointer;
	text-align: center;
	padding: 12px 24px;
	background: #6321A5;
	border-radius: 5px;
	font-family: 'Roboto';
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	color: #FFFFFF;
	border: none;
	outline: none;
}

.ai-explore-video {
	margin-top: 50px;
	text-align: center;
}

.ai-explore-video a {
	display: inline-block;
    padding: 12px 24px;
    background: #6321A5;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    color: #FFFFFF;
    text-decoration: none;
}

.ai-explore-video a:hover {
	background-color: #7c3aed;
}

@media (min-width: 768px) {
	.nxt-contact-section .nxt-container {
		display: flex;
		flex-wrap: wrap;
		align-items: start;
		justify-content: space-between;
	}

	.nxt-contact-section .nxt-container .nxt-contact-content {
		width: calc(100% - 620px - 80px);
		margin-right: 80px;
	}

	.nxt-contact-form {
		width: 620px;
	}

	.nxt-contact-section {
		padding: 84px 0;
	}
}

@media (max-width: 767px) {
	.nxt-contact-content h2 {
		font-size: 30px;
		line-height: 40px;
		margin: 0 0 15px;
	}
	
	.nxt-contact-content h3 {
		font-size: 18px;
		line-height: 28px;
		margin: 0 0 15px;
	}
	
	.nxt-contact-content-items {
		padding: 26px 0 15px;
	}
	
	.nxt-contact-content-item {
		margin-bottom: 15px;
	}

	.flw-us {
		margin-bottom: 30px;
	}

	.desktop-img,
	.ipad-img {
		display: none !important;
	}
	.mobile-img {
		display: block;
	}
}

/* AI & Product Lab Page */
.nxt-ai-product-lab-page {
	background: #fff;
}

.nxt-aipl-section-heading {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: #0f172a;
	text-align: center;
	margin: 0 0 24px;
}

.nxt-aipl-placeholder {
	background: #e5e7eb;
	min-height: 200px;
	border-radius: 8px;
}

/* Intro */
.nxt-aipl-intro {
	padding: 4rem 0;
}

.nxt-aipl-intro-grid {
	display: grid;
	gap: 24px;
	align-items: center;
}

@media (min-width: 768px) {
	.nxt-aipl-intro-grid {
		grid-template-columns: 1fr 1fr;
	}

	.nxt-aipl-placeholder {
		min-height: 500px;
	}

	.nxt-aipl-intro-content p  {
		margin-bottom: 24px !important;
	}

	.page-template-page-contact-php .nxt-hero .nxt-container-narrow {
		top: -50px;
	}
}

.nxt-aipl-intro-image img,
.nxt-aipl-intro-image .nxt-aipl-placeholder {
	width: 100%;
	display: block;
	border-radius: 8px;
}

.nxt-aipl-intro-content {
	font-family: 'Roboto';
	font-size: 16px;
	line-height: 1.5;
	color: #374151;
}

.nxt-aipl-intro-content p {
	margin: 0 0 16px;
}

/* Principles */
.nxt-aipl-principles {
	padding: 40px 0;
	background: #fff;
	position: relative;
}

.nxt-aipl-principles::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 325px;
	background: #D9D9D9;
	z-index: 0;
}

.nxt-aipl-principles .nxt-container {
	position: relative;
	z-index: 1;
}

.nxt-aipl-principles-intro {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 2rem;
	color: #6b7280;
	font-size: 16px;
	line-height: 1.6;
}

.nxt-aipl-principles-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.nxt-aipl-principle-card {
	background: #FFFFFF;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	border-radius: 9px;
	padding: 20px;
	transition: all 0.3s ease;
}

.nxt-aipl-principle-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.nxt-aipl-principle-featured {
	grid-column: 1 / -1;
	padding: 2rem;
}

.nxt-aipl-principle-num {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	color: #211030;
	margin-right: 10px;
}

.nxt-aipl-principle-card h3 {
	font-weight: 700;
	font-size: 18px;
	color: #551C8E;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
}

.nxt-aipl-principle-card p {
	font-size: 14px;
	line-height: 1.5;
	color: #211030;
	margin: 0;
}

.nxt-aipl-principles-footer {
	text-align: center;
	font-size: 14px;
	color: #211030;
	line-height: 1.6;
	margin: 40px auto 0;
	max-width: 800px;
}

@media (min-width: 768px) {
	.nxt-aipl-principles {
		padding: 84px 0;
	}

	.nxt-aipl-principles-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.nxt-aipl-principle-card {
		padding: 1.5rem;
	}
}

/* Capabilities */
.nxt-aipl-capabilities {
	padding: 4rem 0;
	background: #F0F0F0;
}

.nxt-aipl-capabilities .nxt-container {
	max-width: 1060px;
}

.nxt-aipl-capabilities-grid {
	display: grid;
	gap: 24px;
}

.nxt-aipl-capability-card {
	background: #FFFFFF;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	border-radius: 9px;
	transition: all 0.3s ease;
}
.nxt-aipl-capability-card:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

.nxt-aipl-capability-icon {
	margin-bottom: 20px;
}

.nxt-aipl-capability-icon img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 9px 9px 0 0;
}

.nxt-aipl-capability-icon .nxt-aipl-placeholder {
	width: 100%;
	height: 250px;
	min-height: 250px;
	object-fit: cover;
	border-radius: 9px 9px 0 0;
}

.nxt-aipl-capability-card h3 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 18px;
	color: #551C8E;
	margin: 0 0 12px;
	padding: 0 20px 14px;
}

.nxt-aipl-capability-card p {
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin: 0;
	padding: 0 20px 20px;
}

@media (min-width: 768px) {
	.nxt-aipl-capabilities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Showcase */
.nxt-aipl-showcase {
	padding: 4rem 0;
	background: #fff;
}

.nxt-aipl-showcase-intro {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 2rem;
	color: #211030;
	font-size: 16px;
	line-height: 1.6;
}

.nxt-aipl-showcase-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.nxt-aipl-showcase-row {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0px 4px 4.8px rgba(0, 0, 0, 0.1);
	border-radius: 9px;
	padding: 24px;
	transition: all 0.3s ease;
}
.nxt-aipl-showcase-row:hover {
	box-shadow: 0px 19px 60.1px -14px rgba(179, 118, 246, 0.44);
}

@media (min-width: 768px) {
	.nxt-aipl-showcase-row {
		grid-template-columns: 1fr 1.5fr;
	}
}

.nxt-aipl-showcase-media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.nxt-aipl-showcase-media .nxt-aipl-placeholder {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nxt-aipl-play-btn,
.nxt-aipl-play-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nxt-aipl-play-btn svg,
.nxt-aipl-play-overlay svg {
	width: 64px;
	height: 64px;
}

.nxt-aipl-showcase-content h3 {
	font-family: 'Roboto';
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #551C8E;
	margin: 0 0 12px;
}

.nxt-aipl-showcase-content p {
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #211030;
	margin: 0;
}

@media (min-width: 768px) {
	.nxt-aipl-section-heading {
		font-size: 48px;
		margin: 0 0 48px;
	}

	.nxt-aipl-principle-card {
		padding: 44px 36px;
	}

	.nxt-aipl-principle-featured {
		padding: 55px 115px 60px 115px;
	}

	.nxt-aipl-principle-card h3 {
		margin-bottom: 24px;
		font-size: 26px;
		line-height: 33px;
	}

	.nxt-aipl-principle-card h3 span {
		margin-right: 25px;
	}

	.nxt-aipl-principle-num {
		font-size: 48px;
		line-height: 58px;
	}

	.nxt-aipl-principle-card p,
	.nxt-aipl-principles-footer {
		font-size: 16px;
	}

	.nxt-aipl-principle-featured h3 {
		justify-content: center;
	}

	.nxt-aipl-principles-footer {
		margin-top: 84px;
	}

	.nxt-aipl-capability-card h3 {
		font-size: 26px;
		line-height: 33px;
		padding: 0 36px 24px;
	}

	.nxt-aipl-capability-icon {
		margin-bottom: 36px;
	}

	.nxt-aipl-capability-card p {
		padding: 0 36px 36px;
	}

	.nxt-aipl-showcase-content h3 {
		font-size: 26px;
		line-height: 33px;
	}

	.nxt-banner-extra-text {
		position: absolute;
		bottom: 24px;
		width: 100%;
		padding: 0 20px;
		text-align: center;
	}
}

.diff-h4 {
	font-weight: 700 !important;
	text-align: center;
	color: #551C8E !important;
}

.nxt-aipl-video {
	width: 100%;
}

@media (min-width: 768px) {
	.diff-h4 {
		margin: -24px 0 27px !important;
		font-size: 26px !important;
		line-height: 33px !important;
	}
}

@media (min-width: 1200px) {
	.mobile-img,
	.ipad-img {
		display: none !important;
	}
	.desktop-img {
		display: block;
	}
}

@media (min-width: 767px) and (max-width: 1199px) {
	.mobile-img,
	.desktop-img {
		display: none !important;
	}
	.ipad-img {
		display: block;
	}
}

@media (max-width: 767px) {
	.diff-h4 {
		margin: 0px 16px 24px !important;
		font-size: 18px !important;
		line-height: 24px !important;
	}

	.nxt-hero h1 {
		font-size: 24px;
		line-height: 32px;
	}

	.nxt-section-heading h3 br {
		display: none;
	}

	.what-we-do-card-body {
		margin-bottom: 0 !important;
	}

	.what-we-do-card-content {
		margin-bottom: 20px;
	}

	.ai-product-lab {
		padding: 50px 10px;
	}

	.home .insights-container {
		padding: 0 !important;
	}

	.nxt-partners span img, .nxt-partners img {
		height: 22px !important;
	}

	.nxt-footer-heading {
		font-size: 21px;
	}

	.nxt-footer-col:not(:last-child) {
		margin-bottom: 20px !important;
	}

	.nxt-footer-col:last-child .nxt-footer-links {
		margin-bottom: 0 !important;
	}

	.nxt-services-header .nxt-container p, .nxt-services-header .nxt-container .nxt-service-hero-subtitle,
	.nxt-hero p {
		font-size: 16px;
	}

	.key-card-content h3 {
		font-size: 18px !important;
		line-height: 24px !important;
	}

	.industries-keypoints {
		padding: 0 0 40px !important;
	}

	.industries-intro,
	.industry-overview {
		padding: 40px 0 !important;
	}

	.section-title {
		margin-bottom: 20px !important;
	}

	.address-heading {
		font-size: 24px !important;
		line-height: 32px !important;
	}

	.insights-archive .nxt-hero {
		margin-bottom: 20px !important;
	}

	.insights-tabs-wrapper {
		padding: 0 20px 20px !important;
		margin-bottom: 20px !important;
	}

	.insights-tabs {
		gap: 10px !important;
		justify-content: center;
	}

	.insights-tab {
		min-width: unset !important;
		padding: 8px 16px !important;
		font-size: 14px !important;
		line-height: 20px !important;
	}

	.insights-case-stats {
		padding: 20px !important
	}

	.insights-case-stat-number {
		font-size: 30px !important;
		line-height: 36px !important;
	}

	.insights-case-stat-title {
		font-size: 16px !important;
		line-height: 24px !important;
	}

	.insights-case-stats-grid {
		grid-template-columns: unset !important;
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 0;
	}

	.insights-case-stat {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		padding: 20px !important;
		box-sizing: border-box !important;
	}

	.insights-case-summary,
	.insights-case-outcomes {
		padding: 40px 20px;
	}

	.insights-case-summary-inner h2,
	.insights-case-outcomes-inner h2 {
		font-size: 24px !important;
		line-height: 32px !important;
	}

	.insights-case-panel {
		padding: 20px !important;
	}

	.insights-case-details {
		padding-bottom: 40px !important;
	}

	.insights-case-outcomes-inner h2 {
		margin-bottom: 15px !important;
	}

	.careers-hero,
	.careers-section {
		padding: 40px 0px !important;
	}

	.careers-hero-heading,
	.careers-section-heading,
	.nxt-contact-content h2 {
		font-size: 24px !important;
		line-height: 32px !important;
		margin-bottom: 20px !important;
	}

	.careers-geeks-section::after {
		display: none;
	}

	.careers-card-body,
	.careers-day-card-body {
		padding: 20px !important;
	}

	.careers-card-body p {
		margin-bottom: 20px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.nxt-nav ul li {
		margin: 0 8px !important;
	}
	
	.nxt-nav a, .nxt-nav-link {
		font-size: 12px !important;
		line-height: 19px !important;
	}
	
	.our-dna-heading {
		width: 260px !important;
	}
	
	.our-dna-item {
		padding: 30px !important;
		gap: 30px !important;
	}
	
	.nxt-footer-mission {
		width: calc(100% - 36px) !important;
	}
	
	.nxt-footer-col:nth-child(2) {
		width: calc(50% - 36px) !important;
	}
	
	.nxt-footer-col:nth-child(3) {
		width: calc(50% - 36px) !important;
	}
}



@media (min-width: 1024px) and (max-width: 1199px) {
	
	.nxt-footer-mission {
		width: calc(100% - 250px - 150px - 72px) !important;
	}
	
	.nxt-footer-col:nth-child(2) {
		width: 250px !important;
	}
	
	.nxt-footer-col:nth-child(3) {
		width: 150px !important;
	}
}