.angie-hamburger-container-c6c39c2f {
	position: fixed;
	top: 37px;
	right: 30px;
	z-index: 99999;
	transition: top 0.3s ease; /* Smooth transition for top property */
}
.angie-hamburger-btn-c6c39c2f {
	background: transparent !important;
	border: none !important;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	padding: 0 !important;
	box-shadow: none !important;
}
.angie-hamburger-line-c6c39c2f {
	width: 30px;
	height: 4px;
	background-color: #004EA2; /* Primary */
	margin: 4px 0;
	transition: 0.3s;
	border-radius: 2px;
	pointer-events: none;
}
/* Updated Hamburger Hover */
.angie-hamburger-btn-c6c39c2f:hover .angie-hamburger-line-c6c39c2f {
	background-color: var(--e-global-color-accent, #00C2CB); /* Accent */
}

/* Open state color */
.angie-hamburger-btn-c6c39c2f.is-active .angie-hamburger-line-c6c39c2f {
	background-color: var(--e-global-color-accent, #00C2CB);
}

.angie-hamburger-btn-c6c39c2f.is-active .angie-hamburger-line-c6c39c2f:nth-child(1) {
	transform: translateY(12px) rotate(45deg);
}
.angie-hamburger-btn-c6c39c2f.is-active .angie-hamburger-line-c6c39c2f:nth-child(2) {
	opacity: 0;
}
.angie-hamburger-btn-c6c39c2f.is-active .angie-hamburger-line-c6c39c2f:nth-child(3) {
	transform: translateY(-12px) rotate(-45deg);
}

.angie-sidebar-menu-overlay-c6c39c2f {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 99997;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.angie-sidebar-menu-overlay-c6c39c2f.is-active {
	opacity: 1;
	visibility: visible;
}

.angie-sidebar-menu-container-c6c39c2f {
	position: fixed;
	top: 0;
	right: -370px;
	width: 370px;
	height: 100%;
	background: #ffffff;
	z-index: 99998;
	visibility: hidden;
	transition: right 0.3s ease-in-out, visibility 0.3s ease;
	overflow-y: auto;
	text-align: center;
	box-shadow: -2px 0 10px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
}
.angie-sidebar-menu-container-c6c39c2f.is-active {
	right: 0;
	visibility: visible;
}
.angie-sidebar-menu-container-c6c39c2f .angie-submenu-toggle-c6c39c2f {
	visibility: hidden;
}
.angie-sidebar-menu-container-c6c39c2f.is-active .angie-submenu-toggle-c6c39c2f {
	visibility: visible;
}
.menu-item-has-children .sub-menu .angie-submenu-toggle-c6c39c2f {
	visibility: hidden !important;
}
#ElementorMainNav .menu-item-has-children .sub-menu,
.elementor-nav-menu--main[aria-hidden="true"] .menu-item-has-children .sub-menu {
	visibility: hidden;
}
.angie-sidebar-menu-container-c6c39c2f.is-active .menu-item-has-children.angie-submenu-open-c6c39c2f > .sub-menu {
	visibility: visible !important;
}
.angie-sidebar-menu-container-c6c39c2f.is-active .menu-item-has-children.angie-submenu-open-c6c39c2f .sub-menu .angie-submenu-toggle-c6c39c2f {
	visibility: visible !important;
}
.angie-sidebar-menu-content-c6c39c2f {
	flex-grow: 1;
	padding: 100px 20px 40px;
	display: flex;
	flex-direction: column;
}
.angie-sidebar-nav-list-c6c39c2f {
	list-style: none !important;
	padding: 0;
	margin: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.angie-sidebar-nav-list-c6c39c2f li {
	list-style-type: none !important;
	position: relative;
	border-bottom: none;
	margin-bottom: 5px;
}
.angie-menu-item-wrap-c6c39c2f {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* First-level anchor */
.angie-sidebar-nav-list-c6c39c2f > li > .angie-menu-item-wrap-c6c39c2f > a {
	display: block;
	padding: 15px;
	color: #004EA2;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	transition: 0.2s;
	width: 100%;
	position: relative;
}
/* Inner span to control underline width */
.angie-sidebar-nav-list-c6c39c2f > li > .angie-menu-item-wrap-c6c39c2f > a > .angie-menu-text-c6c39c2f {
	position: relative;
	display: inline-block;
}

/* Updated First-level hover */
.angie-sidebar-nav-list-c6c39c2f > li > .angie-menu-item-wrap-c6c39c2f > a:hover {
	color: var(--e-global-color-accent, #00C2CB); /* Accent */
	background: transparent;
}
/* Fade effect instead of grow, applied to inner text span */
.angie-sidebar-nav-list-c6c39c2f > li > .angie-menu-item-wrap-c6c39c2f > a > .angie-menu-text-c6c39c2f::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%; /* Matches text width */
	height: 3px;
	background-color: var(--e-global-color-accent, #00C2CB); /* Accent */
	opacity: 0; /* Start invisible */
	transition: opacity 0.3s ease; /* Fade transition */
}
.angie-sidebar-nav-list-c6c39c2f > li > .angie-menu-item-wrap-c6c39c2f > a:hover > .angie-menu-text-c6c39c2f::after {
	opacity: 1; /* Fade in */
}

/* Current page menu item color */
.angie-sidebar-nav-list-c6c39c2f li.current-menu-item > .angie-menu-item-wrap-c6c39c2f > a,\n.angie-sidebar-nav-list-c6c39c2f li.current_page_item > .angie-menu-item-wrap-c6c39c2f > a {
	color: var(--e-global-color-accent) !important; /* Changed to accent color */
}

.angie-submenu-toggle-c6c39c2f {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -10px; /* Moved 20px to the right from 10px */
	background: transparent !important;
	border: none !important;
	cursor: pointer;
	padding: 10px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	box-shadow: none !important;
	z-index: 10;
	/* Chevron color set to primary */
	color: var(--e-global-color-primary, #004EA2) !important; 
	opacity: 1 !important; /* Always visible */
	visibility: visible;
}
.angie-submenu-toggle-c6c39c2f:hover {
	color: var(--e-global-color-accent, #00C2CB) !important;
}
.angie-submenu-toggle-c6c39c2f.is-expanded {
	transform: translateY(-50%) rotate(180deg);
}

/* Submenu container */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu {
	display: block;
	max-height: 0;
	overflow: hidden;
	list-style: none !important;
	padding: 5px 0;
	margin: 0;
	background: #fbfbfb;
	transition: max-height 0.4s ease-out;
}

/* Submenu links (Level 2+) */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu .angie-menu-item-wrap-c6c39c2f {
	border-bottom: 3px dotted var(--e-global-color-accent, #00C2CB);
}
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu a {
	font-size: 14px; /* Fixed size */
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	padding: 12px 15px;
	color: #004EA2;
	text-decoration: none;
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu li:last-child > .angie-menu-item-wrap-c6c39c2f {
	border-bottom: none;
}
/* Updated Submenu Hover */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu a:hover {
	color: var(--e-global-color-accent, #00C2CB); /* Accent */
	background: transparent;
}

/* Third-level Submenu Items Styling */
/* Left and right borders for all items */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu ul.sub-menu > li > .angie-menu-item-wrap-c6c39c2f {
	border-left: 3px solid var(--e-global-color-accent, #00C2CB);
	border-right: 3px solid var(--e-global-color-accent, #00C2CB);
}

/* Top border for the first item */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu ul.sub-menu > li:first-child > .angie-menu-item-wrap-c6c39c2f {
	border-top: 3px solid var(--e-global-color-accent, #00C2CB);
}

/* Bottom border for the last item */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu ul.sub-menu > li:last-child > .angie-menu-item-wrap-c6c39c2f {
	border-bottom: 3px solid var(--e-global-color-accent, #00C2CB);
}

/* Third level sub menu item bottom margin */
.angie-sidebar-nav-list-c6c39c2f ul.sub-menu ul.sub-menu > li {
	margin-bottom: 0px;
}

@media (max-width: 1024px) {
	.angie-sidebar-menu-container-c6c39c2f {
		width: 100%;
		right: -100%;
	}
	.angie-hamburger-line-c6c39c2f {
		background-color: var(--e-global-color-accent, #00C2CB); /* Accent color on mobile */
	}
	.angie-hamburger-btn-c6c39c2f:hover .angie-hamburger-line-c6c39c2f {
		background-color: var(--e-global-color-secondary, #333333); /* Secondary color on hover mobile */
	}
	
	/* Active state on mobile after scroll */
	.angie-hamburger-container-c6c39c2f.is-scrolled {
		top: 20px;
	}
}