/* Modern Portfolio CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ================================
   THEME SYSTEM - Dark Mode (Default)
   ================================ */
:root {
	/* Core Brand Colors - Unique Teal/Coral Palette */
	--primary-color: #0ea5e9;
	--primary-dark: #0284c7;
	--secondary-color: #f97316;
	--accent-color: #14b8a6;

	/* Dark Theme Colors */
	--bg-primary: #0f172a;
	--bg-secondary: #1e293b;
	--bg-card: rgba(30, 41, 59, 0.8);
	--bg-card-hover: rgba(51, 65, 85, 0.9);
	--text-primary: #f1f5f9;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;
	--border-color: rgba(148, 163, 184, 0.2);
	--border-hover: rgba(14, 165, 233, 0.5);

	/* Unique Gradients - Teal to Blue */
	--gradient-1: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
	--gradient-2: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
	--gradient-3: linear-gradient(135deg, #14b8a6 0%, #22d3ee 100%);
	--gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
	--shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 30px rgba(14, 165, 233, 0.3);

	/* Deprecated but kept for compatibility */
	--bg-dark: var(--bg-primary);
	--bg-darker: var(--bg-secondary);
}

/* ================================
   LIGHT MODE
   ================================ */
[data-theme="light"] {
	--bg-primary: #f8fafc;
	--bg-secondary: #e2e8f0;
	--bg-card: rgba(255, 255, 255, 0.9);
	--bg-card-hover: rgba(255, 255, 255, 1);
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #64748b;
	--border-color: rgba(15, 23, 42, 0.1);
	--border-hover: rgba(14, 165, 233, 0.5);
	--gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.15);
	--shadow-glow: 0 0 30px rgba(14, 165, 233, 0.2);

	/* Override deprecated */
	--bg-dark: var(--bg-primary);
	--bg-darker: var(--bg-secondary);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	transition: background 0.3s ease, color 0.3s ease;
}

body.is-preload * {
	animation: none !important;
	transition: none !important;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

[data-theme="light"] .navbar {
	background: rgba(248, 250, 252, 0.85);
}

.navbar.scrolled {
	background: rgba(15, 23, 42, 0.95);
	box-shadow: var(--shadow-md);
}

[data-theme="light"] .navbar.scrolled {
	background: rgba(248, 250, 252, 0.95);
}

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

.nav-logo {
	font-size: 1.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

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

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-1);
	transition: width 0.3s ease;
}

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

/* Navigation CTA Button */
.nav-cta {
	background: var(--gradient-1);
	color: white !important;
	padding: 0.5rem 1.25rem;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.nav-cta::after {
	display: none;
}

/* Theme Toggle Button */
.theme-toggle {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--text-secondary);
	font-size: 1.1rem;
}

.theme-toggle:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: rotate(15deg);
	box-shadow: var(--shadow-glow);
}

.theme-toggle .fa-sun {
	display: none;
}

.theme-toggle .fa-moon {
	display: block;
}

[data-theme="light"] .theme-toggle .fa-sun {
	display: block;
}

[data-theme="light"] .theme-toggle .fa-moon {
	display: none;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	border-radius: 3px;
	transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 4rem 2rem 1.5rem;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 0;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: float 20s infinite ease-in-out;
}

.orb-1 {
	width: 500px;
	height: 500px;
	background: var(--gradient-1);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}

.orb-2 {
	width: 400px;
	height: 400px;
	background: var(--gradient-2);
	bottom: -150px;
	right: -150px;
	animation-delay: 5s;
}

.orb-3 {
	width: 300px;
	height: 300px;
	background: var(--gradient-3);
	top: 50%;
	right: 10%;
	animation-delay: 10s;
}

