/* ============================================
   TECH/FUTURISTIC PORTFOLIO - Website8_2
   Dynamic animations, particle effects, neon styling
   ============================================ */

/* ============================================
   FONTS & BASE STYLES
   ============================================ */

:root {
    /* Tech Color Palette */
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-green: #00ff88;
    --accent-orange: #ff6b35;
    --text-light: #e0e7ff;
    --text-gray: #94a3b8;
    --glass-bg: rgba(26, 31, 58, 0.7);
    --card-bg: rgba(26, 31, 58, 0.5);

    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Tech Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Animated Scan Line */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: scanLine 4s linear infinite;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

@keyframes scanLine {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', 'Orbitron', 'Exo 2', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

/* Monospace for numbers */
.stat-number, .result-number, .step-number, .card-number {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
}

.nav-brand a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: width 0.3s ease;
}

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

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

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 1rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-blue);
}

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

.btn-contact {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple)) !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: var(--transition-smooth);
}

.btn-contact::before {
    display: none !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

/* Particle Background Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 0.9rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--neon-blue), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn .btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ============================================
   STATS SECTION - ANIMATED NUMBERS
   ============================================ */

.stats-section {
    background: linear-gradient(180deg, transparent, rgba(26, 31, 58, 0.3));
    position: relative;
}

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

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */

.capabilities-section {
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.capability-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.capability-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

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

.capability-icon {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.capability-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.capability-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.capability-tags span {
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--neon-blue);
    transition: var(--transition-fast);
}

.capability-tags span:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3), transparent);
    position: relative;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-tag {
    color: var(--neon-purple);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.featured-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

.featured-highlights {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 2rem;
}

.featured-highlights h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.featured-highlights ul {
    list-style: none;
}

.featured-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
}

.featured-highlights li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

/* Tech Stack */
.tech-stack {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 2rem;
}

.tech-stack h4 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.tech-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Process Diagram */
.process-diagram {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.process-step {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--neon-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.process-step h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   CREDENTIALS SECTION
   ============================================ */

.credentials-section {
    background: linear-gradient(180deg, transparent, rgba(26, 31, 58, 0.3));
}

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

.credential-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

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

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.credential-card h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.credential-school {
    color: var(--neon-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.credential-detail {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.credential-year {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--secondary-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--neon-blue);
    transition: var(--transition-smooth);
}

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

.social-icon:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease both;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll-triggered animations */
.fade-in-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

/* ============================================
   PAGE HEADER (For About, Work, etc.)
   ============================================ */

.page-header {
    padding-top: 150px;
    padding-bottom: 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.5), transparent);
    position: relative;
}

.page-header h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-intro {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--neon-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    position: sticky;
    top: 120px;
}

.highlight-box {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.highlight-box h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
}

.highlight-box li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

/* Journey Timeline Redesign */
.journey-timeline {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
}

.journey-line {
    position: absolute;
    left: 50%;
    top: 150px;
    bottom: 150px;
    width: 3px;
    background: linear-gradient(180deg,
        transparent,
        var(--neon-purple) 10%,
        var(--neon-blue) 50%,
        var(--neon-purple) 90%,
        transparent
    );
    transform: translateX(-50%);
    z-index: 0;
}

.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.journey-right {
    justify-content: flex-start;
}

.journey-left {
    justify-content: flex-end;
}

.journey-dot {
    position: absolute;
    left: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    z-index: 10;
    animation: journey-pulse 3s ease-in-out infinite;
}

@keyframes journey-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(168, 85, 247, 0.8);
        transform: translateX(-50%) scale(1.1);
    }
}

.journey-icon {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.journey-card {
    flex: 1;
    max-width: 45%;
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.journey-right .journey-card {
    margin-left: calc(50% + 50px);
}

.journey-left .journey-card {
    margin-right: calc(50% + 50px);
}

.journey-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.journey-header {
    margin-bottom: 1.5rem;
}

.journey-year {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 25px;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.journey-header h3 {
    font-size: 1.75rem;
    color: var(--neon-blue);
    margin-top: 1rem;
    margin-bottom: 0;
}

.journey-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.journey-insight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.insight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.journey-insight strong {
    color: var(--neon-blue);
}

.journey-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.journey-stats .stat-item {
    text-align: center;
}

.journey-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-purple);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.journey-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .journey-line {
        left: 30px;
    }

    .journey-item {
        justify-content: flex-start !important;
    }

    .journey-dot {
        left: 30px;
    }

    .journey-card {
        max-width: 100%;
        margin-left: 70px !important;
        margin-right: 0 !important;
    }

    .journey-stats {
        flex-wrap: wrap;
    }
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(180deg, transparent, rgba(26, 31, 58, 0.3));
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.philosophy-point {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
}

.philosophy-point:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.philosophy-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.philosophy-point h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.philosophy-point p {
    color: var(--text-gray);
    line-height: 1.8;
}

.philosophy-conclusion {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.philosophy-conclusion .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Education Section */
.education-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3), transparent);
}

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

