.timeline-container-3f8bd83e {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	width: 100%;
	position: relative;
	text-align: center;
	gap: 15px;
}

.timeline-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}

.timeline-item::before {
	content: '';
	position: absolute;
	top: 35px; /* Handled by Elementor dynamic CSS */
	left: 50%;
	width: 100%;
	border-top-style: dashed;
	border-top-width: 1px;
	border-color: #cccccc;
	z-index: 1;
}

.timeline-item:last-child::before {
	display: none;
}

.timeline-icon-wrapper {
	width: 70px; /* Handled by Elementor dynamic CSS */
	height: 70px; /* Handled by Elementor dynamic CSS */
	background-color: #000000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	position: relative;
	margin-bottom: 20px;
}

.timeline-icon-wrapper i {
	color: #ffffff;
	font-size: 24px;
}

.timeline-icon-wrapper svg {
	fill: #ffffff;
	width: 24px;
	height: 24px;
}

.timeline-title {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 10px 0;
	color: #333333;
}

.timeline-desc {
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
	.timeline-container-3f8bd83e {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	.timeline-item {
		flex: 1 1 100%;
		width: 100%;
		flex-direction: row;
		margin-bottom: 30px;
		padding: 0;
	}
	.timeline-icon-wrapper {
		margin-bottom: 0;
		margin-right: 20px;
		flex-shrink: 0;
	}
	.timeline-content {
		padding-top: 10px;
	}
	.timeline-item::before {
		display: block;
		top: 35px; /* Dynamic via control */
		left: 35px; /* Dynamic via control */
		width: 0;
		height: calc(100% + 30px);
		border-top: none;
		border-left-style: dashed;
		border-left-width: 1px;
	}
	.timeline-item:last-child::before {
		display: none;
	}
}

/* Mobile Responsive */
@media (max-width: 767px) {
	.timeline-container-3f8bd83e {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	.timeline-item {
		flex: 1 1 100%;
		width: 100%;
		flex-direction: row;
		margin-bottom: 30px;
		padding: 0;
	}
	.timeline-icon-wrapper {
		margin-bottom: 0;
		margin-right: 20px;
		flex-shrink: 0;
	}
	.timeline-content {
		padding-top: 10px;
	}
	.timeline-item::before {
		display: block;
		top: 35px; /* Dynamic via control */
		left: 35px; /* Dynamic via control */
		width: 0;
		height: calc(100% + 30px);
		border-top: none;
		border-left-style: dashed;
		border-left-width: 1px;
	}
	.timeline-item:last-child::before {
		display: none;
	}
}