/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Graffiti/Glitch Color Palette */
    --pure-black: #0a0a0a;
    --dark-concrete: #1a1a1a;
    --urban-grey: #252525;
    --graffiti-purple: #9d4edd;
    --neon-cyan: #00f5ff;
    --spray-pink: #ff006e;
    --electric-blue: #3a86ff;
    --toxic-green: #06ffa5;
    --off-white: #f0f0f0;
    
    /* Applied Colors - High Contrast Graffiti Style */
    --primary-color: #9d4edd;
    --primary-dark: #7b2cbf;
    --primary-light: #c77dff;
    --secondary-color: #00f5ff;
    --accent-color: #ff006e;
    --text-primary: #f0f0f0;
    --text-secondary: #e0e0e0;
    --text-light: #b0b0b0;
    --text-glow: rgba(157, 78, 221, 0.8);
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-accent: #252525;
    --bg-dark: #000000;
    --border-color: rgba(157, 78, 221, 0.3);
    --shadow-sm: 0 2px 8px rgba(157, 78, 221, 0.2);
    --shadow-md: 0 4px 16px rgba(157, 78, 221, 0.3);
    --shadow-lg: 0 8px 24px rgba(157, 78, 221, 0.4);
    --shadow-xl: 0 12px 32px rgba(157, 78, 221, 0.5);
    --shadow-neon: 0 0 20px rgba(157, 78, 221, 0.6), 0 0 40px rgba(157, 78, 221, 0.4);
    --shadow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
    --gradient-primary: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
    --gradient-secondary: linear-gradient(135deg, #00f5ff 0%, #3a86ff 100%);
    --gradient-graffiti: linear-gradient(135deg, #9d4edd 0%, #ff006e 50%, #00f5ff 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

/* Apply graffiti fonts to specific elements */
.hero-name,
.section-title,
.page-title,
.nav-logo a {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
}

.hero-role,
.hero-greeting,
.nav-link,
.btn,
.badge,
.skill-group h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(157, 78, 221, 0.03) 2px, rgba(157, 78, 221, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(157, 78, 221, 0.03) 2px, rgba(157, 78, 221, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3), inset 0 -1px 0 rgba(157, 78, 221, 0.2);
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gradient-graffiti);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.6));
    animation: glitch-text 5s infinite;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary) !important;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px var(--text-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 3rem;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(157, 78, 221, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 245, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 35%);
    z-index: -1;
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-greeting {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color) !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.hero-name {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: var(--gradient-graffiti);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.7));
    animation: glitch-hero 8s infinite;
    position: relative;
}

.hero-role {
    display: block;
    font-size: 2.25rem;
    color: var(--text-secondary) !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(157, 78, 221, 0.4);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light) !important;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff !important;
    box-shadow: var(--shadow-neon);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.8), 0 0 60px rgba(157, 78, 221, 0.4);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary) !important;
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
    border-color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color) !important;
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.6), 0 0 40px rgba(255, 0, 110, 0.4);
    border-color: var(--accent-color);
}

.nav-link-resume {
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 0, 110, 0.1);
    transition: all 0.3s ease;
}

.nav-link-resume:hover {
    background: var(--accent-color);
    color: var(--text-primary) !important;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

.nav-link-resume i {
    margin-right: 0.3rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.hero-blob {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blob 7s ease-in-out infinite;
    box-shadow: var(--shadow-xl);
}

.hero-icon {
    font-size: 8rem;
    color: white;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
    background: var(--gradient-graffiti);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.6));
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--primary-color);
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-photo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.professional-photo {
    background: var(--bg-accent);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.professional-photo:hover {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.2);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px dashed rgba(157, 78, 221, 0.3);
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.photo-frame {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 24px rgba(157, 78, 221, 0.15);
}

.about-headshot {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    aspect-ratio: 3 / 4;
    transition: transform 0.4s ease;
}

.professional-photo:hover .about-headshot {
    transform: scale(1.03);
}

.photo-caption {
    text-align: center;
}

.photo-caption p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.photo-caption span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.photo-note {
    background: rgba(0, 245, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.photo-note i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.photo-note p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.about-content {
    max-width: 692px;
    text-align: left;
}

.about-lead {
    font-size: 24px;
    line-height: 1.47059;
    font-weight: 600;
    letter-spacing: 0.009em;
    color: var(--text-primary) !important;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-text {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-light) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

/* Video Introduction */
.video-intro {
    margin-top: 2rem;
    background: var(--bg-accent);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.video-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.video-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.video-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
}

.video-placeholder {
    background: rgba(0, 245, 255, 0.05);
    border: 2px dashed rgba(0, 245, 255, 0.3);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
}

.video-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-placeholder small {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Code Quality Badges */
.code-quality-badges {
    margin-top: 2rem;
}

.code-quality-badges h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quality-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.quality-badge {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.quality-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.3);
    transform: translateY(-2px);
}

.quality-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.quality-badge span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Success Metrics Dashboard */
.metrics-dashboard {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(0, 245, 255, 0.05));
    padding: 3rem 0;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-box {
    background: var(--bg-accent);
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.metric-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.3);
    transform: translateY(-4px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    color: white;
    font-size: 1.5rem;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    line-height: 1.2;
}

/* Currently Learning Section */
.currently-learning-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.learning-header {
    text-align: center;
    margin-bottom: 2rem;
}

.learning-header i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.learning-header h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Oswald', sans-serif;
}

.learning-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.learning-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.learning-item {
    background: var(--bg-accent);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.learning-item.active {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), var(--bg-accent));
}

.learning-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.2);
}

.learning-progress {
    height: 6px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 1s ease;
}

.learning-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learning-content h4 i {
    color: var(--primary-color);
}

.learning-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.learning-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.learning-time i {
    font-size: 0.8rem;
}

/* Contact Response Time Highlight */
.response-time-highlight {
    background: rgba(0, 245, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem !important;
    border: 2px solid rgba(0, 245, 255, 0.3) !important;
}

.response-time-highlight:hover {
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.5) !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-accent);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-container {
    width: 300px;
    height: 300px;
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.about-img-placeholder i {
    font-size: 8rem;
    color: white;
    opacity: 0.8;
}

/* Work Experience Section */
.experience {
    background: var(--bg-secondary);
    position: relative;
    padding: 6rem 0;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-secondary);
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 1;
}

