	/**
 * Header CSS for satyendra UK theme
 * This file contains styles specific to the header section of the satyendra UK WordPress theme.
 * It ensures a cohesive design and responsive layout for the header across all devices.
 */

	/* =============================
   HEADER
============================= */
	.custom-header {
		width: 100%;
		position: relative;
		z-index: 1002;
		padding: 20px 0 40px;

	}

	.custom-navbar {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 20px;
		gap: 60px;
		/* adjust this value */
		display: flex;
		align-items: baseline;
		justify-content: space-between;
	}

	/* =============================
   LOGO
============================= */
	.custom-brand {
		display: flex;
		align-items: center;
		text-decoration: none;
	}

	.custom-brand img {
		width: 320px;
		height: auto;
		display: block;
	}

	/* =============================
   MENU BASE
============================= */
	.custom-menu-inner {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.custom-menu-inner .current-menu-item a {
		color: #e61a28;
	}

	.custom-menu-inner li a {
		text-decoration: none;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: .5px;
		color: #000;
		transition: .3s;
	}

	.custom-menu-inner li a:hover {
		opacity: .8;
	}

	/* =============================
   MOBILE MENU
============================= */
	.custom-menu {
		position: fixed;
		top: 0;
		left: -290px;
		width: 290px;
		height: 100vh;
		background: #fff;
		padding: 60px 20px 20px;
		transition: .4s;
		z-index: 1001;
		display: flex;
		flex-direction: column;
	}

	.custom-menu.active {
		transform: translateX(290px);
	}

	.custom-menu-inner {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.mobile-menu-logo {
		display: none;
		text-align: center;
		margin-bottom: 20px;
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(0, 0, 0, .08);
	}

	.mobile-menu-logo img {
		max-height: 60px;
		width: auto;
	}

	@media(max-width:768px) {
		.custom-menu-inner li a {
			color: #2c2c94 !important;
		}

		.custom-menu-inner li.contactUk_team_header a {
			color: #fff !important;
		}

		.mobile-menu-logo {
			display: block;
		}


		.custom-header {
			padding: 15px 0 25px;

		}
	}

	.contactUk_team_header {
		background: #e61a28;
		border-bottom-left-radius: 20px;
		border-top-left-radius: 20px;
		padding: 0px 0px 0px 10px;
	}

	.contactUk_team_header a {
		padding: 0 !important;
		color: #fff !important;
	}

	/* =============================
   BURGER
============================= */
	.custom-wrapper {
		display: flex;
		align-items: center;
		gap: 15px;
		z-index: 1003;
	}

	.custom-burger {
		width: 25px;
		height: 18px;
		cursor: pointer;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.custom-burger span {
		width: 100%;
		height: 2.5px;
		background: #2c2c94;
		transition: .5s;
	}

	.custom-burger.active span:nth-child(1) {
		transform: translateY(8px) rotate(405deg);
	}

	.custom-burger.active span:nth-child(2) {
		opacity: 0;
	}

	.custom-burger.active span:nth-child(3) {
		opacity: 0;
	}

	.custom-burger.active span:nth-child(4) {
		transform: translateY(-8px) rotate(-405deg);
	}

	/* =============================
   OVERLAY
============================= */
	.menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .5);
		visibility: hidden;
		opacity: 0;
		transition: .3s;
		z-index: 1000;
	}

	.menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}

	/* =============================
   DROPDOWN
============================= */
	.menu-item-has-children {
		position: relative;
	}

	.sub-menu {
		max-height: 0;
		overflow: hidden;
		list-style: none;
		padding-left: 15px;
		transition: .3s;
	}

	.menu-item-has-children.active .sub-menu {
		max-height: 200px;
		margin-top: 10px;
		padding: 10px 15px;
	}

	/* =============================
   DESKTOP
============================= */
	@media(min-width:768px) {

		.custom-burger,
		.menu-overlay,
		.custom-wrapper {
			display: none;
		}

		.custom-menu {
			position: static;
			transform: none !important;
			background: transparent;
			height: auto;
			width: auto;
			padding: 0;
		}

		.custom-menu-inner {
			flex-direction: row;
			align-items: center;
			gap: 30px;
		}

		.sub-menu {
			position: absolute;
			top: 100%;
			left: 0;
			background: #fff;
			border: 1px solid #032b53;
			opacity: 0;
			visibility: hidden;
			transform: translateY(10px);
			max-height: none;
			min-width: 180px;
			border-radius: 8px;
		}

		.menu-item-has-children:hover .sub-menu {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		}

		.sub-menu li a {
			padding: 10px 20px;
			display: block;
			color: #2c2c94;
		}

		.sub-menu li a:hover {
			background: #fff;
		}
	}

	/* =============================
   LEFT → RIGHT HOVER UNDERLINE
============================= */
	.custom-menu-inner>li>a {
		position: relative;
		display: inline-block;
		padding-bottom: 4px;
	}

	.custom-menu-inner>li>a::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 3px;
		background: #e61a28;
		/* underline color */
		transition: width 0.35s ease;
	}

	.custom-menu-inner>li>a:hover::before {
		width: 100%;
	}

	/* MEGA MENU */
	.spl_uk_mega_menu {
		position: absolute !important;
		width: 50vw;
		padding: 30px 20px 20px 20px;
		border-radius: 40px;
		border: none;
		background: #e61a28e3;
	}

	.spl_uk_mega_menu a {
		font-size: 13px !important;
		color: #fff !important;
		font-weight: 600 !important;
	}

	/* COLUMN */
	.spl_uk_mega_col {
		margin-bottom: 20px;
	}

	/* TITLE */
	.spl_uk_mega_title {
		font-weight: 600;
		margin-bottom: 10px;
	}

	/* LINKS */
	.spl_uk_submenu li a {
		display: block;
		padding: 5px 0;
		color: #333;
	}

	/* MOBILE TOGGLE */
	.spl_uk_mobile_toggle {
		width: 100%;
		background: none;
		border: none;
		font-weight: 600;
		text-align: left;
		padding: 10px 0;
	}

	/* HIDE SUBMENU MOBILE */
	@media(max-width: 991px) {
		.spl_uk_submenu {
			display: none;
		}

		#menu-header-menu {
			height: 95vh !important;
			overflow-y: scroll !important;
		}
	}

	/* SHOW ON HOVER DESKTOP */
	@media(min-width: 992px) {
		.spl_uk_has_mega:hover .dropdown-menu {
			display: block;
		}
	}