:root {
	--mjh-primary: #0467f2;
	--mjh-primary-2: #2f86ff;
	--mjh-text: #172a43;
	--mjh-muted: #6f7f96;
	--mjh-border: #dce8f8;
	--mjh-bg: rgba(255,255,255,.92);
	--mjh-soft: #f3f8ff;
	--mjh-shadow: 0 16px 46px rgba(12, 52, 120, .08);
}

body.minejobs-modern-header .noo-header .noo-topbar {
	display: none !important;
}

body.minejobs-modern-header .noo-header,
body.minejobs-modern-header .navbar-wrapper,
body.minejobs-modern-header .navbar,
body.minejobs-modern-header .navbar-default {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	min-height: 0 !important;
}

body.minejobs-modern-header--sticky .noo-header {
	position: sticky;
	top: 0;
	z-index: 999;
}

.mjh,
.mjh * {
	box-sizing: border-box;
}

.mjh {
	direction: rtl;
	font-family: inherit;
	position: relative;
	z-index: 99;
	background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(220,232,248,.72);
	box-shadow: 0 8px 28px rgba(20, 57, 120, .05);
}

.mjh-container {
	width: min(100% - 32px, 1280px);
	margin: 0 auto;
}

.mjh-top {
	border-bottom: 1px solid rgba(220,232,248,.72);
	background: linear-gradient(90deg, rgba(244,249,255,.75), rgba(255,255,255,.95));
}

.mjh-top__inner {
	min-height: 42px;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) 220px;
	align-items: center;
	gap: 16px;
}

.mjh-top__text {
	grid-column: 2;
	text-align: center;
	color: var(--mjh-primary);
	font-weight: 900;
	font-size: 16px;
	line-height: 1.7;
}

.mjh-social {
	grid-column: 3;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	direction: ltr;
}

.mjh-social a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #35475f;
	background: #fff;
	border: 1px solid rgba(220,232,248,.9);
	box-shadow: 0 8px 18px rgba(4,103,242,.06);
	text-decoration: none !important;
	transition: .18s ease;
}

.mjh-social a:hover {
	background: var(--mjh-primary);
	border-color: var(--mjh-primary);
	color: #fff;
	transform: translateY(-1px);
}

.mjh-main {
	background: rgba(255,255,255,.92);
}

.mjh-main__inner {
	min-height: 86px;
	display: grid;
	grid-template-columns: 175px minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
}

.mjh-brand {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	text-decoration: none !important;
}

.mjh-logo {
	max-height: 58px;
	width: auto;
	object-fit: contain;
}

.mjh-logo--mobile {
	display: none;
}

.mjh-brand__name {
	font-size: 24px;
	font-weight: 950;
	color: var(--mjh-primary);
}

.mjh-nav {
	min-width: 0;
}

.mjh-menu,
.mjh-menu ul,
.mjh-mobile-menu,
.mjh-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mjh-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.mjh-menu > li {
	position: relative;
}

.mjh-menu > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 14px;
	color: var(--mjh-text) !important;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none !important;
	white-space: nowrap;
	transition: .18s ease;
}

.mjh-menu > li:hover > a,
.mjh-menu > li.current-menu-item > a,
.mjh-menu > li.current-menu-ancestor > a {
	background: var(--mjh-soft);
	color: var(--mjh-primary) !important;
}

.mjh-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 220px;
	padding: 10px;
	border: 1px solid var(--mjh-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--mjh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .18s ease;
}

.mjh-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mjh-menu .sub-menu a {
	display: flex;
	align-items: center;
	min-height: 40px;
	border-radius: 12px;
	padding: 0 12px;
	color: var(--mjh-text) !important;
	font-weight: 800;
	text-decoration: none !important;
}

.mjh-menu .sub-menu a:hover {
	background: var(--mjh-soft);
	color: var(--mjh-primary) !important;
}

.mjh-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	position: relative;
}

.mjh-cta,
.mjh-register,
.mjh-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none !important;
	white-space: nowrap;
	transition: .18s ease;
}

.mjh-cta,
.mjh-register {
	background: linear-gradient(135deg, var(--mjh-primary), var(--mjh-primary-2));
	color: #fff !important;
	box-shadow: 0 14px 28px rgba(4,103,242,.22);
}

.mjh-cta:hover,
.mjh-register:hover {
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(4,103,242,.30);
}

.mjh-login {
	background: #fff;
	border: 1px solid var(--mjh-border);
	color: var(--mjh-primary) !important;
	box-shadow: 0 10px 22px rgba(4,103,242,.07);
}

.mjh-login:hover {
	background: var(--mjh-soft);
	color: var(--mjh-primary) !important;
}

