/**
 * IISAUH THEME2026 — Curriculum Page Stylesheet
 * Modern Dynamic Layout, 3D Elevated Cards, Benchmark Pills & Ambient Background
 *
 * @package IISAUH_Theme2026
 */

/* --------------------------------------------------------------------------
   1. Root Scoping & Variables
   -------------------------------------------------------------------------- */
.curriculum-page {
	--navy: #071a2d;
	--primary-blue: #0284c7;
	--primary-blue-hover: #0369a1;
	--teal: #00a896;
	--teal-light: #02c4ae;
	--sky-blue: #38bdf8;
	--slate-body: #475569;
	--slate-muted: #64748b;
	background: #f8fafc;
	color: var(--slate-body);
	overflow-x: hidden;
	position: relative;
}

/* --------------------------------------------------------------------------
   2. Curriculum Hero Banner (Exact Same Size as Careers Page Header)
   -------------------------------------------------------------------------- */
.about-hero.curriculum-hero,
.curriculum-hero {
	position: relative;
	min-height: auto !important;
	padding: clamp(32px, 3.5vw, 48px) 0 clamp(32px, 3.5vw, 48px) !important;
	background: 
		radial-gradient(circle at 88% 25%, rgba(0, 168, 150, 0.22) 0%, transparent 50%),
		radial-gradient(circle at 12% 75%, rgba(56, 189, 248, 0.16) 0%, transparent 45%),
		linear-gradient(135deg, #07192f 0%, #0d284a 50%, #123a66 100%);
	color: #ffffff;
	overflow: hidden;
	isolation: isolate;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.curriculum-hero__shell {
	position: relative;
	z-index: 3;
	width: min(100%, var(--container-max, 1680px));
	max-width: var(--container-max, 1680px);
	margin: 0 auto;
	padding: 0 var(--gutter, clamp(16px, 3.5vw, 40px));
	box-sizing: border-box;
}

.curriculum-hero__title {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.curriculum-hero__title-icon.about-hero__badge-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #00a896;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 168, 150, 0.4);
}

.curriculum-hero__title-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.curriculum-hero__title-text {
	display: inline-block;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.curriculum-hero__backdrop {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.curriculum-hero__pattern {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.75;
}

.curriculum-hero__pattern svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Subtle corner ambient orbs */
.curriculum-hero__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	filter: blur(65px);
}

.curriculum-hero__orb--1 {
	top: -30%;
	right: 5%;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(0, 168, 150, 0.24) 0%, transparent 70%);
}

.curriculum-hero__orb--2 {
	bottom: -40%;
	left: -5%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
}

/* Floating Academic Icons (Slow Drift) */
.curr-floating-icon {
	position: absolute;
	pointer-events: none;
	z-index: 2;
	color: var(--sky-blue, #38bdf8);
	opacity: 0.28;
	filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.25));
	will-change: transform;
}

.curr-floating-icon svg {
	display: block;
}

.curr-floating-icon--1 {
	top: 18%;
	left: 28%;
	color: #38bdf8;
	opacity: 0.28;
	animation: currFloatSlow1 24s ease-in-out infinite alternate;
}

.curr-floating-icon--2 {
	top: 54%;
	left: 45%;
	color: #02c4ae;
	opacity: 0.24;
	animation: currFloatSlow2 28s ease-in-out infinite alternate;
}

.curr-floating-icon--3 {
	top: 20%;
	right: 28%;
	color: #38bdf8;
	opacity: 0.26;
	animation: currFloatSlow3 22s ease-in-out infinite alternate;
}

.curr-floating-icon--4 {
	top: 56%;
	right: 12%;
	color: #02c4ae;
	opacity: 0.28;
	animation: currFloatSlow1 26s ease-in-out infinite alternate-reverse;
}

.curr-floating-icon--5 {
	top: 15%;
	right: 48%;
	color: #818cf8;
	opacity: 0.22;
	animation: currFloatSlow2 30s ease-in-out infinite alternate-reverse;
}

.curr-floating-icon--6 {
	top: 58%;
	left: 14%;
	color: #02c4ae;
	opacity: 0.25;
	animation: currFloatSlow3 25s ease-in-out infinite alternate;
}

@keyframes currFloatSlow1 {
	0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
	50% { transform: translate3d(28px, -16px, 0) rotate(8deg) scale(1.08); }
	100% { transform: translate3d(-20px, 14px, 0) rotate(-6deg) scale(0.95); }
}

@keyframes currFloatSlow2 {
	0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
	50% { transform: translate3d(-26px, 18px, 0) rotate(-10deg) scale(1.06); }
	100% { transform: translate3d(24px, -20px, 0) rotate(7deg) scale(0.94); }
}

@keyframes currFloatSlow3 {
	0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
	50% { transform: translate3d(20px, 20px, 0) rotate(12deg) scale(1.1); }
	100% { transform: translate3d(-22px, -15px, 0) rotate(-8deg) scale(0.92); }
}

/* --------------------------------------------------------------------------
   3. Main Curriculum Showcase Section with Animated Outer Backdrop
   -------------------------------------------------------------------------- */
.curr-showcase {
	position: relative;
	padding: clamp(44px, 5.5vw, 68px) 0 clamp(68px, 8.5vw, 110px);
	background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 35%, #ffffff 100%);
	overflow: hidden;
}

.curr-showcase__backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.curr-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(65px);
	pointer-events: none;
	will-change: transform, opacity;
}