.education-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
}

.education-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.education-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.education-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.education-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.education-school {
    color: var(--neon-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.education-focus {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.education-gpa {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-year {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.education-honors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.honor-badge {
    padding: 0.4rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--neon-green);
}

.education-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.education-skills span {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--neon-blue);
}

/* ===================================
   CORE COMPETENCIES - HEXAGON GRID
   =================================== */

.competencies-section {
    padding: 8rem 0;
    background: linear-gradient(180deg,
        rgba(10, 14, 39, 0.5),
        rgba(0, 212, 255, 0.05),
        rgba(168, 85, 247, 0.05),
        rgba(10, 14, 39, 0.5)
    );
    position: relative;
    overflow: hidden;
}

.competency-hexagons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0;
}

.hex-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.hex-row-2 {
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.hex-wrapper {
    position: relative;
}

.hex-center {
    transform: scale(1.3);
    z-index: 10;
}

/* Hexagon Shape */
.hexagon {
    width: 220px;
    height: 254px;
    position: relative;
    transition: all 0.4s ease;
}

.hexagon-center {
    width: 260px;
    height: 300px;
}

.hex-inner {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
}

/* Different colored borders for each category */
.hex-project .hex-inner {
    border-color: rgba(0, 212, 255, 0.4);
}

.hex-production .hex-inner {
    border-color: rgba(168, 85, 247, 0.4);
}

.hex-ai .hex-inner {
    border-color: rgba(0, 255, 136, 0.4);
}

.hex-process .hex-inner {
    border-color: rgba(255, 107, 53, 0.4);
}

.hex-marketing .hex-inner {
    border-color: rgba(245, 158, 11, 0.4);
}

.hex-tools .hex-inner {
    border-color: rgba(59, 130, 246, 0.4);
}

.hexagon-center .hex-inner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(168, 85, 247, 0.2));
    border: 3px solid rgba(0, 212, 255, 0.6);
}

/* Hover Effects */
.hexagon:hover .hex-inner {
    transform: scale(1.1);
    border-width: 3px;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.hex-project:hover .hex-inner {
    border-color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.hex-production:hover .hex-inner {
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
}

.hex-ai:hover .hex-inner {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
}

.hex-process:hover .hex-inner {
    border-color: var(--accent-orange);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
}

.hex-marketing:hover .hex-inner {
    border-color: #f59e0b;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.8);
}

.hex-tools:hover .hex-inner {
    border-color: #3b82f6;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
}

.hexagon-center:hover .hex-inner {
    box-shadow: 0 0 60px rgba(0, 212, 255, 1);
}

/* Hexagon Content */
.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1.5rem;
    width: 90%;
}

.hex-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hex-icon-large {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hex-content h3 {
    font-size: 1.1rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hex-content h2 {
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hex-content p {
    font-size: 0.875rem;
    color: var(--neon-purple);
    font-weight: 500;
}

.hex-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.hex-skills span {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hex-skills span:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* Responsive */
@media (max-width: 1200px) {
    .hexagon {
        width: 180px;
        height: 208px;
    }

    .hexagon-center {
        width: 220px;
        height: 254px;
    }
}

@media (max-width: 968px) {
    .hex-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hex-center {
        transform: scale(1);
    }

    .hexagon,
    .hexagon-center {
        width: 240px;
        height: 277px;
    }

    .hex-content h3 {
        font-size: 1.2rem;
    }
}

/* Beyond Work Section */
.beyond-work-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3), transparent);
}

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

.beyond-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
}

.beyond-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.beyond-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.beyond-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.beyond-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   CORE COMPETENCIES - CREATIVE DESIGN
   ============================================ */

.core-competencies-section {
    padding: 120px 0;
    background: linear-gradient(180deg,
        rgba(26, 31, 58, 0.3) 0%,
        rgba(15, 20, 40, 0.5) 50%,
        rgba(26, 31, 58, 0.3) 100%
    );
    position: relative;
    overflow: hidden;
}

.core-competencies-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-blue);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.competencies-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.competency-box {
    position: relative;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.competency-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.3));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.competency-box:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.competency-box:hover::before {
    opacity: 1;
}

