/* Welcome popup — homepage load overlay */
.mea-welcome-popup[hidden] {
	display: none !important;
}

.mea-welcome-popup.is-open {
	display: block;
}

.mea-welcome-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
}

.mea-welcome-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(2px);
}

.mea-welcome-popup__dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(92vw, 598px);
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 28px 69px rgba(0, 0, 0, 0.35);
	padding: 41px 32px 32px;
	text-align: center;
}

.mea-welcome-popup__skip {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: #666;
	font-size: 1.04rem;
	font-weight: 600;
	cursor: pointer;
	padding: 7px 12px;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}

.mea-welcome-popup__skip:hover,
.mea-welcome-popup__skip:focus {
	background: rgba(0, 0, 0, 0.06);
	color: #333;
	outline: none;
}

.mea-welcome-popup__slides {
	position: relative;
	min-height: 320px;
	margin-bottom: 23px;
	padding-top: 38px;
}

.mea-welcome-popup__slide {
	display: none;
	animation: meaPopupFadeIn 0.35s ease;
}

.mea-welcome-popup__slide.is-active {
	display: block;
}

.mea-welcome-popup__slide-media {
	height: 172px;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 18px;
	position: relative;
	overflow: hidden;
}

.mea-welcome-popup__slide-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.mea-welcome-popup__slide-body {
	position: relative;
}

@keyframes meaPopupFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.mea-welcome-popup__eyebrow {
	margin: 0 0 9px;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #6CB1B0;
}

.mea-welcome-popup__title {
	margin: 0 0 16px;
	font-size: 1.67rem;
	line-height: 1.3;
	color: #2c3e50;
}

.mea-welcome-popup__text {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.6;
	color: #555;
}

.mea-welcome-popup__dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 25px;
}

.mea-welcome-popup__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: #d0d0d0;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.mea-welcome-popup__dot.is-active {
	background: #3d6b6a;
	transform: scale(1.15);
}

.mea-welcome-popup__actions {
	display: flex;
	justify-content: center;
}

.mea-welcome-popup__actions .mwBtnCenter {
	width: 100%;
}

body.mea-welcome-popup-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.mea-welcome-popup__dialog {
		padding: 37px 23px 28px;
	}

	.mea-welcome-popup__title {
		font-size: 1.44rem;
	}
}


/* IHSAN College bullet slide */
.mea-welcome-popup__bullet-list {
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
}
.mea-welcome-popup__bullet-list li {
    position: relative;
    padding: 7px 0 7px 27px;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.45;
}
.mea-welcome-popup__bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    color: #3d6b6a;
    font-weight: 700;
}
@media (max-width: 480px) {
    .mea-welcome-popup__slides { min-height: 390px; }
    .mea-welcome-popup__bullet-list li { font-size: 0.92rem; }
}
