/**
 * About Page Specific Styles
 *
 * @format
 */

/* Page Hero */
.page-hero {
	height: 70vh;
	background: linear-gradient(135deg, #0b5394 0%, #1f6fb2 100%);
	color: white;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	margin-top: 70px;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.scroll-indicator {
	margin-top: 3rem;
}

.scroll-indicator span {
	display: block;
	margin-bottom: 10px;
	font-size: 0.9rem;
	opacity: 0.8;
}

.scroll-arrow {
	width: 2px;
	height: 30px;
	background: white;
	margin: 0 auto;
	position: relative;
	animation: bounce 2s infinite;
}

.scroll-arrow::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: -4px;
	width: 10px;
	height: 10px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
	width: 100px;
	height: 100px;
	top: 20%;
	left: 10%;
}

.shape-2 {
	width: 150px;
	height: 150px;
	bottom: 10%;
	right: 15%;
}

.shape-3 {
	width: 80px;
	height: 80px;
	top: 40%;
	right: 20%;
}

/* About Section */
.about-section {
	padding: 100px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.section-tag {
	display: inline-block;
	background: #ff7f11;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.section-title {
	font-size: 2.5rem;
	color: #0b5394;
	margin-bottom: 2rem;
}

.text-content p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-card {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff7f11;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1rem;
	color: #666;
}

.image-container {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.image-container:hover img {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 30px;
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.image-container:hover .image-overlay {
	transform: translateY(0);
}

.overlay-content h3 {
	margin-bottom: 10px;
	font-size: 1.5rem;
}

/* Mission Section */
.mission-section {
	padding: 100px 0;
	background: #f8f9fa;
}

.mission-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.mission-card {
	background: white;
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
	font-size: 3rem;
	color: #d4af37;
	margin-bottom: 20px;
}

.mission-card h3 {
	font-size: 1.5rem;
	color: #0b5394;
	margin-bottom: 15px;
}

.mission-card p {
	color: #666;
	line-height: 1.7;
}

.mission-card ul {
	list-style: none;
	text-align: left;
}

.mission-card li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	position: relative;
	padding-left: 20px;
}

.mission-card li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #d4af37;
	font-weight: bold;
}

/* Leadership Section */
.leadership-section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.leadership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.leader-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
	height: 250px;
	overflow: hidden;
}

.leader-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
	transform: scale(1.1);
}

.leader-info {
	padding: 25px;
}

.leader-info h3 {
	font-size: 1.5rem;
	color: #1a365d;
	margin-bottom: 5px;
}

.leader-role {
	color: #d4af37;
	font-weight: 600;
	margin-bottom: 15px;
}

.leader-bio {
	color: #666;
	line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
	padding: 100px 0;
	background: #f8f9fa;
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #d4af37;
	transform: translateX(-50%);
}

.timeline-item {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.timeline-year {
	flex: 0 0 100px;
	background: #d4af37;
	color: white;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	font-weight: 700;
	align-self: center;
	position: relative;
	z-index: 2;
}

.timeline-content {
	flex: 1;
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin: 0 30px;
	position: relative;
}

.timeline-content::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	background: white;
	transform: translateY(-50%) rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
	left: -10px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
	right: -10px;
}

.timeline-content h3 {
	color: #1a365d;
	margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)),
		url("../assets/images/cta-bg.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	background-color: #d4af37;
	color: white;
}

.btn-primary:hover {
	background-color: #b8941f;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
	border: 2px solid white;
	color: white;
	background: transparent;
}

.btn-outline:hover {
	background: white;
	color: #1a365d;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-item {
		flex-direction: row !important;
	}

	.timeline-year {
		flex: 0 0 80px;
	}

	.timeline-content {
		margin-left: 50px;
		margin-right: 0;
	}

	.timeline-content::before {
		left: -10px !important;
		right: auto !important;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.mission-content {
		grid-template-columns: 1fr;
	}

	.leadership-grid {
		grid-template-columns: 1fr;
	}
}
