* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		sans-serif;
	line-height: 1.6;
	color: #1a202c;
	scroll-behavior: smooth;
	background: #0a0015;
	position: relative;
	overflow-x: hidden;
}

/* Colorful galaxy background with radial gradients */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(255, 0, 255, 0.15) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(0, 255, 255, 0.12) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(138, 43, 226, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 10%,
			rgba(255, 105, 180, 0.13) 0%,
			transparent 35%
		),
		radial-gradient(
			circle at 20% 90%,
			rgba(0, 191, 255, 0.11) 0%,
			transparent 45%
		),
		radial-gradient(
			circle at 60% 30%,
			rgba(255, 20, 147, 0.09) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 30% 60%,
			rgba(75, 0, 130, 0.12) 0%,
			transparent 38%
		),
		linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #0a0015 100%);
	z-index: -1;
	animation: galaxyPulse 20s ease-in-out infinite;
}

@keyframes galaxyPulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.85;
	}
}

/* Accessibility: Reduce motion for users with vestibular disorders */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation - Glassmorphism */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(15, 15, 35, 0.3);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	z-index: 1000;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.logo {
	font-size: 1.5em;
	font-weight: 700;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	z-index: 1001;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-links a {
	color: #ccd6f6;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Hero Section - Glassmorphism with galaxy effects */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 20%,
			rgba(138, 43, 226, 0.2) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 80%,
			rgba(255, 0, 255, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(0, 191, 255, 0.1) 0%,
			transparent 60%
		);
	opacity: 0.6;
	z-index: 1;
}

.hero-content {
	display: grid;
	grid-template-columns: 350px 1.2fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-greeting {
	display: inline-block;
	font-size: 1.2em;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 500;
	margin-bottom: 15px;
	animation: wave 2.5s ease-in-out infinite;
}

@keyframes wave {
	0%,
	100% {
		transform: rotate(0deg);
	}
	10% {
		transform: rotate(14deg);
	}
	20% {
		transform: rotate(-8deg);
	}
	30% {
		transform: rotate(14deg);
	}
	40% {
		transform: rotate(-4deg);
	}
	50% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(0deg);
	}
}

.hero-text h1 {
	font-size: 4em;
	font-weight: 800;
	color: #ccd6f6;
	margin-bottom: 15px;
	line-height: 1.1;
	letter-spacing: -1px;
}

.hero-text .highlight {
	background: linear-gradient(135deg, #ff00ff 0%, #00bfff 50%, #ff1493 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s linear infinite;
	text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

@keyframes shimmer {
	to {
		background-position: 200% center;
	}
}

.hero-text .subtitle {
	font-size: 1.5em;
	color: #8892b0;
	margin-bottom: 25px;
	font-weight: 500;
}

.hero-text p {
	font-size: 1.15em;
	color: #a8b2d1;
	margin-bottom: 40px;
	max-width: 650px;
	line-height: 1.8;
}

.hero-image {
	position: relative;
	text-align: center;
	margin: auto;
}

.profile-pic {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px) saturate(180%);
	-webkit-backdrop-filter: blur(10px) saturate(180%);
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow:
		0 0 60px rgba(255, 0, 255, 0.4),
		0 0 100px rgba(0, 191, 255, 0.3),
		0 8px 32px 0 rgba(31, 38, 135, 0.37);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
	0%,
	100% {
		box-shadow:
			0 0 60px rgba(255, 0, 255, 0.4),
			0 0 100px rgba(0, 191, 255, 0.3),
			0 8px 32px 0 rgba(31, 38, 135, 0.37);
	}
	50% {
		box-shadow:
			0 0 80px rgba(255, 0, 255, 0.6),
			0 0 120px rgba(0, 191, 255, 0.5),
			0 8px 40px 0 rgba(31, 38, 135, 0.5);
	}
}

.profile-pic:hover {
	transform: scale(1.05) rotate(5deg);
	animation-play-state: paused;
}

.profile-pic img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	padding: 16px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.05em;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 0, 255, 0.6);
}

