.simple-timeline-wrapper {
    background: url('https://suncallamerica.com/content/uploads/2026/05/DatCenter-BKG-3.jpg') center center no-repeat #396C8B;
    background-size: cover;
    background-attachment: fixed;
}

.simple-timeline {
	position: relative;
	max-width: 1100px;
	margin: 0px auto;
	padding: 60px 0;
}

.simple-timeline-dot.white {
  background-color: #ffffff;
  /* Add box-shadow or border if you want it to pop */
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

/*
|--------------------------------------------------------------------------
| Center Line
|--------------------------------------------------------------------------
*/

.simple-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: #1a2674;
    transform: translateX(-50%);
}

/* Main vertical line */
.simple-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: #ccc;                    /* inactive color */
    transform: translateX(-50%);
    z-index: 1;
}

/* Progress portion of the line */
.simple-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: var(--progress, 0%);
    background: #1a2674;                 /* active color */
    transform: translateX(-50%);
    z-index: 2;
    transition: height 0.1s linear;
}

/* Dots */
.simple-timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.simple-timeline-dot.white {
    background-color: #1a2674;
}

/*
|--------------------------------------------------------------------------
| Row
|--------------------------------------------------------------------------
*/

.simple-timeline-row {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 60px;
}

/*
|--------------------------------------------------------------------------
| Reverse Alternate Rows
|--------------------------------------------------------------------------
*/

.simple-timeline-row.reverse {
	flex-direction: row-reverse;
}

/*
|--------------------------------------------------------------------------
| Sides
|--------------------------------------------------------------------------
*/

.simple-timeline-side {
	width: calc(50% - 40px);
}

.simple-timeline-content-side {
	padding: 0 30px;
}

.simple-timeline-year-side {
	padding: 0 30px;
}

/*
|--------------------------------------------------------------------------
| Content Box
|--------------------------------------------------------------------------
*/

.simple-timeline-content {
	background: #fff;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/*
|--------------------------------------------------------------------------
| Center Area
|--------------------------------------------------------------------------
*/

.simple-timeline-center {
	width: 80px;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

/*
|--------------------------------------------------------------------------
| Dot
|--------------------------------------------------------------------------
*/

.simple-timeline-dot {
	width: 25px;
	height: 25px;
	background: #09458B;
	border-radius: 50%;
}

/*
|--------------------------------------------------------------------------
| Year
|--------------------------------------------------------------------------
*/

.simple-timeline-year {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
    text-shadow: 1px 1px #000;
}

.simple-timeline-row.reverse .simple-timeline-year-side {
  text-align: right;
}

/*
|--------------------------------------------------------------------------
| Typography
|--------------------------------------------------------------------------
*/

.simple-timeline-content h3 {
	margin-top: 0;
	margin-bottom: 10px;
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
    .simple-timeline-row.reverse .simple-timeline-year-side {
        text-align: left;
    }

	.simple-timeline::before,.simple-timeline::after {
		left: 20px;
	}

	.simple-timeline-row,
	.simple-timeline-row.reverse {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 50px;
	}

	.simple-timeline-center {
		position: absolute;
		left: 11px;
		top: 10px;
		width: auto;
	}

	.simple-timeline-side {
		width: 100%;
		padding: 0;
		margin-bottom: 15px;
	}

	.simple-timeline-year {
		font-size: 24px;
	}

}