body {
	font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
}
.hero-section {
	position: relative;
	background-color: #2c3e50;
	overflow: hidden;
}
#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 1;
}

/* Animation for elements fading in on scroll */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Infographic timeline styles */
.timeline-container::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 4px;
	height: 100%;
	background-color: #3b82f6; /* Blue-500 */
	opacity: 0.3;
}

.timeline-item {
	position: relative;
	width: 100%;
	padding: 2rem 0;
}

.timeline-content {
	position: relative;
	width: 45%;
	padding: 1.5rem;
	border-radius: 0.5rem;
	background-color: white;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
	left: 0;
	transform-origin: left center;
}

.timeline-item:nth-child(even) .timeline-content {
	left: 55%;
	transform-origin: right center;
}

.timeline-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #3b82f6;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #eff6ff; /* Blue-50 */
	z-index: 10;
}

/* Graphic effects for "See in Action" section */
.action-section {
	position: relative;
	overflow: hidden;
}

.graphic-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: float 15s infinite ease-in-out alternate;
	z-index: 1;
}

.graphic-shape.shape1 {
	width: 200px;
	height: 200px;
	background-color: #60a5fa; /* blue-400 */
	top: 10%;
	left: 5%;
	animation-duration: 20s;
}

.graphic-shape.shape2 {
	width: 150px;
	height: 150px;
	background-color: #34d399; /* green-400 */
	bottom: 15%;
	right: 10%;
	animation-duration: 25s;
	animation-delay: 3s;
}

.graphic-shape.shape3 {
	width: 80px;
	height: 80px;
	background-color: #f87171; /* red-400 */
	top: 20%;
	right: 20%;
	animation-duration: 18s;
	animation-delay: 1s;
}

.graphic-shape.shape4 {
	width: 120px;
	height: 120px;
	background-color: #fbbf24; /* amber-400 */
	bottom: 30%;
	left: 15%;
	animation-duration: 22s;
	animation-delay: 5s;
}

@keyframes float {
	0% {
		transform: translateY(0px) rotate(0deg) scale(1);
	}
	100% {
		transform: translateY(-50px) translateX(30px) rotate(45deg) scale(1.1);
	}
}