@charset "utf-8";

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

*:not(input):not(textarea):not(button):not(a) {
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-drag: none;
}

:root {
	--primary-black: #0a0a0a;
	--carbon-dark: #121212;
	--carbon-medium: #1a1a1a;
	--carbon-light: #2a2a2a;
	--metal-dark: #3a3a3a;
	--metal-light: #4a4a4a;
	--accent-red: #ff3333;
	--accent-blue: #00a8ff;
	--accent-green: #00ff88;
	--accent-purple: #9945ff;
	--accent-cyan: #00ffff;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--text-dim: #808080;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

body {
	font-family: 'Orbitron', 'Rajdhani', sans-serif;
	background: var(--primary-black);
	color: var(--text-primary);
	overflow-x: hidden;
	position: relative;
	min-width: 320px;
	width: 100%;
	max-width: 100vw;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

section {
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		repeating-linear-gradient(0deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.03) 2px,
			rgba(255, 255, 255, 0.03) 4px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.03) 2px,
			rgba(255, 255, 255, 0.03) 4px),
		linear-gradient(135deg,
			var(--primary-black) 0%,
			var(--carbon-dark) 25%,
			var(--carbon-medium) 50%,
			var(--carbon-dark) 75%,
			var(--primary-black) 100%);
	z-index: -2;
}


body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 51, 51, 0.05) 2px, transparent 2px),
		linear-gradient(90deg, rgba(255, 51, 51, 0.05) 2px, transparent 2px);
	background-size: 150px 150px;
	animation: gridMove 20s linear infinite;
	z-index: -1;
	opacity: 0.5;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(150px, 150px);
	}
}


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

.loader.hidden {
	opacity: 0;
	visibility: hidden;
}

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

.loader-prism {
	width: 100px;
	height: 100px;
	position: relative;
	margin: 0 auto 30px;
}

.prism-face {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	transform-origin: center;
	animation: prismRotate 3s linear infinite;
}

.prism-face:nth-child(1) {
	border-image: linear-gradient(45deg, var(--accent-red), var(--accent-blue)) 1;
	animation-delay: 0s;
}

.prism-face:nth-child(2) {
	border-image: linear-gradient(45deg, var(--accent-blue), var(--accent-green)) 1;
	transform: rotate(60deg);
	animation-delay: 0.2s;
}

.prism-face:nth-child(3) {
	border-image: linear-gradient(45deg, var(--accent-green), var(--accent-purple)) 1;
	transform: rotate(120deg);
	animation-delay: 0.4s;
}

@keyframes prismRotate {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.2);
	}

	100% {
		transform: rotate(360deg) scale(1);
	}
}


.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: linear-gradient(180deg,
			rgba(18, 18, 18, 0.98) 0%,
			rgba(18, 18, 18, 0.9) 50%,
			rgba(18, 18, 18, 0) 100%);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: rgba(18, 18, 18, 0.98);
	backdrop-filter: blur(30px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
}

.logo-icon {
	width: 45px;
	height: 45px;
	margin-right: 15px;
	position: relative;
}


.logo-prism {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prism-shape {
	width: 30px;
	height: 30px;
	position: relative;
	transform: rotate(45deg);
	background: linear-gradient(135deg,
			var(--accent-red) 0%,
			var(--accent-blue) 33%,
			var(--accent-green) 66%,
			var(--accent-purple) 100%);
	animation: prismShine 3s ease-in-out infinite;
}

@keyframes prismShine {

	0%,
	100% {
		filter: brightness(1) hue-rotate(0deg);
		transform: rotate(45deg) scale(1);
	}

	50% {
		filter: brightness(1.5) hue-rotate(10deg);
		transform: rotate(45deg) scale(1.1);
	}
}

.prism-shape::before,
.prism-shape::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: inherit;
	opacity: 0.5;
}

.prism-shape::before {
	transform: rotate(60deg);
}

.prism-shape::after {
	transform: rotate(-60deg);
}

