/* ================= HEADER ================= */
.header {
	width: 100%;
	z-index: 999;
	transition: all 0.3s ease;
}

.header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	color: #0d4f6d;
	z-index: 9999;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header.sticky .ResponsiveNav ul li a,
.header.sticky .arrow {
	color: #000;
}

.header.sticky .ResponsiveNav ul li a:hover {
	color: #007bff;
}

.header .ResponsiveNav ul li a:hover {
	color: #00c2ff;
}

/* ================= NAVIGATION ================= */
.ResponsiveNav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ResponsiveNav>ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.ResponsiveNav ul li {
	position: relative;
}

.ResponsiveNav ul li a {
	display: block;
	padding: 14px 18px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	position: relative;
	transition: all 0.3s ease;
}

/* ================= MENU HOVER ================= */
.ResponsiveNav ul li a::after {
	content: "";
	position: absolute;
	left: 18px;
	bottom: 8px;
	width: 0;
	height: 2px;
	background: #007bff;
	transition: width 0.3s ease;
}

.ResponsiveNav ul li a:hover {
	background: rgba(0, 123, 255, 0.08);
	border-radius: 4px;
	color: #00c2ff;
}

.ResponsiveNav ul li.active>a {
	color: #00c2ff;
}

/* ================= DROPDOWN ================= */
.ResponsiveNav ul li ul {
	position: absolute;
	top: 120%;
	left: 0;
	min-width: 220px;
	background: #fff;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px) scale(0.98);
	transition: all 0.5s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ResponsiveNav ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(-5px) scale(1);
}

.ResponsiveNav ul li ul li a {
	color: #32434a;
	font-size: 0.9rem;
}

/* ================= ARROW ================= */
.arrow {
	margin-left: 6px;
	font-size: 1rem;
	transition: 0.3s ease;
}

.has-sub.active>a .arrow {
	transform: rotate(180deg);
}

/* ================= MOBILE ================= */
.menu-toggle {
	display: none;
	font-size: 26px;
	cursor: pointer;
	padding: 10px;
	margin-left: auto;
	text-align: right;
}

@media (max-width: 991px) {

	.menu-toggle {
		display: block;
	}

	.ResponsiveNav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100%;
		background: #0d4f6d;
		z-index: 999;
		overflow-y: auto;
		transition: left 0.3s ease;
	}

	.ResponsiveNav.active {
		left: 0;
	}

	.ResponsiveNav>ul {
		flex-direction: column;
	}

	.ResponsiveNav ul li {
		width: 100%;
		border-bottom: 1px solid #eee;
	}

	.ResponsiveNav ul li a {
		padding: 12px;
		color: #ffffff !important;
	}

	.ResponsiveNav ul li ul li a {
		color: #23363f !important;
	}

	.arrow {
		color: #ffffff !important;
	}

	.ResponsiveNav ul li ul {
		position: static;
		max-height: 0;
		overflow: hidden;
		background: #f9f9f9;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: max-height 0.4s ease;
	}

	.ResponsiveNav ul li.active>ul {
		max-height: 500px;
	}
}