.timeline-content {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    margin-left: 2rem;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.timeline-header {
    margin-bottom: 1.5rem;
}

.timeline-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-company {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.timeline-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.timeline-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-highlights li:last-child {
    margin-bottom: 0;
}

.timeline-highlights li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Skills Section */
.skills {
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.skills-simple {
    max-width: 692px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.skill-group {
    position: relative;
    transition: all 0.3s ease;
}

.skill-group:hover h3 {
    animation: skill-glitch 0.6s ease-in-out;
}

.skill-group h3 {
    font-size: 21px;
    line-height: 1.19048;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-color) !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--text-glow);
    position: relative;
    display: inline-block;
}

/* Glitch effect pseudo-elements */
.skill-group:hover h3::before,
.skill-group:hover h3::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.skill-group:hover h3::before {
    color: var(--secondary-color);
    animation: glitch-layer-1 0.6s infinite;
    z-index: -1;
}

.skill-group:hover h3::after {
    color: var(--accent-color);
    animation: glitch-layer-2 0.6s infinite;
    z-index: -2;
}

.skill-group p {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-light) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Old skills grid - keeping for backwards compatibility */
.skills-grid {
    display: none;
}

.skill-category {
    display: none;
}

.skill-item {
    display: none;
}

/* Projects Section */
.projects {
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-accent);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.project-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image::before {
    content: '🖥️';
    font-size: 4rem;
    opacity: 0.5;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
}

.project-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.project-content p {
    color: var(--text-light) !important;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
    padding: 1rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.project-metrics .metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.project-metrics .metric i {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.project-metrics .metric strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(157, 78, 221, 0.4);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tech-tag {
    background: rgba(157, 78, 221, 0.15);
    color: var(--primary-color) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(157, 78, 221, 0.3);
    text-shadow: 0 0 8px rgba(157, 78, 221, 0.5);
}

.free-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Development Disclaimer Styles */
.dev-disclaimer {
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid #f59e0b;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #d97706;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.dev-disclaimer i {
    color: #f59e0b;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dev-disclaimer strong {
    color: #ea580c;
}

.dev-disclaimer-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
}

.dev-disclaimer-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.dev-disclaimer-box strong {
    color: #ea580c;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.dev-disclaimer-box div {
    flex: 1;
    color: #92400e;
    line-height: 1.6;
}

/* Free Download Badge */
.free-download {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Coming Soon Badge */
.coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Work in Progress Notice */
.wip-notice {
    background: rgba(245, 158, 11, 0.15);
    border-left: 3px solid #f59e0b;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #d97706;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.wip-notice i {
    color: #f59e0b;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.wip-notice strong {
    color: #ea580c;
}

/* Broken/Under Repair Notice */
.broken-notice {
    background: rgba(239, 68, 68, 0.15);
    border-left: 3px solid #ef4444;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #dc2626;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.broken-notice i {
    color: #ef4444;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.broken-notice strong {
    color: #b91c1c;
}

/* General Update Notice */
.general-update-notice {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.general-update-notice i {
    color: #6366f1;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.general-update-notice p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.general-update-notice strong {
    color: #4f46e5;
    font-weight: 600;
}

/* ============================================
   FLIP CARD SYSTEM — Projects & Experience
   ============================================ */

.flip-deck-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #475569;
    margin-bottom: 2.5rem;
}
.flip-deck-row i { color: var(--primary-color); }

/* Grid */
.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.exp-flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Wrapper */
.flip-card-wrapper {
    height: 440px;
    perspective: 1400px;
}
.exp-fc-wrapper {
    height: 320px;
    perspective: 1400px;
}

/* Inner */
.flip-card-inner,
.exp-fc-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.flip-card-wrapper.is-flipped .flip-card-inner,
.exp-fc-wrapper.is-flipped .exp-fc-inner {
    transform: rotateY(180deg);
}

/* Front & Back shared */
.flip-card-front,
.flip-card-back,
.exp-fc-front,
.exp-fc-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 1.125rem;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.12);
}

/* ---- FRONT ---- */
.flip-card-front,
.exp-fc-front {
    background: linear-gradient(160deg, #12121f 0%, #0e0e1b 100%);
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.flip-card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.125rem;
    background: radial-gradient(circle at 80% 15%, rgba(157, 78, 221, 0.06), transparent 55%);
    pointer-events: none;
}
.flip-card-wrapper:not(.is-flipped):hover .flip-card-front,
.exp-fc-wrapper:not(.is-flipped):hover .exp-fc-front {
    border-color: rgba(157, 78, 221, 0.38);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.1), 0 2px 8px rgba(0,0,0,0.35);
}

.fc-front-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}
.fc-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(157, 78, 221, 0.12);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.fc-category {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(157, 78, 221, 0.09);
    border: 1px solid rgba(157, 78, 221, 0.18);
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
}
.fc-body { flex: 1; }
.fc-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}
.fc-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
}
.fc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.fc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; flex: 1; }
.fc-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: #475569;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 0.15rem 0.5rem;
    border-radius: 0.3rem;
}
.fc-flip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.22);
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.fc-flip-btn:hover {
    background: rgba(157, 78, 221, 0.18);
    border-color: rgba(157, 78, 221, 0.5);
}

/* Badges */
.fc-featured-badge,
.fc-live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.22rem 0.65rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}
.fc-featured-badge {
    color: white;
    background: var(--primary-color);
}
.fc-live-badge {
    color: #0a0a0a;
    background: var(--toxic-green);
}
.fc-featured-badge::before,
.fc-live-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.fc-live-badge::before { background: rgba(10,10,10,0.4); }

.fc-free-badge {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--toxic-green);
    background: rgba(6, 255, 165, 0.08);
    border: 1px solid rgba(6, 255, 165, 0.2);
    padding: 0.15rem 0.55rem;
    border-radius: 2rem;
}

