	/* Navbar */
	.navbar {
		background-color: #2B3B46;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		color: white;
		border: none;
		padding: 5px 30px 5px 30px;
		border-radius: 0 !important;
	}

	/* .navbar .container {
		max-width: var(--ihg-max-width);
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	} */
	
	.navbar-header {
		position: relative;
		display: flex;
		justify-content: center; /* centers the logo */
		align-items: center;
		margin-top: 10px; /* small vertical adjustment */
	}

	/* Logo centering & sizing */
	.nav_logo {
		width: 254px;
		height: auto;
		display: block;
		object-fit: contain;
	}

	.icon-bar{
		background-color:rgb(255,255,255);
	}
	
	.navbar a {
			color: white;
	}

	/* Dropdown trigger (Select Language link) */
	.langCustom {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-weight: 400;
		transition: all 0.2s ease-in-out;
		font-size: 14px;


	}

	.langCustom:hover,
	.langCustom:focus {
		background-color: rgba(0, 0, 0, 0.05);
		text-decoration: none;
	}
	
	.globeIcon {
		margin-right: 8px;     
		vertical-align: middle; 
		width:20px;
		height: auto;
	}

	.navbarCaretCustom {
		width: 12px;
		height: auto;
		margin-left: 6px;
		transition: transform 0.2s ease-in-out;
	}
	
	.open .navbarCaretCustom {
		transform: rotate(180deg);
	}
	
	.rightMenu {
		background: rgba(255, 255, 255, 0.85);
		border: 1px solid rgba(0, 0, 0, 0.1) !important;
		border-radius: 8px;
		min-width: 160px !important;
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
		margin-top: 6px;
		padding: 4px 0 !important;
		backdrop-filter: blur(8px); 
	}
	
	.rightMenu > li > a {
		color: #333;
		background-color: transparent;
		padding: 8px 14px !important;
		font-size: var(--font-sm);
		transition: all 0.2s ease-in-out;
	}
	
	.rightMenu > li > a:hover {
		background-color: rgba(0, 0, 0, 0.05);
		color: #000;
		font-weight: var(--font-regular);
	}
	
	.nav>li>a:hover, .nav>li>a:focus {
			background-color: transparent !important;
			color: #fff;
	}

	/* Mobile responsive */
	@media (max-width: 767px) {
		.navbar {
			padding: 10px 30px 10px 30px;
		}

		.navbar-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-top: 0;
		}
	
		.navbar-toggle {
			float: none !important;
			margin: 0 !important;
			order: 2; /* ensures toggle is on the right */
			padding: 6px 8px;
		}
	
		.navbar-header .a-text {
			order: 1; /* keeps logo on the left */
		}
	
		.navbar-header img {
			max-height: 36px;
			height: auto;
		}
		
		.navbar .dropdown-menu {
			display: none; /* hidden by default */
			position: static; /* avoid overflow on mobile */
			float: none;
			width: 100%; 
			background-color: #fff;
		}
		.navbar .dropdown.open .dropdown-menu {
			display: block; /* show only when open via Bootstrap */
		}
	
		.navbar .dropdown-menu > li > a {
			color: #333;
			padding: 10px 15px;
		}
	
		.langCustom {
			justify-content: flex-start;
			padding-left: 0;
		}
	
		.rightMenu {
			background: rgba(255, 255, 255, 0.9) !important;
			border-radius: 6px;
			margin-top: 4px;
		}
	}
