/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
}

.nav-container {
	max-width: 1200px;
	margin: 1.5rem auto;
	padding: 0.5rem 1.5rem;
	background: #fff;
	border-radius: 50px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.logo {
	width: 130px;
}

.logo img {
	object-fit: cover;
	width: 100%;
	display: block;
}

.nav-links {
	display: flex;
	gap: 3rem;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-links li a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	transition: color 0.3s ease;
	font-size: 17px;
}

.nav-links li a:hover {
	color: #4a00e0;
}

.cta-button {
	padding: 0.5rem 1rem;
	border: 1px solid #4a00e0;
	border-radius: 50px;
	color: #4a00e0;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.cta-button::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: linear-gradient(175deg, #665DCD 0%, #5FA4E6 40%, #D0169E 100%);
	border-radius: 50%;
	margin-right: 10px;
}

.cta-button:hover {
	background: #4a00e0;
	color: #fff;
}

.cta-button:hover::before {
	background: linear-gradient(-175deg, #fff 0%, #fff 40%, #fff 100%);
}

.cta-button-mob {
	padding: 0.5rem 1rem;
	border: 1px solid #3300FF;
	border-radius: 50px;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	margin-top: 25px;
	background: #3300FF;
	display: none;
}

.cta-button-mob::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: linear-gradient(-175deg, #fff 0%, #fff 40%, #fff 100%);
	border-radius: 50%;
	margin-right: 10px;
}

.cta-button-mob:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #3300FF;
}

.cta-button-mob:hover::before {
	background: linear-gradient(175deg, #665DCD 0%, #5FA4E6 40%, #D0169E 100%);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 2px;
	background: #3300FF;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

@media (max-width: 992px) {
	.hamburger {
		display: flex;
		z-index: 1100;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		height: 100%;
		/* background: #fff; */
		background: linear-gradient(75deg, #000000, #3300FF);
		flex-direction: column;
		padding: 5rem 2rem;
		gap: 1.5rem;
		transition: right 0.4s ease;
		z-index: 1090;
		box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
	}

	.nav-links li a {
		color: #fff;
		font-size: 1.2rem;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.cta-button {
		display: none;
	}

	.cta-button-mob {
		display: block;
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
		background-color: #fff;
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
		background-color: #fff;
	}
}