.irm-container-518d1f45 {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* Align menu to the left side */
	overflow: hidden;
	padding: 40px;
}

.irm-backgrounds-518d1f45 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.irm-bg-518d1f45 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover; /* Fill the screen */
	background-position: center; /* Center the image */
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease-in-out; /* Smooth crossfade transition */
}

.irm-bg-518d1f45.active {
	opacity: 1;
}

.irm-overlay-518d1f45 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: background-color 0.3s ease;
	pointer-events: none; /* Let clicks pass through to menu */
}

.irm-menu-wrapper-518d1f45 {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: left;
}

.irm-menu-list-518d1f45 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.irm-menu-link-518d1f45 {
	position: relative;
	text-decoration: none;
	display: inline-block;
	padding-bottom: 5px;
	transition: color 0.3s ease;
	cursor: pointer;
}

/* Bottom border underline reveal effect */
.irm-menu-link-518d1f45::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.irm-menu-link-518d1f45:hover::after {
	width: 100%;
}
