/* === [DB-SNIPPET-001] Slide In Left (scroll-based) =============== */
.slide_left {
	/* start 100px off to the left */
	transform: translateX(-100px);
	transition: transform 0.5s ease-out;
	will-change: transform;
}

/* === [DB-SNIPPET-002] Pulsate Effect (sitewide) ================== */
.pulsate {
	animation: slowPulse 2.5s ease-in-out infinite;
	transition: all 0.3s ease;
}

/* Pulse keyframes */
@keyframes slowPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.9;
	}
}

/* Stop pulsing on hover */
.pulsate:hover {
	animation: none;
	transform: scale(1.02); /* optional subtle hover scale */
}