/* Colored borders for each box */
.competency-box-1 { border-color: rgba(0, 212, 255, 0.4); }
.competency-box-1:hover { border-color: var(--neon-blue); }
.competency-box-1 .competency-glow { background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.15), transparent); }

.competency-box-2 { border-color: rgba(168, 85, 247, 0.4); }
.competency-box-2:hover { border-color: var(--neon-purple); }
.competency-box-2 .competency-glow { background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent); }

.competency-box-3 { border-color: rgba(255, 177, 0, 0.4); }
.competency-box-3:hover { border-color: var(--accent-orange); }
.competency-box-3 .competency-glow { background: radial-gradient(circle at top right, rgba(255, 177, 0, 0.15), transparent); }

.competency-box-4 { border-color: rgba(0, 255, 170, 0.4); }
.competency-box-4:hover { border-color: #00ffaa; }
.competency-box-4 .competency-glow { background: radial-gradient(circle at top right, rgba(0, 255, 170, 0.15), transparent); }

.competency-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.competency-box:hover .competency-glow {
    opacity: 1;
}

.competency-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    line-height: 1;
    user-select: none;
}

.competency-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.competency-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.competency-highlight {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    border-radius: 8px;
}

.competency-box-2 .competency-highlight { border-left-color: var(--neon-purple); background: rgba(168, 85, 247, 0.05); }
.competency-box-3 .competency-highlight { border-left-color: var(--accent-orange); background: rgba(255, 177, 0, 0.05); }
.competency-box-4 .competency-highlight { border-left-color: #00ffaa; background: rgba(0, 255, 170, 0.05); }

.highlight-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-blue);
    font-family: var(--font-mono);
    line-height: 1;
}