.btn-secondary {
	color: #00bfff;
	border-color: #00bfff;
	background: rgba(0, 191, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 191, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(0, 191, 255, 0.2);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

/* About Section - Glassmorphism */
.about {
	padding: 100px 0;
	position: relative;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 80% 30%,
			rgba(255, 105, 180, 0.15) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 20% 70%,
			rgba(138, 43, 226, 0.12) 0%,
			transparent 45%
		);
	z-index: 0;
}

.section-title {
	font-size: 2.5em;
	font-weight: 700;
	color: #ccd6f6;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #ff00ff, #00bfff, #ff1493);
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.about-text {
	font-size: 1.1em;
	color: #8892b0;
	line-height: 1.8;
}

.about-text p {
	margin-bottom: 20px;
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.skill-category {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.3s ease;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	position: relative;
	overflow: hidden;
}

.skill-category::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff00ff, #00bfff, #ff1493);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

.skill-category:hover::before {
	transform: scaleX(1);
}

.skill-category:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 0, 255, 0.4);
	box-shadow:
		0 15px 40px rgba(255, 0, 255, 0.3),
		0 8px 32px 0 rgba(31, 38, 135, 0.5);
}

.skill-icon {
	font-size: 2.5em;
	margin-bottom: 15px;
	display: block;
}

.skill-category h3 {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	font-size: 1.3em;
	font-weight: 700;
}

.skill-category ul {
	list-style: none;
}

.skill-category li {
	color: #a8b2d1;
	margin-bottom: 8px;
	padding-left: 15px;
	position: relative;
}

.skill-category li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #ff00ff;
	font-size: 0.8em;
}

/* AI Bot Section - Glassmorphism */
.ai-bot {
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.ai-bot::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 40%,
			rgba(0, 255, 255, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 60%,
			rgba(138, 43, 226, 0.12) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 20%,
			rgba(255, 20, 147, 0.1) 0%,
			transparent 45%
		);
	pointer-events: none;
	z-index: 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #8892b0;
	font-size: 0.95em;
	padding: 15px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 0, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
}

.feature-item i {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.2em;
	min-width: 20px;
}

.btn-whatsapp {
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: white;
	padding: 18px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1em;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	margin-bottom: 25px;
	box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
	background: linear-gradient(135deg, #128c7e, #25d366);
}

.btn-whatsapp i {
	font-size: 1.3em;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-5px);
	}
	60% {
		transform: translateY(-3px);
	}
}

.ai-bot-cta {
	color: #8892b0;
	font-size: 0.95em;
	line-height: 1.6;
	margin-top: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border-left: 4px solid #ff00ff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Resume Section - Glassmorphism */
.resume {
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.resume::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 60% 40%,
			rgba(255, 20, 147, 0.15) 0%,
			transparent 45%
		),
		radial-gradient(
			circle at 30% 80%,
			rgba(0, 191, 255, 0.12) 0%,
			transparent 50%
		);
	z-index: 0;
}

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

.resume-preview {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 60px 40px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	z-index: 1;
}

.resume-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #ff1493, #00bfff, #ff00ff);
	box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.resume-preview:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 20, 147, 0.4);
	box-shadow:
		0 25px 50px rgba(255, 20, 147, 0.3),
		0 8px 32px 0 rgba(31, 38, 135, 0.5);
}

.resume-icon {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.resume-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
	border-radius: 50%;
}

.resume-icon i {
	font-size: 3.5em;
	color: #ffffff;
	z-index: 1;
}

.resume-preview:hover .resume-icon {
	transform: scale(1.1) rotate(10deg);
}

.resume-preview h3 {
	font-size: 2.2em;
	color: #ccd6f6;
	margin-bottom: 20px;
	font-weight: 700;
}

.resume-preview p {
	font-size: 1.1em;
	color: #8892b0;
	line-height: 1.7;
	margin-bottom: 40px;
}

.resume-highlights {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.highlight-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #ccd6f6;
	transition: color 0.3s ease;
}