.curr-bg-orb--1 {
	top: 8%;
	left: -6%;
	width: 540px;
	height: 540px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(2, 196, 174, 0.05) 50%, transparent 70%);
	animation: currOrbFloat1 18s ease-in-out infinite alternate;
}

.curr-bg-orb--2 {
	top: 42%;
	right: -8%;
	width: 580px;
	height: 580px;
	background: radial-gradient(circle, rgba(2, 196, 174, 0.16) 0%, rgba(56, 189, 248, 0.06) 50%, transparent 70%);
	animation: currOrbFloat2 24s ease-in-out infinite alternate;
}

.curr-bg-orb--3 {
	bottom: 8%;
	left: 20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, transparent 70%);
	animation: currOrbFloat3 22s ease-in-out infinite alternate;
}

@keyframes currOrbFloat1 {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(40px, 30px, 0) scale(1.1); }
}

@keyframes currOrbFloat2 {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(-35px, -25px, 0) scale(1.08); }
}

@keyframes currOrbFloat3 {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(25px, -35px, 0) scale(1.12); }
}

.curr-bg-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.curr-bg-wave--1 { animation: currWavePulse1 12s ease-in-out infinite alternate; }
.curr-bg-wave--2 { animation: currWavePulse2 15s ease-in-out infinite alternate; }

@keyframes currWavePulse1 {
	0% { stroke-dashoffset: 0; opacity: 0.35; }
	100% { stroke-dashoffset: 60; opacity: 0.7; }
}

@keyframes currWavePulse2 {
	0% { stroke-dashoffset: 0; opacity: 0.3; }
	100% { stroke-dashoffset: -70; opacity: 0.65; }
}

/* Container */
.curr-showcase__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--container-max, 1680px);
	margin: 0 auto;
	padding: 0 var(--gutter, clamp(20px, 2.5vw, 56px));
	display: flex;
	flex-direction: column;
	gap: clamp(48px, 6vw, 76px);
}

/* --------------------------------------------------------------------------
   4. Section 1: AI & Robotics Integrated Curriculum (2-Column Split)
   -------------------------------------------------------------------------- */
.curr-split-card {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	border: 1.5px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 12px 36px -8px rgba(7, 26, 45, 0.08);
	padding: clamp(28px, 4vw, 44px);
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(28px, 4vw, 48px);
	align-items: center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
	overflow: hidden;
}

.curr-split-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 55px -10px rgba(2, 132, 199, 0.16);
	border-color: rgba(56, 189, 248, 0.5);
}

.curr-split-card--reversed {
	grid-template-columns: 0.85fr 1.15fr;
}

/* Glare Overlay */
.curr-card__glare {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	transition: opacity 0.3s ease;
	opacity: 0;
	z-index: 5;
}

.curr-split-card:hover .curr-card__glare,
.curr-stage-card:hover .curr-card__glare {
	opacity: 1;
}

/* Content Area */
.curr-split-card__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Subtitle Quote Banner */
.curr-badge-quote {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, rgba(2, 196, 174, 0.1) 100%);
	border: 1px solid rgba(56, 189, 248, 0.35);
	border-radius: 50px;
	padding: 8px 20px 8px 12px;
	font-size: clamp(15px, 1.25vw, 17px);
	font-weight: 700;
	color: var(--primary-blue);
	width: fit-content;
	box-shadow: 0 4px 14px rgba(2, 132, 199, 0.1);
	transition: all 0.3s ease;
}

