/* Hero Section */
.hero-section {
	position: relative;
	background: linear-gradient(135deg, #1e1e3a 0%, #2c2c49 40%, #1a3a5c 100%);
	padding: 8rem 0 5rem;
	text-align: center;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 30% 60%, rgba(0, 164, 239, 0.12) 0%, transparent 50%),
		radial-gradient(circle at 70% 20%, rgba(0, 164, 239, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 50% 90%, rgba(91, 193, 253, 0.06) 0%, transparent 40%);
	pointer-events: none;
}

.hero-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.hero-content {
	max-width: 770px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-content::after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #00a4ef, #5bc1fd);
	border-radius: 2px;
	margin: 1.5rem auto 0;
}

.hero-label {
	display: inline-block;
	color: #00a4ef;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1.5rem;
	font-family: "raleway-semibold", sans-serif;
}

.hero-section h1 {
	color: #fff;
	font-size: 2.4rem;
	font-family: "raleway-bold", sans-serif;
	line-height: 1.25;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.hero-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.05rem;
	font-family: "raleway-regular", sans-serif;
	line-height: 1.7;
	letter-spacing: 0.2px;
	margin: 0;
}

/* Timeline Section */
.timeline-section {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, #00a4ef, #2c2c49);
	border-radius: 3px;
}

/* Timeline Item */
.timeline-item {
	position: relative;
	padding-left: 120px;
	margin-bottom: 3rem;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	text-align: center;
}

.timeline-year {
	display: inline-block;
	background: linear-gradient(135deg, #00a4ef 0%, #0077b6 100%);
	color: #fff;
	font-family: "raleway-semibold", sans-serif;
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
}

/* Timeline Card */
.timeline-card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-card.featured {
	border: 2px solid #00a4ef;
}

.timeline-card.featured .card-header {
	background: linear-gradient(135deg, #00a4ef 0%, #0077b6 100%);
}

.timeline-card.featured .card-header h2,
.timeline-card.featured .card-header .card-icon {
	color: #fff;
}

/* Card Header */
.card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 2rem;
	background: #f8f9fa;
	border-bottom: 1px solid #eee;
}

.card-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #00a4ef 0%, #0077b6 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.card-icon i {
	font-size: 1.1rem;
	color: #fff;
}

.timeline-card.featured .card-icon {
	background: rgba(255, 255, 255, 0.2);
}

.card-header h2 {
	font-family: "raleway-semibold", sans-serif;
	font-size: 1.4rem;
	color: #2c2c49;
	margin: 0;
	line-height: 1.3;
}

/* Card Body */
.card-body {
	padding: 2rem;
}

.card-text {
	margin-bottom: 1.5rem;
}

.card-text:last-child {
	margin-bottom: 0;
}

.card-text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1rem;
}

.card-text p:last-child {
	margin-bottom: 0;
}

.card-text p strong {
	color: #2c2c49;
}

