.timeline-line,
.timeline-year {
	left: 50%;
	transform: translateX(-50%)
}

.history-section {
	padding: 40px 0;
	background: #f8f9fa
}

.history-header {
	text-align: center;
	margin-bottom: 60px
}

.history-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: var(--title-color);
	margin-bottom: 15px
}

.history-header p {
	font-size: 17px;
	color: var(--text-color);
	max-width: 700px;
	margin: 0 auto
}

.timeline-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto
}

.timeline-line {
	position: absolute;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--secondary-color) 0, var(--theme-color) 100%);
	border-radius: 2px
}

.timeline-item {
	position: relative;
	margin-bottom: 60px;
	width: 100%;
	display: flex;
	justify-content: center
}

.timeline-content {
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
	width: 45%;
	position: relative;
	transition: .4s
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: auto;
	margin-left: 0
}

.timeline-item:nth-child(2n) .timeline-content {
	margin-left: auto;
	margin-right: 0
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, .12)
}

.timeline-year {
	position: absolute;
	background: var(--secondary-color);
	color: #fff;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	z-index: 2;
	box-shadow: 0 5px 20px rgba(42, 122, 122, .3);
	border: 4px solid #fff
}

.timeline-content::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	background: var(--theme-color);
	border-radius: 50%;
	transform: translateY(-50%) rotate(45deg)
}

.timeline-item:nth-child(odd) .timeline-content::before {
	right: -50px
}

.timeline-item:nth-child(2n) .timeline-content::before {
	left: -50px
}

.timeline-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 20px
}

.timeline-content p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-color);
	text-align: justify
}

.org-structure-section {
	background: linear-gradient(135deg, var(--secondary-color) 0, #1a4a5a 100%);
	border-radius: 20px;
	padding: 60px;
	margin-top: 40px;
	color: #fff;
	position: relative;
	overflow: hidden
}

.org-structure-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, .05);
	border-radius: 50%
}

.org-structure-section h3 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 30px;
	color: #fff;
	position: relative;
	z-index: 2
}

.org-structure-section p {
	font-size: 17px;
	line-height: 1.8;
	color: rgba(255, 255, 255, .95);
	position: relative;
	z-index: 2
}

.org-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
	position: relative;
	z-index: 2
}

.stat-card {
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, .2)
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px
}

.stat-label {
	font-size: 16px;
	color: rgba(255, 255, 255, .9)
}

@media (max-width:991px) {
	.timeline-line {
		left: 30px
	}

	.timeline-content {
		width: calc(100% - 80px);
		margin-left: 80px !important
	}

	.timeline-year {
		left: 30px;
		transform: translateX(-50%)
	}

	.timeline-content::before {
		display: none
	}

	.org-stats {
		grid-template-columns: 1fr
	}
}

@media (max-width:768px) {
	.timeline-content {
		padding: 30px 25px
	}

	.org-structure-section {
		padding: 40px 25px
	}

	.stat-number {
		font-size: 36px
	}
}

/* Page Title Backgrounds */
#tf-page-title .bg-layer {
	background-image: url(../images/background/innerbanner03.webp);
}

#tf-page-title .pattern-1 {
	background-image: url(../images/shape/shape-18.png);
}

#tf-page-title .pattern-2 {
	background-image: url(../images/shape/shape-17.png);
}