/* 
 * Fellowship Page Enhanced Glassmorphism Styles
 * Matching aboutus.html design language with distinctive fellowship styling
 * 
 * Color Palette:
 * - Primary: #43CEF2 (cyan) and #6C40F9 (purple) 
 * - Dark Backgrounds: rgba(13, 17, 28, 0.65) and rgba(24, 28, 47, 0.4)
 * - Light Glassmorphism: rgba(255, 255, 255, 0.08) to rgba(255, 255, 255, 0.12)
 * - Accent: #FF3838 (red)
 */

body {
	background: var(--body-bg-color, #171926);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	position: relative;
}

/* Animated Background with Glowing Orbs */
.fellowship-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	overflow: hidden;
}

/* Fellowship Program Cards - Enhanced Glassmorphism */
.fellowship-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 25px;
	padding: 45px 40px;
	margin-bottom: 40px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.95);
}

.fellowship-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #43CEF2 0%, #6C40F9 50%, #FF3838 100%);
	opacity: 0.9;
	border-radius: 25px 25px 0 0;
}

.fellowship-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(67, 206, 242, 0.05) 0%,
		rgba(108, 64, 249, 0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 25px;
}

.fellowship-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	border-color: rgba(67, 206, 242, 0.4);
	background: rgba(255, 255, 255, 0.12);
}

.fellowship-card:hover::after {
	opacity: 1;
}

.fellowship-card h3 {
	color: #43CEF2;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(67, 206, 242, 0.3);
}

.fellowship-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 25px;
}

.fellowship-details {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(67, 206, 242, 0.2);
}

.detail-item {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.8);
}

.detail-item strong {
	color: #43CEF2;
}

/* Enhanced Benefits Cards */
.benefit-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 35px 25px;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(67, 206, 242, 0.1) 0%,
		rgba(108, 64, 249, 0.1) 100%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 20px;
}

.benefit-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	border-color: rgba(67, 206, 242, 0.4);
	background: rgba(255, 255, 255, 0.12);
}

.benefit-card:hover::before {
	opacity: 1;
}

.benefit-card h3 {
	color: #43CEF2;
	font-weight: 600;
	margin-bottom: 15px;
}

.benefit-card p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.benefit-card .bi-key-feature-text {
	margin-top: 25px;
}

/* Enhanced Application Steps */
.application-step {
	text-align: center;
	padding: 30px 20px;
	margin-bottom: 30px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 20px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	color: rgba(255, 255, 255, 0.9);
	overflow: hidden;
}

.application-step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(67, 206, 242, 0.05) 0%,
		rgba(108, 64, 249, 0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 20px;
}

.application-step:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	border-color: rgba(67, 206, 242, 0.4);
	background: rgba(255, 255, 255, 0.12);
}

.application-step:hover::before {
	opacity: 1;
}

.step-number {
	position: absolute;
	top: -20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #43CEF2 0%, #6C40F9 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	box-shadow: 0 10px 30px rgba(67, 206, 242, 0.4);
	transition: all 0.3s ease;
	z-index: 2;
}

.step-number:hover {
	transform: scale(1.1) rotateY(360deg);
	box-shadow: 0 15px 40px rgba(108, 64, 249, 0.5);
}

.step-icon {
	margin: 30px 0 20px 0;
}

.step-icon i {
	font-size: 2.5rem;
	color: #43CEF2;
	filter: drop-shadow(0 2px 10px rgba(67, 206, 242, 0.3));
}

.application-step h4 {
	color: #43CEF2;
	font-weight: 600;
	margin-bottom: 15px;
}

.application-step p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* Enhanced Form Styling */
.application-form-section {
	background: rgba(13, 17, 28, 0.65);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 25px;
	padding: 50px 45px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.95);
}

.application-form-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(67, 206, 242, 0.03) 0%,
		rgba(108, 64, 249, 0.03) 100%
	);
	opacity: 0.6;
	z-index: -1;
}

