@charset "utf-8";
/* 
============================================================================
   VISION COLLIDER - STYLESHEET
============================================================================


/* ============================================================================
   1. CSS VARIABLES & RESET
============================================================================ */

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

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


/* ============================================================================
   2. BASE STYLES & ANIMATIONS
============================================================================ */

html {
	scroll-behavior: smooth;
	max-width: 100vw;
	overflow-x: hidden !important;
}

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

/* Carbon Fiber Background Pattern */
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;
}

/* Animated Grid Overlay */
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);
	}
}


/* ============================================================================
   3. NAVIGATION
============================================================================ */

.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 */
.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;
}

/* Navigation Menu */
.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);
}

/* Mobile Menu Toggle */
.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);
}


/* ============================================================================
   4. HERO SECTION & CAROUSEL
============================================================================ */

.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%);
}

.carousel-container {
	width: 100%;
	max-width: 1600px;
	height: 650px;
	perspective: 1200px;
	position: relative;
	padding-top: 60px;
}

.carousel {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
}

/* Carousel Items */
.carousel-item {
	position: absolute;
	width: 400px;
	height: 500px;
	left: 50%;
	top: 50%;
	transform-style: preserve-3d;
	transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
	cursor: pointer;
	transform-origin: center center;
}

.carousel-item .card {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-dark));
	border: 2px solid var(--metal-dark);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-item .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.5),
			transparent);
	animation: scanline 3s linear infinite;
}

@keyframes scanline {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(500px);
	}
}

/* Card Number */
.card-number {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 72px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.03);
	font-family: 'Orbitron', monospace;
	z-index: 0;
	line-height: 1;
}

/* Card Image */
.card-image {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	background: var(--carbon-light);
	border: 1px solid var(--metal-dark);
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
	filter: grayscale(30%) contrast(1.1);
}

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

/* Card Content */
.card-title {
	font-size: 24px;
	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;
}

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

.card-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

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

.card-cta {
	padding: 12px 30px;
	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;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
	position: relative;
	z-index: 10;
}

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

/* Carousel Controls */
.carousel-controls {
	position: absolute;
	bottom: -90px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	z-index: 100;
}

.carousel-btn {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-dark));
	border: 2px solid var(--metal-dark);
	border-radius: 50%;
	color: var(--accent-purple);
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 5px 15px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-btn:hover {
	border-color: var(--accent-purple);
	box-shadow:
		0 8px 25px rgba(153, 69, 255, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 100;
}

.indicator {
	width: 12px;
	height: 12px;
	background: var(--metal-dark);
	border: 1px solid var(--metal-light);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.5);
	transform: scale(1.3);
}


/* ============================================================================
   5. ABOUT SECTION
============================================================================ */

.about-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;
}

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

/* Animated Prism Line */
.divider-line {
	width: 100%;
	height: 2px;
	margin: 0 auto 60px;
	position: relative;
	overflow: hidden;
	background: var(--carbon-medium);
}

.divider-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%;
	}
}

.section-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%;
	}
}

.about-description {
	font-size: 20px;
	color: var(--text-secondary);
	margin: 0 auto 80px;
	line-height: 1.6;
	font-weight: 300;
}

/* Values Grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
	margin-bottom: 60px;
}

.value-card {
	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;
}

.value-card::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;
}

.value-card:hover::before {
	transform: scaleX(1);
}

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

.value-icon {
	font-size: 48px;
	margin-bottom: 20px;
	filter: drop-shadow(0 5px 15px rgba(153, 69, 255, 0.3));
}

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

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

.card-description a {
	color: var(--accent-cyan);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

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

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

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

/* Card Image for Team */
.card-image {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	background: var(--carbon-light);
	border: 1px solid var(--metal-dark);
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
	filter: grayscale(30%) contrast(1.1);
}

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

/* Particle Effect Background */
.bg-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;
	}
}


/* ============================================================================
   6. PROJECTS SECTION
============================================================================ */

.projects-section {
	padding: 100px 20px;
	background: linear-gradient(180deg,
			var(--primary-black) 0%,
			rgba(153, 69, 255, 0.03) 50%,
			var(--primary-black) 100%);
	position: relative;
}

.projects-grid {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.project-card {
	background: linear-gradient(135deg,
			rgba(26, 26, 26, 0.95),
			rgba(18, 18, 18, 0.98));
	border: 2px solid transparent;
	border-radius: 24px;
	padding: 0;
	width: 100%;
	max-width: 800px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background-clip: padding-box;
	overflow: hidden;
}

.project-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 2px;
	background: linear-gradient(135deg,
			var(--accent-purple),
			var(--accent-blue),
			var(--accent-cyan));
	-webkit-mask: linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.3;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.project-card:hover::before {
	opacity: 1;
}

.project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(153, 69, 255, 0.4);
}