.logo-text {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.logo-text .prism {
	background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-text .flux {
	color: var(--text-secondary);
	font-weight: 300;
	margin-left: 5px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 10px;
	align-items: center;
}

.nav-menu a {
	color: var(--text-secondary);
	text-decoration: none;
	padding: 12px 25px;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 14px;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	transition: width 0.3s ease;
}

.nav-menu a:hover {
	color: var(--text-primary);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
	width: 80%;
}

.nav-menu a.active {
	color: var(--accent-cyan);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

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

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

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


.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 120px 20px 80px;
	background: radial-gradient(ellipse at center,
			rgba(153, 69, 255, 0.1) 0%,
			transparent 50%);
	overflow: hidden;
	width: 100%;
}

.hero-container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-text {
	text-align: left;
}

.hero-greeting {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-secondary);
	font-family: 'Rajdhana', sans-serif;
}

.hero-name {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: 'Orbitron', monospace;
	font-size: 64px;
	font-weight: 900;
	display: inline-block;
}

.hero-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--text-primary);
	font-family: 'Orbitron', monospace;
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 600px;
}

.hero-description strong {
	color: var(--accent-purple);
	font-weight: 600;
}

.hero-stats-inline {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.stat-inline {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.stat-number-inline {
	font-size: 36px;
	font-weight: 900;
	font-family: 'Orbitron', monospace;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label-inline {
	font-size: 14px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

.btn-primary,
.btn-secondary {
	padding: 16px 40px;
	border-radius: 30px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border: none;
	color: var(--text-primary);
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.5);
}

.btn-secondary {
	background: transparent;
	border: 2px solid var(--accent-purple);
	color: var(--accent-purple);
}

.btn-secondary:hover {
	background: rgba(153, 69, 255, 0.1);
	border-color: var(--accent-blue);
	color: var(--accent-blue);
}

.hero-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-container {
	position: relative;
	width: 100%;
	max-width: 500px;
}

.profile-image {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	border: 3px solid var(--metal-dark);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	object-fit: cover;
	object-position: center -10%;
	position: relative;
	z-index: 2;
	background: var(--carbon-dark);
}

.image-decoration {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border: 2px solid var(--accent-purple);
	border-radius: 25px;
	opacity: 0.3;
	z-index: 1;
	animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
	0%, 100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.5;
	}
}


.philosophy-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
			var(--primary-black) 0%,
			rgba(153, 69, 255, 0.02) 50%,
			var(--primary-black) 100%);
	position: relative;
	overflow: hidden;
}

.philosophy-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}


.prism-line {
	width: 100%;
	height: 2px;
	margin: 0 auto 60px;
	position: relative;
	overflow: hidden;
	background: var(--carbon-medium);
}

.prism-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			var(--accent-red) 20%,
			var(--accent-blue) 40%,
			var(--accent-green) 60%,
			var(--accent-purple) 80%,
			transparent);

	animation: prismSweep 4s ease-in-out infinite;
}

@keyframes prismSweep {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.philosophy-headline {
	font-size: 56px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	line-height: 1.2;
	background: linear-gradient(135deg,
			var(--accent-cyan) 0%,
			var(--accent-purple) 25%,
			var(--accent-blue) 50%,
			var(--accent-green) 75%,
			var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.philosophy-subheading {
	font-size: 20px;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 80px;
	line-height: 1.6;
	font-weight: 300;
}

.philosophy-pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
	margin-bottom: 60px;
}

.pillar {
	position: relative;
	padding: 40px 30px;
	background: linear-gradient(135deg,
			rgba(42, 42, 42, 0.2),
			rgba(26, 26, 26, 0.3));
	border: 1px solid var(--metal-dark);
	border-radius: 20px;
	transition: all 0.4s ease;
	overflow: hidden;
}

.pillar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,
			var(--accent-purple),
			var(--accent-blue),
			var(--accent-green));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.pillar:hover::before {
	transform: scaleX(1);
}

.pillar:hover {
	transform: translateY(-10px);
	border-color: var(--accent-purple);
	box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
	background: linear-gradient(135deg,
			rgba(153, 69, 255, 0.05),
			rgba(26, 26, 26, 0.3));
}

.pillar-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	position: relative;
}

.pillar-icon::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	opacity: 0.2;
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.2;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.1;
	}
}

.pillar-title {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: var(--text-primary);
}