.application-form-section h3 {
	color: #43CEF2;
	margin-bottom: 15px;
}

.application-form-section p {
	color: rgba(255, 255, 255, 0.8);
}

.application-info {
	background: rgba(67, 206, 242, 0.05);
	border-radius: 15px;
	padding: 25px;
	border: 1px solid rgba(67, 206, 242, 0.1);
	margin-top: 30px;
}

.application-info h4 {
	color: #43CEF2;
	margin-bottom: 15px;
}

.application-info li {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.8);
}

.application-info strong {
	color: #43CEF2;
}

/* Section Titles Enhancement */
.section-title h2 {
	color: rgba(255, 255, 255, 0.95);
}

.section-title .bi-subtitle {
	color: rgba(67, 206, 242, 0.9);
}

.section-title p {
	color: rgba(255, 255, 255, 0.7);
}

/* Floating Animation for Cards */
@keyframes fellowshipFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-8px); }
}

.fellowship-card:nth-child(odd) {
	animation: fellowshipFloat 6s ease-in-out infinite;
}

.fellowship-card:nth-child(even) {
	animation: fellowshipFloat 6s ease-in-out infinite reverse;
	animation-delay: 3s;
}

/* Enhanced Video Styling */
.video-container {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(67, 206, 242, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, rgba(67, 206, 242, 0.1) 0%, rgba(108, 64, 249, 0.1) 100%);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-container:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 30px 80px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(67, 206, 242, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-video {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.6s ease-in-out;
	border-radius: 20px;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(67, 206, 242, 0.05) 0%,
		rgba(108, 64, 249, 0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 20px;
	pointer-events: none;
}

.video-container:hover .video-overlay {
	opacity: 1;
}

.play-pause-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: rgba(67, 206, 242, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	pointer-events: auto;
	opacity: 0;
	transform: translateY(10px);
}

.video-container:hover .play-pause-btn {
	opacity: 1;
	transform: translateY(0);
}

.play-pause-btn:hover {
	background: rgba(108, 64, 249, 0.9);
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(67, 206, 242, 0.4);
}

.play-pause-btn i {
	color: white;
	font-size: 16px;
	transition: all 0.2s ease;
}

.video-fallback {
	padding: 40px 20px;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	background: rgba(13, 17, 28, 0.8);
	border-radius: 20px;
	border: 1px solid rgba(67, 206, 242, 0.2);
}

.download-link {
	color: #43CEF2;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.download-link:hover {
	color: #6C40F9;
	text-decoration: underline;
}

.fallback-image {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	margin-top: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Loading Animation */
.video-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	border: 3px solid rgba(67, 206, 242, 0.3);
	border-top: 3px solid #43CEF2;
	border-radius: 50%;
	animation: videoLoading 1s linear infinite;
	opacity: 0;
	z-index: 10;
	pointer-events: none;
}

.video-container.loading::before {
	opacity: 1;
}

@keyframes videoLoading {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Video Progress Indicator */
.video-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, #43CEF2 0%, #6C40F9 100%);
	transition: width 0.1s linear;
	border-radius: 0 0 20px 20px;
	opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.fellowship-card {
		padding: 30px 25px;
	}
	
	.application-step {
		padding: 25px 20px;
	}
	
	.application-form-section {
		padding: 30px 25px;
	}
	
	.step-number {
		top: -15px;
		right: 15px;
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	
	.video-container {
		border-radius: 15px;
	}
	
	.process-video {
		border-radius: 15px;
	}
	
	.video-overlay {
		border-radius: 15px;
	}
	
	.play-pause-btn {
		width: 40px;
		height: 40px;
		bottom: 15px;
		right: 15px;
	}
	
	.play-pause-btn i {
		font-size: 14px;
	}
}

/* Accessibility Improvements */
.video-container:focus-within {
	outline: 2px solid #43CEF2;
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
	.video-container,
	.play-pause-btn,
	.process-video {
		transition: none;
	}
	
	.video-container::before {
		animation: none;
	}
}

/* ========================================
   Traineeship Timeline Section Styles - Curved Design with Marquee
======================================== */

.timeline-container {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	min-height: 20vh;
}

.timeline-main-wrapper {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Curved Timeline Path - Background Element */
.timeline-year-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	height: 300px;
	z-index: 1;
	pointer-events: none;
}

.timeline-year-line::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 5%;
	right: 5%;
	height: 200px;
	transform: translateY(-50%);
	border: 4px solid transparent;
	border-image: linear-gradient(90deg, #43CEF2, #6C40F9, #FF3838, #43CEF2) 1;
	border-radius: 50%;
	clip-path: ellipse(95% 50% at 50% 50%);
}

/* Animated Curved Timeline with Moving Years */
.timeline-curved-path {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	height: 300px;
	z-index: 5;
	pointer-events: none;
	overflow: hidden;
}

.timeline-curved-path svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.timeline-curved-line {
	fill: none;
	stroke: url(#timeline-gradient);
	stroke-width: 3;
	stroke-dasharray: 10 5;
	animation: curve-dash 8s linear infinite;
	filter: drop-shadow(0 0 10px rgba(67, 206, 242, 0.6));
}

.timeline-moving-years {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	height: 200px;
	z-index: 6;
	pointer-events: none;
	overflow: hidden;
}

.timeline-year-marquee {
	display: flex;
	gap: 120px;
	will-change: transform;
	padding: 0;
	align-items: center;
	height: 100%;
}

.timeline-year-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 2px solid rgba(67, 206, 242, 0.4);
	border-radius: 50%;
	position: relative;
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-year-item::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(135deg, #43CEF2, #6C40F9, #FF3838);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.timeline-year-item:hover::before {
	opacity: 1;
}

.timeline-year-number {
	color: #43CEF2;
	font-size: 16px;
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	background: linear-gradient(135deg, #43CEF2, #6C40F9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2px;
	line-height: 1;
}

.timeline-year-label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

@keyframes curve-dash {
	0% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: 100;
	}
}

/* Timeline Cards - Clean & Simple */
.timeline-row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.timeline-top-row {
	margin-bottom: 180px;
	margin-top: -30px;
}

.timeline-bottom-row {
	margin-top: -120px;
	padding-left: 80px;
}

.timeline-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 25px 0 0 0;
	padding: 15px;
	width: 250px;
	height: 250px;
	text-align: center;
	position: relative;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	overflow: hidden;
}

.timeline-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #43CEF2, #6C40F9, #FF3838);
	border-radius: 25px 0 0 0;
	opacity: 0.7;
}

.timeline-card:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 20px 40px rgba(67, 206, 242, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: rgba(67, 206, 242, 0.4);
	background: rgba(255, 255, 255, 0.2);
}

.timeline-card:hover::before {
	opacity: 1;
	height: 3px;
}

/* Card Images - Glassmorphism Design */
.timeline-card-image {
	width: 100%;
	height: 120px;
	border-radius: 20px 0 0 0;
	overflow: hidden;
	margin-bottom: 12px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
	filter: grayscale(100%) brightness(0.8);
}

.timeline-card:hover .timeline-card-image img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.05);
}

/* Card Content */
.timeline-card-content h4 {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #43CEF2, #6C40F9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.timeline-arrow {
	display: none;
}

/* Bottom Row Card Layout */
.timeline-bottom-card {
	display: flex;
	flex-direction: column-reverse;
}

.timeline-bottom-card .timeline-card-content {
	margin-top: 12px;
	margin-bottom: 0;
}

/* Timeline Years Section with Marquee */
.timeline-years {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 8%;
	z-index: 10;
	height: 180px;
	overflow: hidden;
	backdrop-filter: blur(15px);
	margin: 0 5%;
}

.timeline-marquee {
	display: flex;
	gap: 40px;
	will-change: transform;
	padding: 20px 0;
}

/* Timeline Marquee Cards - Compact Style */
.timeline-card.fellowship-class {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 20px 0 0 0;
	padding: 12px 16px;
	width: 120px;
	height: 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	overflow: hidden;
}

.timeline-card.fellowship-class::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #43CEF2, #6C40F9, #FF3838);
	border-radius: 20px 0 0 0;
	opacity: 0.8;
}