/* ---- BACK ---- */
.flip-card-back,
.exp-fc-back {
    transform: rotateY(180deg);
    background: linear-gradient(160deg, #0d1017 0%, #090010 100%);
    border-color: rgba(157, 78, 221, 0.2);
    display: flex;
    flex-direction: column;
}
.fc-back-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(157, 78, 221, 0.12);
    flex-shrink: 0;
    background: rgba(157, 78, 221, 0.04);
}
.fc-back-header h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
}
.fc-back-close {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.28rem 0.65rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fc-back-close:hover { color: #94a3b8; border-color: rgba(255,255,255,0.22); }

.fc-back-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.4rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(157, 78, 221, 0.25) transparent;
}
.fc-back-body::-webkit-scrollbar { width: 3px; }
.fc-back-body::-webkit-scrollbar-track { background: transparent; }
.fc-back-body::-webkit-scrollbar-thumb { background: rgba(157, 78, 221, 0.22); border-radius: 2px; }

.fc-back-body p {
    font-size: 0.855rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1rem;
}
.fc-back-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fc-back-metric {
    background: rgba(157, 78, 221, 0.06);
    border: 1px solid rgba(157, 78, 221, 0.12);
    border-radius: 0.6rem;
    padding: 0.7rem 0.4rem;
    text-align: center;
}
.fcm-num {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.fcm-label {
    font-size: 0.59rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* Code block on card back */
.fc-code-block {
    background: #050a12;
    border: 1px solid rgba(157, 78, 221, 0.12);
    border-radius: 0.6rem;
    overflow: hidden;
    margin-bottom: 1rem;
}
.fc-code-bar {
    background: #0d1117;
    padding: 0.4rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(157, 78, 221, 0.08);
}
.fc-code-dots { display: flex; gap: 0.3rem; }
.fc-code-dots span { width: 8px; height: 8px; border-radius: 50%; display: block; }
.fc-code-dots span:nth-child(1) { background: #ef4444; }
.fc-code-dots span:nth-child(2) { background: #f59e0b; }
.fc-code-dots span:nth-child(3) { background: #22c55e; }
.fc-code-fname { font-size: 0.67rem; color: #475569; font-family: monospace; }
.fc-code-block pre {
    padding: 0.875rem 1rem;
    margin: 0;
    overflow-x: auto;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.69rem;
    line-height: 1.72;
    scrollbar-width: thin;
    scrollbar-color: rgba(157, 78, 221, 0.15) transparent;
}
.fc-code-block code { display: block; white-space: pre; }

/* Syntax highlighting tokens */
.fc-c-comment { color: #4a5568; }
.fc-c-keyword  { color: #c77dff; }
.fc-c-string   { color: #06ffa5; }
.fc-c-func     { color: #00f5ff; }
.fc-c-num      { color: #fb923c; }
.fc-c-var      { color: #e2e8f0; }

.fc-back-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fc-back-actions .btn { font-size: 0.75rem; padding: 0.45rem 0.9rem; }

/* Bullet list (experience back) */
.fc-back-bullets { list-style: none; padding: 0; margin-bottom: 0.5rem; }
.fc-back-bullets li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.65rem;
    font-size: 0.83rem;
    line-height: 1.62;
    color: #94a3b8;
}
.fc-back-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.57rem;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* ---- EXPERIENCE FRONT extras ---- */
.exp-company-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    background: rgba(0, 245, 255, 0.07);
    border: 1px solid rgba(0, 245, 255, 0.13);
    padding: 0.25rem 0.7rem;
    border-radius: 2rem;
    margin-bottom: 0.85rem;
    width: fit-content;
}
.exp-role {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}
.exp-dates {
    font-size: 0.77rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 0.85rem;
}
.exp-front-summary {
    font-size: 0.855rem;
    color: #64748b;
    line-height: 1.65;
    flex: 1;
}
.exp-flip-row { display: flex; justify-content: flex-end; margin-top: 1rem; }
.exp-fc-front { justify-content: space-between; }
.exp-fc-wrapper:not(.is-flipped):hover .exp-fc-front {
    border-color: rgba(0, 245, 255, 0.28);
    box-shadow: 0 8px 28px rgba(0, 245, 255, 0.05);
}

/* ---- STATS STRIP (condensed achievements) ---- */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0.25rem 0;
}
.stats-strip-item {
    text-align: center;
    padding: 1.75rem 1rem;
    background: linear-gradient(145deg, #12121f, #0d0d1a);
    border: 1px solid rgba(157, 78, 221, 0.12);
    border-radius: 1rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.stats-strip-item:hover {
    border-color: rgba(157, 78, 221, 0.35);
    transform: translateY(-3px);
}
.stats-strip-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stats-strip-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .flip-cards-grid { grid-template-columns: 1fr; }
    .exp-flip-grid  { grid-template-columns: 1fr; }
    .stats-strip    { grid-template-columns: repeat(2, 1fr); }
    .flip-card-wrapper { height: 480px; }
    .exp-fc-wrapper    { height: 340px; }
}

/* Interaction Core Highlight Section */
.interaction-core-highlight {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.interaction-core-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%236366f1" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%236366f1" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="70" r="1" fill="%236366f1" opacity="0.1"><animate attributeName="opacity" values="0.1;0.5;0.1" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    pointer-events: none;
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

.highlight-text h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.highlight-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.highlight-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.highlight-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.highlight-feature:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.highlight-feature i {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.highlight-feature span {
    font-weight: 600;
    color: #f8fafc;
}

.highlight-buttons {
    display: flex;
    gap: 1rem;
}

.highlight-code {
    position: relative;
}

.code-window {
    background: #0f172a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    border: 1px solid #334155;
}

.code-header {
    background: #1e293b;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.code-dots span:nth-child(1) { background: #ef4444; }
.code-dots span:nth-child(2) { background: #f59e0b; }
.code-dots span:nth-child(3) { background: #10b981; }

.code-title {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

.code-content {
    padding: 1.5rem;
}

.code-content pre {
    margin: 0;
    overflow-x: auto;
}

.code-content code {
    color: #e2e8f0;
    font-family: 'Fira Code', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Syntax highlighting for the code */
.highlight-code .code-content code .comment { color: #64748b; }
.highlight-code .code-content code .string { color: #22d3ee; }
.highlight-code .code-content code .number { color: #fb7185; }
.highlight-code .code-content code .keyword { color: #a78bfa; }
.highlight-code .code-content code .function { color: #34d399; }

/* Development Process Section */
.dev-process {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-card {
    background: var(--bg-accent);
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.3);
    transform: translateY(-4px);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(157, 78, 221, 0.15);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-icon i {
    color: white;
    font-size: 1.5rem;
}

.process-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-family: 'Oswald', sans-serif;
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.process-details span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-details i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

/* Process Tools */
.process-tools {
    background: rgba(157, 78, 221, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    text-align: center;
}

.process-tools h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.tool-item {
    background: var(--bg-accent);
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.2);
}

.tool-item i {
    color: var(--primary-color);
    font-size: 2rem;
}

.tool-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--bg-accent);
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.2);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.faq-cta p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.contact-item p {
    color: var(--text-light) !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-link {
    color: var(--secondary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-accent);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
    background: var(--bg-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Status Styles */
.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.form-status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-status.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Submit Button Loading State */
#submit-btn {
    position: relative;
    min-width: 150px;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#loading-spinner {
    margin-left: 0.5rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 6rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Client Satisfaction Badges */
.satisfaction-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.satisfaction-badge {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.05));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.satisfaction-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.3);
    transform: translateY(-4px);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    color: white;
    font-size: 1.8rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}

.badge-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(157, 78, 221, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.testimonial-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), var(--bg-accent));
}

.testimonial-card.featured:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: var(--bg-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.3);
}

.featured-badge i {
    font-size: 0.8rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.2);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Oswald', sans-serif;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonials-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    border: 2px dashed rgba(157, 78, 221, 0.3);
}

.testimonials-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.testimonial-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* ===========================
   SERVICES & PACKAGES SECTION
   =========================== */
.services-packages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
    background: rgba(102, 126, 234, 0.1);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #a0aec0;
}

.package-badge.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .price-label {
    font-size: 0.9rem;
    color: #a0aec0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-features li {
    padding: 12px 0;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #00d4aa;
    font-size: 0.9rem;
}

.package-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Add-Ons Section */
.addons-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.addons-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.addons-section h3 i {
    color: #667eea;
    margin-right: 10px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.addon-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.addon-item i {
    color: #667eea;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.addon-item span {
    color: #cbd5e0;
    font-size: 0.95rem;
}

/* ===========================
   HOW I WORK SECTION
   =========================== */
.how-i-work {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
    border-color: rgba(102, 126, 234, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.step-content p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
}

.step-duration i {
    margin-right: 5px;
}

/* Guarantees Section */
.guarantees-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.guarantees-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: white;
}

.guarantees-section h3 i {
    color: #00d4aa;
    margin-right: 10px;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guarantee-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.guarantee-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
}

.guarantee-item p {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-light) !important;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(157, 78, 221, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-graffiti);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Demo Modal Styles */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.demo-modal-content {
    background: var(--bg-secondary);
    border-radius: 1rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.demo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(157, 78, 221, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.demo-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

.demo-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.demo-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.demo-modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.demo-modal-body {
    padding: 2rem;
}

.demo-placeholder {
    text-align: center;
    padding: 3rem 2rem;
}

.demo-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.demo-placeholder h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.demo-placeholder p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-placeholder-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.demo-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

/* Demo button styling */
.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-btn i {
    font-size: 1rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blob {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-role {
        font-size: 1.5rem;
    }

    .hero-blob {
        width: 250px;
        height: 250px;
    }

    .hero-icon {
        font-size: 5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Me Responsive */
    .why-description {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Interaction Core Highlight Responsive */
    .highlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .highlight-text h2 {
        font-size: 2.5rem;
    }

    .highlight-text h3 {
        font-size: 1.25rem;
    }

    .highlight-features {
        grid-template-columns: 1fr;
    }

    .highlight-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .code-window {
        margin-top: 2rem;
    }

    .code-content {
        padding: 1rem;
    }

    .code-content code {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .skill-items {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Interaction Core Mobile */
    .highlight-text h2 {
        font-size: 2rem;
    }

    .highlight-text p {
        font-size: 1rem;
    }

    .highlight-feature {
        padding: 0.75rem;
    }

    .highlight-feature i {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }

    .code-header {
        padding: 0.75rem 1rem;
    }

    .code-content {
        padding: 0.75rem;
    }

    .code-content code {
        font-size: 0.75rem;
    }

    /* Why Choose Me Mobile */
    .why-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .reason-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

/* Enhanced Hero Section */
.hero-stats-mini {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mini-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn i {
    margin-right: 0.5rem;
}

/* ATS-Optimized Skills Summary - Hidden from visual display but readable by crawlers */
.ats-skills-summary {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    /* Keep it accessible to screen readers */
}

.ats-skills-summary h2,
.ats-skills-summary h3,
.ats-skills-summary p,
.ats-skills-summary ul,
.ats-skills-summary li {
    color: #000;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.ats-content {
    max-width: 800px;
    margin: 0 auto;
}

.ats-content h2 {
    font-size: 24px;
    margin: 20px 0 10px;
}

.ats-content h3 {
    font-size: 18px;
    margin: 15px 0 8px;
}

.ats-content p {
    margin: 8px 0;
    font-size: 14px;
}

.ats-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.ats-content li {
    margin: 5px 0;
}

/* GitHub Activity Section */
.github-activity {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
}

.github-activity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    box-shadow: 0 0 20px #00f5ff;
}

.github-header {
    text-align: center;
    margin-bottom: 3rem;
}

.github-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 245, 255, 0.1);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.github-icon-large i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.github-stats-grid {
    display: none; /* Hidden - stats not accurate yet */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.github-stat-card {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.github-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.github-contribution-section {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(0, 245, 255, 0.03);
    border-radius: 1rem;
    border: 2px solid rgba(0, 245, 255, 0.2);
}

.github-contribution-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contribution-note {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.github-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.github-card {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.github-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.github-card img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
}

.github-languages {
    margin-top: 2rem;
    text-align: center;
}

.github-languages h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.github-languages img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.github-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-github {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.github-cta-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Achievements Section */
.achievements {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-accent);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px var(--primary-color);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.achievement-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.achievement-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.achievement-item p {
    color: var(--text-light) !important;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Interactive Skills Section */
.skills-showcase {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

/* Technologies I'm Seeking Section */
.seeking-tech {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.seeking-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.seeking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seeking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seeking-card {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seeking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-graffiti);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.seeking-card:hover::before {
    transform: scaleX(1);
}

.seeking-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.seeking-icon {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
}

.seeking-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.seeking-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seeking-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.interest-level {
    display: flex;
    justify-content: flex-start;
}

.level-badge {
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.level-badge.high {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.level-badge.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.seeking-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
    text-align: center;
}

.seeking-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.seeking-cta strong {
    color: var(--primary-color);
}

/* Currently Building Section */
.currently-building {
    background: var(--bg-primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.currently-building::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 20px var(--accent-color);
}

.building-header {
    text-align: center;
    margin-bottom: 3rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    box-shadow: 0 0 10px #10b981;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-text {
    color: #10b981;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-family: 'Oswald', sans-serif;
}

.building-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.building-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.building-card.primary {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), var(--bg-secondary));
}

.building-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
}

.building-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.in-progress {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-badge.planning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.status-badge.experimenting {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.progress-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
}

.building-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.building-card h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.building-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.building-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--secondary-color);
    width: 16px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-graffiti);
    border-radius: 1rem;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

.recent-updates {
    background: rgba(157, 78, 221, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.recent-updates h4 {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-updates ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-updates li {
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.recent-updates li:last-child {
    border-bottom: none;
}

.update-date {
    color: var(--secondary-color);
    font-weight: 600;
}

.building-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    text-align: center;
}

.building-footer p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.building-footer strong {
    color: var(--primary-color);
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.update-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.skills-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.skill-category-interactive {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.skill-category-interactive h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-name {
    font-weight: 600;
    color: #1f2937;
    min-width: 140px;
    font-size: 0.875rem;
}

.skill-progress {
    flex: 1;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease-in-out;
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    animation: shimmer 2s infinite;
}

.skill-percent {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 40px;
    text-align: right;
    font-size: 0.875rem;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Case Study Section */
.case-study {
    background: var(--bg-primary);
    padding: 6rem 0;
    position: relative;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 20px var(--accent-color);
}

.case-study-header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-study-badge {
    display: inline-block;
    background: var(--gradient-graffiti);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.case-study-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

.case-study-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-block {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    position: relative;
}

.case-study-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 1rem 0 0 1rem;
}

.case-study-block.problem::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.case-study-block.solution::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.case-study-block.results::before {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.case-study-block.lessons::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.block-icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.block-icon i {
    font-size: 2rem;
    color: white;
}

.problem-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.solution-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.results-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.lessons-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.block-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
}

.block-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.challenges-list h4,
.impact-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.challenges-list ul,
.impact-section ul {
    list-style: none;
    padding: 0;
}

.challenges-list li,
.impact-section li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.challenges-list li::before,
.impact-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.challenges-list li strong {
    color: var(--primary-color);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-item {
    background: rgba(157, 78, 221, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.solution-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-item h4 i {
    color: var(--secondary-color);
}

.solution-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.code-example-block {
    margin: 2rem 0;
}

.code-example-block h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.code-window-case {
    background: #0d1117;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    overflow-x: auto;
}

.code-window-case pre {
    margin: 0;
}

.code-window-case code {
    color: #c9d1d9;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-card {
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.lesson-item {
    background: rgba(245, 158, 11, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f59e0b;
}

.lesson-item h4 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.lesson-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.case-study-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
}

.case-study-cta p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Why Hire Me Section */
.why-hire-me {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0;
    display: block;
    visibility: visible;
}

.why-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.why-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.reasons-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.reason-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 100%;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--primary-color), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover::before {
    opacity: 0.1;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.85) !important;
}

.reason-card:hover h3 {
    color: #ffffff !important;
}

.reason-card:hover p {
    color: #f5f5f5 !important;
}

.reason-card:hover .reason-icon {
    background: linear-gradient(135deg, #ffffff, #f5f5f5) !important;
    color: #000000 !important;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reason-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white !important;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.reason-card h3 {
    font-size: 1.375rem;
    color: #1f2937 !important;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.reason-card p {
    color: #4b5563 !important;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 400;
}

.reason-highlight {
    background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Enhanced Contact Section */
.contact-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-light) !important;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
}

.references-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.08);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

.references-badge:hover {
    background: rgba(0, 245, 255, 0.12);
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.2);
}

.references-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.references-badge span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Work Preferences Section */
.work-preferences {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.work-preferences h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.work-preferences h3 i {
    color: var(--secondary-color);
}

.preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.preference-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.preference-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.2);
}

.preference-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.preference-icon i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.preference-content h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.preference-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.preference-note {
    background: rgba(0, 245, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.preference-note i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.preference-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.preference-note strong {
    color: var(--primary-color);
}

/* Availability & Compensation Section */
.availability-compensation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.availability-section,
.compensation-section {
    background: rgba(157, 78, 221, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.availability-section:hover,
.compensation-section:hover {
    background: rgba(157, 78, 221, 0.08);
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-2px);
}

.availability-header,
.compensation-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.availability-header i,
.compensation-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.availability-header h3,
.compensation-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.availability-content,
.compensation-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    margin-bottom: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

.availability-badge i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.availability-badge span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.availability-content p,
.compensation-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0 0 0;
}

.compensation-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 245, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--secondary-color);
    margin-top: 0.75rem;
}

.compensation-note i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.compensation-note span {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-photo-section {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .contact-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .availability-status,
    .references-badge {
        justify-content: center;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-box {
        flex-direction: column;
        text-align: center;
    }

    .quality-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .quality-badge {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }

    .video-placeholder {
        padding: 2rem 1rem;
    }

    .video-icon i {
        font-size: 3rem;
    }

    .learning-item {
        padding: 1rem;
    }

    .learning-content h4 {
        font-size: 1rem;
    }
    
    .achievements-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-interactive {
        grid-template-columns: 1fr;
    }
    
    .skill-category-interactive {
        padding: 1.5rem;
    }
    
    .skill-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .skill-name {
        min-width: auto;
    }

    .seeking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seeking-card {
        padding: 1.5rem;
    }

    .seeking-cta {
        padding: 1.5rem;
    }

    .seeking-cta p {
        font-size: 1rem;
    }

    .demo-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .demo-modal-header {
        padding: 1.5rem;
    }

    .demo-modal-header h2 {
        font-size: 1.5rem;
    }

    .demo-modal-body {
        padding: 1.5rem;
    }

    .demo-placeholder {
        padding: 2rem 1rem;
    }

    .demo-placeholder i {
        font-size: 3.5rem;
    }

    .demo-placeholder h3 {
        font-size: 1.4rem;
    }

    .demo-placeholder-actions {
        flex-direction: column;
    }

    .demo-placeholder-actions .btn {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonials-cta {
        padding: 1.5rem;
    }

    .testimonials-cta p {
        font-size: 1rem;
    }

    .building-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .building-card {
        padding: 1.5rem;
    }

    .building-card h3 {
        font-size: 1.3rem;
    }

    .building-footer {
        padding: 1.5rem;
    }

    .building-footer p {
        font-size: 0.9rem;
    }

    .github-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .github-stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .github-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .github-card {
        padding: 0.75rem;
    }

    .github-contribution-section {
        padding: 1.5rem;
    }

    .github-languages img {
        max-width: 100%;
    }

    .btn-github {
        width: 100%;
        justify-content: center;
    }

    .case-study-block {
        padding: 2rem 1.5rem;
    }

    .block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .block-icon {
        width: 60px;
        height: 60px;
    }

    .block-icon i {
        font-size: 1.5rem;
    }

    .block-header h3 {
        font-size: 1.5rem;
    }

    .solution-grid,
    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .code-window-case {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .case-study-cta {
        padding: 2rem 1.5rem;
    }

    .case-study-cta p {
        font-size: 1rem;
    }

    .work-preferences {
        padding: 1.5rem;
    }

    .preferences-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .preference-item {
        padding: 1rem;
    }

    .preference-note {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .availability-compensation {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .availability-section,
    .compensation-section {
        padding: 1rem;
    }

    .availability-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .compensation-note {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #ffd100;
        --text-primary: #ffffff;
        --text-secondary: #d6d6d6;
        --text-light: #999999;
        --bg-primary: #202020;
        --bg-secondary: #333533;
        --border-color: #666666;
    }

    body {
        background: #202020;
        color: #ffffff;
    }

    .navbar {
        background: rgba(32, 32, 32, 0.95);
        border-bottom: 1px solid #666666;
    }

    /* Hero Section Dark Mode */
    .hero {
        background: #202020;
    }

    .hero-greeting,
    .hero-name,
    .hero-role,
    .hero-description {
        color: #ffffff !important;
    }

    /* About Section Dark Mode */
    .about {
        background: #333533;
    }

    .about-lead,
    .about-text {
        color: #ffffff !important;
    }

    /* Skills Section Dark Mode */
    .skills {
        background: #202020;
    }

    .skill-group h3 {
        color: #ffffff !important;
    }

    .skill-group p {
        color: #d6d6d6 !important;
    }

    .capabilities-list li {
        color: #ffffff !important;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .capabilities-list li strong {
        color: #ffffff !important;
    }

    /* Skills Section Dark Mode */
    .skills,
    .skills-showcase {
        background: #0a0a0a;
    }

    .section-title {
        color: #ffffff !important;
    }

    .section-subtitle {
        color: #ffffff !important;
    }

    .skill-category,
    .skill-category-interactive,
    .skill-category-pro {
        background: #1a1a1a;
        border-color: #374151;
    }

    .category-header {
        background: rgba(99, 102, 241, 0.25);
    }

    .category-header h3 {
        color: #ffffff !important;
    }

    .skill-item span {
        color: #ffffff;
    }

    .skill-name {
        color: #ffffff !important;
    }

    /* Projects Section Dark Mode */
    .projects {
        background: #1a1a1a;
    }

    .project-card {
        background: #1a1a1a;
        border: 1px solid #374151;
    }

    .project-content h3 {
        color: #ffffff !important;
    }

    .project-content p {
        color: #ffffff !important;
    }

    .tech-tag {
        background: rgba(99, 102, 241, 0.3);
        color: #ffffff !important;
    }

    /* Stats and Achievements Dark Mode */
    .stat,
    .achievement-item,
    .achievement-item-pro {
        background: #1c1c1c;
        border-color: #2d2d2d;
    }

    .achievement-number {
        color: #ffffff !important;
    }

    .achievement-item-pro .achievement-icon {
        color: #ffffff !important;
    }

    .stat-label,
    .achievement-item h3,
    .achievement-item-pro h3 {
        color: #ffffff !important;
    }

    .achievement-item p,
    .achievement-item-pro p {
        color: #f5f5f5 !important;
    }

    /* Reason Cards Dark Mode */
    .reason-card {
        background: rgba(26, 26, 26, 0.9) !important;
        border-color: #374151;
    }

    .reason-card h3 {
        color: #ffffff !important;
    }

    .reason-card p {
        color: #ffffff !important;
    }

    /* Contact Section Dark Mode */
    .contact {
        background: #0a0a0a;
    }

    .contact-item h4 {
        color: #ffffff !important;
    }

    .contact-item p {
        color: #ffffff !important;
    }

    .contact-subtitle {
        color: #ffffff !important;
    }

    .form-group input,
    .form-group textarea {
        background: #1a1a1a;
        border-color: #374151;
        color: #ffffff;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #9ca3af;
    }

    /* Download Section Dark Mode */
    .download-section {
        background: #1a1a1a;
        border-color: #374151;
    }

    .download-card {
        background: #0a0a0a;
        border-color: #374151;
    }

    .download-content h4 {
        color: #ffffff !important;
    }

    .download-content p {
        color: #ffffff !important;
    }

    .download-description {
        color: #ffffff !important;
    }

    /* Why Hire Me Section Dark Mode */
    .why-hire-me {
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    }

    .why-description {
        color: #ffffff !important;
    }

    /* Skill Tags Dark Mode */
    .skill-tag {
        background: #1a1a1a;
        color: #ffffff !important;
        border-color: #374151;
    }

    .skill-tag:hover {
        background: var(--primary-color);
        color: white !important;
    }

    /* Additional Skills Dark Mode */
    .additional-skills {
        background: rgba(99, 102, 241, 0.15);
    }

    .additional-skills h3 {
        color: #ffffff !important;
    }
    
    .availability-status {
        background: rgba(16, 185, 129, 0.2);
        color: #34d399;
    }

    .mini-label {
        color: #ffffff !important;
    }
}

/* Download Section Styles */
.download-section {
    background: var(--bg-primary);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.download-section h3 {
    color: var(--text-primary) !important;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    color: var(--text-primary) !important;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.download-card:hover::before {
    transform: scaleX(1);
}

.download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.download-content h4 {
    color: #111827 !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.download-content p {
    color: #6b7280 !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.download-card:hover .download-content h4 {
    color: var(--primary-color) !important;
}

.download-card:hover .download-content p {
    color: var(--text-primary) !important;
    opacity: 1;
}

.featured-download {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-secondary), rgba(59, 130, 246, 0.05));
}

.featured-download .download-icon {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

.download-description {
    color: #374151 !important;
    font-size: 1rem;
    text-align: center;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Free Download Badge */
.free-download {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .download-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .download-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .download-content h4 {
        font-size: 1rem;
    }
    
    .download-content p {
        font-size: 0.85rem;
    }
    
    .download-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
}

/* Project Detail Sections */
.project-detail {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.project-header h2 {
    color: var(--text-primary) !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-header p {
    color: #374151 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.project-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.lua {
    background: #4fc3f7;
    color: white;
}

.badge.database {
    background: #66bb6a;
    color: white;
}

.badge.job {
    background: #ff7043;
    color: white;
}

.badge.free {
    background: #10b981;
    color: white;
}

.badge.framework {
    background: #8e24aa;
    color: white;
}

/* Code Examples */
pre {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow-x: auto;
    margin: 1.5rem 0;
    line-height: 1.4;
}

code {
    color: var(--text-primary) !important;
    background: var(--bg-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
/* ==================================================
   BOLD PROFESSIONAL ENHANCEMENTS
   ================================================== */

/* Professional Badge & Availability */
.professional-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
        transform: scale(1.03);
    }
}

.hero-tagline {
    display: block;
    font-size: 1.3rem;
    color: #4f46e5;
    font-weight: 600;
    margin-top: 1rem;
    line-height: 1.4;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(99, 102, 241, 0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

.highlight-item i {
    color: #10b981;
    font-size: 1.4rem;
}

.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Professional Intro */
.professional-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 1rem;
    border: 2px solid rgba(99, 102, 241, 0.15);
}

.professional-intro h3 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.capabilities-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.capabilities-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.capabilities-list li:last-child {
    border-bottom: none;
}

.capabilities-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Professional Card */
.professional-card {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.4);
    transform: rotate(0deg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
}

.professional-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.5);
}

.professional-card .card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.professional-card .card-header i {
    font-size: 3rem;
}

.professional-card .card-header h3 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
}

.professional-card .card-details {
    margin-bottom: 2rem;
}

.professional-card .detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 500;
}

.professional-card .detail-item i {
    font-size: 1.25rem;
    opacity: 0.9;
    min-width: 24px;
}

.professional-card .card-cta {
    margin-top: 2rem;
}

.professional-card .card-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.professional-card .card-cta .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Professional Skills Grid */
.skills-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.skill-category-pro {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.skill-category-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 1.25rem 1.25rem 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-color: var(--primary-color);
}

.skill-category-pro:hover::before {
    opacity: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    padding: 1rem;
    border-radius: 0.5rem;
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.skill-items-pro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-item-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    background: #1f2937;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.skill-item-pro:hover {
    background: #374151;
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.skill-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
}

.skill-level {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-weight: 600;
}

.skill-item-pro.expert .skill-level {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.skill-item-pro.advanced .skill-level {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.skill-item-pro.intermediate .skill-level {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.additional-skills {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 1rem;
}

.additional-skills h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    color: #1f2937;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light) !important;
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Professional Achievements Grid */
.achievements-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-item-pro {
    background: #e8e8ed;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.achievement-item-pro:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
    transform: translateY(-5px);
}

.achievement-item-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2d2d2d;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-item-pro:hover::before {
    transform: scaleX(1);
}

.achievement-item-pro:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #000000;
}

.achievement-item-pro.highlight {
    background: #f5f5f5;
    border: 2px solid #000000;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000 !important;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.achievement-item-pro .achievement-icon {
    font-size: 3rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
}

.achievement-item-pro h3 {
    font-size: 1.35rem;
    color: #000000 !important;
    margin-bottom: 1rem;
    font-weight: 800;
}

.achievement-item-pro p {
    color: #2d2d2d !important;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Education Section */
.education {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.education-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.education-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.education-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.education-content {
    flex: 1;
}

.education-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.education-school {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-date {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.education-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==================================================
   RESPONSIVE DESIGN FOR PROFESSIONAL ELEMENTS
   ================================================== */

@media (max-width: 768px) {
    /* Professional Badge */
    .professional-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }

    /* Hero Section */
    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-item {
        font-size: 0.9rem;
    }

    /* Professional Intro */
    .professional-intro {
        padding: 1.5rem;
    }

    .professional-intro h3 {
        font-size: 1.75rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    /* Professional Card */
    .professional-card {
        transform: rotate(0deg);
        padding: 2rem 1.5rem;
    }

    .professional-card:hover {
        transform: scale(1.02);
    }

    .professional-card .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .professional-card .card-header i {
        font-size: 2.5rem;
    }

    .professional-card .card-header h3 {
        font-size: 1.5rem;
    }

    .professional-card .detail-item {
        font-size: 0.95rem;
    }
}

/* ===================================================
   GRAFFITI/GLITCH ANIMATIONS & EFFECTS
   =================================================== */

@keyframes glitch-text {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-hero {
    0%, 90%, 100% {
        transform: translate(0);
        filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.7));
    }
    91% {
        transform: translate(-3px, 3px);
        filter: drop-shadow(0 0 25px rgba(0, 245, 255, 0.8));
    }
    92% {
        transform: translate(3px, -3px);
        filter: drop-shadow(0 0 25px rgba(255, 0, 110, 0.8));
    }
    93% {
        transform: translate(-2px, -2px);
    }
    94% {
        transform: translate(2px, 2px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes neon-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--text-glow);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.8;
        text-shadow: none;
    }
}

@keyframes spray-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes graffiti-slide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Skills Glitch Animation */
@keyframes skill-glitch {
    0%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 1px);
    }
    20% {
        transform: translate(2px, -1px);
    }
    30% {
        transform: translate(-1px, 2px);
    }
    40% {
        transform: translate(1px, -2px);
    }
    50% {
        transform: translate(-2px, -1px);
        filter: hue-rotate(10deg);
    }
    60% {
        transform: translate(2px, 1px);
    }
    70% {
        transform: translate(-1px, -2px);
    }
    80% {
        transform: translate(1px, 2px);
    }
    90% {
        transform: translate(-2px, 1px);
    }
}

@keyframes glitch-layer-1 {
    0% {
        transform: translate(0);
        opacity: 0.8;
    }
    20% {
        transform: translate(-3px, 2px);
        opacity: 0.7;
    }
    40% {
        transform: translate(-2px, -3px);
        opacity: 0.6;
    }
    60% {
        transform: translate(3px, 1px);
        opacity: 0.7;
    }
    80% {
        transform: translate(-1px, -2px);
        opacity: 0.8;
    }
    100% {
        transform: translate(0);
        opacity: 0.8;
    }
}

@keyframes glitch-layer-2 {
    0% {
        transform: translate(0);
        opacity: 0.6;
    }
    25% {
        transform: translate(3px, -2px);
        opacity: 0.5;
    }
    50% {
        transform: translate(-2px, 3px);
        opacity: 0.4;
    }
    75% {
        transform: translate(2px, 2px);
        opacity: 0.5;
    }
    100% {
        transform: translate(0);
        opacity: 0.6;
    }
}

/* Urban Graffiti Text Effect */
.graffiti-text {
    position: relative;
    display: inline-block;
}

.graffiti-text::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 2px;
    color: var(--secondary-color);
    opacity: 0.6;
    z-index: -1;
    animation: glitch-shadow 3s infinite;
}

@keyframes glitch-shadow {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-2px, 2px);
    }
    50% {
        transform: translate(2px, -2px);
    }
    75% {
        transform: translate(-2px, -2px);
    }
}

/* Spray paint drip effect */
.spray-drip {
    position: relative;
    overflow: visible;
}

.spray-drip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 2px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.6;
    filter: blur(1px);
}

/* Scanline effect overlay */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.section-subtitle,
.page-subtitle {
    position: relative;
    overflow: hidden;
}

.section-subtitle::before,
.page-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.5), transparent);
    animation: scanline 3s linear infinite;
    opacity: 0.3;
    .professional-card .detail-item {
        font-size: 0.95rem;
    }

    /* Skills Grid */
    .skills-grid-pro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-category-pro {
        padding: 1.5rem;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .skill-item-pro {
        padding: 0.75rem 1rem;
    }

    .skill-name {
        font-size: 0.95rem;
    }

    .skill-level {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    /* Achievements Grid */
    .achievements-grid-pro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievement-item-pro {
        padding: 2rem 1.5rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-item-pro .achievement-icon {
        font-size: 2.5rem;
    }

    .achievement-item-pro h3 {
        font-size: 1.2rem;
    }

    .achievement-item-pro p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    /* Section Subtitle */
    .section-subtitle {
        font-size: 1.05rem;
    }

    /* Additional Skills */
    .additional-skills {
        padding: 1.5rem;
    }

    .additional-skills h3 {
        font-size: 1.3rem;
    }

    .skill-tags {
        gap: 0.75rem;
    }

    .skill-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Satisfaction Badges */
    .satisfaction-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Development Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card {
        padding: 1.5rem;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .process-icon {
        width: 50px;
        height: 50px;
    }

    .process-icon i {
        font-size: 1.2rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ Section */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question i {
        font-size: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1rem;
    }

    .professional-intro h3 {
        font-size: 1.5rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .professional-card .card-header h3 {
        font-size: 1.3rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    /* Satisfaction Badges - Single Column */
    .satisfaction-badges {
        grid-template-columns: 1fr;
    }

    /* Process Tools - Single Column */
    .tools-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   NEW STYLES FOR PORTFOLIO ENHANCEMENTS
   ============================================ */

/* Brand Statement Section */
.brand-statement {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.brand-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

.brand-statement h3 {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-statement h3 i {
    color: var(--secondary-color);
}

.brand-headline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.brand-headline strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Value Propositions */
.value-props {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-prop {
    display: flex;
    gap: 1rem;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-prop:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.2);
}

.value-prop i {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 40px;
}

.value-prop h4 {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-philosophy {
    background: rgba(0, 245, 255, 0.05);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

.about-philosophy i {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Case Study Section Enhancements */
.case-study-block {
    margin-bottom: 3rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.case-study-block:hover {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.2);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-bottom: 2px solid rgba(157, 78, 221, 0.2);
}

.block-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.problem-icon {
    background: rgba(255, 0, 110, 0.1);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.solution-icon {
    background: rgba(0, 245, 255, 0.1);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.results-icon {
    background: rgba(6, 255, 165, 0.1);
    color: var(--toxic-green);
    border: 2px solid var(--toxic-green);
}

.lessons-icon {
    background: rgba(157, 78, 221, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.block-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
}

.block-content {
    padding: 2rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.challenges-list h4,
.solution-grid h4,
.impact-section h4 {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenges-list ul,
.impact-section ul {
    list-style: none;
    padding: 0;
}

.challenges-list li,
.impact-section li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.challenges-list li::before,
.impact-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.challenges-list strong,
.impact-section strong {
    color: var(--secondary-color);
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-item {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.solution-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.solution-item i {
    color: var(--secondary-color);
}

/* Code Example Block */
.code-example-block {
    margin: 2rem 0;
}

.code-example-block h4 {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.code-window-case {
    background: #1e1e1e;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.code-window-case pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-window-case code {
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Metrics Showcase */
.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.3);
    border-color: rgba(157, 78, 221, 0.5);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.metric-change {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-change.positive {
    background: rgba(6, 255, 165, 0.2);
    color: var(--toxic-green);
    border: 1px solid var(--toxic-green);
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.lesson-item {
    background: rgba(157, 78, 221, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.lesson-item h4 {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.lesson-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Case Study CTA */
.case-study-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 1rem;
    margin-top: 3rem;
}

.case-study-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Project Cards Enhancements */
.project-case-study {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(157, 78, 221, 0.2);
}

.case-study-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.case-study-grid {
    display: grid;
    gap: 1rem;
}

.case-study-item {
    background: rgba(157, 78, 221, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 1rem;
    border-radius: 0.5rem;
}

.case-study-item h5 {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.case-study-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* CTAs Throughout Site */
.section-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border-radius: 1rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
    margin-top: 3rem;
}

.section-cta h3 {
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Visual Elements - Screenshots Placeholders */
.project-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.screenshot-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border: 2px dashed rgba(157, 78, 221, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
    border-color: rgba(157, 78, 221, 0.5);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(0, 245, 255, 0.15));
}

.screenshot-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Before/After Comparison */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.before-after-item {
    position: relative;
}

.before-after-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
    border: 1px solid var(--primary-color);
}

/* LinkedIn Badge */
.linkedin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077b5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.linkedin-badge:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.linkedin-recommendations {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 119, 181, 0.05);
    border: 2px solid rgba(0, 119, 181, 0.2);
    border-radius: 1rem;
}

.linkedin-recommendations h3 {
    color: #0077b5;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
}

/* Resume Section Enhancement */
.resume-section-highlight {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.resume-section {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 245, 255, 0.1));
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.resume-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

.resume-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.resume-section h3 {
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.resume-section > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.resume-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.resume-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.resume-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .value-props {
        gap: 1rem;
    }
    
    .value-prop {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .project-screenshots {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .metrics-showcase {
        grid-template-columns: 1fr;
    }
    
    .brand-statement {
        padding: 1.5rem;
    }
    
    .brand-headline {
        font-size: 1.1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
}