.competency-box-2 .highlight-stat { color: var(--neon-purple); }
.competency-box-3 .highlight-stat { color: var(--accent-orange); }
.competency-box-4 .highlight-stat { color: #00ffaa; }

.highlight-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.competency-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competency-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.item-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.competency-box-2 .item-bullet { background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue)); }
.competency-box-3 .item-bullet { background: linear-gradient(135deg, var(--accent-orange), #ff6b00); }
.competency-box-4 .item-bullet { background: linear-gradient(135deg, #00ffaa, #00d4ff); }

/* Responsive Design */
@media (max-width: 968px) {
    .competencies-visual-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .competency-box {
        padding: 40px 30px;
    }

    .competency-number {
        font-size: 4rem;
        top: 15px;
        right: 20px;
    }

    .competency-icon {
        font-size: 3rem;
    }

    .competency-title {
        font-size: 1.5rem;
    }

    .highlight-stat {
        font-size: 1.6rem;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page-tech,
.contact-page-netflix {
    /* body class for contact page */
}

.contact-hero,
.netflix-hero {
    padding-top: 150px;
    padding-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1), transparent);
    pointer-events: none;
}

.contact-hero h1,
.netflix-hero h1,
.netflix-title {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gradient-accent,
.netflix-red {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle,
.netflix-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Co-Pilot Section */
.copilot-section,
.netflix-copilot-section {
    padding: 4rem 0;
}

.section-header,
.netflix-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2,
.netflix-section-header h2,
.netflix-h2 {
    margin-bottom: 1rem;
}

.description,
.netflix-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.copilot-card,
.netflix-copilot-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.copilot-form-netflix {
    width: 100%;
}

.form-group,
.form-group-netflix {
    margin-bottom: 1.5rem;
}

.form-label,
.netflix-label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.textarea,
.input,
.netflix-textarea,
.netflix-input {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.textarea:focus,
.input:focus,
.netflix-textarea:focus,
.netflix-input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.textarea,
.netflix-textarea {
    resize: vertical;
    min-height: 150px;
}

.netflix-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.netflix-btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.netflix-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.netflix-btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.netflix-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.netflix-btn-full {
    width: 100%;
    justify-content: center;
}

.copilot-result-display {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: var(--text-light);
}

.copilot-result-display h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.copilot-result-display pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Contact Form Section */
.contact-section,
.netflix-contact-section {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3), transparent);
    padding: 4rem 0;
}

.contact-grid,
.netflix-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info,
.netflix-contact-info {
    position: sticky;
    top: 120px;
}

.contact-info-inner {
    /* wrapper for contact info */
}

.contact-info h2,
.netflix-contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-text,
.netflix-contact-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-text-emphasis,
.netflix-contact-text-emphasis {
    color: var(--neon-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.response-time,
.netflix-response-time {
    margin-top: 2rem;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    color: var(--neon-green);
    font-weight: 600;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--neon-green);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 0.8rem;
}

.badge-text {
    /* text inside badge */
}

.form-wrapper,
.netflix-form-wrapper {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.form-header,
.netflix-form-header {
    margin-bottom: 2rem;
}

.form-title {
    color: var(--text-light);
}

.netflix-form {
    /* form styles */
}

.form-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

/* Quick Links */
.quick-links,
.netflix-quick-links {
    padding: 4rem 0;
}

.section-title-center,
.netflix-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.card-link,
.netflix-card {
    display: block;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card-link::before,
.netflix-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-link:hover,
.netflix-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.card-link:hover::before,
.netflix-card:hover::before {
    opacity: 1;
}

.card-title {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.card-desc {
    color: var(--text-gray);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-arrow {
    color: var(--neon-blue);
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.card-link:hover .card-arrow,
.netflix-card:hover .card-arrow {
    transform: translateX(10px);
}

.netflix-footer {
    /* footer override */
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-dark);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    box-shadow: 0 20px 80px rgba(0, 212, 255, 0.3);
}

.netflix-modal {
    /* modal override */
}

#close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

#close-modal:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
}

#modal-body {
    /* modal body content */
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .featured-content,
    .about-grid,
    .contact-grid,
    .netflix-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .education-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.4s ease;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-cta,
    .cta-buttons,
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .netflix-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .featured-results {
        grid-template-columns: 1fr;
    }

    .process-diagram {
        grid-template-columns: 1fr;
    }

    .capabilities-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -28px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .stat-number {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
    }

    .form-wrapper,
    .netflix-form-wrapper,
    .copilot-card,
    .netflix-copilot-card {
        padding: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glow-text {
    text-shadow: 0 0 20px currentColor;
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--neon-blue);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    color: var(--accent-orange);
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
}

/* ===================================
   WORK PAGE STYLES
   =================================== */

.work-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15), transparent 50%);
    overflow: hidden;
    padding-top: 120px;
}

#work-particles-canvas,
#experience-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.case-study-card {
    position: relative;
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: rgba(26, 31, 58, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.case-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--neon-blue);
    opacity: 0.3;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    margin-bottom: 1rem;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--neon-purple);
    border-radius: 25px;
    color: var(--neon-purple);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

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

.metric-number {
    display: inline;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.metric-suffix {
    display: inline;
    font-size: 2rem;
    color: var(--neon-purple);
    font-weight: 700;
    margin-left: 0.2rem;
    position: relative;
    z-index: 1;
}

.metric-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.case-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-section {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.content-section:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.content-section h3 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.6;
}

.content-section li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

.approach-steps-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.step-compact {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.step-num-compact {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    color: var(--neon-blue);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.step-compact div {
    flex: 1;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-compact strong {
    color: var(--neon-blue);
}

.tech-stack-visual {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-stack-visual:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.tech-stack-visual h4 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.tech-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 25px;
    color: var(--neon-blue);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.case-divider {
    height: 80px;
}

/* ===================================
   EXPERIENCE TIMELINE STYLES
   =================================== */

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero-stat-number {
    display: inline;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.hero-stat-suffix {
    display: inline;
    font-size: 1.5rem;
    color: var(--neon-purple);
    font-weight: 700;
}

.hero-stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-timeline {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(26, 31, 58, 0.3));
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        transparent,
        var(--neon-blue) 10%,
        var(--neon-purple) 50%,
        var(--neon-blue) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--neon-blue);
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    z-index: 10;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 212, 255, 1);
    }
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    padding: 2.5rem;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-left {
    margin-right: auto;
    margin-left: 0;
}

.timeline-right {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.company-header {
    margin-bottom: 1.5rem;
}

.company-header h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.company-name {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    color: var(--neon-purple);
    font-size: 0.875rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.timeline-date {
    display: block;
    color: var(--neon-green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.role-description {
    margin-bottom: 1.5rem;
}

.role-description p {
    color: var(--text-gray);
    line-height: 1.8;
}

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

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.achievement-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-stat {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.achievement-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-highlights {
    margin: 2rem 0;
}

.role-highlights h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.role-highlights ul {
    list-style: none;
    padding-left: 0;
}

.role-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.6;
}

.role-highlights li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

.role-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.skill-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    color: var(--neon-green);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.skill-badge:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content {
        max-width: 100%;
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .case-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .work-hero {
        min-height: 70vh;
    }

    .case-study-card {
        padding: 2rem 1.5rem;
    }

    .case-number {
        font-size: 3rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

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

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