.highlight-item:hover {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.highlight-item i {
	font-size: 2em;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 5px;
}

.highlight-item span {
	font-size: 0.9em;
	font-weight: 600;
}

.btn-resume {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	color: #ffffff;
	padding: 18px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1em;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.btn-resume::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-resume:hover::before {
	opacity: 1;
}

.btn-resume:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(255, 0, 255, 0.6);
}

.btn-resume i {
	font-size: 1.2em;
	transition: transform 0.3s ease;
}

.btn-resume:hover i {
	transform: scale(1.2);
}

/* Projects Section - Glassmorphism */
.projects {
	padding: 100px 0;
	position: relative;
}

.projects::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 15% 30%,
			rgba(138, 43, 226, 0.15) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 85% 70%,
			rgba(255, 0, 255, 0.12) 0%,
			transparent 45%
		),
		radial-gradient(
			circle at 50% 90%,
			rgba(0, 255, 255, 0.1) 0%,
			transparent 50%
		);
	z-index: 0;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.project-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 35px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff00ff, #00bfff, #ff1493, #ff00ff);
	background-size: 200% auto;
	animation: gradientShift 3s ease infinite;
	box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.project-number {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 3em;
	font-weight: 900;
	color: rgba(255, 0, 255, 0.15);
	transition: all 0.3s ease;
}

.project-card:hover .project-number {
	color: rgba(255, 0, 255, 0.3);
	transform: scale(1.1);
}

.project-card:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(255, 0, 255, 0.4);
	box-shadow:
		0 25px 50px rgba(255, 0, 255, 0.3),
		0 8px 32px 0 rgba(31, 38, 135, 0.5);
}

.project-card h3 {
	color: #ccd6f6;
	font-size: 1.5em;
	margin-bottom: 15px;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.project-tech {
	background: linear-gradient(135deg, #ff00ff, #00bfff, #ff1493);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 0.9em;
	margin-bottom: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.project-card p {
	color: #8892b0;
	line-height: 1.6;
	margin-bottom: 20px;
}

.project-card ul {
	list-style: none;
	margin-bottom: 20px;
}

.project-card li {
	color: #8892b0;
	margin-bottom: 8px;
	padding-left: 15px;
	position: relative;
}

.project-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ff00ff;
	font-weight: bold;
}

.project-links {
	display: flex;
	gap: 15px;
}

.project-link {
	color: #64ffda;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 500;
	transition: color 0.3s ease;
}

.project-link:hover {
	color: #00d4aa;
}

/* Portfolios Section - Glassmorphism */
.portfolios {
	padding: 100px 0;
	position: relative;
}

.portfolios::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 70% 40%,
			rgba(255, 0, 255, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 30% 70%,
			rgba(0, 191, 255, 0.12) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 20%,
			rgba(255, 105, 180, 0.1) 0%,
			transparent 45%
		);
	pointer-events: none;
	z-index: 0;
}

.portfolios .container {
	position: relative;
	z-index: 1;
}

.portfolios-intro {
	text-align: center;
	font-size: 1.2em;
	color: #8892b0;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

.portfolios-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.portfolio-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.3s ease;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	position: relative;
}

.portfolio-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff00ff, #00bfff, #ff1493);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
	z-index: 2;
}

.portfolio-item:hover::before {
	transform: scaleX(1);
}

.portfolio-item:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 0, 255, 0.4);
	box-shadow:
		0 20px 50px rgba(255, 0, 255, 0.3),
		0 8px 32px 0 rgba(31, 38, 135, 0.5);
}

.portfolio-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: rgba(255, 255, 255, 0.03);
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover .portfolio-image img {
	opacity: 0.85;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 0, 255, 0.85),
		rgba(0, 191, 255, 0.85)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-link {
	padding: 16px 35px;
	background: rgba(255, 255, 255, 0.95);
	color: #ff00ff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border: 2px solid transparent;
}

.portfolio-link:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 35px rgba(255, 0, 255, 0.5);
	background: #ffffff;
	border-color: rgba(255, 0, 255, 0.3);
}

.portfolio-info {
	padding: 30px;
	background: rgba(255, 255, 255, 0.02);
}

.portfolio-info h3 {
	font-size: 1.4em;
	margin-bottom: 12px;
	font-weight: 700;
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.portfolio-info p {
	color: #8892b0;
	line-height: 1.7;
	font-size: 0.95em;
}

/* Contact Section - Glassmorphism */
.contact {
	padding: 100px 0;
	text-align: center;
	position: relative;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 40% 50%,
			rgba(0, 191, 255, 0.15) 0%,
			transparent 45%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 105, 180, 0.12) 0%,
			transparent 50%
		);
	z-index: 0;
}

