:root {
	--primary-blue: #0d2d45;
}
.search-results {
	position: absolute;
	top: 10px;
	right: 0;
	width: 300px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	max-height: 350px;
	overflow-y: auto;
	display: none;
	z-index: 99;
}

.search-suggestion {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border-bottom: 1px solid #eee;
	transition: 0.2s;
}

.search-suggestion:hover {
	background: #f7f7f7;
}

.search-suggestion img {
	width: 50px;
	height: 40px;
	border-radius: 4px;
	object-fit: cover;
}

.search-suggestion a {
	text-decoration: none;
	color: #222;
	font-size: 15px;
	font-weight: 600;
}

.search-no-result {
	padding: 10px;
	text-align: center;
	color: #777;
}
.header-bottom {
	padding: 20px 0px 20px 0px;
}

.site-logo img,
.site-logo .text-logo {
	max-height: 80px; /* adjust as needed */
	width: auto;
}
.text-logo {
	color: black;
}

/* Make dropdown items full width */
.main-header .dropdown-menu .dropdown-item {
	display: block;
	width: 100%;
	box-sizing: border-box;
}

/* Beautiful Dropdown Menu */
.nav-item.dropdown:hover > .dropdown-menu {
	display: block; /* Open on hover (desktop) */
	margin-top: 0;
}
.nav-link.dropdown-toggle::after {
	margin-left: 0 !important;
}
.custom-dropdown-toggle {
	position: relative;
	padding-right: 28px !important;
}

.custom-dropdown-toggle::after {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;

	position: absolute;
	right: 10px;
	top: 50%;

	width: 12px;
	height: 12px;
	line-height: 12px;

	transform: translateY(-50%) rotate(0deg);
	transform-origin: 50% 50%;

	transition: transform 0.25s ease;
	border: none !important;
}

.nav-item.dropdown:hover .custom-dropdown-toggle::after {
	transform: translateY(-50%) rotate(180deg);
}

/* Override padding ONLY for dropdown submenu items */
.main-header .dropdown-menu .dropdown-item {
	padding: 10px 12px !important;
}

/* Dropdown Menu Styling */
.custom-dropdown-menu {
	border-radius: 12px;
	padding: 5px 0;
	min-width: 220px;
	animation: fadeIn 0.3s ease;
}

.dropdown-item {
	padding: 10px 24px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	/* background: #0d6efd; */
	background: var(--primary-blue);
	color: white !important;
	padding-left: 30px;
}

.dropdown-divider {
	margin: 0px 0;
	border-top: 1px dashed #0862bd !important;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile fix - keep click behavior */
@media (max-width: 991px) {
	.nav-item.dropdown:hover > .dropdown-menu {
		display: none;
	}
	.dropdown-toggle::after {
		display: inline-block;
	}
}
.main-header .main-menu ul li a {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

/* ================= LOGO SPACING (NON-STICKY ONLY) ================= */

/* Normal header: add space after logo */
.header-bottom:not(.sticky-bar) .site-logo {
	margin-right: 50px; /* adjust spacing as needed */
}

/* Sticky header: remove extra space */
.header-bottom.sticky-bar .site-logo {
	margin-right: 15px; /* compact spacing when sticky */
}





