.home-leader-modal {
	display: none !important;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}
.home-leader-modal.initialized.active { 
	display: block !important; 
}
/* Prevent any auto-show */
.home-leader-modal:not(.initialized) {
	visibility: hidden !important;
	opacity: 0 !important;
}
.home-leader-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.home-leader-modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 50%, #060C3D 100%);
	border-radius: 20px;
	max-width: 900px;
	width: 90%;
	max-height: 85vh;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
	animation: homeModalSlideIn 0.3s ease;
}
@keyframes homeModalSlideIn {
	from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
	to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.home-leader-modal__close {
	position: absolute;
	top: 15px; 
	right: 15px;
	width: 44px; 
	height: 44px;
	background: rgba(255,255,255,0.2);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-leader-modal__close:hover {
	background: rgba(255,255,255,0.35);
	transform: rotate(90deg);
}
.home-leader-modal__img-col {
	flex: 0 0 40%;
	background: #0bacd1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	min-height: 400px;
	position: relative;
	overflow: hidden;
}
.home-leader-modal__img-col img {
	max-width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	object-position: bottom center;
	display: block;
}
.home-leader-modal__text-col {
	flex: 1;
	padding: 40px 30px;
	color: #fff;
	overflow-y: auto;
}
.home-leader-modal__name {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #fff;
}
.home-leader-modal__role {
	display: block;
	font-size: 16px;
	color: #00e5ff;
	margin-bottom: 20px;
	font-weight: 600;
}
.home-leader-modal__list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px;
}
.home-leader-modal__list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255,255,255,0.9);
}
.home-leader-modal__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	background: #00e5ff;
	border-radius: 50%;
}
.home-leader-modal__social {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.home-leader-modal__social a {
	width: 44px; 
	height: 44px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}
.home-leader-modal__social a:hover {
	background: #0F2EDE;
	transform: translateY(-3px);
}
.home-leader-modal__social a svg {
	width: 20px; 
	height: 20px;
	fill: currentColor;
}
.home-leader-modal__social a img {
	width: 22px; 
	height: 22px;
}
.leadership .btn-leader-popup {
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
@media (max-width: 768px) {
	.home-leader-modal__content {
		flex-direction: column;
		max-height: 95vh;
		width: 95%;
	}
	.home-leader-modal__img-col {
		flex: 0 0 auto;
		min-height: 200px;
		padding: 15px;
	}
	.home-leader-modal__img-col img {
		max-height: 180px;
	}
	.home-leader-modal__text-col {
		padding: 25px 20px;
	}
	.home-leader-modal__name {
		font-size: 22px;
	}
}