.contact-content {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.contact p {
	font-size: 1.2em;
	color: #8892b0;
	margin-bottom: 40px;
	line-height: 1.7;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ccd6f6;
	text-decoration: none;
	transition: color 0.3s ease;
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
}

.contact-item:hover div {
	color: #00d4aa;
}

.contact-item .icon {
	background: linear-gradient(135deg, #ff00ff, #00bfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2em;
	margin-bottom: 10px;
}

/* Footer - Glassmorphism */
footer {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	padding: 40px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

footer p {
	color: #8892b0;
	font-size: 0.9em;
}

/* Tablet Styles */
@media (max-width: 1024px) {
	/* Tablet: Profile picture comes FIRST (before text) */
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 50px;
	}

	.hero-image {
		order: 1;
	}

	.hero-text {
		order: 2;
	}

	.hero-text h1 {
		font-size: 3.2em;
	}

	.hero-text p {
		max-width: 100%;
	}

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

	.projects-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	}
}

/* Mobile Styles */
@media (max-width: 768px) {
	nav {
		padding: 12px 0;
	}

	.logo {
		font-size: 1.3em;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 70%;
		max-width: 300px;
		background: rgba(15, 15, 35, 0.95);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 30px;
		transition: right 0.3s ease;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
		z-index: 1000;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		opacity: 0;
		transform: translateX(50px);
		transition: all 0.3s ease;
	}

	.nav-links.active li {
		opacity: 1;
		transform: translateX(0);
	}

	.nav-links.active li:nth-child(1) {
		transition-delay: 0.1s;
	}
	.nav-links.active li:nth-child(2) {
		transition-delay: 0.15s;
	}
	.nav-links.active li:nth-child(3) {
		transition-delay: 0.2s;
	}
	.nav-links.active li:nth-child(4) {
		transition-delay: 0.25s;
	}
	.nav-links.active li:nth-child(5) {
		transition-delay: 0.3s;
	}
	.nav-links.active li:nth-child(6) {
		transition-delay: 0.35s;
	}

	.nav-links a {
		font-size: 1.2em;
	}

	.container {
		padding: 0 15px;
	}

	.section-title {
		font-size: 2em;
		margin-bottom: 40px;
	}

	.hero {
		min-height: 90vh;
		padding: 80px 0 40px;
	}

	/* Mobile: Profile picture comes FIRST (before text) */
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
		margin-top: 50px;
	}

	.hero-image {
		order: 1;
	}

	.hero-text {
		order: 2;
	}

	.hero-greeting {
		font-size: 1em;
	}

	.hero-text h1 {
		font-size: 2.5em;
		letter-spacing: -0.5px;
	}

	.hero-text .subtitle {
		font-size: 1.2em;
	}

	.hero-text p {
		font-size: 1em;
		max-width: 100%;
	}

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

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

	.skills-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 30px;
	}

	.skill-category {
		padding: 25px;
	}

	.profile-pic {
		width: 240px;
		height: 240px;
	}

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

	.project-card {
		padding: 30px 25px;
	}

	.project-number {
		font-size: 2.5em;
		top: 15px;
		right: 20px;
	}

	.portfolios-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.portfolio-info {
		padding: 25px;
	}

	.portfolio-info h3 {
		font-size: 1.3em;
	}

	.resume-preview {
		padding: 40px 25px;
		margin: 0 10px;
	}

	.resume-highlights {
		flex-direction: column;
		gap: 20px;
	}

	.resume-icon {
		width: 100px;
		height: 100px;
	}

	.resume-icon i {
		font-size: 3em;
	}

	.resume-preview h3 {
		font-size: 1.8em;
	}

	.resume-preview p {
		font-size: 1em;
	}

	.contact-info {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.cta-buttons {
		justify-content: center;
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		justify-content: center;
		padding: 14px 30px;
		font-size: 1em;
	}

	.feature-item {
		padding: 12px 15px;
		font-size: 0.9em;
	}

	.btn-whatsapp {
		padding: 16px 30px;
		font-size: 1em;
	}
}

/* Small Mobile Styles */
@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2em;
	}

	.hero-text .subtitle {
		font-size: 1.1em;
	}

	.profile-pic {
		width: 200px;
		height: 200px;
	}

	.section-title {
		font-size: 1.8em;
	}

	.contact-info {
		grid-template-columns: 1fr;
	}

	.project-card h3 {
		font-size: 1.3em;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-in {
	animation: fadeInUp 0.8s ease-out;
}

/* Floating elements */
.floating {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
