/* Reset and Base Styles */
:root {
	--primary: #2563eb;
	--secondary: #3b82f6;
	--background: #0f172a;
	--surface: #1e293b;
	--text: #f8fafc;
	--text-secondary: #94a3b8;
	--accent: #38bdf8;
	--error: #ef4444;
	--success: #22c55e;
	--color-background: #0a0a0a;
	--color-text: #ffffff;
	--color-text-light: rgba(255, 255, 255, 0.7);
	--color-accent: #00f0ff;
	--font-primary: "Syncopate", sans-serif;
	--font-secondary: "Outfit", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Space Grotesk", sans-serif;
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
	width: 12px;
	height: 12px;
	background: var(--accent);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 999;
	transition: transform 0.2s ease;
}

.cursor-follower {
	width: 40px;
	height: 40px;
	border: 2px solid var(--accent);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 999;
	transition: transform 0.6s ease;
}

/* Hero Section */
.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--background);
}

#hero-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1200px;
	padding: 0 2rem;
}

.hero-title {
	font-family: "Syncopate", sans-serif;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1.2;
	margin-bottom: 2rem;
}

.hero-title .line {
	display: block;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.hero-title .line span {
	display: block;
	opacity: 1;
	transform: translateY(100%);
	animation: slideUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-title .line span.hide {
	opacity: 0;
	transform: translateY(0);
}

.hero-title .accent {
	color: var(--accent);
	font-weight: 700;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 5rem;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	z-index: 10;
}

.hero-scroll span {
	font-family: "Outfit", sans-serif;
	font-size: 0.9rem;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	opacity: 0.7;
}

.scroll-line {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	opacity: 0.3;
}

.scroll-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00f0ff;
	animation: scrollLine 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollLine {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1.5rem 0;
	transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
	background-color: rgba(10, 10, 10, 0.95);
	padding: 1rem 0;
	backdrop-filter: blur(10px);
}

.nav-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo {
	font-family: "Syncopate", sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
}

.logo .dot {
	color: var(--accent);
}

.logo-text {
	font-family: "Outfit", sans-serif;
	font-size: 0.9rem;
	color: #ffffff;
	letter-spacing: 0.1em;
}

.menu-btn {
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-btn__lines {
	width: 30px;
	height: 2px;
	background-color: #ffffff;
	position: relative;
	transition: all 0.3s ease;
}

.menu-btn__lines::before,
.menu-btn__lines::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.menu-btn__lines::before {
	transform: translateY(-8px);
}

.menu-btn__lines::after {
	transform: translateY(8px);
}

.menu-btn.active .menu-btn__lines {
	background-color: transparent;
}

.menu-btn.active .menu-btn__lines::before {
	transform: rotate(45deg);
}

.menu-btn.active .menu-btn__lines::after {
	transform: rotate(-45deg);
}

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(10, 10, 10, 0.98);
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 999;
}

.nav-overlay.active {
	display: flex;
}

.nav-links {
	text-align: center;
	margin-bottom: 4rem;
}

.nav-item {
	margin: 2rem 0;
}

.nav-item a {
	font-family: "Syncopate", sans-serif;
	font-size: 4rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: color 0.3s ease;
}

.nav-item a:hover {
	color: #00f0ff;
}

.nav-footer {
	position: absolute;
	bottom: 2rem;
	width: 100%;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.social-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: #00f0ff;
}

/* About Section */
.about-section {
	padding: 8rem 2rem;
	background: var(--background);
	position: relative;
	z-index: 1;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.about-item {
	position: relative;
	margin-bottom: 6rem;
	z-index: 2;
}

.about-number {
	position: absolute;
	top: -2rem;
	left: -2rem;
	font-family: "Syncopate", sans-serif;
	font-size: 8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.03);
	z-index: 2;
}

.about-content {
	background: var(--surface);
	padding: 3rem;
	border-radius: 8px;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.about-content h3 {
	font-family: "Syncopate", sans-serif;
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 2rem;
}

.two-column-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.skill-column {
	margin-bottom: 2rem;
}

.skill-column h4 {
	color: var(--accent);
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-family: "Syncopate", sans-serif;
}

.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	position: relative;
	z-index: 2;
}

.skill-tags span {
	opacity: 0;
	transform: translateY(20px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: fit-content;
	background: rgba(0, 240, 255, 0.1);
	color: var(--text);
	padding: 0.5rem 1.2rem;
	border-radius: 999px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 240, 255, 0.2);
	cursor: default;
	position: relative;
	backdrop-filter: blur(4px);
	white-space: nowrap;
}

.skill-tags span:hover {
	background: rgba(0, 240, 255, 0.2);
	transform: translateY(-2px);
	border-color: rgba(0, 240, 255, 0.4);
	box-shadow: 0 4px 12px rgba(0, 240, 255, 0.1);
}

@media (max-width: 768px) {
	.about-number {
		font-size: 6rem;
		top: -1rem;
		left: -1rem;
	}

	.about-content {
		padding: 2rem;
	}

	.two-column-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-content h3 {
		font-size: 1.5rem;
	}

	.about-text {
		font-size: 1rem;
	}

	.skill-column h4 {
		font-size: 1.1rem;
	}

	.skill-tags span {
		font-size: 0.8rem;
		padding: 0.4rem 1rem;
	}
}

/* Work Section */
.work-section {
	padding: 8rem 2rem 0;
	background: var(--background);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.header-line {
	width: 1px;
	height: 60px;
	background: #00f0ff;
	margin: 0 auto 2rem;
}

.section-header h2 {
	font-family: "Syncopate", sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.projects-container {
	max-width: 1400px;
	margin: 0 auto;
}

.project-item {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	margin-bottom: 8rem;
}

.project-item:nth-child(even) {
	grid-template-columns: 0.8fr 1.2fr;
}

.project-item:nth-child(even) .project-image {
	order: -1;
}

.project-image {
	position: relative;
}

.image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.project-number {
	position: absolute;
	top: -2rem;
	left: -2rem;
	font-family: "Syncopate", sans-serif;
	font-size: 8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.03);
	z-index: 2;
}

.project-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-content h3 {
	font-family: "Syncopate", sans-serif;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.project-meta {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tech-stack {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.tech-stack span {
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 100px;
	font-size: 0.8rem;
}

.project-links {
	display: flex;
	gap: 2rem;
}

.link-arrow {
	color: #ffffff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	position: relative;
}

.link-arrow::after {
	content: "→";
	margin-left: 0.5rem;
	transition: 0.3s ease;
}

.link-arrow:hover::after {
	transform: translateX(5px);
}

/* Education Timeline */
.education-timeline {
	max-width: 800px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.education-item {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 2rem;
	border-left: 2px solid var(--accent);
}

.education-item:last-child {
	margin-bottom: 0;
}

.education-content {
	background: var(--surface);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow-elevation-medium);
	position: relative;
}

.education-content::before {
	content: "";
	position: absolute;
	left: -2.6rem;
	top: 50%;
	width: 15px;
	height: 15px;
	background: var(--accent);
	border-radius: 50%;
	transform: translateY(-50%);
}

.year {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--accent);
	color: var(--text);
	border-radius: 20px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.education-details h3 {
	color: #00f0ff;
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.institution {
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.grade {
	color: var(--text);
	font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.work-grid {
		grid-template-columns: 1fr;
	}

	.education-timeline {
		padding: 0 1rem;
	}
}

/* Contact Section */
.contact-section {
	padding: 8rem 2rem;
}

.contact-content {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form {
	margin-bottom: 3rem;
}

.form-group {
	margin-bottom: 2rem;
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--surface);
	border: 2px solid transparent;
	border-radius: 4px;
	color: var(--text);
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.form-group label {
	position: absolute;
	left: 1rem;
	top: 1rem;
	color: var(--text-secondary);
	transition: transform 0.3s ease, color 0.3s ease;
	pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
	transform: translateY(-1.5rem) scale(0.8);
	color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--primary);
	outline: none;
}

.submit-btn {
	opacity: 0;
	/* transform: translateY(20px); */
	width: 100%;
	padding: 1rem;
	background: var(--primary);
	color: var(--text);
	border: none;
	border-radius: 4px;
	font-family: inherit;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: transform 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.social-link {
	color: var(--text);
	font-size: 1.5rem;
	transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
	color: #00f0ff;
	transform: translateY(-2px);
}

/* Footer */
footer {
	padding: 2rem;
	text-align: center;
	color: var(--text-secondary);
}

/* Animations */
@keyframes glitch {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translate(-2px, 2px);
	}
	40% {
		transform: translate(-2px, -2px);
	}
	60% {
		transform: translate(2px, 2px);
	}
	80% {
		transform: translate(2px, -2px);
	}
	100% {
		transform: translate(0);
	}
}

.glitch:hover {
	animation: glitch 0.3s infinite;
}

.fade-in {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-section {
		padding: 6rem 1rem;
	}

	.glitch {
		font-size: 3rem;
	}

	.lead {
		font-size: 1.25rem;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	/* .nav-content {
		flex-direction: column;
		gap: 1rem;
	} */

	.cursor,
	.cursor-follower {
		display: none;
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	opacity: 0.6;
}

.mouse {
	width: 30px;
	height: 50px;
	border: 2px solid #ffffff;
	border-radius: 20px;
	position: relative;
}

.mouse::before {
	content: "";
	width: 4px;
	height: 8px;
	background: #ffffff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 8px;
	border-radius: 2px;
	animation: scroll 1.5s infinite;
}

@keyframes scroll {
	0% {
		transform: translate(-50%, 0);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, 20px);
		opacity: 0;
	}
}

.noise {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.05;
	z-index: 9999;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVfk6JAAAACHRSTlMoACBQ8KC4yHk/LxUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAySURBVDjLY2AYBaNg8ACDQ4MDAwOjQwADQ0AACEO4DhAM5TIwGDhAGKPKRsEoGAVDEwAAN+oBiJjHa+IAAAAASUVORK5CYII=");
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
	text-align: center;
}

.loader-text {
	font-family: var(--font-primary);
	font-size: 2rem;
	letter-spacing: 0.5em;
	display: flex;
	gap: 0.5em;
}

.loader-text span {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.loader-bar {
	width: 200px;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	margin: 2rem auto;
	position: relative;
	overflow: hidden;
}

.loader-bar::after {
	content: "";
	position: absolute;
	left: -100%;
	top: 0;
	height: 100%;
	width: 50px;
	background: #00f0ff;
	animation: loading 1.5s ease infinite;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	z-index: 1000;
	mix-blend-mode: difference;
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo {
	font-family: "Syncopate", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.logo .dot {
	color: #00f0ff;
}

.logo-text {
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	opacity: 0.7;
}

.menu-btn {
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
}

.menu-btn__lines {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 2px;
	background: #ffffff;
	transform: translateY(-50%);
	transition: 0.3s ease;
}

.menu-btn__lines::before,
.menu-btn__lines::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background: #ffffff;
	transition: 0.3s ease;
}

.menu-btn__lines::before {
	transform: translateY(-8px);
}

.menu-btn__lines::after {
	transform: translateY(8px);
}

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0a0a0a;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s ease;
}

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

.nav-links {
	text-align: center;
}

.nav-item {
	margin: 2rem 0;
}

.nav-item a {
	font-family: "Syncopate", sans-serif;
	font-size: 3rem;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.nav-item a::before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	color: #00f0ff;
	width: 0;
	overflow: hidden;
	white-space: nowrap;
	transition: 0.5s ease;
}

.nav-item a:hover::before {
	width: 100%;
}

.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-family: "Syncopate", sans-serif;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.2;
	margin-bottom: 2rem;
}

.hero-title .line {
	display: block;
	overflow: hidden;
}

.hero-title .line span {
	display: block;
	animation: revealText 1.5s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.hero-title .accent {
	color: #00f0ff;
}

.hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.scroll-line {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.scroll-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00f0ff;
	animation: scrollLine 2s ease infinite;
}

#hero-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.about-section {
	padding: 8rem 2rem;
	background: #0f0f0f;
}

.about-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.about-text h2 {
	font-family: "Syncopate", sans-serif;
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.large-text {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	line-height: 1.4;
}

.skills-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.skills-group h3 {
	font-family: "Syncopate", sans-serif;
	margin-bottom: 1.5rem;
	color: #00f0ff;
}

.skills-list {
	list-style: none;
}

.skills-list li {
	margin-bottom: 0.8rem;
	opacity: 0.8;
}

.about-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.gallery-item {
	height: 300px;
	background-size: cover;
	background-position: center;
	border-radius: 4px;
	transition: 0.5s ease;
}

.gallery-item:hover {
	transform: translateY(-10px);
}

.contact-section {
	padding: 8rem 2rem;
}

.contact-content {
	max-width: 800px;
	margin: 0 auto;
}

.contact-text {
	text-align: center;
	margin-bottom: 4rem;
}

.contact-text h2 {
	font-family: "Syncopate", sans-serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-group {
	position: relative;
}

.input-wrapper {
	position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
	width: 100%;
	padding: 1rem 0;
	background: none;
	border: none;
	color: #ffffff;
	font-family: "Outfit", sans-serif;
	font-size: 1rem;
}

.input-wrapper textarea {
	height: 150px;
	resize: none;
}

.input-wrapper label {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.5);
	transition: 0.3s ease;
	pointer-events: none;
}

.input-wrapper textarea + label {
	top: 1rem;
	transform: none;
}

.input-wrapper .line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.input-wrapper .line::after {
	content: "";
	position: absolute;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #00f0ff;
	transition: 0.3s ease;
}

.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label,
.input-wrapper input:valid + label,
.input-wrapper textarea:valid + label {
	top: 0;
	font-size: 0.8rem;
	color: #00f0ff;
}

.input-wrapper input:focus ~ .line::after,
.input-wrapper textarea:focus ~ .line::after {
	left: 0;
}

.submit-btn {
	align-self: flex-start;
	padding: 1rem 2rem;
	background: none;
	border: 1px solid #00f0ff;
	color: #00f0ff;
	font-family: "Syncopate", sans-serif;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease;
}

.submit-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #00f0ff;
	transition: 0.3s ease;
	z-index: -1;
}

.submit-btn:hover {
	color: #0a0a0a;
}

.submit-btn:hover::before {
	left: 0;
}

.contact-footer {
	max-width: 1400px;
	margin: 4rem auto 0;
	padding-top: 4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social-links {
	display: flex;
	gap: 2rem;
}

.social-link {
	color: #ffffff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: 0.3s ease;
}

.social-link:hover {
	color: #00f0ff;
}

.email-link a {
	color: #ffffff;
	text-decoration: none;
	font-family: "Syncopate", sans-serif;
	transition: 0.3s ease;
}

.email-link a:hover {
	color: #00f0ff;
}

.footer {
	padding: 2rem;
	background: #0f0f0f;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-text {
	opacity: 0.5;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.5;
	transition: 0.3s ease;
}

.footer-link:hover {
	opacity: 1;
}

.cursor {
	width: 20px;
	height: 20px;
	border: 2px solid #00f0ff;
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	mix-blend-mode: difference;
	transition: transform 0.2s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes loading {
	0% {
		left: -100%;
	}
	100% {
		left: 200%;
	}
}

@keyframes revealText {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes scrollLine {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

@media (max-width: 1200px) {
	.project-item,
	.project-item:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: clamp(1.5rem, 4vw, 2.5rem);
	}

	.nav-item a {
		font-size: 2rem;
	}

	.about-gallery {
		grid-template-columns: 1fr;
	}

	.contact-footer {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.section-header h2,
	.about-text h2,
	.contact-text h2 {
		font-size: 2rem;
	}

	.large-text {
		font-size: 1.2rem;
	}

	.skills-container {
		grid-template-columns: 1fr;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scrollLine {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

/* Media Queries */
@media (max-width: 768px) {
	.hero-title {
		font-size: clamp(2rem, 4vw, 3rem);
	}

	.nav-item a {
		font-size: clamp(1.8rem, 4vw, 3rem);
	}

	.logo-container {
		gap: 0.5rem;
	}

	.logo {
		font-size: 1.5rem;
	}

	.logo-text {
		font-size: 0.8rem;
	}
}

/* Experience Section */
.experience-section {
	padding: 8rem 2rem;
	background-color: var(--color-background);
}

.timeline {
	position: relative;
	max-width: 1000px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.timeline::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	background: var(--color-accent);
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.3;
}

.timeline-item {
	margin-bottom: 4rem;
	position: relative;
}

.timeline-item:nth-child(odd) {
	padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
	padding-left: calc(50% + 2rem);
}

.timeline-content {
	background: var(--color-card);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: var(--shadow-elevation-medium);
	position: relative;
	transition: transform 0.3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
}

.timeline-content::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background: var(--color-accent);
	border-radius: 50%;
	top: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
	right: -2.5rem;
	transform: translate(50%, -50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
	left: -2.5rem;
	transform: translate(-50%, -50%);
}

.timeline-content .date {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--background);
	color: var(--color-text);
	border-radius: 20px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.timeline-content h3 {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-family: "Syncopate", sans-serif;
	color: var(--color-accent);
}

.timeline-content h4 {
	color: var(--color-text-muted);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.timeline-content ul {
	list-style: none;
}

.timeline-content ul li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
	color: var(--color-text);
}

.timeline-content ul li::before {
	content: "•";
	color: var(--color-accent);
	position: absolute;
	left: 0;
}

/* Education Section */
.education-section {
	padding: 8rem 2rem 0;
	background-color: var(--color-background-alt);
}

.education-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
	padding: 0 2rem;
}

.education-card {
	background: var(--color-card);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: var(--shadow-elevation-medium);
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.education-card:hover {
	transform: translateY(-5px);
}

.education-icon {
	font-size: 2rem;
	color: var(--color-accent);
	margin-bottom: 1.5rem;
}

.education-content .date {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--color-accent);
	color: var(--color-text);
	border-radius: 20px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.education-content h3 {
	color: var(--color-heading);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.education-content h4 {
	color: var(--color-text-muted);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.education-content p {
	color: var(--color-text);
	margin-bottom: 1rem;
}

.education-content ul {
	list-style: none;
}

.education-content ul li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
	color: var(--color-text);
}

.education-content ul li::before {
	content: "•";
	color: var(--color-accent);
	position: absolute;
	left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.timeline::before {
		left: 2rem;
	}

	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even) {
		padding: 0 0 0 4rem;
	}

	.timeline-item:nth-child(odd) .timeline-content::before,
	.timeline-item:nth-child(even) .timeline-content::before {
		left: -2rem;
		transform: translate(-50%, -50%);
	}

	.education-grid {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}
}

/* Education Section */
.education-section {
	padding: 8rem 2rem;
	background: var(--background);
	position: relative;
}

.education-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 4rem auto 0;
	padding: 0 1rem;
}

.education-card {
	perspective: 1000px;
	min-height: fit-content;
}

.education-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--surface);
	border-radius: 12px;
	padding: 2rem;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform-style: preserve-3d;
	border: 1px solid rgba(0, 240, 255, 0.1);
}

.education-card:hover .education-card-inner {
	transform: translateY(-10px);
}

.education-year {
	display: inline-block;
	padding: 0.5rem 1.2rem;
	background: rgba(0, 240, 255, 0.1);
	color: var(--text);
	border-radius: 999px;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(0, 240, 255, 0.2);
	font-family: var(--font-secondary);
	font-weight: 500;
}

.education-card h3 {
	font-family: var(--font-primary);
	color: var(--accent);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.education-details {
	margin-bottom: 1.5rem;
}

.education-details > div {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--text);
	opacity: 0.9;
}

.education-details i {
	color: var(--accent);
	font-size: 1.1rem;
}

.education-highlights ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.education-highlights li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--text);
	opacity: 0.8;
	line-height: 1.6;
}

.education-highlights li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 1.2em;
}

@media (max-width: 768px) {
	.education-grid {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.education-card {
		height: auto;
		min-height: 350px;
	}
}
