.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 40px;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-item {
	position: relative;
	margin: 0 15px;
}

.nav-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	padding: 10px 0;
	display: block;
	position: relative;
}

.nav-link:hover {
	color: rgba(255, 255, 255, 0.8)
}

.cta-button {
	background-color: #fff;
	color: #333;
	border: 2px solid var(--theme-color);
	border-radius: 30px;
	padding: 10px 20px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: var(--theme-color);
	color: white;
}

.sticky-header .menu-area .main-menu .nav-links .nav-item .nav-link {
	color: #000;
}

/* Mega Menu Styles */
.mega-menu {
	position: absolute;
	top: 100%;
	left: 30%;
	transform: translateX(-30%);
	width: 800px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 20px;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.nav-item:hover .mega-menu {
	opacity: 1;
	visibility: visible;
}

.mega-menu-left {
	width: 25%;
	padding-right: 20px;
	border-right: 1px solid #eee;
}

.mega-menu-right {
	width: 75%;
	padding-left: 20px;
	display: flex;
}

.mega-menu-column {
	flex: 1;
	padding: 0 15px;
}

.mega-menu-column.visual {
	flex: 1.5;
}

.category-title {
	color: #888;
	font-size: 12px;
	font-weight: 400;
	margin: 20px 0px;
	letter-spacing: 1px;
}

.menu-categories {
	list-style: none;
}

.menu-category {
	margin-bottom: 10px;
	padding: 5px;
	border-radius: 6px;
	transition: background-color 0.2s;
	cursor: pointer;
}

.menu-category:hover {
	background-color: #f5f5f5;
}

.menu-category a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	display: block;
}

.menu-category.active {
	background-color: #f0f7f4;
}

.menu-category.active a {
	color: var(--theme-color);
	font-weight: 400;
}

/* Content sections */
.content-section {
	display: none;
}

.content-section.active {
	display: block;
}

.fund-item {
	margin-bottom: 25px;
}

.fund-title a{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0px;
	color: #333;
}

.fund-desc {
	font-size: 14px;
	color: #666;
}

.visual-content {
	background-color: #f0f4ff;
	border-radius: 5px;
	padding: 10px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.device-mockup {
	text-align: center;
	margin-bottom: 20px;
}

.device-mockup img {
	max-width: 100%;
	height: auto;
}

.promo-text {
	text-align: center;
	margin-bottom: 20px;
}

.promo-text .highlight {
	color: #1a73e8;
	font-weight: bold;
}

.app-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.app-button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 8px 12px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
}

.app-button img {
	height: 20px;
	margin-right: 8px;
}

/* Regular Dropdown Menu Styles */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0%;
	transform: translateX(-50%);
	min-width: 200px;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	display: block;
}

.nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	padding: 10px 20px;
	display: block;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.2s;
}

.dropdown-item:hover {
	background-color: #f5f5f5;
	color: var(--theme-color);
}

/* Mobile Toggle */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	height: 24px;
	width: 30px;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	width: 100%;
	height: 3px;
	background-color: #333;
	border-radius: 5px;
	transition: all 0.3s ease;
}

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

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

/* Mobile Navigation */
body.menu-open {
	overflow: hidden;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
	display: none;
	cursor: pointer;
	z-index: 1001;
}

.mobile-menu-toggle .bar {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.mobile-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background: #fff;
	z-index: 1000;
	overflow-y: auto;
	transition: right 0.3s ease;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
	right: 0;
}

.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.mobile-nav-header .logo img {
	height: 40px;
	width: auto;
}

.close-mobile-menu {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.mobile-nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav-item {
	border-bottom: 1px solid #eee;
}

.mobile-nav-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
}

.mobile-dropdown-toggle {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #666;
	cursor: pointer;
	transition: transform 0.3s ease;
}

/* Mobile Mega Menu */
.mobile-mega-menu {
	display: none;
	background: #f9f9f9;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease-out;
}

.mobile-mega-menu.active {
	display: block;
	max-height: 1000px; /* Adjust based on content */
	transition: max-height 0.3s ease-in;
}

.mobile-menu-category {
	padding: 12px 15px;
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid #eee;
}

.mobile-menu-category:last-child {
	border-bottom: none;
}

.mobile-menu-category a {
	color: #333;
	text-decoration: none;
	display: block;
}

.mobile-menu-category.active {
	background: #fff;
	font-weight: 600;
}

.mobile-category-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0;
	padding: 15px;
	background: #f0f0f0;
	text-transform: uppercase;
}

.mobile-fund-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.mobile-fund-item:last-child {
	border-bottom: none;
}

.mobile-fund-title {
	font-size: 16px;
	margin-bottom: 5px;
	color: #333;
}

.mobile-fund-desc {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
	display: none;
	background: #f9f9f9;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease-out;
}

.mobile-dropdown-menu.active {
	display: block;
	max-height: 1000px; /* Adjust based on content */
	transition: max-height 0.3s ease-in;
}

.mobile-dropdown-item {
	display: block;
	padding: 12px 15px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid #eee;
}

.mobile-dropdown-item:last-child {
	border-bottom: none;
}

.mobile-dropdown-item:hover {
	background: #f0f0f0;
}

/* Mobile CTA */
.mobile-cta {
	padding: 20px 15px;
	text-align: center;
	background: #fff;
	border-top: 1px solid #eee;
}

.cta-button {
	display: inline-block;
	padding: 12px 30px;
	background: #006400;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.cta-button:hover {
	background: #005000;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
	.mega-menu {
		width: 800px;
	}
	
	.mega-menu-right {
		flex-direction: column;
	}
	
	.mega-menu-column {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.mega-menu-column.visual {
		margin-top: 20px;
	}
}

@media screen and (max-width: 992px) {
	.mega-menu {
		width: 700px;
		left: -100px;
	}
}

@media screen and (max-width: 768px) {
	.nav-links, .cta-button {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: block;
	}
	
	.mobile-menu-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	
	.mobile-menu-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}
	
	.mobile-menu-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media (min-width: 992px) {
	.mobile-menu-toggle,
	.mobile-sidebar,
	.mobile-overlay {
		display: none;
	}
}

@media (max-width: 991px) {
	.mobile-sidebar {
		width: 280px;
	}
}

@media (max-width: 480px) {
	.mobile-sidebar {
		width: 100%;
	}
}