.pillar-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.6;
}
.pillar-description a {
	color: var(--accent-cyan);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.pillar-description a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent-cyan);
	transition: width 0.3s ease;
}

.pillar-description a:hover {
	color: var(--accent-purple);
}

.pillar-description a:hover::after {
	width: 100%;
}


.philosophy-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	border-radius: 50%;
	opacity: 0;
	animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	95% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}


/* Projects Section */
.projects-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
			var(--primary-black) 0%,
			var(--carbon-dark) 50%,
			var(--primary-black) 100%);
	position: relative;
}

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

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

.project-card {
	background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-dark));
	border: 2px solid var(--metal-dark);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	will-change: transform;
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.3),
			transparent);
	animation: scanline-project 3s linear infinite;
	will-change: transform;
	pointer-events: none;
}

@keyframes scanline-project {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(600px);
	}
}

.project-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-purple);
	box-shadow: 0 20px 50px rgba(153, 69, 255, 0.3);
}

.project-image {
	width: 100%;
	height: 250px;
	background: var(--carbon-dark);
	overflow: hidden;
	position: relative;
	border-bottom: 1px solid var(--metal-dark);
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	filter: grayscale(50%) contrast(1.2);
	transition: all 0.5s ease;
}

.project-card:hover .project-image img {
	filter: grayscale(0%) contrast(1.3);
	transform: scale(1.05);
}

.project-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.project-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: 'Orbitron', monospace;
}

.project-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 15px;
}

.project-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 25px;
}

.project-tech-badge {
	padding: 6px 14px;
	background: rgba(153, 69, 255, 0.1);
	border: 1px solid var(--accent-purple);
	border-radius: 20px;
	font-size: 11px;
	color: var(--accent-purple);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 35px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border: none;
	border-radius: 30px;
	color: var(--text-primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
	margin-top: auto;
}

.project-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.5);
}

/* Stats Section */
.stats-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
			var(--primary-black) 0%,
			var(--carbon-dark) 50%,
			var(--primary-black) 100%);
	position: relative;
}

.stats-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.stat-card {
	background: linear-gradient(135deg,
			rgba(42, 42, 42, 0.5),
			rgba(26, 26, 26, 0.8));
	border: 1px solid var(--metal-dark);
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,
			transparent,
			var(--accent-purple),
			transparent);
	animation: none;
}

.stat-card:hover::before {
	animation: slideRight 0.5s ease forwards;
}

@keyframes slideRight {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-purple);
	box-shadow: 0 15px 35px rgba(153, 69, 255, 0.2);
}

.stat-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 36px;
	color: var(--text-primary);
	box-shadow: 0 10px 25px rgba(153, 69, 255, 0.3);
}

.stat-number {
	font-size: 48px;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 10px;
	font-family: 'Orbitron', monospace;
}

.stat-label {
	font-size: 14px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.stat-description {
	font-size: 13px;
	color: var(--text-dim);
	line-height: 1.5;
	padding: 0 10px;
}


.skills-section {
	padding: 120px 30px;
	background: var(--carbon-dark);
	position: relative;
	overflow: hidden;
}

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

.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-title {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}


.skills-hexagon-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 60px;
}

.skill-hexagon {
	width: 200px;
	height: 230px;
	position: relative;
	margin: 30px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.skill-hexagon:hover {
	transform: translateY(-10px);
}

.hexagon-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: rotate(30deg);
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-light));
	border: 2px solid var(--metal-dark);
}

.skill-hexagon:hover .hexagon-inner {
	border-color: var(--accent-purple);
	box-shadow: 0 0 30px rgba(153, 69, 255, 0.5);
}