.timeline-card.fellowship-class:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 
		0 12px 25px rgba(67, 206, 242, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: rgba(67, 206, 242, 0.5);
	background: rgba(255, 255, 255, 0.18);
}

.timeline-card.fellowship-class:hover::before {
	opacity: 1;
	height: 3px;
	box-shadow: 0 0 15px rgba(67, 206, 242, 0.5);
}

/* Larger Marquee Card Images */
.timeline-card.fellowship-class .timeline-card-image {
	width: 70px;
	height: 70px;
	border-radius: 18px 0 0 0;
	overflow: hidden;
	margin-bottom: 8px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
}

.timeline-card.fellowship-class .timeline-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	filter: grayscale(80%) brightness(0.85);
}

.timeline-card.fellowship-class:hover .timeline-card-image img {
	filter: grayscale(0%) brightness(1.1);
	transform: scale(1.1);
}

/* Compact Marquee Card Content */
.timeline-card.fellowship-class .timeline-card-content {
	color: #ffffff;
	position: relative;
	flex: 1;
}

.timeline-card.fellowship-class .timeline-card-content h4 {
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 5px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	background: linear-gradient(135deg, #43CEF2, #6C40F9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.class-year {
	display: inline-block;
	background: linear-gradient(135deg, #43CEF2, #6C40F9);
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 600;
	margin-top: 5px;
	box-shadow: 0 2px 6px rgba(67, 206, 242, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

@keyframes timeline-line-glow {
	0%, 100% {
		opacity: 0.6;
		filter: drop-shadow(0 0 8px rgba(67, 206, 242, 0.4));
	}
	50% {
		opacity: 1;
		filter: drop-shadow(0 0 15px rgba(67, 206, 242, 0.8));
	}
}

.timeline-card.fellowship-class:hover .class-year {
	transform: scale(1.05);
	box-shadow: 0 3px 9px rgba(67, 206, 242, 0.5);
}

/* Timeline Section Responsive Design */
@media (max-width: 1200px) {
	.timeline-container {
		padding: 100px 0;
		position: relative;
		overflow: hidden;
		min-height: 20vh;
	}
	
	.timeline-years {
		height: 160px;
	}
	
	.timeline-moving-years {
		height: 180px;
	}
	
	.timeline-year-marquee {
		gap: 100px;
	}
	
	.timeline-year-item {
		width: 70px;
		height: 70px;
		min-width: 70px;
	}
	
	.timeline-year-number {
		font-size: 14px;
	}
	
	.timeline-year-label {
		font-size: 9px;
	}
	
	.timeline-marquee {
		gap: 35px;
		padding: 18px 0;
	}
	
	.timeline-card.fellowship-class {
		width: 110px;
		height: 130px;
		padding: 10px 14px;
		border-radius: 18px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-image {
		width: 65px;
		height: 65px;
		border-radius: 16px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-content h4 {
		font-size: 11px;
	}
	
	.class-year {
		font-size: 9px;
		padding: 3px 8px;
	}
}

@media (max-width: 992px) {
	.timeline-container {
		padding: 100px 0;
		position: relative;
		overflow: hidden;
		min-height: 20vh;
	}
	
	.timeline-years {
		height: 150px;
	}
	
	.timeline-moving-years {
		height: 170px;
	}
	
	.timeline-year-marquee {
		gap: 85px;
	}
	
	.timeline-year-item {
		width: 65px;
		height: 65px;
		min-width: 65px;
	}
	
	.timeline-year-number {
		font-size: 13px;
	}
	
	.timeline-year-label {
		font-size: 8px;
	}
	
	.timeline-marquee {
		gap: 30px;
		padding: 16px 0;
	}
	
	.timeline-card.fellowship-class {
		width: 100px;
		height: 120px;
		padding: 8px 12px;
		border-radius: 16px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-image {
		width: 55px;
		height: 55px;
		border-radius: 14px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-content h4 {
		font-size: 11px;
	}
	
	.class-year {
		font-size: 8px;
		padding: 3px 6px;
	}
}

@media (max-width: 768px) {
	.timeline-container {
		padding: 100px 0;
		position: relative;
		overflow: hidden;
		min-height: 20vh;
	}
	
	.timeline-years {
		height: 130px;
		margin: 0 8%;
	}
	
	.timeline-moving-years {
		height: 150px;
	}
	
	.timeline-year-marquee {
		gap: 70px;
	}
	
	.timeline-year-item {
		width: 55px;
		height: 55px;
		min-width: 55px;
	}
	
	.timeline-year-number {
		font-size: 12px;
	}
	
	.timeline-year-label {
		font-size: 7px;
	}
	
	.timeline-marquee {
		gap: 25px;
		padding: 15px 0;
	}
	
	.timeline-card.fellowship-class {
		width: 90px;
		height: 110px;
		padding: 6px 10px;
		border-radius: 15px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-image {
		width: 50px;
		height: 50px;
		border-radius: 12px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-content h4 {
		font-size: 10px;
	}
	
	.class-year {
		font-size: 7px;
		padding: 2px 5px;
	}
}

@media (max-width: 480px) {
	.timeline-container {
		padding: 100px 0;
		position: relative;
		overflow: hidden;
		min-height: 20vh;
	}
	
	.timeline-years {
		height: 110px;
		margin: 0 10%;
	}
	
	.timeline-moving-years {
		height: 130px;
	}
	
	.timeline-year-marquee {
		gap: 55px;
	}
	
	.timeline-year-item {
		width: 45px;
		height: 45px;
		min-width: 45px;
	}
	
	.timeline-year-number {
		font-size: 10px;
	}
	
	.timeline-year-label {
		font-size: 6px;
	}
	
	.timeline-marquee {
		gap: 20px;
		padding: 12px 0;
	}
	
	.timeline-card.fellowship-class {
		width: 80px;
		height: 100px;
		padding: 5px 8px;
		border-radius: 14px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-image {
		width: 45px;
		height: 45px;
		border-radius: 10px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-content h4 {
		font-size: 9px;
	}
	
	.class-year {
		font-size: 6px;
		padding: 2px 4px;
	}
}

@media (max-width: 360px) {
	.timeline-container {
		padding: 100px 0;
		position: relative;
		overflow: hidden;
		min-height: 20vh;
	}
	
	.timeline-years {
		height: 100px;
		margin: 0 12%;
	}
	
	.timeline-moving-years {
		height: 120px;
	}
	
	.timeline-year-marquee {
		gap: 45px;
	}
	
	.timeline-year-item {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}
	
	.timeline-year-number {
		font-size: 9px;
	}
	
	.timeline-year-label {
		font-size: 5px;
	}
	
	.timeline-marquee {
		gap: 18px;
		padding: 10px 0;
	}
	
	.timeline-card.fellowship-class {
		width: 70px;
		height: 90px;
		padding: 4px 6px;
		border-radius: 12px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-image {
		width: 40px;
		height: 40px;
		border-radius: 8px 0 0 0;
	}
	
	.timeline-card.fellowship-class .timeline-card-content h4 {
		font-size: 8px;
	}
	
	.class-year {
		font-size: 5px;
		padding: 1px 3px;
	}
}
