﻿
.vision-mission-card {
	background: var(--card-bg);
	border-radius: 15px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.vision-mission-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision-mission-card .card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

	.vision-mission-card .card-icon i {
		font-size: 32px;
		color: #fff;
	}

	.vision-mission-card h3 {
		font-size: 24px;
		margin-bottom: 15px;
		color: var(--text-color);
	}

.vision-mission-list {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

	.vision-mission-list li {
		margin-bottom: 10px;
		display: flex;
		align-items: center;
	}

		.vision-mission-list li i {
			color: var(--primary-color);
			margin-right: 10px;
		}

/* History Timeline */
.timeline {
	position: relative;
	padding: 40px 0;
}

.timeline-item {
	position: relative;
	padding-bottom: 80px;
	display: flex;
	justify-content: center;
}

	.timeline-item:before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 2px;
		height: 100%;
		background: var(--primary-color);
	}

	.timeline-item:last-child {
		padding-bottom: 0;
	}

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

.timeline-dot {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

	.timeline-dot img {
		width: 70px;
		height: 70px;
		object-fit: cover;
		border-radius: 50%;
	}

.timeline-content {
	width: 45%;
	padding: 20px;
	background: var(--card-bg);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: 55%;
}

.timeline-content h3 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.timeline-content h4 {
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--text-color);
}

.timeline-content p {
	font-size: 16px;
	color: var(--text-light);
}


/* Team Section */
.team-card {
	background: var(--card-bg);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

	.team-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	}

.team-image {
	position: relative;
	overflow: hidden;
}

	.team-image img {
		width: 100%;
		height: 300px;
		object-fit: cover;
		transition: all 0.5s ease;
	}

.team-card:hover .team-image img {
	transform: scale(1.05);
}

.team-social {
	position: absolute;
	bottom: -52px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 15px 0;
	background: rgba(0, 0, 0, 0.7);
	transition: all 0.3s ease;
}

.team-card:hover .team-social {
	bottom: 0;
}

.team-social a {
	width: 36px;
	height: 36px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

	.team-social a:hover {
		background: var(--secondary-color);
		transform: translateY(-3px);
	}

.team-content {
	padding: 20px;
	text-align: center;
}

	.team-content h3 {
		font-size: 20px;
		margin-bottom: 5px;
		color: var(--text-color);
	}

	.team-content p {
		color: var(--text-secondary);
		font-size: 14px;
	}

/* Certificate Section */
.certificate-card {
	background: var(--card-bg);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid var(--border-color);
}

	.certificate-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	}

.certificate-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

	.certificate-icon i {
		font-size: 32px;
		color: #fff;
	}

.certificate-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--text-color);
}

.certificate-card p {
	color: var(--text-secondary);
}

/* Responsive Styles */

@media (max-width: 767px) {
	.timeline-dot,
	.timeline-item:before {
		left: 30px;
	}

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

	.timeline-content {
		width: calc(100% - 60px);
		margin-left: 60px !important;
		margin-right: 0 !important;
	}
}