.hexagon-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: rotate(-30deg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.skill-icon-hex {
	font-size: 48px;
	margin-bottom: 15px;
	color: var(--accent-purple);
	animation: float 3s ease-in-out infinite;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-left: auto;
	margin-right: auto;
}

.skill-icon-hex .material-symbols-outlined {
	font-size: 48px;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.skill-icon-hex .simple-icon {
	width: 48px;
	height: 48px;
	fill: currentColor;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.skill-name-hex {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-primary);
	margin-bottom: 10px;
	text-align: center;
}

.skill-level {
	width: 100%;
	height: 4px;
	background: var(--carbon-dark);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.skill-level-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	border-radius: 2px;
	position: relative;
	animation: fillLevel 2s ease-out;
}

@keyframes fillLevel {
	0% {
		width: 0;
	}
}

.skill-percentage-hex {
	font-size: 14px;
	color: var(--text-secondary);
	margin-top: 8px;
	font-weight: 600;
}


.skill-categories {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.category-tab {
	padding: 12px 30px;
	background: var(--carbon-medium);
	border: 1px solid var(--metal-dark);
	border-radius: 30px;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.category-tab:hover {
	background: rgba(153, 69, 255, 0.1);
	border-color: var(--accent-purple);
	color: var(--text-primary);
}

.category-tab.active {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: var(--accent-purple);
	color: var(--text-primary);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.3);
}


.contact-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
			var(--carbon-dark) 0%,
			var(--primary-black) 100%);
	position: relative;
}

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

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	margin-top: 60px;
}

.contact-info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

.contact-card {
	padding: 30px;
	background: linear-gradient(135deg,
			rgba(42, 42, 42, 0.4),
			rgba(26, 26, 26, 0.6));
	border: 2px solid var(--metal-dark);
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,
			transparent,
			var(--accent-purple),
			var(--accent-cyan),
			transparent);
	transition: left 0.6s ease;
}

.contact-card:hover::before {
	left: 100%;
}

.contact-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(153, 69, 255, 0.2);
}

.card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
}

.card-icon .material-icons {
	font-size: 36px;
	color: var(--text-primary);
}

.contact-card h3 {
	font-family: 'Orbitron', sans-serif;
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-card p {
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 15px;
}

.contact-link {
	display: inline-block;
	color: var(--accent-cyan);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.contact-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-cyan);
	transition: width 0.3s ease;
}

.contact-link:hover::after {
	width: 100%;
}

.contact-link:hover {
	color: var(--accent-purple);
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.contact-highlight {
	display: inline-block;
	font-family: 'Orbitron', sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: var(--accent-cyan);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-form {
	padding: 40px;
	background: linear-gradient(135deg,
			rgba(42, 42, 42, 0.4),
			rgba(26, 26, 26, 0.6));
	border: 2px solid var(--metal-dark);
	border-radius: 20px;
	transition: border-color 0.3s ease;
}

.contact-form:hover {
	border-color: rgba(153, 69, 255, 0.3);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	color: var(--accent-cyan);
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	background: var(--carbon-dark);
	border: 1px solid var(--metal-dark);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-purple);
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.2);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border: none;
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.submit-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 ease;
}

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

.submit-btn .material-icons {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(153, 69, 255, 0.6);
}

.submit-btn:hover .material-icons {
	transform: translateX(5px);
}

.submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.form-status {
	margin-top: 20px;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	display: none;
}

.form-status.success {
	display: block;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid var(--accent-green);
	color: var(--accent-green);
}

.form-status.error {
	display: block;
	background: rgba(255, 51, 51, 0.1);
	border: 1px solid var(--accent-red);
	color: var(--accent-red);
}


.footer {
	padding: 60px 30px 30px;
	background: var(--primary-black);
	border-top: 1px solid var(--metal-dark);
	position: relative;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 14px;
}