.mjh-user {
	position: relative;
}

.mjh-user__toggle {
	min-height: 52px;
	border: 1px solid var(--mjh-border);
	border-radius: 18px;
	background: #fff;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px 6px 12px;
	box-shadow: 0 12px 26px rgba(4,103,242,.08);
	cursor: pointer;
	position: relative;
	color: var(--mjh-text);
}

.mjh-user__avatar,
.mjh-user__avatar img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	overflow: hidden;
}

.mjh-user__avatar img {
	object-fit: cover;
}

.mjh-user__avatar--large,
.mjh-user__avatar--large img {
	width: 54px;
	height: 54px;
}

.mjh-user__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.35;
	min-width: 88px;
}

.mjh-user__meta strong,
.mjh-user__head strong {
	font-size: 13px;
	font-weight: 950;
	color: var(--mjh-text);
	max-width: 120px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.mjh-user__meta small,
.mjh-user__head small {
	font-size: 11px;
	font-weight: 800;
	color: var(--mjh-muted);
}

.mjh-user__panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	width: 300px;
	padding: 12px;
	border: 1px solid var(--mjh-border);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 22px 62px rgba(13, 48, 109, .14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .18s ease;
}

.mjh-user.is-open .mjh-user__panel,
.mjh-user:hover .mjh-user__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mjh-user__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border-radius: 18px;
	background: var(--mjh-soft);
	margin-bottom: 8px;
}

.mjh-user__head div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mjh-user__panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 4px;
}

.mjh-user__panel a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 14px;
	font-size: 13px;
	font-weight: 850;
	color: var(--mjh-text) !important;
	text-decoration: none !important;
}

.mjh-user__panel a:hover,
.mjh-user__panel .is-highlight a {
	background: var(--mjh-soft);
	color: var(--mjh-primary) !important;
}

.mjh-user__panel a i {
	width: 18px;
	text-align: center;
	color: var(--mjh-primary);
}

.mjh-user .noo-menu-item-notify,
.mjh-user .user-notification,
.mjh-user .notification-count {
	position: absolute;
	top: -6px;
	right: -6px;
}

.mjh-mobile-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--mjh-border);
	border-radius: 16px;
	background: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	box-shadow: 0 10px 22px rgba(4,103,242,.08);
	cursor: pointer;
}

.mjh-mobile-toggle span {
	display: block;
	width: 19px;
	height: 2px;
	border-radius: 2px;
	background: var(--mjh-primary);
}

.mjh-mobile {
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
}

.mjh-mobile__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 28, 57, .42);
	opacity: 0;
	transition: .2s ease;
}

.mjh-mobile__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(88vw, 360px);
	height: 100%;
	background: #fff;
	box-shadow: -24px 0 60px rgba(8, 28, 57, .18);
	transform: translateX(110%);
	transition: .24s ease;
	padding: 18px;
	overflow-y: auto;
}

body.mjh-mobile-open .mjh-mobile {
	pointer-events: auto;
}

body.mjh-mobile-open .mjh-mobile__backdrop {
	opacity: 1;
}

body.mjh-mobile-open .mjh-mobile__panel {
	transform: translateX(0);
}

.mjh-mobile__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 950;
	font-size: 18px;
	color: var(--mjh-text);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--mjh-border);
	margin-bottom: 12px;
}

.mjh-mobile__head button {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--mjh-soft);
	color: var(--mjh-primary);
}

.mjh-mobile-menu a {
	display: flex;
	align-items: center;
	min-height: 46px;
	border-radius: 14px;
	padding: 0 12px;
	color: var(--mjh-text) !important;
	font-weight: 900;
	text-decoration: none !important;
}

.mjh-mobile-menu a:hover,
.mjh-mobile-menu .current-menu-item > a {
	background: var(--mjh-soft);
	color: var(--mjh-primary) !important;
}

.mjh-mobile-menu .sub-menu {
	padding-right: 12px;
	border-right: 2px solid var(--mjh-border);
	margin: 2px 8px 8px 0;
}

.mjh-mobile__actions {
	display: grid;
	gap: 10px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--mjh-border);
}

.mjh-mobile__actions .mjh-cta,
.mjh-mobile__actions .mjh-login,
.mjh-mobile__actions .mjh-register {
	width: 100%;
}

@media (max-width: 1200px) {
	.mjh-main__inner {
		grid-template-columns: 150px minmax(0, 1fr) auto;
		gap: 16px;
	}

	.mjh-menu > li > a {
		padding: 0 10px;
		font-size: 13px;
	}

	.mjh-user__meta {
		display: none;
	}
}

