.team-showcase {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #1a202c;
}
.team-showcase-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}
.leadership-spotlight {
	text-align: center;
	margin-bottom: 80px;
}
.directors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.section-title-primary {
	font-size: 50px;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 25px;
	position: relative;
	display: inline-block;
	letter-spacing: 1px;
}
.section-title-primary::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #2d3748;
	border-radius: 4px;
}
.director-profile-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	padding-bottom: 25px;
}
.director-avatar-wrapper {
	position: relative;
	margin-bottom: 15px;
}
.director-profile-image {
	width: 100%;
	height: 250px;
	border-top-right-radius: 16px;
	r;
	border-top-left-radius: 16px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.director-profile-image:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 12px;
}
.director-avatar-wrapper:hover .image-overlay,
.member-avatar-container:hover .image-overlay {
	opacity: 1;
}
.overlay-icon {
	color: white;
	font-size: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.director-name-display {
	font-size: 25px;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.director-role-badge {
	font-size: 18px;
	color: #64748b;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 1px;
}
.collaborative-team-section {
	text-align: center;
}
.section-title-secondary {font-size: 50px;font-weight: 700;color: #1a202c;margin-bottom: 25px;position: relative;display: inline-block;letter-spacing: 1px;}
.section-title-secondary::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 4px;
	background: #2d3748;
	border-radius: 4px;
}
.team-members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}
.member-profile-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #e2e8f0;
	padding-bottom: 25px;
}
.member-avatar-container {
	margin-bottom: 25px;
	position: relative;
}
.team-member-image {
	width: 100%;
	height: 250px;
	border-top-right-radius: 16px;
	border-top-left-radius: 16px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-member-image:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.member-avatar-container .image-overlay {
	border-radius: 10px;
}
.member-name-text {
	font-size: 25px;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.member-position-label {
	font-size: 18px;
	color: #64748b;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 1px;
}
/* Lightbox Gallery */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
	display: block;
	opacity: 1;
}
.lightbox-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.lightbox-header {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	z-index: 10002;
}
.lightbox-counter {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	font-weight: 500;
}
.lightbox-controls {
	display: flex;
	gap: 15px;
}
.lightbox-btn {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}
.lightbox-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.1);
}
.lightbox-main-content {
	position: relative;
	max-width: 90vw;
	max-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox-main-image {
	max-width: 100%;
	max-height: 100%;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 55px;
	height: 55px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 10001;
}
.lightbox-nav-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
	left: -80px;
}
.lightbox-next {
	right: -80px;
}
.lightbox-info {
	position: absolute;
	bottom: 120px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	z-index: 10002;
}
.lightbox-title {
	font-size: 20px;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 5px;
	text-shadow: 0 2px 4px rgb(0 0 0 / 65%);
}
.lightbox-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.lightbox-thumbnails {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	padding: 15px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 25px;
	backdrop-filter: blur(10px);
	max-width: 90vw;
	overflow-x: auto;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 10000;
}
.lightbox-thumbnails.hidden {
	opacity: 0;
	transform: translateX(-50%) translateY(20px);
	pointer-events: none;
}
.thumbnail-item {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.thumbnail-item.active {
	border-color: #fff;
	transform: scale(1.1);
}
.thumbnail-item:hover {
	transform: scale(1.05);
	border-color: rgba(255, 255, 255, 0.5);
}
.thumbnail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slideshow-playing .lightbox-thumbnails {
	opacity: 0.3;
}
/* Responsive Design */
@media (max-width: 768px) {
	.team-showcase-container {
		padding: 40px 15px;
	}
	.section-title-primary {
		font-size: 2rem;
		margin-bottom: 30px;
	}
	.section-title-secondary {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}
	.director-profile-card {
		padding: 30px 20px;
		margin: 0 10px;
	}
	.director-profile-image {
		height: 200px;
	}
	.directors-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.director-name-display {
		font-size: 1.5rem;
	}
	.team-members-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}
	.member-profile-card {
		padding: 25px 20px;
	}
	.team-member-image {
		height: 200px;
	}
	.member-name-text {
		font-size: 1.2rem;
	}
	.lightbox-header {
		padding: 0 20px;
	}
	.lightbox-main-content {
		max-height: 60vh;
	}
	.lightbox-nav-btn {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}
	.lightbox-prev {
		left: -60px;
	}
	.lightbox-next {
		right: -60px;
	}
	.lightbox-title {
		font-size: 1.5rem;
	}
	.lightbox-subtitle {
		font-size: 1rem;
	}
	.lightbox-thumbnails {
		bottom: 15px;
		padding: 10px;
	}
	.lightbox-info {
		bottom: 100px;
	}
	.thumbnail-item {
		width: 50px;
		height: 50px;
	}
}
@media (max-width: 480px) {
	.section-title-primary {
		font-size: 1.8rem;
	}
	.section-title-secondary {
		font-size: 1.6rem;
	}
	.team-members-grid {
		grid-template-columns: 1fr;
	}
	.director-profile-image {
		height: 180px;
	}
	.team-member-image {
		height: 180px;
	}
	.lightbox-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	.lightbox-prev {
		left: -50px;
	}
	.lightbox-next {
		right: -50px;
	}
	.lightbox-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	.thumbnail-item {
		width: 45px;
		height: 45px;
	}
}