* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#portfolio {
	padding-top: 2rem;
}
body {
	font-family: Montserrat, sans-serif;
	line-height: 1.6;
	color: #12317b;
	overflow-x: hidden;
	background-color: #fff4da;
}
.hilighted-text {
	color: #ffbd38;
}
.navbar {
	border-radius: 0 0 25px 25px;
}
.montserrat-title {
	font-family: Montserrat, sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.navbar {
	font-family: Montserrat, sans-serif;
	position: fixed;
	top: 0;
	width: 100%;
	background-color: rgba(255, 248, 230, 0.95);
	box-shadow: 0 2px 5px rgba(14, 22, 42, 0.259);
	z-index: 1000;
}
.nav-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-family: Montserrat, sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #12317b;
	text-decoration: none;
	transition: color 0.3s ease;
	text-transform: none;
	letter-spacing: 1px;
}
.logo:hover {
	color: #ffbd38;
}
.nav-links {
	display: flex;
	list-style: none;
	margin-left: auto;
}
.nav-links li {
	margin-left: 2rem;
}
.nav-links a {
	text-decoration: none;
	color: #77264d;
	font-weight: 500;
	transition: color 0.3s ease;
}
.nav-links a:hover {
	color: #ffbd38;
}
.hero {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg, #4f6cb0, #000);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	z-index: 1;
}
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(#fff 1px, transparent 1px),
		radial-gradient(#ffffff00 0, transparent 1px);
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 2;
}
.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.hero-content p {
	font-size: 1.5rem;
	opacity: 0.9;
}
.main-content {
	position: relative;
	z-index: 2;
	background: #f0efeb;
	margin-top: 100vh;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}
section {
	padding: 4rem 0;
}
section h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #12317b;
	font-size: 2.5rem;
}
.main-content {
	border-radius: 25px 25px 0 0;
}
.about-content {
	display: flex;
	justify-content: center;
	align-items: center;
}
.about-text {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	max-width: 800px;
	text-align: center;
	font-size: 1.4rem;
	color: #77264d;
}
.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.VelocityVortex {
	position: relative;
}
.arrow-container {
	position: absolute;
	top: -60px;
	right: -90px;
	z-index: 10;
	pointer-events: none;
}
.hero-text {
	background-color: rgba(12, 12, 12, 0.822);
	border-radius: 25px;
}
.project-card {
	background: #fafffa;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(18, 49, 123, 0.1);
	transition: transform 0.3s ease;
	border: 2px solid #77264d;
}
.project-card:hover {
	transform: translateY(-10px) !important;
	transition: transform 0.3s ease;
	border-color: #ffbd38;
}
.project-card h3 {
	color: #12317b;
	margin-bottom: 1rem;
}
.project-link {
	display: inline-block;
	margin-top: 1rem;
	color: #77264d;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}
.project-link:hover {
	color: #ffbd38;
}
.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}
.skill-item {
	text-align: center;
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(18, 49, 123, 0.1);
	border: 2px solid #12317b;
}
.skill-item:hover {
	border-color: #ffbd38;
}
.skill-item i {
	font-size: 2.5rem;
	color: #77264d;
	margin-bottom: 1rem;
}
.contact-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.contact-info {
	text-align: center;
}
.contact-info p {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	margin: 1rem 0;
	color: #77264d;
}
.contact-info i {
	margin-right: 0.5rem;
	color: #77264d;
}
.social-links {
	display: flex;
	gap: 1.5rem;
}
.social-links a {
	color: #12317b;
	font-size: 1.5rem;
	transition: color 0.3s ease;
}
.social-links a:hover {
	color: #ffbd38;
}
footer {
	background-color: #12317b;
	color: #ffebc2;
	text-align: center;
	padding: 1.5rem;
}
@media (max-width: 768px) {
	.nav-content {
		flex-direction: column;
	}
	.nav-links {
		margin-top: 1rem;
	}
	.nav-links li {
		margin: 0 1rem;
	}
	.hero-content h1 {
		font-size: 2rem;
	}
	.hero-content p {
		font-size: 1.2rem;
	}
}