@keyframes float {

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

	33% {
		transform: translate(50px, -50px) scale(1.1);
	}

	66% {
		transform: translate(-50px, 50px) scale(0.9);
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text {
	animation: fadeInUp 1s ease;
}

.hero-tagline {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	animation: fadeInUp 1s ease 0.2s both;
}



.tagline-icon {
	font-size: 1.5rem;
}

.tagline-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subtitle-emoji {
	font-size: 1.2rem;
	margin-left: 0.5rem;
}

.hero-quote {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border-left: 4px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 1.5rem 0;
	position: relative;
	animation: fadeInUp 1s ease 0.4s both;
}

.quote-icon {
	color: var(--primary-color);
	font-size: 1.2rem;
	opacity: 0.5;
}

.quote-icon:first-child {
	position: absolute;
	top: 0.5rem;
	left: 1rem;
}

.quote-icon:last-child {
	position: absolute;
	bottom: 0.5rem;
	right: 1rem;
}

.quote-text {
	font-style: italic;
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.8;
	margin: 0;
	padding: 0 2rem;
}

.fun-text {
	display: inline-block;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	font-style: italic;
}

.hero-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.gradient-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

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

.hero-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	padding: 0.875rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.btn-primary {
	background: var(--gradient-1);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: var(--gradient-2);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-outline {
	border: 2px solid var(--border-color);
	color: var(--text-primary);
	background: var(--bg-card);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	border-color: var(--primary-color);
	background: rgba(99, 102, 241, 0.1);
	transform: translateY(-2px);
}

.hero-visuals {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

.hero-tagline-bar {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	animation: fadeInUp 1s ease 0.2s both;
	box-shadow: var(--shadow-md);
}

.hero-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	animation: fadeInUp 1s ease 0.3s both;
}

.sql-terminal-quote {
	grid-column: 1 / -1;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	font-family: 'Space Grotesk', monospace;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
	position: relative;
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-all;
	transition: all 0.3s ease;
}

.sql-terminal-quote:hover {
	background: rgba(0, 0, 0, 0.5);
	border-color: var(--primary-color);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.sql-terminal-quote::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--gradient-1);
}

.terminal-prompt {
	color: var(--primary-color);
	font-weight: 700;
	user-select: none;
}

.terminal-command {
	color: #fff;
	letter-spacing: 0.5px;
}

.stat-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.stat-icon {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.stat-card:nth-child(1) .stat-icon {
	color: #60a5fa;
	background: rgba(96, 165, 250, 0.1);
}

.stat-card:nth-child(2) .stat-icon {
	color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
}

.stat-card:nth-child(3) .stat-icon {
	color: #f87171;
	background: rgba(248, 113, 113, 0.1);
}

.stat-card:hover .stat-icon {
	transform: scale(1.1);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

.stat-number sup {
	font-size: 1.2rem;
	vertical-align: super;
	margin-left: -2px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-number .plus-sign {
	font-size: 2rem;
	margin-left: 2px;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.stat-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.scroll-indicator a {
	color: var(--text-secondary);
	font-size: 1.5rem;
	text-decoration: none;
}

@keyframes bounce {

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

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

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Section Styles */
section {
	padding: 3rem 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 2rem;
}

.section-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.emoji {
	-webkit-text-fill-color: initial;
	background: none;
	-webkit-background-clip: initial;
	background-clip: initial;
	display: inline-block;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
}

.section-catchphrase {
	margin-top: 1.5rem;
	animation: fadeInUp 0.8s ease 0.3s both;
	display: inline-block;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
}

.catchphrase-text {
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.1rem;
	font-weight: 600;
	font-style: italic;
	display: block;
}

/* Fun Facts Section */
.fun-facts-section {
	background: var(--bg-darker);
	padding: 3rem 0;
	position: relative;
	overflow: hidden;
}

.fun-facts-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.facts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

@media (max-width: 1200px) {
	.facts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.fact-card {
	background: var(--bg-card);
	backdrop-filter: blur(25px);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 2.5rem 1.5rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 250px;
}

.fact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.fact-card:hover {
	transform: translateY(-12px);
	border-color: var(--primary-color);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.2);
	background: rgba(255, 255, 255, 0.05);
}

.fact-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
	background: rgba(99, 102, 241, 0.1);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
	transform: scale(1.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fact-number {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
	letter-spacing: -1px;
	line-height: 1;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

.fact-label {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}

/* Stat Color Variations */
.stat-blue .fact-icon {
	color: #60a5fa;
	background: rgba(96, 165, 250, 0.1);
}

.stat-blue .fact-number {
	background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-blue:hover {
	border-color: #60a5fa;
	box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.stat-blue:hover .fact-icon {
	background: #60a5fa;
	color: white;
}

.stat-purple .fact-icon {
	color: #a78bfa;
	background: rgba(167, 139, 250, 0.1);
}

.stat-purple .fact-number {
	background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-purple:hover {
	border-color: #a78bfa;
	box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

.stat-purple:hover .fact-icon {
	background: #a78bfa;
	color: white;
}

.stat-pink .fact-icon {
	color: #f472b6;
	background: rgba(244, 114, 182, 0.1);
}

.stat-pink .fact-number {
	background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-pink:hover {
	border-color: #f472b6;
	box-shadow: 0 0 20px rgba(244, 114, 182, 0.2);
}

.stat-pink:hover .fact-icon {
	background: #f472b6;
	color: white;
}

.stat-cyan .fact-icon {
	color: #22d3ee;
	background: rgba(34, 211, 238, 0.1);
}

.stat-cyan .fact-number {
	background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-cyan:hover {
	border-color: #22d3ee;
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.stat-cyan:hover .fact-icon {
	background: #22d3ee;
	color: white;
}

.stat-orange .fact-icon {
	color: #fb923c;
	background: rgba(251, 146, 60, 0.1);
}

.stat-orange .fact-number {
	background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-orange:hover {
	border-color: #fb923c;
	box-shadow: 0 0 20px rgba(251, 146, 60, 0.2);
}

.stat-orange:hover .fact-icon {
	background: #fb923c;
	color: white;
}

.stat-green .fact-icon {
	color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
}

.stat-green .fact-number {
	background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-green:hover {
	border-color: #4ade80;
	box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.stat-green:hover .fact-icon {
	background: #4ade80;
	color: white;
}

.stat-red .fact-icon {
	color: #f87171;
	background: rgba(248, 113, 113, 0.1);
}

.stat-red .fact-number {
	background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-red:hover {
	border-color: #f87171;
	box-shadow: 0 0 20px rgba(248, 113, 113, 0.2);
}

.stat-red:hover .fact-icon {
	background: #f87171;
	color: white;
}

.stat-indigo .fact-icon {
	color: #818cf8;
	background: rgba(129, 140, 248, 0.1);
}

.stat-indigo .fact-number {
	background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-indigo:hover {
	border-color: #818cf8;
	box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
}

.stat-indigo:hover .fact-icon {
	background: #818cf8;
	color: white;
}

.stat-green .fact-number {
	background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-green:hover {
	border-color: #4ade80;
	box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.stat-red .fact-icon {
	color: #f87171;
	background: rgba(248, 113, 113, 0.1);
}

.stat-red .fact-number {
	background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-red:hover {
	border-color: #f87171;
	box-shadow: 0 0 20px rgba(248, 113, 113, 0.2);
}

.stat-indigo .fact-icon {
	color: #818cf8;
	background: rgba(129, 140, 248, 0.1);
}

.stat-indigo .fact-number {
	background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.stat-indigo:hover {
	border-color: #818cf8;
	box-shadow: 0 0 20px rgba(129, 140, 248, 0.2);
}

.stat-card-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, var(--glow-color, transparent), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fact-card:hover .stat-card-glow {
	opacity: 0.2;
}

/* Philosophy Section Redesign */
.philosophy-section {
	padding: 3rem 0;
	background: var(--bg-dark);
	position: relative;
}

.philosophy-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 968px) {
	.philosophy-grid {
		grid-template-columns: 1fr;
	}
}

.philosophy-card.highlight {
	background: var(--bg-card);
	backdrop-filter: blur(25px);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.philosophy-card.highlight:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-xl);
}

.philosophy-card-icon {
	font-size: 2rem;
	color: var(--primary-color);
	opacity: 0.3;
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
}

.philosophy-quote {
	font-family: 'Outfit', sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #fff;
	font-weight: 500;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.philosophy-author {
	color: var(--text-secondary);
	font-style: italic;
	font-size: 1rem;
}

.value-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

@media (max-width: 576px) {
	.value-cards {
		grid-template-columns: 1fr;
	}
}

.value-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 1.5rem;
	display: flex;
	gap: 1.25rem;
	transition: all 0.3s ease;
}

.value-card:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: var(--primary-color);
	transform: translateX(10px);
}

.value-icon {
	width: 50px;
	height: 50px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--primary-color);
	flex-shrink: 0;
}

/* Individual Value Colors */
.value-card:nth-child(1) .value-icon {
	color: #60a5fa;
	background: rgba(96, 165, 250, 0.1);
}

.value-card:nth-child(2) .value-icon {
	color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
}

.value-card:nth-child(3) .value-icon {
	color: #f472b6;
	background: rgba(244, 114, 182, 0.1);
}

.value-card:nth-child(4) .value-icon {
	color: #fb923c;
	background: rgba(251, 146, 60, 0.1);
}

.value-info h4 {
	color: #fff;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.value-info p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Data Flow Visualization */
.philosophy-visual {
	perspective: 1000px;
}

.visual-container {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 30px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.data-flow-viz {
	display: flex;
	align-items: center;
	gap: 2rem;
	z-index: 1;
}

.flow-step {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.step-icon {
	width: 80px;
	height: 80px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #fff;
	background: rgba(99, 102, 241, 0.1);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
	position: relative;
}

.step-1 .step-icon {
	border-color: #60a5fa;
	color: #60a5fa;
}

.step-2 .step-icon {
	border-color: #4ade80;
	color: #4ade80;
}

.step-3 .step-icon {
	border-color: #f472b6;
	color: #fff;
	background: var(--gradient-2);
	border: none;
}

.step-dots {
	display: flex;
	gap: 8px;
}

.step-dots span {
	width: 8px;
	height: 8px;
	background: var(--text-secondary);
	border-radius: 50%;
	opacity: 0.3;
	animation: dotFlow 1.5s infinite;
}

.step-dots span:nth-child(2) {
	animation-delay: 0.5s;
}

.step-dots span:nth-child(3) {
	animation-delay: 1s;
}

@keyframes dotFlow {

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

	50% {
		opacity: 1;
		transform: scale(1.3);
		background: var(--primary-color);
	}
}

.viz-overlay {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	text-align: center;
}

.viz-label {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.visual-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
}

.chart-bar:hover {
	transform: scaleY(1.1);
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.chart-label {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
}

@keyframes growUp {
	from {
		height: 0;
	}

	to {
		height: 100%;
	}
}

/* Projects Section */
.projects-section {
	background: var(--bg-dark);
}

.tech-group {
	margin-bottom: 5rem;
}

.tech-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--border-color);
}

.tech-icon {
	font-size: 2rem;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tech-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
}

/* Project Filters */
.project-filters {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.filter-btn:hover {
	border-color: var(--primary-color);
	color: var(--text-primary);
}

.filter-btn.active {
	background: var(--gradient-1);
	color: white;
	border-color: transparent;
	box-shadow: var(--shadow-md);
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.tech-pill {
	font-size: 0.75rem;
	padding: 0.3rem 0.75rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	color: var(--text-secondary);
	font-weight: 600;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.tech-pill:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}

/* Tech Color System */
.tech-nextjs {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.tech-react {
	border-color: rgba(97, 218, 251, 0.3);
	color: #61dafb;
}

.tech-nodejs {
	border-color: rgba(104, 160, 99, 0.3);
	color: #68a063;
}

.tech-sql {
	border-color: rgba(51, 103, 145, 0.3);
	color: #336791;
}

.tech-python {
	border-color: rgba(55, 118, 171, 0.3);
	color: #3776ab;
}

.tech-ai {
	border-color: rgba(139, 92, 246, 0.3);
	color: #a78bfa;
}

.tech-stripe {
	border-color: rgba(103, 114, 229, 0.3);
	color: #6772e5;
}

.tech-tailwind {
	border-color: rgba(6, 182, 212, 0.3);
	color: #22d3ee;
}

.tech-typescript {
	border-color: rgba(49, 120, 198, 0.3);
	color: #3178c6;
}

.tech-supabase {
	border-color: rgba(62, 207, 142, 0.3);
	color: #3ecf8e;
}

.tech-pwa {
	border-color: rgba(90, 31, 153, 0.3);
	color: #5a1f99;
}

.tech-capacitor {
	border-color: rgba(83, 186, 250, 0.3);
	color: #53bafa;
}


.private-badge {
	font-size: 0.8rem;
	color: var(--text-secondary);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.private-badge i {
	color: var(--accent-color);
}

.project-features-list {
	list-style: none;
	padding: 0.75rem 0;
	margin: 0.75rem 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.project-features-list li {
	margin-bottom: 0.4rem;
	padding-left: 1.25rem;
	position: relative;
}

.project-features-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: 800;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
}

.project-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-1);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

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

.project-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.08);
}

.project-card.featured {
	border: 1px solid rgba(99, 102, 241, 0.5);
	background: rgba(99, 102, 241, 0.05);
	grid-column: span 1;
}

.project-card.featured:hover {
	box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
	border-color: var(--secondary-color);
}



.project-card-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 1rem;
}

.project-card-header h4 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	flex: 1;
}

.project-badge {
	background: var(--gradient-1);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	white-space: nowrap;
	margin-left: 1rem;
}

.project-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	flex: 1;
}

.project-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.project-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.project-link:hover {
	gap: 0.75rem;
	color: var(--accent-color);
}

/* Skills Section */
.skills-section {
	background: var(--bg-darker);
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.skill-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.skill-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.skill-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

/* Skill Color Variations */
.skill-blue .skill-icon {
	background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-purple .skill-icon {
	background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-green .skill-icon {
	background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-orange .skill-icon {
	background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-pink .skill-icon {
	background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-cyan .skill-icon {
	background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-gray .skill-icon {
	background: linear-gradient(135deg, #9ca3af 0%, #4b5563 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.skill-card:hover .skill-icon {
	transform: scale(1.1) rotate(5deg);
}

.skill-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.skill-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Experience Section */
.experience-section {
	background: var(--bg-dark);
}

.timeline {
	position: relative;
	padding-left: 2rem;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--gradient-1);
}

.timeline-item {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 3rem;
}

.timeline-marker {
	position: absolute;
	left: -1.5rem;
	top: 0;
	width: 1rem;
	height: 1rem;
	background: var(--gradient-1);
	border-radius: 50%;
	border: 3px solid var(--bg-dark);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.timeline-content {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.timeline-content:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
	transform: translateX(5px);
}

.timeline-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.timeline-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.timeline-company {
	color: var(--primary-color);
	font-weight: 600;
}

.timeline-date {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-left: auto;
}

.timeline-details {
	list-style: none;
	padding-left: 1.5rem;
}

.timeline-details li {
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	line-height: 1.7;
	position: relative;
}

.timeline-details li::before {
	content: '▸';
	position: absolute;
	left: -1.5rem;
	color: var(--primary-color);
	font-weight: bold;
}

.timeline-details li strong {
	color: var(--text-primary);
}

/* Education Section */
.education-section {
	background: var(--bg-darker);
}

.education-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.education-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.education-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.education-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

/* Unique colors for Education icons */
.education-card:nth-child(1) .education-icon {
	color: #a78bfa;
}

/* Purple */
.education-card:nth-child(2) .education-icon {
	color: #60a5fa;
}

/* Blue */
.education-card:nth-child(3) .education-icon {
	color: #4ade80;
}

/* Green */
.education-card:nth-child(4) .education-icon {
	color: #fb923c;
}

/* Orange */

.education-card:hover .education-icon {
	transform: scale(1.1);
	filter: brightness(1.2) drop-shadow(0 0 10px currentColor);
}

.education-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.education-detail {
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.education-detail strong {
	color: var(--text-primary);
}

/* Contact Section */
.contact-section {
	background: var(--bg-dark);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.contact-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.contact-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

/* Unique colors for Contact icons */
.contact-card:nth-child(1) .contact-icon {
	color: #f87171;
}

/* Location: Red */
.contact-card:nth-child(2) .contact-icon {
	color: #60a5fa;
}

/* Email: Blue */
.contact-card:nth-child(3) .contact-icon {
	color: #4ade80;
}

/* Phone: Green */
.contact-card:nth-child(4) .contact-icon {
	color: #818cf8;
}

/* LinkedIn: Indigo */
.contact-card:nth-child(5) .contact-icon {
	color: #e2e8f0;
}

/* GitHub: White */
.contact-card:nth-child(6) .contact-icon {
	color: #fbbf24;
}

/* Resume: Gold */

.contact-card:hover .contact-icon {
	transform: scale(1.1);
	filter: brightness(1.2) drop-shadow(0 0 10px currentColor);
}

.contact-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: var(--primary-color);
}

/* Achievements Section */
.achievements-section {
	background: var(--bg-darker);
	padding: 3rem 0;
}

.achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.achievement-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.achievement-card.highlight {
	border: 2px solid var(--primary-color);
	background: rgba(99, 102, 241, 0.1);
}

.achievement-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-1);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.achievement-card:hover::after {
	transform: scaleX(1);
}

.achievement-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.achievement-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.achievement-number {
	font-size: 3rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.achievement-label {
	color: var(--text-primary);
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.achievement-desc {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Footer */
.footer {
	background: var(--bg-darker);
	padding: 3rem 0;
	text-align: center;
	border-top: 1px solid var(--border-color);
}

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

.footer-quote {
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	display: inline-block;
}

.footer-quote p {
	font-size: 1.2rem;
	font-weight: 600;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
}

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

.footer-note {
	font-size: 0.95rem;
	margin: 1rem 0;
}

.heart {
	color: var(--accent-color);
}

@keyframes heartbeat {

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

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

.footer-fun {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-color);
}

.footer-stats {
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-style: italic;
}

.footer-stats span {
	color: var(--primary-color);
	font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-stats-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.philosophy-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.chart-container {
		max-width: 100%;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(10, 10, 15, 0.98);
		backdrop-filter: blur(20px);
		width: 100%;
		text-align: center;
		transition: left 0.3s ease;
		padding: 2rem 0;
		border-bottom: 1px solid var(--border-color);
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}

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

	.hamburger {
		display: flex;
	}

	.projects-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 1.5rem;
	}

	.facts-grid,
	.achievements-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1.5rem;
	}

	.timeline {
		padding-left: 1.5rem;
	}

	.timeline-item {
		padding-left: 2rem;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 1rem;
	}

	.hero {
		padding: 5rem 1rem 2rem;
	}

	.hero-stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

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

	.skills-grid,
	.education-grid,
	.contact-grid,
	.facts-grid,
	.achievements-grid {
		grid-template-columns: 1fr;
	}

	.btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.project-card,
	.stat-card,
	.why-me-card {
		padding: 1.5rem;
	}
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient-1);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gradient-2);
}

/* ===== Why Work With Me Section ===== */
.why-me-section {
	background: var(--bg-dark);
	padding: 4rem 0;
	position: relative;
}

.why-me-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.why-me-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
	margin-bottom: 3rem;
}

@media (max-width: 1024px) {
	.why-me-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.why-me-grid {
		grid-template-columns: 1fr;
	}
}

.why-me-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.why-me-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.why-me-card:hover::before {
	opacity: 1;
}

.why-me-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.15);
}

.why-me-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

/* Unique colors for Why Me icons */
.why-me-card:nth-child(1) .why-me-icon {
	color: #60a5fa;
}

/* Blue */
.why-me-card:nth-child(2) .why-me-icon {
	color: #4ade80;
}

/* Green */
.why-me-card:nth-child(3) .why-me-icon {
	color: #f87171;
}

/* Red/Orange */
.why-me-card:nth-child(4) .why-me-icon {
	color: #fbbf24;
}

/* Gold */
.why-me-card:nth-child(5) .why-me-icon {
	color: #22d3ee;
}

/* Cyan */
.why-me-card:nth-child(6) .why-me-icon {
	color: #f472b6;
}

/* Pink */

.why-me-card:hover .why-me-icon {
	transform: scale(1.1);
	filter: brightness(1.2) drop-shadow(0 0 10px currentColor);
}

.why-me-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.why-me-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ===== Skill Badges Section ===== */
.skill-badges-section {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 24px;
	border: 1px solid var(--border-color);
}

.badges-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.badges-title i {
	color: #fbbf24;
}

.skill-badges-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.skill-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	cursor: default;
}

.skill-badge:hover {
	transform: translateY(-3px) scale(1.05);
}

.skill-badge i {
	font-size: 1rem;
}

.badge-gold {
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.2));
	border: 1px solid rgba(251, 191, 36, 0.4);
	color: #fbbf24;
}

.badge-gold:hover {
	box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
}

.badge-purple {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2));
	border: 1px solid rgba(139, 92, 246, 0.4);
	color: #a78bfa;
}

.badge-purple:hover {
	box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.badge-blue {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
	border: 1px solid rgba(59, 130, 246, 0.4);
	color: #60a5fa;
}

.badge-blue:hover {
	box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.badge-green {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #4ade80;
}

.badge-green:hover {
	box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.badge-orange {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
	border: 1px solid rgba(249, 115, 22, 0.4);
	color: #fb923c;
}

.badge-orange:hover {
	box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.badge-pink {
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2));
	border: 1px solid rgba(236, 72, 153, 0.4);
	color: #f472b6;
}

.badge-pink:hover {
	box-shadow: 0 5px 20px rgba(236, 72, 153, 0.3);
}

.badge-cyan {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.2));
	border: 1px solid rgba(6, 182, 212, 0.4);
	color: #22d3ee;
}

.badge-cyan:hover {
	box-shadow: 0 5px 20px rgba(6, 182, 212, 0.3);
}

.badge-red {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
	border: 1px solid rgba(239, 68, 68, 0.4);
	color: #f87171;
}

.badge-red:hover {
	box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
}

/* ===== Project Impact Tags ===== */
.project-impact-tags {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin: 1.25rem 0;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
	width: fit-content;
	transition: all 0.3s ease;
}

.impact-tag:hover {
	transform: translateX(5px);
	background: rgba(255, 255, 255, 0.05);
}

.impact-tag.revenue {
	border-color: rgba(251, 191, 36, 0.3);
	background: rgba(251, 191, 36, 0.05);
	color: #fbbf24;
}

.impact-tag.time {
	border-color: rgba(59, 130, 246, 0.3);
	background: rgba(59, 130, 246, 0.05);
	color: #60a5fa;
}

.impact-tag.users {
	border-color: rgba(236, 72, 153, 0.3);
	background: rgba(236, 72, 153, 0.05);
	color: #f472b6;
}

.impact-tag.success {
	border-color: rgba(34, 197, 94, 0.3);
	background: rgba(34, 197, 94, 0.05);
	color: #4ade80;
}

/* ===== Key Wins Box for Experience ===== */
.key-wins-box {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
	border: 1px solid rgba(99, 102, 241, 0.3);
	border-radius: 12px;
	padding: 1.25rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.key-wins-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.key-wins-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.key-win-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-primary);
}

.key-win-item i {
	color: #4ade80;
}

/* ===== Flagship Project Highlight ===== */
.project-card.flagship {
	border: 2px solid transparent;
	background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
		linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
	position: relative;
}

.project-card.flagship::after {
	content: '⭐ FLAGSHIP';
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--gradient-1);
	color: white;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

/* Primary CTA pulse animation */
.btn-primary {
	animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

	0%,
	100% {
		box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
	}

	50% {
		box-shadow: 0 4px 24px rgba(14, 165, 233, 0.6), 0 0 40px rgba(14, 165, 233, 0.3);
	}
}

/* ================================
   LIGHT MODE OVERRIDES
   ================================ */
[data-theme="light"] .hero-background .gradient-orb {
	opacity: 0.15;
}

[data-theme="light"] .hero-tagline {
	background: rgba(14, 165, 233, 0.1);
	border-color: rgba(14, 165, 233, 0.2);
}

[data-theme="light"] .hero-quote {
	background: rgba(14, 165, 233, 0.05);
	border-left-color: var(--primary-color);
}

[data-theme="light"] .stat-card,
[data-theme="light"] .fact-card,
[data-theme="light"] .why-me-card,
[data-theme="light"] .project-card,
[data-theme="light"] .skill-category,
[data-theme="light"] .experience-item,
[data-theme="light"] .education-card,
[data-theme="light"] .contact-card {
	background: var(--bg-card);
	border-color: var(--border-color);
	box-shadow: var(--shadow-sm);
}

[data-theme="light"] .stat-card:hover,
[data-theme="light"] .fact-card:hover,
[data-theme="light"] .why-me-card:hover,
[data-theme="light"] .project-card:hover,
[data-theme="light"] .skill-category:hover,
[data-theme="light"] .contact-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

[data-theme="light"] .section-catchphrase {
	background: rgba(14, 165, 233, 0.08);
	border-color: rgba(14, 165, 233, 0.2);
}

[data-theme="light"] .sql-terminal-quote {
	background: rgba(15, 23, 42, 0.05);
	border-color: rgba(15, 23, 42, 0.1);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .terminal-command {
	color: var(--text-primary);
}

[data-theme="light"] .philosophy-quote {
	color: var(--text-primary);
}

[data-theme="light"] .philosophy-card.highlight {
	background: var(--bg-card);
	border-color: var(--primary-color);
}

[data-theme="light"] .footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
}

[data-theme="light"] .fun-facts-section,
[data-theme="light"] .achievements-section,
[data-theme="light"] .philosophy-section {
	background: #f8fafc;
}

[data-theme="light"] .philosophy-card.highlight {
	background: #ffffff;
	border-color: rgba(14, 165, 233, 0.2);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .value-card {
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .value-card h4 {
	color: var(--text-primary);
}

[data-theme="light"] .value-card p {
	color: var(--text-secondary);
}

[data-theme="light"] .achievement-card.highlight {
	background: #ffffff;
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .achievement-number {
	color: var(--primary-color);
	background: none;
}

[data-theme="light"] .achievement-label {
	color: var(--text-primary);
}

[data-theme="light"] .achievement-desc {
	color: var(--text-secondary);
}

/* Fix icon glow visibility in light mode */
[data-theme="light"] .why-me-card:hover .why-me-icon,
[data-theme="light"] .education-card:hover .education-icon,
[data-theme="light"] .contact-card:hover .contact-icon {
	filter: brightness(1.1);
	/* Overrides brightness(1.2) and drop-shadow glow */
}

[data-theme="light"] .tech-pill {
	border-color: rgba(0, 0, 0, 0.05);
	background: rgba(0, 0, 0, 0.03);
}

/* Filled tech stack pills for light mode */
[data-theme="light"] .tech-nextjs {
	background: #f3f4f6;
	color: #111827;
	border-color: #e5e7eb;
}

[data-theme="light"] .tech-react {
	background: #ecfeff;
	color: #0891b2;
	border-color: #cffafe;
}

[data-theme="light"] .tech-nodejs {
	background: #f0fdf4;
	color: #166534;
	border-color: #dcfce7;
}

[data-theme="light"] .tech-typescript {
	background: #eff6ff;
	color: #1d4ed8;
	border-color: #dbeafe;
}

[data-theme="light"] .tech-mongodb {
	background: #f0fdf4;
	color: #15803d;
	border-color: #dcfce7;
}

[data-theme="light"] .tech-postgresql {
	background: #f0f9ff;
	color: #0369a1;
	border-color: #e0f2fe;
}

[data-theme="light"] .tech-fastapi {
	background: #f0fdfa;
	color: #0f766e;
	border-color: #ccfbf1;
}

[data-theme="light"] .tech-python {
	background: #eff6ff;
	color: #1d4ed8;
	border-color: #dbeafe;
}

[data-theme="light"] .tech-tableau {
	background: #fff7ed;
	color: #c2410c;
	border-color: #ffedd5;
}

[data-theme="light"] .tech-bigquery {
	background: #eff6ff;
	color: #1d4ed8;
	border-color: #dbeafe;
}

[data-theme="light"] .tech-clevertap {
	background: #fef2f2;
	color: #b91c1c;
	border-color: #fee2e2;
}

[data-theme="light"] .hamburger span {
	background: var(--text-primary);
}

[data-theme="light"] .btn-outline {
	background: rgba(255, 255, 255, 0.8);
	border-color: var(--border-color);
	color: var(--text-primary);
}

[data-theme="light"] .btn-outline:hover {
	background: rgba(14, 165, 233, 0.1);
	border-color: var(--primary-color);
}

/* ===== Hero CTA Banner ===== */
.hero-cta-banner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(20, 184, 166, 0.15));
	border: 1px solid rgba(14, 165, 233, 0.3);
	border-radius: 12px;
	padding: 0.75rem 1.5rem;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-icon {
	font-size: 1.2rem;
}

.cta-text {
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.cta-text strong {
	color: var(--primary-color);
}

.hero-social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.social-link {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
}

/* ===== By The Impact Section ===== */
.impact-section {
	padding: 5rem 0;
	background: var(--bg-primary);
	position: relative;
}

.impact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 70% 50%, rgba(20, 184, 166, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.impact-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.impact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.impact-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(14, 165, 233, 0.1);
}

.impact-icon {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.impact-number {
	font-family: 'Outfit', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.impact-label {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.impact-context {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.4;
}

@media (max-width: 968px) {
	.impact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.impact-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Domain Expertise Section ===== */
.domain-expertise-section {
	padding: 5rem 0;
	background: var(--bg-secondary);
}

.domain-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.domain-card {
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.domain-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.domain-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.domain-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.domain-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.domain-duration {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary-color);
	background: rgba(14, 165, 233, 0.1);
	border: 1px solid rgba(14, 165, 233, 0.2);
	border-radius: 20px;
	padding: 0.25rem 0.75rem;
	margin-bottom: 0.75rem;
}

.domain-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

@media (max-width: 968px) {
	.domain-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Skill Proficiency Levels ===== */
.skill-level {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary-color);
	background: rgba(14, 165, 233, 0.1);
	border: 1px solid rgba(14, 165, 233, 0.2);
	border-radius: 20px;
	padding: 0.2rem 0.75rem;
	margin-bottom: 0.5rem;
}

/* ===== Contact Notes ===== */
.contact-note {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--accent-color);
	margin-top: 0.25rem;
}

/* ===== Light Mode for New Sections ===== */
[data-theme="light"] .impact-card,
[data-theme="light"] .domain-card {
	background: var(--bg-card);
	border-color: var(--border-color);
	box-shadow: var(--shadow-sm);
}

[data-theme="light"] .impact-card:hover,
[data-theme="light"] .domain-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-color);
}

[data-theme="light"] .hero-cta-banner {
	background: rgba(14, 165, 233, 0.08);
	border-color: rgba(14, 165, 233, 0.2);
}

[data-theme="light"] .domain-expertise-section {
	background: #f1f5f9;
}

[data-theme="light"] .impact-section {
	background: #f8fafc;
}

/* Solo Builder Section */
.solo-builder-section {
	margin-top: 3rem;
	text-align: center;
}

.solo-builder-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.solo-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2rem;
	text-align: left;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.solo-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.solo-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.solo-icon {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(14, 165, 233, 0.1);
	color: var(--primary-color);
}

.solo-card h4 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.solo-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Education Timeline */
.education-timeline {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	padding-left: 2rem;
	border-left: 2px solid var(--border-color);
}

.education-item {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 3rem;
}

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

.education-item::before {
	content: '';
	position: absolute;
	left: -2.6rem;
	top: 0.5rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--bg-primary);
	border: 2px solid var(--primary-color);
	box-shadow: 0 0 0 4px var(--bg-primary);
	z-index: 1;
}

.education-item:hover::before {
	background: var(--primary-color);
	box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.edu-year {
	display: inline-block;
	background: rgba(14, 165, 233, 0.1);
	color: var(--primary-color);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.edu-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.edu-institution {
	display: block;
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.edu-detail {
	font-size: 0.95rem;
	color: var(--text-muted);
}