/* Project Card Image */
.project-image {
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
	border-radius: 24px 24px 0 0;
	background: var(--carbon-dark);
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.05);
}

/* Project Card Content */
.project-card .section-headline {
	font-size: 42px;
	margin: 30px 30px 20px;
	text-align: left;
	line-height: 1.1;
	background: linear-gradient(135deg,
			var(--accent-cyan) 0%,
			var(--accent-blue) 50%,
			var(--accent-purple) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.project-card .project-tagline {
	font-size: 16px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0 30px 20px;
	font-weight: 600;
	text-align: left;
	display: block;
}

.project-card .project-description {
	font-size: 15px;
	color: var(--text-secondary);
	text-transform: none;
	letter-spacing: 0.5px;
	line-height: 1.7;
	margin: 0 30px 30px;
	font-weight: 400;
	text-align: left;
	max-width: 100%;
}

/* Project CTA Button */
.project-card .card-cta {
	margin: 0 30px 35px;
	padding: 16px 40px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border: none;
	border-radius: 50px;
	color: var(--text-primary);
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(153, 69, 255, 0.4);
	position: relative;
	overflow: hidden;
	z-index: 10;
	display: inline-block;
}

.project-card .card-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.project-card .card-cta:hover::before {
	width: 300px;
	height: 300px;
}

.project-card .card-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(153, 69, 255, 0.6);
}

.project-card .card-cta:active {
	transform: translateY(-1px);
}


/* ============================================================================
   7. SKILLS SECTION
============================================================================ */

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

/* Hexagonal Skills Grid */
.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 10px 30px rgba(153, 69, 255, 0.3);
}

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

.skill-icon-hex {
	font-size: 48px;
	margin-bottom: 15px;
	color: var(--accent-purple);
	filter: drop-shadow(0 5px 15px rgba(153, 69, 255, 0.3));
}

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

.skill-level-hex {
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 5px;
}


/* ============================================================================
   8. TEAM SECTION
============================================================================ */

.team-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;
}

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

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

.team-member {
	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;
}

.team-member::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;
}

.team-member:hover::before {
	transform: scaleX(1);
}

.team-member:hover {
	transform: translateY(-10px);
	border-color: var(--accent-purple);
	box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
}

.member-image {
	width: 100%;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	background: var(--carbon-light);
	border: 1px solid var(--metal-dark);
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
	filter: grayscale(30%) contrast(1.1);
}

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

.team-member .card-cta {
	margin-top: 20px;
}


/* ============================================================================
   9. CONTACT SECTION
============================================================================ */

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

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.section-header {
	position: relative;
	z-index: 1;
}

.contact-container {
	max-width: 1200px;
	margin: 60px auto 0;
	position: relative;
	z-index: 1;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	padding: 0 20px;
}

/* Card Design */
.info-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 50px 35px;
	background: linear-gradient(135deg,
			rgba(26, 26, 26, 0.9),
			rgba(18, 18, 18, 0.95));
	border: 2px solid transparent;
	border-radius: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: visible;
	background-clip: padding-box;
}

/* Gradient border effect */
.info-item::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 2px;
	background: linear-gradient(135deg,
			var(--accent-purple),
			var(--accent-blue),
			var(--accent-cyan));
	-webkit-mask: linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.3;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.info-item:hover::before {
	opacity: 1;
}

/* Glow effect on hover */
.info-item::after {
	content: '';
	position: absolute;
	inset: -100px;
	background: radial-gradient(circle at center,
			rgba(153, 69, 255, 0.2) 0%,
			transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -2;
}

.info-item:hover::after {
	opacity: 1;
}

.info-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(153, 69, 255, 0.4);
}

a.info-item {
	color: inherit;
	text-decoration: none;
}

/* Icon Styling */
.info-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-bottom: 25px;
	color: var(--text-primary);
	font-size: 32px;
	flex-shrink: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
	position: relative;
}

.info-icon::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: linear-gradient(135deg,
			var(--accent-purple),
			var(--accent-blue));
	opacity: 0;
	filter: blur(15px);
	transition: opacity 0.4s ease;
	z-index: -1;
}

.info-item:hover .info-icon {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 15px 40px rgba(153, 69, 255, 0.5);
}

.info-item:hover .info-icon::before {
	opacity: 0.8;
}

/* Text Styling */
.info-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.info-text h4 {
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	margin: 0;
}

.info-item:hover .info-text h4 {
	color: var(--accent-cyan);
	transform: scale(1.05);
}

.info-text p {
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.6;
	transition: all 0.3s ease;
	margin: 0;
}

.info-item:hover .info-text p {
	color: var(--text-primary);
}

/* External link indicator */
.info-item[target="_blank"]::after {
	content: '↗';
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 18px;
	color: var(--accent-purple);
	opacity: 0;
	transition: all 0.3s ease;
}