@media (max-width: 991px) {
	.mjh-top__inner {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 8px 0;
	}

	.mjh-top__text,
	.mjh-social {
		grid-column: auto;
		justify-content: center;
	}

	.mjh-top__text {
		font-size: 13px;
	}

	.mjh-main__inner {
		min-height: 76px;
		grid-template-columns: auto 1fr auto;
	}

	.mjh-nav {
		display: none;
	}

	.mjh-mobile-toggle {
		display: inline-flex;
	}

	.mjh-user__toggle {
		padding: 6px;
		min-height: 46px;
	}

	.mjh-user__toggle > .fa-angle-down {
		display: none;
	}

	.mjh-user__panel {
		display: none;
	}

	.mjh-cta {
		min-height: 44px;
		padding: 0 14px;
		font-size: 13px;
	}
}

@media (max-width: 640px) {
	.mjh-container {
		width: min(100% - 22px, 1280px);
	}

	.mjh-main__inner {
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.mjh-brand {
		min-width: 0;
	}

	.mjh-logo {
		max-height: 44px;
	}

	.mjh-logo--normal + .mjh-logo--mobile {
		display: none;
	}

	.mjh-actions {
		gap: 7px;
	}

	.mjh-actions > .mjh-cta {
		display: none;
	}

	.mjh-login,
	.mjh-register {
		min-height: 40px;
		padding: 0 11px;
		font-size: 12px;
		border-radius: 14px;
	}

	.mjh-login i,
	.mjh-register i {
		display: none;
	}

	.mjh-mobile-toggle {
		width: 42px;
		height: 42px;
		border-radius: 14px;
	}
}

/* v9 fixes: social alignment + remove leftover original header search/user toggles */
body.minejobs-modern-header .mjh-social {
	transform: translateY(6px);
}

body.minejobs-modern-header .mjh-social a i.fa-google-plus:before,
body.minejobs-modern-header .mjh-social a i.fa-google:before {
	content: "\f2c6";
}

body.minejobs-modern-header .navbar-wrapper .navbar-header .navbar-toggle,
body.minejobs-modern-header .navbar-wrapper .navbar-header .member-navbar-toggle,
body.minejobs-modern-header .navbar-wrapper .navbar-search,
body.minejobs-modern-header .navbar-wrapper .navbar-search-button,
body.minejobs-modern-header .navbar-wrapper .noo-search,
body.minejobs-modern-header .navbar-wrapper .noo-menu-search,
body.minejobs-modern-header .navbar-wrapper .menu-search,
body.minejobs-modern-header .navbar-wrapper .search-toggle,
body.minejobs-modern-header .navbar-wrapper .search-button,
body.minejobs-modern-header .navbar-wrapper .header-search,
body.minejobs-modern-header .navbar-wrapper .btn-navbar-search,
body.minejobs-modern-header .navbar-wrapper [data-toggle="search"],
body.minejobs-modern-header .navbar-wrapper [data-target*="search"] {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body.minejobs-modern-header .navbar-wrapper .navbar-header {
	min-height: 0 !important;
}

/* v12 mobile navigation: centered logo, full-screen site menu, left user drawer */
body.minejobs-modern-header .mjh-main__inner {
	grid-template-areas: "brand nav actions";
}
body.minejobs-modern-header .mjh-brand { grid-area: brand; }
body.minejobs-modern-header .mjh-nav { grid-area: nav; }
body.minejobs-modern-header .mjh-actions { grid-area: actions; }
body.minejobs-modern-header .mjh-mobile-toggle { grid-area: menu; }

.mjh-mobile__title,
.mjh-user-mobile__title {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.5;
}
.mjh-mobile__title strong,
.mjh-user-mobile__title strong {
	font-size: 18px;
	font-weight: 950;
	color: var(--mjh-text);
}
.mjh-mobile__title small,
.mjh-user-mobile__title small {
	font-size: 12px;
	font-weight: 800;
	color: var(--mjh-muted);
}
.mjh-mobile__brand {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--mjh-border);
	box-shadow: 0 12px 26px rgba(4,103,242,.08);
	overflow: hidden;
	text-decoration: none !important;
	color: var(--mjh-primary) !important;
	font-weight: 950;
}
.mjh-mobile__brand img {
	max-width: 86%;
	max-height: 86%;
	object-fit: contain;
}

.mjh-user-mobile {
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
}
.mjh-user-mobile__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 28, 57, .46);
	opacity: 0;
	transition: .2s ease;
}
.mjh-user-mobile__panel {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 12% 18%, rgba(4,103,242,.10), transparent 28%),
		linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
	box-shadow: 24px 0 70px rgba(8, 28, 57, .18);
	transform: translateX(-105%);
	transition: .26s cubic-bezier(.2,.8,.2,1);
	padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
	overflow-y: auto;
	direction: rtl;
}
body.mjh-user-mobile-open .mjh-user-mobile {
	pointer-events: auto;
}
body.mjh-user-mobile-open .mjh-user-mobile__backdrop {
	opacity: 1;
}
body.mjh-user-mobile-open .mjh-user-mobile__panel {
	transform: translateX(0);
}
body.mjh-mobile-open,
body.mjh-user-mobile-open {
	overflow: hidden;
}
.mjh-user-mobile__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--mjh-border);
	border-radius: 24px;
	background: rgba(255,255,255,.88);
	box-shadow: 0 18px 44px rgba(4,103,242,.08);
	margin-bottom: 14px;
}
.mjh-user-mobile__head > button,
.mjh-mobile__head > button {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border: 0;
	border-radius: 16px;
	background: var(--mjh-soft);
	color: var(--mjh-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.mjh-user-mobile__head > button {
	margin-right: auto;
}
.mjh-user-mobile__guest-icon {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--mjh-soft);
	color: var(--mjh-primary);
	border: 1px solid var(--mjh-border);
	font-size: 20px;
}
.mjh-user-mobile__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.mjh-user-mobile__menu a,
.mjh-user-mobile__guest-actions a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 56px;
	padding: 0 16px;
	border: 1px solid var(--mjh-border);
	border-radius: 18px;
	background: rgba(255,255,255,.88);
	color: var(--mjh-text) !important;
	font-weight: 900;
	text-decoration: none !important;
	box-shadow: 0 10px 26px rgba(4,103,242,.05);
}
.mjh-user-mobile__menu a i,
.mjh-user-mobile__guest-actions a i {
	width: 22px;
	text-align: center;
	color: var(--mjh-primary);
}
.mjh-user-mobile__menu .is-highlight a,
.mjh-user-mobile__guest-actions .mjh-register {
	background: linear-gradient(135deg,var(--mjh-primary),var(--mjh-primary-2));
	color: #fff !important;
	border-color: transparent;
}
.mjh-user-mobile__menu .is-highlight a i,
.mjh-user-mobile__guest-actions .mjh-register i {
	color: #fff;
}
.mjh-user-mobile__guest-actions {
	display: grid;
	gap: 10px;
}