.card-text p.highlight {
	background: linear-gradient(135deg, rgba(0, 164, 239, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	border-left: 4px solid #00a4ef;
	color: #2c2c49;
	font-weight: 500;
}

/* Card Image */
.card-image {
	margin-bottom: 1.5rem;
	border-radius: 0.75rem;
	overflow: hidden;
}

.card-image.full-width {
	margin: 0 -2rem 1.5rem;
	border-radius: 0;
}

.card-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.card-image:hover img {
	transform: scale(1.02);
}

/* Card Figure */
.card-figure {
	margin: 1.5rem 0;
	border-radius: 0.75rem;
	overflow: hidden;
	background: #f8f9fa;
}

.card-figure img {
	width: 100%;
	height: auto;
	display: block;
}

.card-figure figcaption {
	padding: 1rem 1.5rem;
	font-size: 0.9rem;
	color: #666;
	font-style: italic;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.card-figure figcaption i {
	color: #00a4ef;
}

/* Blockquote */
blockquote {
	background: linear-gradient(135deg, #2c2c49 0%, #1a1a2e 100%);
	padding: 2rem;
	border-radius: 0.75rem;
	margin: 1.5rem 0;
	position: relative;
}

blockquote::before {
	content: '"';
	position: absolute;
	top: 0.5rem;
	left: 1rem;
	font-size: 3rem;
	color: rgba(0, 164, 239, 0.3);
	font-family: Georgia, serif;
	line-height: 1;
}

blockquote p {
	color: rgba(255, 255, 255, 0.9) !important;
	position: relative;
	z-index: 1;
	margin-bottom: 1rem !important;
}

blockquote p:last-of-type {
	margin-bottom: 1rem !important;
}

blockquote p em {
	color: #00a4ef;
	font-style: normal;
	font-weight: 500;
}

blockquote footer {
	color: #00a4ef;
	font-size: 0.9rem;
	font-weight: 600;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.stat-box {
	background: linear-gradient(135deg, rgba(0, 164, 239, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
	padding: 1.5rem;
	border-radius: 0.75rem;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-family: "raleway-semibold", sans-serif;
	color: #00a4ef;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	display: block;
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Responsive Styles */
@media all and (max-width: 991px) {
	.hero-section {
		padding: 7rem 0 4rem;
	}

	.hero-section h1 {
		font-size: 2.1rem;
	}

	.timeline-section {
		padding: 4rem 0;
	}
}

@media all and (max-width: 767px) {
	.hero-section {
		padding: 6rem 0 3rem;
	}

	.hero-section h1 {
		font-size: 1.9rem;
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-item {
		padding-left: 60px;
	}

	.timeline-marker {
		width: 40px;
	}

	.timeline-year {
		font-size: 0.7rem;
		padding: 0.4rem 0.6rem;
	}

	.card-header {
		padding: 1.25rem 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 0.75rem;
	}

	.card-header h2 {
		font-size: 1.2rem;
	}

	.card-body {
		padding: 1.5rem;
	}

	.card-image.full-width {
		margin: 0 -1.5rem 1.5rem;
	}

	.card-text p {
		font-size: 1rem;
	}

	blockquote {
		padding: 1.5rem;
	}

	blockquote::before {
		font-size: 3rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat-number {
		font-size: 2rem;
	}
}

@media all and (max-width: 575px) {
	.hero-section {
		padding: 5rem 0 2.5rem;
	}

	.hero-label {
		font-size: 0.8rem;
		letter-spacing: 2px;
	}

	.hero-section h1 {
		font-size: 1.7rem;
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.timeline-section {
		padding: 3rem 0;
	}

	.timeline::before {
		left: 15px;
	}

	.timeline-item {
		padding-left: 50px;
		margin-bottom: 2rem;
	}

	.timeline-marker {
		width: 30px;
	}

	.timeline-year {
		font-size: 0.65rem;
		padding: 0.35rem 0.5rem;
	}

	.card-icon {
		width: 40px;
		height: 40px;
	}

	.card-icon i {
		font-size: 1rem;
	}

	.card-header h2 {
		font-size: 1.1rem;
	}

	.card-body {
		padding: 1.25rem;
	}

	.card-image.full-width {
		margin: 0 -1.25rem 1.25rem;
	}

	.card-text p.highlight {
		padding: 0.875rem 1rem;
	}
}

@media all and (min-width: 1200px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.05rem;
	}

	.timeline-section {
		padding: 6rem 0;
	}
}

@media all and (min-width: 1440px) {
	.hero-section {
		padding: 9rem 0 6rem;
	}

	.hero-section h1 {
		font-size: 2.6rem;
	}
}

@media all and (min-width: 1920px) {
	.hero-section {
		padding: 10rem 0 7rem;
	}

	.hero-section h1 {
		font-size: 2.7rem;
	}

	.hero-subtitle {
		font-size: 1.15rem;
	}
}
