/* ========== Real-Time Projects Carousel ========== */
.asmorix-projects {
	--ap-blue: #0c5adb;
	--ap-navy: #041424;
	--ap-muted: #6b7a8c;
	--ap-yellow: #ffd200;
	--ap-font: "Nunito", "Poppins", sans-serif;
	--ap-display: "Rajdhani", "Nunito", sans-serif;
	position: relative;
	padding: 72px 0 80px;
	background:
		radial-gradient(800px 360px at 10% 0%, rgba(12, 90, 219, 0.07), transparent 55%),
		linear-gradient(180deg, #f3f6fa 0%, #f8fafc 45%, #f5f8fc 100%);
	font-family: var(--ap-font);
	color: var(--ap-navy);
	overflow: visible;
}

.asmorix-projects__inner {
	position: relative;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.asmorix-projects__header {
	max-width: 100%;
	margin: 0 auto 36px;
	text-align: center;
}

.asmorix-projects__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	color: var(--ap-blue);
	font-family: var(--ap-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.asmorix-projects__eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ap-blue);
}

.asmorix-projects__title {
	margin: 0 0 12px;
	font-family: var(--ap-display);
	font-size: clamp(22px, 2.6vw, 38px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--ap-navy);
	white-space: nowrap;
}

.asmorix-projects__title span {
	color: inherit;
}

.asmorix-projects__eyebrow {
	display: none !important;
}

.asmorix-projects__lead {
	margin: 0 auto;
	max-width: 720px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--ap-muted);
}

.asmorix-projects__carousel {
	position: relative;
	display: block;
	padding: 0 56px;
}

.asmorix-projects__viewport {
	overflow: hidden;
	width: 100%;
}

.asmorix-projects__track {
	display: flex;
	gap: 20px;
	will-change: transform;
	transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}

.asmorix-projects__card {
	flex: 0 0 calc((100% - 40px) / 3);
	min-width: 0;
	padding: 28px 24px 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid #e6eef7;
	box-shadow: 0 14px 34px rgba(4, 20, 36, 0.07);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.asmorix-projects__card:hover {
	transform: translateY(-4px);
	border-color: #d5e4f6;
	box-shadow: 0 20px 40px rgba(12, 90, 219, 0.12);
}

.asmorix-projects__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	color: var(--ap-blue);
	background:
		radial-gradient(circle at 35% 30%, #eaf2ff 0%, #dce9ff 55%, #cfe0ff 100%);
	box-shadow:
		inset 0 0 0 2px rgba(12, 90, 219, 0.12),
		0 8px 0 -2px rgba(12, 90, 219, 0.18);
}

.asmorix-projects__icon svg {
	width: 34px;
	height: 34px;
}

.asmorix-projects__card-title {
	margin: 0 0 10px;
	font-family: var(--ap-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ap-navy);
}

.asmorix-projects__card-text {
	margin: 0 0 16px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--ap-muted);
	min-height: 4.8em;
}

.asmorix-projects__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.asmorix-projects__bullets li {
	position: relative;
	padding-left: 18px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ap-navy);
}

.asmorix-projects__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ap-blue);
	box-shadow: 0 0 0 3px rgba(12, 90, 219, 0.12);
}

.asmorix-projects__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #d7e3f2;
	background: #fff;
	color: var(--ap-navy);
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(4, 20, 36, 0.1);
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.asmorix-projects__nav--prev {
	left: 0;
}

.asmorix-projects__nav--next {
	right: 0;
}

.asmorix-projects__nav svg {
	width: 18px;
	height: 18px;
}

.asmorix-projects__nav:hover {
	background: var(--ap-blue);
	border-color: var(--ap-blue);
	color: #fff;
	transform: translateY(-50%) translateY(-1px);
}

.asmorix-projects__nav:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.asmorix-projects__nav:disabled:hover {
	background: #fff;
	border-color: #d7e3f2;
	color: var(--ap-navy);
	transform: translateY(-50%);
}

.asmorix-projects__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.asmorix-projects__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c9d7ea;
	cursor: pointer;
	transition: width .25s ease, background .25s ease;
}

.asmorix-projects__dot.is-active {
	width: 24px;
	background: var(--ap-blue);
}

@media (max-width: 991px) {
	.asmorix-projects__card {
		flex-basis: calc((100% - 20px) / 2);
	}
}

@media (max-width: 767px) {
	.asmorix-projects {
		padding: 52px 0 60px;
	}
	.asmorix-projects__inner {
		width: min(100% - 28px, 1180px);
	}
	.asmorix-projects__title {
		font-size: clamp(15px, 4.2vw, 22px);
		white-space: nowrap;
	}
	.asmorix-projects__carousel {
		padding: 0;
	}
	.asmorix-projects__nav {
		display: none !important;
	}
	.asmorix-projects__card {
		flex-basis: 86%;
	}
	.asmorix-projects__card-text {
		min-height: 0;
		font-size: 17px;
	}
	.asmorix-projects__bullets li {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.asmorix-projects__track,
	.asmorix-projects__card,
	.asmorix-projects__dot {
		transition: none !important;
	}
}