.curr-badge-quote:hover {
	transform: translateY(-2px);
	border-color: rgba(2, 196, 174, 0.6);
	box-shadow: 0 8px 20px rgba(2, 132, 199, 0.18);
}

.curr-badge-quote__ai-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.22) 0%, rgba(2, 196, 174, 0.18) 100%);
	border: 1px solid rgba(56, 189, 248, 0.45);
	box-shadow: 0 0 14px rgba(2, 196, 174, 0.35);
	flex-shrink: 0;
}

.curr-ai-sparkle-svg {
	display: block;
	overflow: visible;
}

.curr-ai-spark-core {
	transform-origin: 12px 12px;
	animation: currAiPulse 2.4s ease-in-out infinite alternate;
}

.curr-ai-particle--1 {
	transform-origin: 12px 12px;
	animation: currAiOrbit1 3s linear infinite;
}

.curr-ai-particle--2 {
	transform-origin: 12px 12px;
	animation: currAiOrbit2 3.6s linear infinite;
}

@keyframes currAiPulse {
	0% {
		transform: scale(0.85) rotate(0deg);
		filter: drop-shadow(0 0 2px rgba(0, 168, 150, 0.4));
		opacity: 0.85;
	}
	50% {
		transform: scale(1.12) rotate(12deg);
		filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.9));
		opacity: 1;
	}
	100% {
		transform: scale(0.92) rotate(-8deg);
		filter: drop-shadow(0 0 4px rgba(2, 196, 174, 0.6));
		opacity: 0.9;
	}
}

@keyframes currAiOrbit1 {
	0% {
		transform: rotate(0deg);
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(360deg);
		opacity: 0.3;
	}
}

@keyframes currAiOrbit2 {
	0% {
		transform: rotate(0deg);
		opacity: 0.4;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-360deg);
		opacity: 0.4;
	}
}

.curr-split-card__text {
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--slate-body);
	margin: 0;
}

/* Key Features Section */
.curr-features-block {
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1.5px solid rgba(226, 232, 240, 0.8);
}

.curr-features-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 14px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.curr-features-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
}

.curr-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--slate-body);
	line-height: 1.5;
}

.curr-feature-item__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, #0284c7 0%, #02c4ae 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.curr-feature-item__icon svg {
	width: 12px;
	height: 12px;
}

/* Media Graphic Area */
.curr-split-card__media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 30px -6px rgba(7, 26, 45, 0.12);
	border: 1px solid rgba(226, 232, 240, 0.9);
	height: auto;
	align-self: center;
	background: #f8fafc;
}

.curr-split-card__img {
	width: 100%;
	height: auto;
	max-height: 520px;
	aspect-ratio: auto;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.curr-split-card:hover .curr-split-card__img {
	transform: scale(1.04);
}

/* Modern Floating Frosted Media Badge */
.curr-media-badge {
	position: absolute;
	bottom: 18px;
	left: 18px;
	right: auto;
	max-width: calc(100% - 36px);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 253, 250, 0.92) 100%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1.5px solid rgba(0, 168, 150, 0.35);
	border-radius: 50px;
	padding: 7px 18px 7px 8px;
	color: var(--navy);
	font-size: 13.5px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 10px 25px -4px rgba(7, 26, 45, 0.2), 0 0 16px rgba(2, 196, 174, 0.22);
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 3;
}

.curr-split-card:hover .curr-media-badge {
	transform: translateY(-3px) scale(1.02);
	border-color: rgba(2, 196, 174, 0.7);
	box-shadow: 0 14px 30px -4px rgba(2, 132, 199, 0.3), 0 0 20px rgba(2, 196, 174, 0.35);
}

.curr-media-badge__icon-wrap {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0284c7 0%, #00a896 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(2, 132, 199, 0.4);
	transition: transform 0.3s ease;
}

.curr-split-card:hover .curr-media-badge__icon-wrap {
	transform: scale(1.1) rotate(6deg);
}

