.ps-container-d4c1af62 {
	position: relative;
	width: 100%;
}

.ps-glow-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.ps-glow {
	position: absolute;
	width: 50vw;
	height: 50vh;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.6;
}

.ps-glow-1 {
	top: 10%;
	left: -10%;
	background: rgba(238, 130, 238, 0.5);
}

.ps-glow-2 {
	bottom: 10%;
	right: -10%;
	background: rgba(0, 191, 255, 0.5);
}

.ps-sticky-track {
	position: relative;
	height: 300vh; /* creates scrollable area on desktop */
}

.ps-cards-wrapper {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 40px;
	z-index: 1;
	overflow: hidden;
}

.ps-card {
	flex: 1;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
	transform-origin: center bottom;
	will-change: transform, opacity;
}

.ps-card-number {
	font-size: 120px;
	font-weight: 300;
	line-height: 1;
	color: #000;
	margin-bottom: 20px;
}

.ps-card-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #111;
}

.ps-card-desc {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* Tablet & Mobile Overrides */
@media (max-width: 1024px) {
	.ps-sticky-track {
		height: auto;
	}
	.ps-cards-wrapper {
		position: relative;
		height: auto;
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		justify-content: flex-start;
		padding: 40px 20px;
	}
	.ps-card {
		flex: 0 0 80%;
		scroll-snap-align: center;
		transform: none !important;
		opacity: 1 !important;
	}
}

@media (max-width: 767px) {
	.ps-cards-wrapper {
		flex-direction: column;
		overflow-x: hidden;
		padding: 20px;
	}
	.ps-card {
		flex: 1 1 auto;
		width: 100%;
		min-height: auto;
	}
}