/*!
Theme Name: Outgrid Child
Theme URI: https://uicore.co
Description: Multi-Purpose Elementor WordPress Theme
Author: UiCore
Author URI: https://uicore.co
Template: outgrid
Version: 1.0.0
Text Domain: outgrid
*/

 /* Add your custom style here */


.timeline {
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 50px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #FF9500, #FFD4A3);
}

.timeline-step {
	display: flex;
	gap: 1rem;   
	position: relative;
	animation: slideInUp 0.6s ease-out forwards;
}
.timeline-step:not(:last-child){
	margin-bottom: 1.5rem;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }
.timeline-step:nth-child(6) { animation-delay: 0.6s; }
.timeline-step:nth-child(7) { animation-delay: 0.7s; }
.timeline-step:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-circle {
	min-width: 50px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #FF9500 0%, #FFB84D 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(255, 149, 0, 0.25);
	position: relative;
	z-index: 2;
}

.timeline-step:hover .step-circle {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(255, 149, 0, 0.35);
	transition: all 0.3s ease;
}

.step-content {
	flex: 1;
	padding: 1.25rem;
	background: white;
	border-radius: 12px;
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
	cursor: pointer;
}

.timeline-step:hover .step-content {
	border-color: #FF9500;
	box-shadow: 0 4px 20px rgba(255, 149, 0, 0.1);
	transform: translateX(8px);
}

.step-title {
	font-weight: 700;
	font-size: 16px;
	color: #1a1a1a;
	margin-bottom: 8px;
	text-transform: capitalize;
}

.step-description {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

.step-number {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #FF9500;
	background: #fff5f0;
	padding: 4px 8px;
	border-radius: 4px;
	margin-top: 8px;
}