
 /* ============ NAVBAR ============ */
 .navbar {
 	position: fixed;
 	top: 20px;
 	left: 50%;
 	transform: translateX(-50%);
 	width: 95%;
 	max-width: 1200px;
 	background-color: white;
 	padding: 18px 32px;
 	z-index: 1000;
 	box-shadow: var(--shadow-md);
 	border-radius: 12px;
 	transition: all 0.3s ease;
 }

 .navbar:hover {
 	box-shadow: var(--shadow-lg);
 }

 .nav-container {
 	display: flex;
 	align-items: center;
 	justify-content: space-between !important;
 	/* gap: 24px; */
 }

 .logo {
 	height: 42px;
 	width: auto;
 	flex-shrink: 0;
 }

 /* .nav-menu {
 	display: flex;
 	align-items: center;
 	gap: 48px;
 	flex: 1;
 	justify-content: center;
 	list-style: none;
 } */

 .nav-item {
 	position: relative;
 }

 .nav-link {
 	color: var(--color-gray);
 	text-decoration: none;
 	font-size: 16px;
 	font-weight: 500;
 	cursor: pointer;
 	transition: color 0.3s ease;
 	white-space: nowrap;
 	display: flex;
 	align-items: center;
 	gap: 6px;
 }

 .nav-link:hover {
 	color: var(--color-dark);
 }

 .nav-link.active {
 	color: var(--color-dark);
 	font-weight: 600;
 }

 .dropdown-icon {
 	width: 16px;
 	height: 16px;
 	transition: transform 0.3s ease;
 }

 .nav-item:hover .dropdown-icon {
 	transform: rotate(180deg);
 }

 .login-btn {
 	border: 2px solid var(--color-cornflowerblue-200);
 	border-radius: 8px;
 	padding: 10px 28px;
 	cursor: pointer;
 	transition: all 0.3s ease;
 	background-color: transparent;
 	flex-shrink: 0;
 	text-decoration: none;
 	color: var(--color-cornflowerblue-100);
 	font-weight: 600;
 	font-size: 16px;
 	white-space: nowrap;
 }

 .login-btn:hover {
 	background-color: var(--color-cornflowerblue-100);
 	color: white;
 	transform: translateY(-2px);
 	box-shadow: var(--shadow-sm);
 }


 .mobile-menu-overlay {
 	display: block;
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background-color: rgba(0, 0, 0, 0.5);
 	z-index: 998;
 	opacity: 0;
 	transition: opacity 0.3s ease;
 }

 .mobile-menu-overlay.active {
 	display: block;
 	opacity: 1;
 }