.footer-social {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background: var(--carbon-medium);
	border: 1px solid var(--metal-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: var(--accent-purple);
	color: var(--text-primary);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
}

.social-icon:hover svg {
	transform: scale(1.1);
}

.footer-section h4 {
	color: var(--text-primary);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
}

.footer-links a:hover {
	color: var(--accent-purple);
	padding-left: 10px;
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid var(--metal-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.copyright {
	color: var(--text-dim);
	font-size: 14px;
}

.footer-credits {
	color: var(--text-dim);
	font-size: 14px;
}

.footer-credits a {
	color: var(--accent-purple);
	text-decoration: none;
}

.footer-credits a:hover {
	text-decoration: underline;
}




@media (min-width: 1440px) {
	.nav-container {
		max-width: 1400px;
	}

	.carousel-item {
		width: 420px;
		height: 600px;
	}

	.section-title {
		font-size: 48px;
	}

	.philosophy-headline {
		font-size: 56px;
	}
}


@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.hero-image {
		order: -1;
	}

	.hero-image-container {
		max-width: 400px;
		margin: 0 auto;
	}

	.hero-text {
		text-align: center;
	}

	.hero-greeting {
		font-size: 36px;
	}

	.hero-name {
		font-size: 52px;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-description {
		margin: 0 auto 30px;
	}

	.hero-stats-inline {
		justify-content: center;
	}

	.hero-cta {
		justify-content: center;
	}

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

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

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

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

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

	.contact-info {
		order: 2;
	}

	.contact-form {
		order: 1;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.skills-hexagon-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 15px;
	}
}


@media (max-width: 768px) {
	
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 85px;
		flex-direction: column;
		background: rgba(18, 18, 18, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 40px 0;
		border-bottom: 1px solid var(--metal-dark);
		gap: 0;
		z-index: 999;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	}

	.nav-menu li {
		margin: 15px 0;
	}

	.nav-menu a {
		display: block;
		padding: 15px 30px;
		font-size: 16px;
	}

	.nav-menu.active {
		left: 0;
	}

	.hero-greeting {
		font-size: 28px;
	}

	.hero-name {
		font-size: 40px;
	}

	.hero-title {
		font-size: 22px;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-stats-inline {
		gap: 30px;
	}

	.stat-number-inline {
		font-size: 28px;
	}

	.stat-label-inline {
		font-size: 12px;
	}

	.btn-primary,
	.btn-secondary {
		padding: 14px 30px;
		font-size: 13px;
	}

	.hero-image-container {
		max-width: 300px;
	}

	.projects-grid {
		gap: 30px;
	}

	.project-card {
		margin: 0 10px;
	}

	.indicator {
		width: 10px;
		height: 10px;
	}

	
	.philosophy-headline {
		font-size: 36px;
		line-height: 1.2;
	}

	.philosophy-subheading {
		font-size: 16px;
		padding: 0 10px;
	}

	.pillar {
		padding: 25px;
	}

	.pillar-icon {
		font-size: 40px;
	}

	.pillar-title {
		font-size: 20px;
	}

	.pillar-description {
		font-size: 14px;
	}

	
	.section-title {
		font-size: 32px;
	}

	.section-subtitle {
		font-size: 15px;
	}

	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
	}

	.stat-card {
		padding: 25px;
	}

	.stat-number {
		font-size: 48px;
	}

	.stat-label {
		font-size: 16px;
	}

	.stat-description {
		font-size: 14px;
	}

	
	.skill-categories {
		flex-wrap: wrap;
		gap: 10px;
		padding: 0 10px;
	}

	.category-tab {
		padding: 10px 15px;
		font-size: 12px;
	}

	.skills-hexagon-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 10px;
		padding: 20px 10px;
	}

	.skill-hexagon {
		width: 120px;
		height: 140px;
		margin: 15px 5px;
	}

	.skill-icon-hex {
		font-size: 32px;
	}

	.skill-name-hex {
		font-size: 13px;
	}

	
	.contact-info {
		gap: 20px;
	}

	.info-item {
		padding: 20px;
	}

	.info-icon {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.info-icon svg {
		width: 24px;
		height: 24px;
	}

	.info-text h4 {
		font-size: 15px;
	}

	.info-text p {
		font-size: 13px;
	}

	.contact-form {
		padding: 25px;
	}

	.form-group label {
		font-size: 14px;
	}

	.form-group input,
	.form-group textarea {
		font-size: 14px;
		padding: 12px;
	}

	.submit-btn {
		padding: 14px 30px;
		font-size: 15px;
	}

	
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 35px;
	}

	.footer-logo {
		justify-content: center;
	}

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

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-links {
		gap: 10px;
	}
}


@media (max-width: 480px) {
	
	.header {
		padding: 15px 0;
	}

	.logo-text {
		font-size: 20px;
	}

	.logo-icon {
		width: 35px;
		height: 35px;
	}

	.nav-menu {
		top: 75px;
		padding: 30px 0;
	}

	.nav-menu a {
		padding: 12px 20px;
		font-size: 15px;
	}

	
	.carousel-item {
		width: 280px;
		height: 440px;
	}

	.carousel-item .card {
		padding: 18px;
	}

	.card-image {
		height: 130px;
	}

	.card-title {
		font-size: 18px;
	}

	.card-description {
		font-size: 12px;
	}

	.tech-badge {
		padding: 3px 8px;
		font-size: 10px;
	}

	.card-number {
		font-size: 40px;
		top: 12px;
		right: 15px;
	}

	.card-cta {
		padding: 8px 20px;
		font-size: 13px;
	}

	.carousel-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	
	.philosophy-section {
		padding: 60px 15px;
	}

	.philosophy-headline {
		font-size: 28px;
	}

	.philosophy-subheading {
		font-size: 14px;
	}

	.pillar {
		padding: 20px;
	}

	.pillar-icon {
		font-size: 35px;
		width: 60px;
		height: 60px;
	}

	.pillar-title {
		font-size: 18px;
	}

	.pillar-description {
		font-size: 13px;
	}

	
	.section-header {
		padding: 0 15px;
		margin-bottom: 30px;
	}

	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 14px;
	}

	
	.stats-section {
		padding: 60px 15px;
	}

	.stat-card {
		padding: 20px;
	}

	.stat-icon {
		font-size: 40px;
	}

	.stat-number {
		font-size: 42px;
	}

	.stat-label {
		font-size: 15px;
	}

	.stat-description {
		font-size: 13px;
	}

	
	.skills-section {
		padding: 60px 15px;
	}

	.skill-categories {
		flex-direction: column;
		width: 100%;
	}

	.category-tab {
		width: 100%;
		padding: 12px;
		font-size: 13px;
		text-align: center;
	}

	.skills-hexagon-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.skill-hexagon {
		width: 100px;
		height: 120px;
		margin: 10px auto;
	}

	.skill-icon-hex {
		font-size: 28px;
	}

	.skill-name-hex {
		font-size: 11px;
	}

	
	.stats-grid[style*="minmax(320px"] {
		grid-template-columns: 1fr !important;
	}

	
	.contact-section {
		padding: 60px 15px;
	}

	.contact-info {
		gap: 15px;
	}

	.info-item {
		padding: 18px;
		flex-direction: column;
		text-align: center;
	}

	.info-icon {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.contact-form {
		padding: 20px;
	}

	.form-group {
		margin-bottom: 18px;
	}

	.submit-btn {
		width: 100%;
		padding: 14px;
	}

	
	.footer {
		padding: 50px 15px 30px;
	}

	.footer-brand {
		gap: 20px;
	}

	.footer-description {
		font-size: 13px;
	}

	.footer-section h4 {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.footer-links a {
		font-size: 13px;
	}

	.social-icon {
		width: 36px;
		height: 36px;
	}

	.social-icon svg {
		width: 18px;
		height: 18px;
	}

	.copyright {
		font-size: 12px;
	}
}


@media (max-width: 375px) {
	.logo-text {
		font-size: 18px;
	}

	.carousel-item {
		width: 260px;
		height: 420px;
	}

	.philosophy-headline {
		font-size: 24px;
	}

	.section-title {
		font-size: 24px;
	}

	.stat-number {
		font-size: 36px;
	}

	.skill-hexagon {
		width: 90px;
		height: 110px;
	}

	.skill-icon-hex {
		font-size: 24px;
	}

	.skill-name-hex {
		font-size: 10px;
	}
}


@media (max-height: 600px) and (orientation: landscape) {
	.hero {
		min-height: auto;
		padding: 100px 0 80px;
	}

	.carousel-item {
		height: 400px;
	}

	.philosophy-section {
		padding: 50px 20px;
	}

	.stats-section,
	.skills-section,
	.contact-section {
		padding: 50px 20px;
	}
}


@media print {
	.header,
	.menu-toggle,
	.carousel-controls,
	.carousel-indicators,
	.card-cta,
	.contact-form,
	.submit-btn {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	.stat-card,
	.pillar,
	.info-item {
		break-inside: avoid;
		page-break-inside: avoid;
	}
}