/* ==========================================================================
   SEERA EXACT CLONE - Dark Theme with Purple Accents
   ========================================================================== */
:root {
	/* Senior WordPress Plugin Engineer Palette */
	--bg-primary: #04070b;
	--bg-secondary: #090e14;
	--bg-card: #0f161f;
	--bg-card-hover: #141d29;
	
	/* Text Colors */
	--text-primary: #ffffff;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;
	
	/* Brand Colors (Mint Green) */
	--accent-primary: #00d1a0;
	--accent-hover: #00b389;
	--accent-glow: rgba(0, 209, 160, 0.4);
	
	/* Borders & Blurs */
	--accent-purple: #9D5CFF;
	--border-glass: rgba(255, 255, 255, 0.05);
	--bg-glass: rgba(255, 255, 255, 0.02);
	--backdrop-blur: blur(20px);
	
	/* Typography */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	
	/* Layout */
	--container-width: 1200px;
	--section-padding: 120px;
	--card-radius: 4px;
	
	/* Effects */
	--shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
	--transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-primary);
	font-size: 16px; /* Reduced from 18px for a more technical look */
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* Admin Bar Fix */
body.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

h1, h2, h3, h4, h5, h6 {
	color: var(--text-primary);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.7;
}

a {
	color: var(--accent-primary);
	text-decoration: none;
	transition: var(--transition);
}

a:not(.btn):hover {
	color: var(--accent-hover);
}

ul {
	list-style: none;
}

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

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 40px;
}

.section {
	padding: var(--section-padding) 0;
}

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

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 2px;
}

.btn-primary {
	background: var(--accent-primary);
	color: #000;
}