.info-item[target="_blank"]:hover::after {
	opacity: 1;
	top: 15px;
	right: 15px;
}


/* ============================================================================
   10. FOOTER
============================================================================ */

.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: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);
}

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


/* ============================================================================
   11. RESPONSIVE DESIGN
============================================================================ */

/* ──────────────────────────────────────────────────────────────────────────
   TABLET - 1024px
────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.carousel-item {
		width: 350px;
		height: 480px;
	}

	.carousel-controls {
		bottom: -60px;
	}

	.card-image {
		height: 170px;
	}

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

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

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

	/* Contact Section Tablet */
	.contact-info {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 30px;
	}

	/* Projects Section Tablet */
	.projects-section {
		padding: 80px 20px;
	}

	.project-image {
		height: 350px;
	}

	.project-card .section-headline {
		font-size: 36px;
	}

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


/* ──────────────────────────────────────────────────────────────────────────
   MOBILE - 768px
────────────────────────────────────────────────────────────────────────── */

@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;
	}

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

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

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

	.carousel-item {
		width: 300px;
		height: 460px;
	}

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

	.card-image {
		height: 150px;
		margin-bottom: 15px;
	}

	.card-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.card-description {
		font-size: 13px;
		margin-bottom: 15px;
	}

	.card-tech {
		margin-bottom: 15px;
		gap: 6px;
	}

	.tech-badge {
		padding: 4px 10px;
		font-size: 11px;
	}

	.card-number {
		font-size: 50px;
		top: 15px;
		right: 20px;
	}

	.card-cta {
		padding: 10px 25px;
		font-size: 14px;
		position: relative;
		z-index: 10;
	}

	.carousel-controls {
		bottom: -60px;
		gap: 15px;
		z-index: 200;
	}

	.carousel-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.carousel-indicators {
		top: 20px;
		gap: 12px;
	}

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

	.section-headline {
		font-size: 36px;
	}

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

	/* Projects Section Mobile */
	.projects-section {
		padding: 60px 15px;
	}

	.project-card {
		border-radius: 20px;
	}

	.project-image {
		height: 300px;
		border-radius: 20px 20px 0 0;
	}

	.project-card .section-headline {
		font-size: 32px;
		margin: 25px 20px 15px;
	}

	.project-card .project-tagline {
		font-size: 14px;
		margin: 0 20px 15px;
		letter-spacing: 2px;
	}

	.project-card .project-description {
		font-size: 14px;
		margin: 0 20px 25px;
		line-height: 1.6;
	}

	.project-card .card-cta {
		margin: 0 20px 30px;
		padding: 14px 32px;
		font-size: 13px;
		width: calc(100% - 40px);
		text-align: center;
	}

	.skill-hexagon {
		width: 150px;
		height: 170px;
		margin: 20px 5px;
	}

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

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

	/* Contact Section Mobile */
	.contact-section {
		padding: 80px 20px;
	}

	.contact-container {
		margin: 40px auto 0;
	}

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

	.info-item {
		padding: 40px 25px;
	}

	.info-icon {
		width: 70px;
		height: 70px;
		font-size: 28px;
		margin-bottom: 20px;
	}

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

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

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

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


/* ──────────────────────────────────────────────────────────────────────────
   SMALL MOBILE - 480px
────────────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
	.carousel-container {
		height: 500px;
	}
	
	.hero {
		padding-bottom: 120px;
	}

	.project-image {
		height: 250px;
	}

	.project-card .section-headline {
		font-size: 28px;
		margin: 20px 15px 12px;
	}

	.project-card .project-tagline {
		font-size: 13px;
		margin: 0 15px 12px;
	}

	.project-card .project-description {
		font-size: 13px;
		margin: 0 15px 20px;
	}

	.project-card .card-cta {
		margin: 0 15px 25px;
		padding: 12px 28px;
		font-size: 12px;
		width: calc(100% - 30px);
	}

	/* Contact Section Small Mobile */
	.contact-section {
		padding: 60px 15px;
	}

	.info-item {
		padding: 35px 20px;
		border-radius: 20px;
	}

	.info-icon {
		width: 65px;
		height: 65px;
		font-size: 26px;
		margin-bottom: 18px;
	}

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

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


/* ──────────────────────────────────────────────────────────────────────────
   ADDITIONAL MOBILE FIXES
────────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.hero {
		padding-bottom: 140px;
		min-height: auto;
	}
	
	.carousel-container {
		height: 550px;
		margin-bottom: 0;
	}
}

/* ============================================================================
   END OF STYLESHEET
============================================================================ */

/* ---- Button-link reset for .card-cta (ensures no underline) ---- */
a.card-cta {
  text-decoration: none;
}
a.card-cta:hover,
a.card-cta:focus,
a.card-cta:active {
  text-decoration: none;
}
/* Keep existing button visuals */
a.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ---- End button-link reset ---- */