@media (max-width: 991px) {
	body.minejobs-modern-header .mjh-top {
		display: none !important;
	}
	body.minejobs-modern-header .mjh-main__inner {
		direction: ltr;
		min-height: 64px;
		grid-template-columns: 54px minmax(0, 1fr) 54px;
		grid-template-areas: "user brand menu";
		gap: 8px;
		align-items: center;
	}
	body.minejobs-modern-header .mjh-mobile-toggle {
		display: inline-flex;
		justify-self: end;
		grid-area: menu;
		width: 46px;
		height: 46px;
		border-radius: 16px;
		background: #fff;
		position: relative;
		z-index: 3;
	}
	body.minejobs-modern-header .mjh-mobile-toggle:after {
		content: "منو";
		position: absolute;
		bottom: -17px;
		right: 50%;
		transform: translateX(50%);
		font-size: 9px;
		font-weight: 900;
		color: var(--mjh-primary);
		letter-spacing: -.2px;
	}
	body.minejobs-modern-header .mjh-brand {
		grid-area: brand;
		justify-self: center;
		justify-content: center;
		direction: rtl;
	}
	body.minejobs-modern-header .mjh-logo {
		max-height: 44px;
		max-width: 128px;
	}
	body.minejobs-modern-header .mjh-actions {
		grid-area: user;
		justify-self: start;
		direction: rtl;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
	}
	body.minejobs-modern-header .mjh-actions > .mjh-cta,
	body.minejobs-modern-header .mjh-actions > .mjh-register {
		display: none !important;
	}
	body.minejobs-modern-header .mjh-actions > .mjh-login,
	body.minejobs-modern-header .mjh-user__toggle {
		width: 46px;
		height: 46px;
		min-height: 46px;
		padding: 0 !important;
		border-radius: 16px;
		position: relative;
		overflow: visible;
	}
	body.minejobs-modern-header .mjh-actions > .mjh-login span,
	body.minejobs-modern-header .mjh-actions > .mjh-login i,
	body.minejobs-modern-header .mjh-user__meta,
	body.minejobs-modern-header .mjh-user__toggle > .fa-angle-down {
		display: none !important;
	}
	body.minejobs-modern-header .mjh-actions > .mjh-login:before {
		content: "\f007";
		font-family: "Font Awesome 7 Pro";
		font-weight: 900;
		font-size: 18px;
		color: var(--mjh-primary);
	}
	body.minejobs-modern-header .mjh-actions > .mjh-login:after,
	body.minejobs-modern-header .mjh-user__toggle:after {
		content: "";
		position: absolute;
		left: -4px;
		bottom: -4px;
		width: 18px;
		height: 18px;
		border-radius: 9px;
		background: linear-gradient(135deg,var(--mjh-primary),var(--mjh-primary-2));
		border: 3px solid #fff;
		box-shadow: 0 6px 16px rgba(4,103,242,.22);
	}
	body.minejobs-modern-header .mjh-user__toggle:before {
		content: "";
		position: absolute;
		left: 2px;
		bottom: 3px;
		width: 8px;
		height: 2px;
		border-radius: 2px;
		background: #fff;
		box-shadow: 0 4px 0 #fff;
		z-index: 2;
	}
	body.minejobs-modern-header .mjh-user__avatar,
	body.minejobs-modern-header .mjh-user__avatar img {
		width: 42px;
		height: 42px;
	}
	body.minejobs-modern-header .mjh-user__panel {
		display: none !important;
	}
	body.minejobs-modern-header .mjh-mobile__panel {
		inset: 0;
		width: 100%;
		height: 100%;
		padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
		border-radius: 0;
		background:
			radial-gradient(circle at 88% 14%, rgba(4,103,242,.10), transparent 30%),
			linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
		box-shadow: -24px 0 70px rgba(8, 28, 57, .18);
	}
	body.minejobs-modern-header .mjh-mobile__head {
		padding: 14px;
		border: 1px solid var(--mjh-border);
		border-radius: 24px;
		background: rgba(255,255,255,.88);
		box-shadow: 0 18px 44px rgba(4,103,242,.08);
		margin-bottom: 14px;
	}
	body.minejobs-modern-header .mjh-mobile-menu {
		display: grid;
		gap: 8px;
	}
	body.minejobs-modern-header .mjh-mobile-menu a {
		min-height: 56px;
		padding: 0 16px;
		border: 1px solid var(--mjh-border);
		border-radius: 18px;
		background: rgba(255,255,255,.88);
		box-shadow: 0 10px 26px rgba(4,103,242,.05);
		justify-content: flex-start;
	}
	body.minejobs-modern-header .mjh-mobile-menu > li.current-menu-item > a,
	body.minejobs-modern-header .mjh-mobile-menu > li.current-menu-ancestor > a {
		background: var(--mjh-soft);
		color: var(--mjh-primary) !important;
	}
}

