		/* Make slider item a flex container */
		.pbmit-slider-item {
		position: relative;
		height: 100%;
		display: flex;
		align-items: center;      /* Vertical center */
		justify-content: center;  /* Horizontal center (remove if you want left alignment) */
		text-align: center;       /* Center text */
		}

		/* Background image */
		.pbmit-slider-bg {
		height: 100%;
		width: 100%;
		background-size: cover !important;
		background-position: center !important;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		}

		/* Overlay */
		.overlay-dark::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1;
		}

		/* Ensure content is above overlay */
		.pbmit-slider-content {
		position: relative;
		z-index: 2;
		}

		/* Optional: make rows/cols behave with center layout */
		.pbmit-col2,
		.pbmit-col-blank {
		text-align: center;
		}
		.swiper-slider .swiper-slide,
		.swiper-slider .pbmit-slider-item,
		.swiper-slider .pbmit-slider-bg {
		height: 650px !important;
		}

/* Button Style */
/* Button Style */
.bio-btn {
	padding: 10px 20px;
	font-size: 14px;
	background-color: #e3a72f;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.bio-btn:hover {
	background-color: #07406a;
	transform: translateY(-2px);
}
/* Modal Base */
.bio-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease;
	z-index: 9999;
}

.bio-modal.show {
	opacity: 1;
	visibility: visible;
}

/* Overlay */
.bio-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	transition: all 0.3s ease;
}

/* Modal Content */
.bio-modal-content {
	position: relative;
	background: #fff;
	width: 600px;
	max-width: 90%;
	border-radius: 12px;
	padding: 0;
	box-shadow: 0 8px 40px rgba(0,0,0,0.3);
	transform: translateY(-50px);
	transition: all 0.4s ease;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Animate modal entrance */
.bio-modal.show .bio-modal-content {
	transform: translateY(0);
}

/* Header */
.bio-modal-header {
	padding: 20px 30px;
	background-color: #e3a72f;
	color: #fff;
	position: relative;
}

.bio-modal-header h3 {
	margin: 0 0 5px;
	font-size: 22px;
}

.bio-modal-header h5 {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}

.bio-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: color 0.2s ease;
}

.bio-close:hover {
	color: #e3a72f;
}

/* Body */
.bio-body {
	padding: 20px 30px;
	text-align: justify;
	line-height: 1.7;
	font-size: 15px;
	color: #333;
	overflow-y: auto;
	flex-grow: 1;
}

/* Hide scrollbar (Chrome, Safari, Opera) */
.bio-body::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

/* Hide scrollbar (Firefox) */
.bio-body {
	scrollbar-width: none;
}

/* Footer */
.bio-modal-footer {
	padding: 15px 30px;
	background-color: #f1f1f1;
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid #ddd;
}
.bio-body p {
	margin-bottom: 15px;
}


#modalBio {
	text-align: justify;
	line-height: 1.7;
}

#modalBio p {
	margin-bottom: 15px;
}

html, body {
	max-width: 100%;
	overflow-x: hidden;
}
