/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 2rem;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	line-height:0.5;
}

.logo {
	font-size: 1.4rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links li {
	position: relative;
}

.nav-links a {
	text-decoration: none;
	color: #2c3e50;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	display: block;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: #ff6b35;
	transform: translateY(-2px);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Dropdown Styles */
.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.dropdown-toggle::after {
	content: '▼';
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 200px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1001;
	border: 1px solid rgba(0, 0, 0, 0.05);
	margin-top: 0.5rem;
	overflow: hidden;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu a {
	display: block;
	padding: 1.25rem 1.25rem;
	color: #2c3e50;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
	position: relative;
}

.dropdown-menu a:hover {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
}

.dropdown-menu a::after {
	display: none;
}

.dropdown-menu a:first-child {
	border-radius: 10px 10px 0 0;
}

.dropdown-menu a:last-child {
	border-radius: 0 0 10px 10px;
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #2c3e50;
	transition: 0.3s;
	border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 73px;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	z-index: 999;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
	display: block;
}

.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav > ul > li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav a {
	display: block;
	padding: 1rem 2rem;
	color: #2c3e50;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mobile-nav a:hover {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
}

.mobile-dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1rem 2rem;
	background: none;
	border: none;
	color: #2c3e50;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	font-size: 1rem;
}

.mobile-dropdown-toggle::after {
	content: '▼';
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
	transform: rotate(180deg);
}

.mobile-dropdown-menu {
	background: rgba(240, 240, 240, 0.5);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
	max-height: 200px;
}

.mobile-dropdown-menu a {
	padding: 0.75rem 3rem;
	font-size: 0.9rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links { display: none; }
	.mobile-menu-toggle { display: flex; }
	.navbar {
		padding: 1rem 1.5rem;
	}
	.nav-container{
		max-width:100dvw;
	}
}