@media (max-width: 640px) {
	body.minejobs-modern-header .mjh-container { width: min(100% - 24px, 1280px); }
	body.minejobs-modern-header .mjh-main__inner {
		grid-template-columns: 50px minmax(0, 1fr) 50px;
		min-height: 62px;
	}
	body.minejobs-modern-header .mjh-logo { max-height: 40px; max-width: 112px; }
	body.minejobs-modern-header .mjh-mobile-toggle,
	body.minejobs-modern-header .mjh-actions > .mjh-login,
	body.minejobs-modern-header .mjh-user__toggle { width: 44px; height: 44px; min-height: 44px; }
}

/* v13 mobile header final: body-level full-screen drawers, no inherited clipping */
@media (max-width: 991px) {
	body.minejobs-modern-header .mjh-mobile,
	body.minejobs-modern-header .mjh-user-mobile {
		position: fixed !important;
		inset: 0 !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100svh !important;
		z-index: 2147483000 !important;
		pointer-events: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		overflow: hidden !important;
		transform: none !important;
		contain: none !important;
		isolation: isolate !important;
	}
	body.minejobs-modern-header.mjh-mobile-open .mjh-mobile,
	body.minejobs-modern-header.mjh-user-mobile-open .mjh-user-mobile {
		pointer-events: auto !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	body.minejobs-modern-header .mjh-mobile__backdrop,
	body.minejobs-modern-header .mjh-user-mobile__backdrop {
		position: fixed !important;
		inset: 0 !important;
		width: 100vw !important;
		height: 100dvh !important;
		background: rgba(8, 28, 57, .46) !important;
		opacity: 0 !important;
		transition: opacity .24s ease !important;
		z-index: 1 !important;
	}
	body.minejobs-modern-header.mjh-mobile-open .mjh-mobile__backdrop,
	body.minejobs-modern-header.mjh-user-mobile-open .mjh-user-mobile__backdrop {
		opacity: 1 !important;
	}
	body.minejobs-modern-header .mjh-mobile__panel,
	body.minejobs-modern-header .mjh-user-mobile__panel {
		position: fixed !important;
		top: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		max-width: none !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100svh !important;
		border-radius: 0 !important;
		padding: calc(16px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom)) !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		z-index: 2 !important;
		background:
			radial-gradient(circle at 84% 12%, rgba(4,103,242,.12), transparent 30%),
			linear-gradient(180deg,#ffffff 0%,#f7fbff 100%) !important;
		box-shadow: 0 24px 70px rgba(8, 28, 57, .20) !important;
		transition: transform .28s cubic-bezier(.2,.8,.2,1) !important;
		will-change: transform !important;
	}
	body.minejobs-modern-header .mjh-mobile__panel {
		right: 0 !important;
		left: auto !important;
		transform: translate3d(105%,0,0) !important;
	}
	body.minejobs-modern-header.mjh-mobile-open .mjh-mobile__panel {
		transform: translate3d(0,0,0) !important;
	}
	body.minejobs-modern-header .mjh-user-mobile__panel {
		left: 0 !important;
		right: auto !important;
		transform: translate3d(-105%,0,0) !important;
	}
	body.minejobs-modern-header.mjh-user-mobile-open .mjh-user-mobile__panel {
		transform: translate3d(0,0,0) !important;
	}
	body.minejobs-modern-header.mjh-mobile-open,
	body.minejobs-modern-header.mjh-user-mobile-open,
	html:has(body.minejobs-modern-header.mjh-mobile-open),
	html:has(body.minejobs-modern-header.mjh-user-mobile-open) {
		overflow: hidden !important;
		touch-action: none;
	}
	body.minejobs-modern-header .mjh-mobile__head,
	body.minejobs-modern-header .mjh-user-mobile__head {
		position: sticky;
		top: 0;
		z-index: 3;
		direction: rtl;
	}
	body.minejobs-modern-header .mjh-mobile-menu,
	body.minejobs-modern-header .mjh-user-mobile__menu,
	body.minejobs-modern-header .mjh-user-mobile__guest-actions {
		direction: rtl;
		padding-bottom: 28px;
	}
	body.minejobs-modern-header .mjh-mobile-menu a,
	body.minejobs-modern-header .mjh-user-mobile__menu a,
	body.minejobs-modern-header .mjh-user-mobile__guest-actions a {
		justify-content: flex-start !important;
		text-align: right !important;
	}
	body.minejobs-modern-header .mjh-actions > .mjh-login:after,
	body.minejobs-modern-header .mjh-user__toggle:after {
		content: "";
		position: absolute;
		left: -4px;
		bottom: -4px;
		width: 19px;
		height: 19px;
		border-radius: 10px;
		background: linear-gradient(135deg,var(--mjh-primary),var(--mjh-primary-2));
		border: 3px solid #fff;
		box-shadow: 0 6px 16px rgba(4,103,242,.24);
	}
}

/* MineJobs header notification bell restore */
.mjh-actions .mjn-bell,
.mjh-actions .mjh-notifications {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 65;
}

.mjh-actions .mjh-notifications {
	width: 48px;
	height: 48px;
	border-radius: 18px;
	border: 1px solid rgba(29,119,255,.18);
	background: linear-gradient(180deg,#fff,#f3f8ff);
	color: var(--mjh-primary) !important;
	box-shadow: 0 10px 25px rgba(19,120,255,.08);
	text-decoration: none !important;
}

.mjh-actions .mjh-notifications:hover {
	border-color: rgba(19,120,255,.45);
	box-shadow: 0 14px 35px rgba(19,120,255,.18);
	transform: translateY(-1px);
}

.mjh-actions .mjh-notifications i {
	font-size: 18px;
	line-height: 1;
}

.mjh-actions .mjh-notifications__count {
	position: absolute;
	top: -5px;
	left: -5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: #ff365c;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	border: 2px solid #fff;
	box-shadow: 0 8px 16px rgba(255,54,92,.28);
}

.mjh-user-mobile__menu .mjn-menu-count,
.mjh-user__panel .mjn-menu-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #ff365c;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	margin-inline-start: auto;
	padding: 0 6px;
}

@media (max-width: 991px) {
	.mjh-actions .mjn-bell,
	.mjh-actions .mjh-notifications {
		display: none !important;
	}
}

/* v88: MineJobs header logo motion */
body.minejobs-modern-header .mjh-brand,
body:not(.minejobs-modern-header) .navbar-brand{
	position:relative;
	isolation:isolate;
}
body.minejobs-modern-header .mjh-brand::before,
body:not(.minejobs-modern-header) .navbar-brand::before{
	content:"";
	position:absolute;
	inset:-11px -14px;
	z-index:-1;
	border-radius:999px;
	background:
		radial-gradient(circle at 80% 45%,rgba(11,108,255,.20),transparent 43%),
		linear-gradient(110deg,transparent 18%,rgba(255,255,255,.88) 46%,transparent 68%);
	background-size:100% 100%,220% 100%;
	background-position:center,-145% 0;
	opacity:0;
	transform:scale(.88);
	transition:opacity .28s ease,transform .28s ease,background-position .72s ease;
	pointer-events:none;
}
body.minejobs-modern-header .mjh-logo,
body:not(.minejobs-modern-header) .navbar-brand .noo-logo-img,
body:not(.minejobs-modern-header) .navbar-brand .noo-logo-retina-img,
body:not(.minejobs-modern-header) .navbar-brand img{
	transition:transform .36s cubic-bezier(.2,.75,.22,1),filter .36s ease;
	transform-origin:center;
	will-change:transform,filter;
	animation:mj-logo-orbit-breath 6.4s ease-in-out infinite;
}
body.minejobs-modern-header .mjh-brand::after,
body:not(.minejobs-modern-header) .navbar-brand::after{
	content:"";
	position:absolute;
	inset:auto 7px 7px auto;
	width:7px;
	height:7px;
	border-radius:50%;
	background:#0b6cff;
	box-shadow:0 0 0 6px rgba(11,108,255,.10),0 0 18px rgba(11,108,255,.35);
	opacity:.72;
	transform:translate3d(0,0,0);
	animation:mj-logo-dot-orbit 5.8s ease-in-out infinite;
	pointer-events:none;
}
body.minejobs-modern-header .mjh-brand:hover::before,
body.minejobs-modern-header .mjh-brand:focus-visible::before,
body:not(.minejobs-modern-header) .navbar-brand:hover::before,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible::before{
	opacity:1;
	transform:scale(1);
	background-position:center,145% 0;
}
body.minejobs-modern-header .mjh-brand:hover .mjh-logo,
body.minejobs-modern-header .mjh-brand:focus-visible .mjh-logo,
body:not(.minejobs-modern-header) .navbar-brand:hover .noo-logo-img,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible .noo-logo-img,
body:not(.minejobs-modern-header) .navbar-brand:hover .noo-logo-retina-img,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible .noo-logo-retina-img,
body:not(.minejobs-modern-header) .navbar-brand:hover img,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible img{
	transform:translateY(-2px) scale(1.045) rotate(-1deg);
	filter:drop-shadow(0 13px 22px rgba(11,108,255,.20));
}
@keyframes mj-logo-orbit-breath{
	0%,100%{transform:translateY(0) scale(1) rotate(0deg);filter:none;}
	38%{transform:translateY(-1px) scale(1.012) rotate(.25deg);filter:drop-shadow(0 8px 16px rgba(11,108,255,.08));}
	64%{transform:translateY(0) scale(1.004) rotate(-.2deg);filter:drop-shadow(0 6px 14px rgba(11,108,255,.06));}
}
@keyframes mj-logo-dot-orbit{
	0%,100%{transform:translate(0,0) scale(1);opacity:.55;}
	42%{transform:translate(-13px,-10px) scale(1.08);opacity:.95;}
	70%{transform:translate(-5px,3px) scale(.86);opacity:.64;}
}
@media (prefers-reduced-motion:reduce){
	body.minejobs-modern-header .mjh-logo,
	body:not(.minejobs-modern-header) .navbar-brand .noo-logo-img,
	body:not(.minejobs-modern-header) .navbar-brand .noo-logo-retina-img,
	body:not(.minejobs-modern-header) .navbar-brand img{animation:none!important;transition:none!important;}
	body.minejobs-modern-header .mjh-brand::before,
	body.minejobs-modern-header .mjh-brand::after,
	body:not(.minejobs-modern-header) .navbar-brand::before,
	body:not(.minejobs-modern-header) .navbar-brand::after{display:none!important;}
}


/* ===== v97: automatic blog-style shine for header logo ===== */
body.minejobs-modern-header .mjh-brand,
body:not(.minejobs-modern-header) .navbar-brand{
	position:relative!important;
	overflow:hidden!important;
	isolation:isolate!important;
	border-radius:18px!important;
}
body.minejobs-modern-header .mjh-brand::after,
body:not(.minejobs-modern-header) .navbar-brand::after{
	display:none!important;
}
body.minejobs-modern-header .mjh-brand::before,
body:not(.minejobs-modern-header) .navbar-brand::before{
	content:""!important;
	position:absolute!important;
	z-index:3!important;
	inset:-18px -34px!important;
	border-radius:inherit!important;
	background:linear-gradient(105deg, transparent 0%, transparent 38%, rgba(255,255,255,.18) 43%, rgba(255,255,255,.92) 50%, rgba(83,159,255,.28) 56%, transparent 64%, transparent 100%)!important;
	transform:translateX(-155%) skewX(-13deg)!important;
	opacity:0!important;
	pointer-events:none!important;
	animation:mj-header-logo-auto-shine 6.8s ease-in-out infinite!important;
	mix-blend-mode:screen!important;
}
body.minejobs-modern-header .mjh-logo,
body:not(.minejobs-modern-header) .navbar-brand .noo-logo-img,
body:not(.minejobs-modern-header) .navbar-brand .noo-logo-retina-img,
body:not(.minejobs-modern-header) .navbar-brand img{
	animation:none!important;
	transition:filter .25s ease, transform .25s ease!important;
}
body.minejobs-modern-header .mjh-brand:hover .mjh-logo,
body.minejobs-modern-header .mjh-brand:focus-visible .mjh-logo,
body:not(.minejobs-modern-header) .navbar-brand:hover .noo-logo-img,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible .noo-logo-img,
body:not(.minejobs-modern-header) .navbar-brand:hover .noo-logo-retina-img,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible .noo-logo-retina-img,
body:not(.minejobs-modern-header) .navbar-brand:hover img,
body:not(.minejobs-modern-header) .navbar-brand:focus-visible img{
	transform:none!important;
	filter:drop-shadow(0 10px 18px rgba(11,108,255,.16))!important;
}
@keyframes mj-header-logo-auto-shine{
	0%, 62%{transform:translateX(-155%) skewX(-13deg);opacity:0;}
	68%{opacity:.78;}
	82%{transform:translateX(155%) skewX(-13deg);opacity:.72;}
	88%,100%{transform:translateX(155%) skewX(-13deg);opacity:0;}
}
@media (prefers-reduced-motion:reduce){
	body.minejobs-modern-header .mjh-brand::before,
	body:not(.minejobs-modern-header) .navbar-brand::before{animation:none!important;display:none!important;}
}


/* ===== v98: header social SVG fallback icons ===== */
.mjh-social a svg{
	width:15px!important;
	height:15px!important;
	display:block!important;
	fill:currentColor!important;
}
.mjh-social a span{
	font-size:15px!important;
	line-height:1!important;
}

/* ===== v101: robust visible automatic shine on header logo ===== */
body.minejobs-modern-header .mjh-brand,
body:not(.minejobs-modern-header) .navbar-brand{
	position:relative!important;
	display:inline-flex!important;
	overflow:hidden!important;
	isolation:isolate!important;
	border-radius:18px!important;
}
body.minejobs-modern-header .mjh-brand .mjh-logo,
body:not(.minejobs-modern-header) .navbar-brand img{
	position:relative!important;
	z-index:1!important;
}
body.minejobs-modern-header .mjh-brand::after,
body:not(.minejobs-modern-header) .navbar-brand::after{
	display:none!important;
	content:none!important;
}
body.minejobs-modern-header .mjh-brand::before,
body:not(.minejobs-modern-header) .navbar-brand::before{
	content:""!important;
	position:absolute!important;
	z-index:5!important;
	top:-35%!important;
	bottom:-35%!important;
	left:-70%!important;
	width:44%!important;
	border-radius:999px!important;
	background:linear-gradient(105deg,transparent 0%,rgba(255,255,255,.05) 18%,rgba(255,255,255,.95) 48%,rgba(35,143,255,.42) 58%,transparent 100%)!important;
	transform:translateX(-165%) skewX(-16deg)!important;
	opacity:0!important;
	pointer-events:none!important;
	mix-blend-mode:normal!important;
	animation:mj-header-logo-shine-v101 5.8s cubic-bezier(.4,0,.2,1) infinite!important;
}
@keyframes mj-header-logo-shine-v101{
	0%,56%{transform:translateX(-165%) skewX(-16deg);opacity:0;}
	62%{opacity:.92;}
	78%{transform:translateX(520%) skewX(-16deg);opacity:.88;}
	86%,100%{transform:translateX(520%) skewX(-16deg);opacity:0;}
}
@media (prefers-reduced-motion:reduce){
	body.minejobs-modern-header .mjh-brand::before,
	body:not(.minejobs-modern-header) .navbar-brand::before{animation:none!important;display:none!important;}
}