.curr-media-badge__text {
	color: var(--navy);
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   5. Section 2: Assessments & Benchmarking Strip
   -------------------------------------------------------------------------- */
.curr-section-title {
	margin: 0;
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 800;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 12px;
}

.curr-section-title__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(2, 196, 174, 0.16) 100%);
	border: 1.5px solid rgba(56, 189, 248, 0.4);
	color: var(--primary-blue);
	box-shadow: 0 6px 16px -3px rgba(56, 189, 248, 0.25);
	transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.curr-split-card:hover .curr-section-title__icon {
	background: linear-gradient(135deg, #0284c7 0%, #00a896 50%, #02c4ae 100%) !important;
	color: #ffffff !important;
	transform: scale(1.08);
}

.curr-split-card:hover .curr-section-title__icon svg {
	color: #ffffff !important;
	stroke: #ffffff !important;
}

/* Benchmarks Pill Strip */
.curr-benchmarks-wrap {
	margin-top: 6px;
	padding-top: 18px;
	border-top: 1.5px solid rgba(226, 232, 240, 0.8);
}

.curr-benchmarks-label {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--slate-muted);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 10px;
	display: block;
}

.curr-benchmarks-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.curr-benchmark-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	border-radius: 50px;
	background: #f1f5f9;
	border: 1.5px solid rgba(203, 213, 225, 0.8);
	font-size: 13.5px;
	font-weight: 800;
	color: var(--navy);
	transition: all 0.25s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.curr-benchmark-pill:hover {
	background: linear-gradient(135deg, #0284c7 0%, #00a896 100%);
	color: #ffffff;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px -2px rgba(2, 132, 199, 0.35);
}

/* --------------------------------------------------------------------------
   6. Section 3: Educational Stages 3-Column Grid
   -------------------------------------------------------------------------- */
.curr-stages-section {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.curr-stages-header {
	text-align: center;
	max-width: 750px;
	margin: 0 auto;
}

.curr-stages-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 18px;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(0, 168, 150, 0.15) 0%, rgba(2, 196, 174, 0.1) 100%);
	border: 1px solid rgba(0, 168, 150, 0.35);
	color: var(--teal);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.curr-stages-title {
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 800;
	color: var(--navy);
	margin: 0 0 8px 0;
}

.curr-stages-desc {
	font-size: 15.5px;
	color: var(--slate-muted);
	margin: 0;
	line-height: 1.6;
}

.curr-stages-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	align-items: stretch;
}

/* Individual Stage Card */
.curr-stage-card {
	position: relative;
	background: #ffffff;
	border-radius: 22px;
	border: 1.5px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 10px 30px -6px rgba(7, 26, 45, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.curr-stage-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 50px -10px rgba(2, 132, 199, 0.18);
	border-color: rgba(56, 189, 248, 0.5);
}

.curr-stage-card__media {
	position: relative;
	height: 230px;
	overflow: hidden;
	background: #0a1e36;
}

.curr-stage-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.curr-stage-card:hover .curr-stage-card__img {
	transform: scale(1.06);
}

.curr-stage-card__index {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0284c7 0%, #00a896 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.curr-stage-card__body {
	padding: 20px 18px 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	flex: 1;
	gap: 12px;
	background: #ffffff;
}

.curr-stage-card__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
	width: 100%;
}

.curr-stage-card__tag {
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	text-align: center;
}

.curr-stage-card__title {
	margin: 0;
	font-size: 16.5px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.35;
	text-align: center;
}

/* Compact Modern EYFS / CBSE Capsule Pill */
.curr-stage-card__curriculum-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 5px 16px;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(2, 196, 174, 0.1) 100%);
	border: 1px solid rgba(56, 189, 248, 0.35);
	box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	margin: 0 auto;
	width: fit-content;
}

.curr-stage-card:hover .curr-stage-card__curriculum-badge {
	background: linear-gradient(135deg, #0284c7 0%, #00a896 100%) !important;
	border-color: transparent !important;
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 6px 16px -2px rgba(2, 132, 199, 0.35) !important;
}

.curr-stage-card__curriculum-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	transition: color 0.3s ease, transform 0.3s ease;
}

.curr-stage-card:hover .curr-stage-card__curriculum-icon {
	color: #ffffff !important;
	transform: scale(1.1);
}

.curr-stage-card__curriculum-text {
	font-size: 12.5px;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: 0.8px;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.curr-stage-card:hover .curr-stage-card__curriculum-text {
	color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   7. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.curr-split-card,
	.curr-split-card--reversed {
		grid-template-columns: 1fr;
	}

	.curr-split-card__media {
		min-height: 280px;
	}

	.curr-stages-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.curr-features-grid {
		grid-template-columns: 1fr;
	}

	.curr-stages-grid {
		grid-template-columns: 1fr;
	}

	.curr-split-card {
		padding: 24px;
	}
}