.btn-primary:hover {
    background: #00ffc3; /* Brighter version of accent */
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px -5px rgba(0, 255, 195, 0.5), 0 8px 12px -7px rgba(0, 255, 195, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
	border-color: var(--accent-primary);
	background: rgba(0, 209, 160, 0.05);
	transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

.btn-dark {
    background: #000;
    color: #fff;
    border: 1px solid #222;
}

.btn-dark:hover {
    background: #111;
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 24px 0;
	background: rgba(4, 7, 11, 0.65);
	transition: var(--transition);
}

.site-header.scrolled {
	background: rgba(4, 7, 11, 0.96);
	backdrop-filter: var(--backdrop-blur);
	padding: 16px 0;
	border-bottom: 1px solid var(--border-glass);
}

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

.site-logo {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -1px;
}

.main-navigation .nav-list {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation .nav-list a {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: 0.1em;
	transition: var(--transition);
}

.main-navigation .nav-list a:hover {
	color: var(--accent-primary);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 13px;
}

.nav-icon.active {
	background: var(--accent-purple);
	color: white;
}

/* ==========================================================================
   Main Layout - Two Column
   ========================================================================== */
.main-wrapper {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 120px 24px 0;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 64px;
	align-items: start;
}

@media screen and (max-width: 1100px) {
	.main-wrapper {
		grid-template-columns: 1fr;
		padding-top: 100px;
	}
}

/* Sticky Profile Sidebar - Refined */
.profile-sidebar {
	position: sticky;
	top: 120px;
}

.profile-card {
	background: var(--bg-card);
	border-radius: 4px;
	padding: 48px 32px;
	border: 1px solid var(--border-glass);
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.profile-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(157, 92, 255, 0.08), transparent 50%);
	pointer-events: none;
}

.profile-image-container {
	width: 140px;
	height: 140px;
	margin: 0 auto 32px;
	border-radius: 4px;
	overflow: hidden;
	background: var(--bg-secondary);
	border: 1px solid var(--border-glass);
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.profile-name {
	font-size: 2rem;
	margin-bottom: 8px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

.profile-role {
	color: var(--text-primary);
	font-size: 1.125rem;
	margin-bottom: 8px;
	font-weight: 500;
}

.profile-location {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.profile-socials {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
}

.social-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-glass);
	border-radius: 4px;
	font-size: 20px;
	transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
	color: var(--text-secondary);
}

.social-icon:hover {
	border-color: var(--accent-purple);
	background: var(--bg-card-hover);
	color: var(--accent-purple);
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(157, 92, 255, 0.2);
}

.btn-block {
	display: flex;
	width: 100%;
	justify-content: center;
}

.btn.btn-block {
	width: 100%;
	justify-content: center;
	padding: 16px;
	font-size: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding-top: 160px;
}

.hero-container {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(0, 209, 160, 0.1);
	color: var(--accent-primary);
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 24px;
}

.pulse {
	width: 8px;
	height: 8px;
	background: var(--accent-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 rgba(0, 209, 160, 0.4);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(0, 209, 160, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(0, 209, 160, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 209, 160, 0); }
}

.hero-title {
	margin-bottom: 24px;
	line-height: 1.1;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .hero-title {
        white-space: normal;
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

.hero-description {
	max-width: 500px;
	margin-bottom: 40px;
	font-size: 1.1rem;
	color: var(--text-secondary);
}

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

/* Code Block Visual - Simplified */
.code-block {
    background: #0d1117;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.code-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.6);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.file-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.code-content {
    padding: 15px;
}

.code-content pre, .code-content code {
    margin: 0;
    padding: 0;
}

.line {
    display: block;
    line-height: .6;
}

.num {
    color: #484f58;
    margin-right: 20px;
    display: inline-block;
    width: 20px;
    text-align: right;
    user-select: none;
    font-size: 13px;
}

.cursor {
    color: #79c0ff;
    animation: blink 1s step-end infinite;
    font-weight: bold;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.keyword { color: #ff7b72; }
.class { color: #d2a8ff; }
.function { color: #d2a8ff; }
.variable { color: #79c0ff; }
.string { color: #a5d6ff; }
.number { color: #79c0ff; }

/* ==========================================================================
   Ecosystem Section
   ========================================================================== */
.ecosystem-section {
	padding: 80px 0;
	border-top: 1px solid var(--border-glass);
	border-bottom: 1px solid var(--border-glass);
	background: var(--bg-secondary);
}

.ecosystem-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--accent-primary);
	text-align: center;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 auto 30px;
}

.ecosystem-label i {
	font-size: 14px;
}

.logo-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
	opacity: 0.9;
}

.logo-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid var(--border-glass);
	background: rgba(255, 255, 255, 0.02);
	font-weight: 800;
	font-size: 14px;
	color: var(--text-secondary);
	letter-spacing: 0.1em;
}

.logo-icon i {
	font-size: 18px;
	color: var(--accent-primary);
}

.logo-text {
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */
.geography-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: flex-start;
}

.section-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent-primary);
	letter-spacing: 0.2em;
	margin-bottom: 16px;
}

.philosophy-title {
	font-size: clamp(2rem, 5vw, 3rem);
}

.philosophy-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

/* ==========================================================================
   Expertise Section
   ========================================================================== */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 60px;
}

.expertise-card {
	background: var(--bg-card);
	padding: 40px 30px;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-glass);
	transition: var(--transition);
}

.expertise-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
	display: inline-block;
	font-size: 32px;
	margin-bottom: 24px;
}

.expertise-card h4 {
	margin-bottom: 12px;
}

/* Trust Badges - Refined */
.trust-badge-container {
	margin-top: 80px;
}

.trust-text {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

/* Trust Badges */
.trust-section {
	padding: 40px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-text {
	font-size: 12px;
	color: var(--text-muted);
	text-align: center;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.company-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}

.company-logo {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.company-logo:hover {
	opacity: 1;
	color: var(--text-primary);
}

/* ==========================================================================
   Projects Section - 2x2 Grid Like Seera
   ========================================================================== */
/* ==========================================================================
   Projects Section - 2x2 Grid with Premium Hover Effects
   ========================================================================== */
.projects-section {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-glass);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-bottom: 80px;
}

.project-card {
	background: var(--bg-card);
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
	border: 1px solid var(--border-glass);
	cursor: pointer;
	min-height: auto;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.project-card:hover {
	transform: translateY(-8px);
	border-color: rgba(157, 92, 255, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(157, 92, 255, 0.15);
}

.project-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.04), transparent 40%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
}

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

.project-image {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, #13131A 0%, #1A1A24 100%);
	position: relative;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
	opacity: 0.9;
}

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

.project-content {
	padding: 40px;
	position: relative;
	z-index: 2;
}

.project-overline {
	font-size: 13px;
	color: var(--accent-purple);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
	display: inline-block;
}

.project-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
	line-height: 1.3;
}

.project-description {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.7;
	max-width: 90%;
}

.project-tech-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.project-tech-list li {
	font-size: 12px;
	color: var(--text-primary);
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 100px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.project-card:hover .project-tech-list li {
	background: rgba(157, 92, 255, 0.15);
	border-color: rgba(157, 92, 255, 0.2);
	color: #E0CEFF;
}

.github-cta {
	text-align: center;
	margin-top: 80px;
}

/* ==========================================================================
   Stack Section
   ========================================================================== */
.stack-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.stack-group h5 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--text-muted);
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}

.stack-group h5 i {
	color: var(--accent-primary);
	font-size: 14px;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-cloud span {
	background: var(--bg-secondary);
	border: 1px solid var(--border-glass);
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 13px;
	color: var(--text-secondary);
}

/* ==========================================================================
   Tools Section - Refined Grid
   ========================================================================== */
.skills-section {
	background: var(--bg-primary);
	border-top: 1px solid var(--border-glass);
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 640px;
	margin: 0 auto;
}

.skill-card {
	background: var(--bg-card);
	padding: 32px;
	border-radius: 20px;
	border: 1px solid var(--border-glass);
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
	cursor: pointer;
	min-height: 110px;
}

.skill-card:hover {
	border-color: var(--accent-purple);
	background: var(--bg-card-hover);
	transform: translateY(-4px);
	box-shadow: 0 10px 30px -10px rgba(157, 92, 255, 0.2);
}

.skill-icon {
	font-size: 2.5rem;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
	background: var(--accent-purple);
	color: white;
	border-color: var(--accent-purple);
}

.skill-card h3 {
	font-size: 1.125rem;
	color: var(--text-primary);
	margin-bottom: 4px;
	font-weight: 600;
}

.skill-card p {
	font-size: 13px;
	color: var(--text-secondary);
	margin: 0;
}

/* ==========================================================================
   Experience Timeline
   ========================================================================== */
.experience-section {
	background: var(--bg-secondary);
}

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

.timeline-item {
	position: relative;
	padding-left: 40px;
	padding-bottom: 50px;
	border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
	border-left-color: transparent;
}

.timeline-item::before {
	content: '';
	width: 12px;
	height: 12px;
	background: var(--bg-secondary);
	border: 3px solid var(--accent-purple);
	border-radius: 50%;
	position: absolute;
	left: -7px;
	top: 0;
	box-shadow: 0 0 0 4px var(--bg-secondary);
}

.timeline-date {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	display: block;
}

.timeline-role {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.company {
	color: var(--accent-purple);
}

.timeline-content ul li {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

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

/* ==========================================================================
   Testimonials
   ========================================================================== */
/* Testimonials Navigation */
.testimonials-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 64px;
}

.testimonials-header .section-title {
	margin-bottom: 0;
}

.testimonial-nav {
	display: flex;
	gap: 12px;
}

.nav-dot {
	width: 48px;
	height: 48px;
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.nav-dot::after {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--text-muted);
	border-radius: 50%;
}

.nav-dot.active {
	border-color: var(--accent-purple);
}

.nav-dot.active::after {
	background: var(--accent-purple);
}

.testimonials-section {
	background: var(--bg-primary);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.testimonial-card {
	background: var(--bg-card);
	padding: 40px;
	border-radius: var(--card-radius);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	min-height: 320px;
	display: flex;
	flex-direction: column;
}

.testimonial-card:hover {
	border-color: var(--accent-purple);
	transform: translateY(-4px);
}

.testimonial-quote {
	font-size: 1.0625rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
	flex-grow: 1;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.5rem;
}

.author-info h6 {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 4px 0;
}

.author-role {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
}

/* ==========================================================================
   Blog Section - 2x2 Grid
   ========================================================================== */
.blog-section {
	background: var(--bg-secondary);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.blog-card {
	background: var(--bg-card);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-glass);
	transition: all 0.4s ease;
	cursor: pointer;
}

.blog-image {
	width: 100%;
	height: 220px;
	background: var(--bg-secondary);
	overflow: hidden;
}

.faq-item {
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	border: none;
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.blog-content {
	padding: 32px;
}

.blog-meta {
	display: flex;
	gap: 12px;
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.blog-category {
	color: var(--accent-purple);
	font-weight: 600;
}

.blog-title {
	font-size: 1.25rem;
	line-height: 1.4;
	margin-bottom: 16px;
}

.blog-excerpt {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.6;
}

.blog-link {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--accent-primary);
}

/* ==========================================================================
   History Section v2
   ========================================================================== */
.history-section {
	background: var(--bg-primary);
}

.container-narrow {
	max-width: 900px;
	margin: 0 auto;
}

.timeline-v2 {
	margin-top: 60px;
	position: relative;
}

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

.timeline-v2-item {
	position: relative;
	padding-left: 40px;
	padding-bottom: 60px;
}

.timeline-v2-marker {
	position: absolute;
	left: -5px;
	top: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent-primary);
	box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-v2-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}

.timeline-v2-date {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 600;
}

.timeline-v2-company {
	color: var(--accent-primary);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
}

.timeline-v2-details li {
	color: var(--text-secondary);
	margin-bottom: 8px;
	position: relative;
	padding-left: 20px;
}

.timeline-v2-details li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-primary);
	opacity: 0.5;
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */
.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.case-study-card {
	background: var(--bg-card);
	border-radius: var(--card-radius);
	overflow: hidden;
	border: 1px solid var(--border-glass);
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.case-study-card:hover {
	border-color: var(--accent-primary);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px -15px rgba(0, 209, 160, 0.2);
}

.case-study-image {
	height: 220px;
	position: relative;
	overflow: hidden;
}

.case-study-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
	opacity: 0.9;
}

.case-study-card:hover .case-study-image img {
	transform: scale(1.05);
	opacity: 1;
}

.visual-placeholder {
	width: 100%;
	height: 100%;
	opacity: 0.2;
	background-size: cover;
	transition: var(--transition);
}

.case-study-card:hover .visual-placeholder {
	opacity: 0.4;
	transform: scale(1.1);
}

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

.case-study-meta {
	display: flex;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.case-study-content h4 {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.case-study-content p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0;
	flex-grow: 1;
}

.case-study-link {
	display: inline-block;
	margin-top: 20px;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Responsiveness for Portfolio Grid */
@media screen and (max-width: 991px) {
	.case-studies-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 640px) {
	.case-studies-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Open Source Section
   ========================================================================== */
.open-source-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}

.open-source-info .github-stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

.open-source-info .stat-value {
	display: block;
	font-size: 40px;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 8px;
}

.open-source-info .stat-label {
	font-size: 11px;
	color: var(--text-muted);
	letter-spacing: 0.15em;
	font-weight: 600;
	text-transform: uppercase;
}

.open-source-visual {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contribution-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contribution-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--accent-primary);
	transform: translateY(-5px);
}

.contribution-card.featured {
	border-left: 4px solid var(--accent-primary);
}

.cont-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	color: var(--accent-primary);
	background: rgba(0, 255, 178, 0.1);
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

.cont-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.repo-info {
	font-family: inherit;
	font-size: 18px;
	font-weight: 600;
}

.repo-user {
	color: var(--text-muted);
}

.cont-status {
	font-size: 11px;
	color: var(--accent-primary);
	font-weight: 600;
	text-transform: uppercase;
}

.cont-desc {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 24px;
}

.contribution-cards-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contribution-card.secondary {
	padding: 24px;
}

.cont-bar.solo {
	height: 6px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 100px;
	overflow: hidden;
	margin-bottom: 12px;
	display: flex;
}

.cont-fill {
	height: 100%;
	transition: width 1s ease-out;
}

.cont-fill.php { background: #4F5D95; }
.cont-fill.js { background: #f1e05a; }
.cont-fill.css { background: #563d7c; }
.cont-fill.html { background: #e34c26; }

.cont-footer {
	display: flex;
	gap: 16px;
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 500;
}

.cont-footer span::before {
	content: "•";
	margin-right: 6px;
	color: var(--accent-primary);
}

/* ==========================================================================
   Blog Section v2
   ========================================================================== */
.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
}

.accent-link {
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px solid var(--accent-primary);
}

.blog-grid-v2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.blog-item h4 {
	font-size: 1.1rem;
	margin: 20px 0 10px;
	line-height: 1.5;
}

.blog-item p {
	font-size: 14px;
	color: var(--text-secondary);
}

.blog-item-image {
	height: 200px;
	background: var(--bg-card);
	border-radius: 8px;
	border: 1px solid var(--border-glass);
}

/* ==========================================================================
   Testimonials v2
   ========================================================================== */
.testimonial-grid-v2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonial-item {
	background: var(--bg-card);
	padding: 40px;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-glass);
}

.stars {
	color: var(--accent-primary);
	letter-spacing: 5px;
	margin-bottom: 20px;
}

.testimonial-user {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 30px;
}

.user-avatar {
	width: 48px;
	height: 48px;
	background: var(--bg-secondary);
	border-radius: 50%;
}

.testimonial-user h6 {
	font-size: 15px;
	margin-bottom: 4px;
}

.testimonial-user p {
	font-size: 12px;
	margin: 0;
	color: var(--text-muted);
}

/* ==========================================================================
   Footer CTA Banner
   ========================================================================== */
.footer-cta {
	padding: 80px 0;
	background: var(--bg-primary);
}

.cta-banner {
	background: var(--accent-primary);
	padding: 100px 60px;
	border-radius: var(--card-radius);
	text-align: center;
}

.cta-banner h2 {
	color: #000;
	font-size: clamp(2rem, 5vw, 4rem);
	margin-bottom: 24px;
}

.cta-banner p {
	color: rgba(0, 0, 0, 0.7);
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto 40px;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
	padding: 100px 0 40px;
	background: var(--bg-primary);
	border-top: 1px solid var(--border-glass);
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 60px;
	margin-bottom: 80px;
}

.footer-col .footer-title {
	font-size: 13px;
	letter-spacing: 0.15em;
	color: var(--text-muted);
	margin-bottom: 30px;
	text-transform: uppercase;
}

/* Branding Col */
.branding-col .site-logo {
	display: inline-block;
	margin-bottom: 24px;
	font-size: 24px;
}

.footer-tagline {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-secondary);
	max-width: 300px;
	margin-bottom: 32px;
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.footer-socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: var(--transition);
}

.footer-socials a:hover {
	color: var(--accent-primary);
	border-color: var(--accent-primary);
	transform: translateY(-3px);
	background: rgba(0, 209, 160, 0.05);
}

/* Links Col */
.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav li {
	margin-bottom: 12px;
}

.footer-nav a {
	color: var(--text-secondary);
	font-size: 15px;
	transition: var(--transition);
}

.footer-nav a:hover {
	color: var(--accent-primary);
	padding-left: 8px;
}

/* Contact Col */
.contact-link {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.contact-col .location {
	font-size: 14px;
	color: var(--text-muted);
}

/* Status Col */
.availability-card {
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	padding: 24px;
	border-radius: 12px;
}

.status-indicator {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.pulse {
	width: 8px;
	height: 8px;
	background: var(--accent-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 209, 160, 0.7);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(0, 209, 160, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(0, 209, 160, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 209, 160, 0); }
}

.status-text {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.status-desc {
	font-size: 13px;
	line-height: 1.5;
	color: var(--text-secondary);
	margin: 0;
}

/* Footer Bottom */
.footer-bottom {
	padding-top: 40px;
	border-top: 1px solid var(--border-glass);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copyright {
	font-size: 13px;
	color: var(--text-muted);
}

.copyright span {
	color: var(--text-secondary);
	font-weight: 500;
}

.footer-meta {
	display: flex;
	gap: 24px;
}

.meta-item {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Footer Responsive */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.footer-meta {
		justify-content: center;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.hero-container, .geography-grid, .open-source-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	
	.hero-visual {
		order: -1;
	}
	
	.expertise-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.case-studies-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.stack-grid, .blog-grid-v2, .testimonial-grid-v2 {
		grid-template-columns: 1fr;
	}
	
	.expertise-grid {
		grid-template-columns: 1fr;
	}
	
	.cta-banner {
		padding: 60px 20px;
	}
	
	.cta-actions {
		flex-direction: column;
	}
}

/* ==========================================================================
   Showcase Section (Todo App)
   ========================================================================== */
.showcase-section {
	background: var(--bg-primary);
}

.todo-app-container {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 60px;
	margin-top: 60px;
	align-items: start;
}

@media screen and (max-width: 991px) {
	.todo-app-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.todo-app {
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	padding: 40px;
	border-radius: var(--card-radius);
	box-shadow: var(--shadow-card);
}

.todo-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.todo-header h4 {
	margin-bottom: 0;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.todo-stats {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 600;
}

.todo-input-group {
	display: flex;
	gap: 12px;
	margin-bottom: 30px;
}

.todo-input-group input {
	flex-grow: 1;
	background: var(--bg-secondary);
	border: 1px solid var(--border-glass);
	padding: 12px 16px;
	border-radius: 2px;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 14px;
	transition: var(--transition);
}

.todo-input-group input:focus {
	outline: none;
	border-color: var(--accent-primary);
	background: var(--bg-card);
}

.todo-list {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.todo-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: rgba(255, 255, 255, 0.02);
	border-bottom: 1px solid var(--border-glass);
	transition: var(--transition);
}

.todo-item:last-child {
	border-bottom: none;
}

.todo-item.completed span {
	text-decoration: line-through;
	color: var(--text-muted);
}

.todo-item-content {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
}

.todo-item-content input[type="checkbox"] {
	accent-color: var(--accent-primary);
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.delete-btn {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 20px;
	cursor: pointer;
	transition: var(--transition);
	line-height: 1;
}

.delete-btn:hover {
	color: #ff5f56;
}

.todo-footer {
	text-align: right;
}

.btn-link {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
}

.btn-link:hover {
	color: var(--accent-primary);
}

.tech-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	padding: 4px 10px;
	border-radius: 2px;
	margin-right: 8px;
	margin-bottom: 8px;
	color: var(--accent-primary);
}

/* Load More Button Alignment */
#load-more-container {
    margin-top: 20px;
    text-align: center;
}

/* ==========================================================================
   Contact Section - Let's Create Something Amazing
   ========================================================================== */
.contact-section {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-glass);
	padding: var(--section-padding) 0;
}

.contact-inner {
	max-width: 560px;
	margin: 0 auto;
}

.contact-section .section-badge {
	margin-bottom: 16px;
}

.contact-heading {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.1;
	margin-bottom: 48px;
	letter-spacing: -0.02em;
}

.contact-form-wrapper {
	background: var(--bg-card);
	padding: 40px;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-card);
	transition: var(--transition);
}

.contact-form-wrapper:hover {
	border-color: rgba(0, 209, 160, 0.2);
}

.contact-form {
	position: relative;
}

.contact-form .form-group {
	margin-bottom: 24px;
}

.contact-form .contact-hp {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.contact-form .form-group:last-of-type {
	margin-bottom: 32px;
}

.contact-form .form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 8px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: var(--font-primary);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
	width: 100%;
	background: var(--bg-secondary);
	border: 1px solid var(--border-glass);
	border-radius: var(--card-radius);
	padding: 14px 16px;
	color: var(--text-primary);
	font-family: var(--font-primary);
	font-size: 1rem;
	transition: var(--transition);
	resize: vertical;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
	color: var(--text-muted);
}

.contact-form .btn-primary {
	text-transform: none;
	letter-spacing: 0;
}

/* Contact success message (AJAX response) */
.contact-form .success-message {
	animation: contactFadeIn 0.5s ease;
}

.contact-form .success-message h3 {
	color: var(--accent-primary);
}

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

@media (max-width: 768px) {
	.contact-form-wrapper {
		padding: 32px 24px;
	}

	.contact-heading {
		margin-bottom: 36px;
	}
}
