/* ==========================================
   VARIABLES & ROOT STYLES
   ========================================== */
:root {
    /* Colors - Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Accent Colors */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #a855f7;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --accent-glow: rgba(99, 102, 241, 0.4);
    
    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #334155;
    --glass-bg: rgba(15, 15, 35, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 80px rgba(99, 102, 241, 0.4);
}

/* ==========================================
   BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: white;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* ==========================================
   CURSOR GLOW EFFECT
   ========================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    transition: var(--transition-base);
}

.theme-toggle:hover {
    color: var(--accent-primary);
    transform: rotate(15deg);
}

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

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

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

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-primary);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 24px;
        padding: 16px 32px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100); /* Fix for mobile browsers */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    animation: gradientFloat 15s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 20px) rotate(5deg); }
    66% { transform: translate(20px, -30px) rotate(-5deg); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    bottom: 10%;
    right: 25%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-40px, -20px) scale(1.05); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-role {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.role-tag {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* AI Status Bar */
.ai-status-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    width: fit-content;
    flex-wrap: wrap;
}

.ai-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: aiDotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

@keyframes aiDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.ai-label {
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-typing {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.typing-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.typing-cursor {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .ai-status-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ai-typing {
        min-width: auto;
        justify-content: center;
    }
}

.hero-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

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

.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn i {
    font-size: 14px;
    transition: transform var(--transition-base);
}

.btn:hover i {
    transform: translateX(4px);
}

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

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

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

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline {
    color: var(--accent-primary);
    background: transparent;
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

.hero-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    background: var(--bg-secondary);
    font-size: 18px;
    transition: var(--transition-base);
}

.social-link:hover {
    color: white;
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

/* Featured LinkedIn Link */
.social-link.linkedin-featured {
    width: auto;
    padding: 12px 20px;
    gap: 10px;
    background: #0A66C2;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.social-link.linkedin-featured:hover {
    background: #004182;
    transform: translateY(-3px);
}

.social-link.linkedin-featured span {
    display: inline;
}

/* Profile Card Mini */
.profile-card-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: fit-content;
}

.profile-mini-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent-primary);
}

.linkedin-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0A66C2;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-base);
    text-decoration: none;
}

.linkedin-badge:hover {
    background: #004182;
    transform: translateY(-2px);
    color: white;
}

.linkedin-badge i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .social-link.linkedin-featured span {
        display: none;
    }
    
    .social-link.linkedin-featured {
        width: 44px;
        padding: 0;
    }
    
    .profile-card-mini {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Visual - Code Window */
.hero-visual {
    position: relative;
}

.code-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

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

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

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.window-title {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.window-content {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
}

.window-content code {
    display: block;
    white-space: pre;
}

.keyword { color: #c678dd; }
.class-name { color: #e5c07b; }
.string { color: #98c379; }
.number { color: #d19a66; }
.method { color: #61afef; }

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Tech Orbit */
.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed var(--border-color);
    border-radius: 50%;
    animation: orbit 30s linear infinite;
}

.orbit-ring.ring-1 {
    inset: 50px;
    animation-duration: 25s;
}

.orbit-ring.ring-2 {
    inset: -20px;
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-item {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 24px;
    color: var(--accent-primary);
    animation: counter-orbit 30s linear infinite;
    box-shadow: var(--shadow-md);
}

.orbit-ring.ring-1 .orbit-item {
    animation-duration: 25s;
}

.orbit-ring.ring-2 .orbit-item {
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes counter-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orbit-ring.ring-1 .orbit-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-ring.ring-1 .orbit-item:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-ring.ring-1 .orbit-item:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%); }

.orbit-ring.ring-2 .orbit-item:nth-child(1) { right: 0; top: 50%; transform: translateY(-50%); }
.orbit-ring.ring-2 .orbit-item:nth-child(2) { top: 15%; left: 15%; }
.orbit-ring.ring-2 .orbit-item:nth-child(3) { bottom: 15%; right: 15%; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

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

.image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0.1;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.deco-line {
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 10px;
}

.deco-box {
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-primary);
    border-radius: var(--radius-md);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent-gradient);
    color: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content {
    padding-top: 20px;
}

.about-intro {
    margin-bottom: 40px;
}

.about-intro .lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-intro p {
    color: var(--text-secondary);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.highlight-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-md);
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.about-services h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
}

.service-tag i {
    color: var(--accent-primary);
    font-size: 12px;
}

.service-tag:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ==========================================
   SKILLS SECTION
   ========================================== */
.skills-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.skill-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-size: 24px;
}

.category-header h3 {
    font-size: 20px;
    font-weight: 700;
}

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

.skill-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.skill-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.skill-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.skill-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease-out;
}

.skill-card.animated .skill-progress {
    width: var(--skill-level, 0%);
}

/* Credly Badges Section */
.credly-section {
    margin-top: 60px;
    text-align: center;
}

.credly-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.credly-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.credly-link {
    text-decoration: none;
}

.credly-badge-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 40px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.credly-badge-placeholder:hover {
    border-color: var(--accent-primary);
    background: var(--bg-tertiary);
    transform: translateY(-5px);
}

.credly-badge-placeholder i {
    font-size: 48px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Schedule Meeting CTA */
.schedule-meeting-cta {
    margin-top: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.schedule-meeting-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.meeting-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.meeting-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-icon i {
    font-size: 36px;
    color: white;
}

.meeting-text {
    text-align: left;
}

.meeting-text h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 8px;
}

.meeting-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.meeting-btn {
    background: white !important;
    color: var(--accent-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 16px 32px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.meeting-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .meeting-content {
        flex-direction: column;
        text-align: center;
    }
    
    .meeting-text {
        text-align: center;
    }
    
    .schedule-meeting-cta {
        padding: 30px 20px;
    }
}

/* ==========================================
   YOUTUBE SHOWCASE SECTION
   ========================================== */
.youtube-showcase {
    background: var(--bg-secondary);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.youtube-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    position: relative;
    text-decoration: none;
    display: block;
}

.youtube-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #FF0000;
}

.youtube-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    background: #FF0000;
}

.youtube-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.youtube-card:hover .youtube-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 5;
}

.youtube-card.featured .play-button {
    width: 90px;
    height: 90px;
}

.play-button i {
    font-size: 32px;
    color: #FF0000;
}

.youtube-card.featured .play-button i {
    font-size: 42px;
}

.youtube-info {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.youtube-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.youtube-cta {
    text-align: center;
    margin-top: 40px;
}

.youtube-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    from { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
    to { box-shadow: 0 0 35px rgba(99, 102, 241, 0.8); }
}

.subscriber-count {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.subscriber-count i {
    color: var(--accent-primary);
    margin-right: 6px;
}

@media (max-width: 1024px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .youtube-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-card.featured {
        grid-column: span 1;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 26px;
    }
}

/* ==========================================
   AI CAPABILITIES SECTION
   ========================================== */
.ai-capabilities {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.ai-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

.ai-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
    border-color: var(--accent-primary);
}

.ai-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.ai-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ai-icon i {
    font-size: 32px;
    color: white;
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: 1;
}

.ai-card:hover .ai-pulse {
    animation: aiPulse 1.5s ease-out infinite;
}

@keyframes aiPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.ai-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.ai-tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.ai-tech-tags span {
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Neural Network Background */
.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

#neural-canvas {
    width: 100%;
    height: 100%;
}

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

@media (max-width: 576px) {
    .ai-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-card {
        padding: 24px;
    }
}

/* ==========================================
   PORTFOLIO GALLERY SECTION
   ========================================== */
.portfolio-gallery {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 32px;
    color: white;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-primary);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ==========================================
   AI CHATBOT WIDGET
   ========================================== */
.chatbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    font-family: var(--font-primary);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer !important;
    pointer-events: auto !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 550px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: none;
}

.chatbot-container.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--accent-gradient);
    color: white;
}

.chatbot-avatar {
    position: relative;
    width: 45px;
    height: 45px;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-avatar .online-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid white;
}

.chatbot-info {
    flex: 1;
}

.chatbot-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.chatbot-status {
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 10px;
    animation: fadeInUp 0.3s ease;
}

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

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.chat-message.user .message-avatar {
    display: none;
}

.message-content {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-content {
    background: var(--accent-gradient);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin: 0 0 8px 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 8px 0;
    padding-left: 0;
    list-style: none;
}

.message-content li {
    padding: 4px 0;
    font-size: 13px;
}

.quick-topics {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin: 10px 0;
}

.message-content a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.chat-message.user .message-content a {
    color: white;
}

.chatbot-suggestions {
    display: flex;
    gap: 8px;
    padding: 0 16px 12px;
    flex-wrap: wrap;
}

.suggestion-chip {
    padding: 8px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.suggestion-chip:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.chatbot-input-area {
    display: flex;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

#chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-base);
}

#chatbot-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#chatbot-input::placeholder {
    color: var(--text-muted);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
.typing-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-container {
        width: calc(100vw - 32px);
        max-height: 70vh;
        right: -8px;
    }
    
    .chatbot-toggle {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }
}

/* ==========================================
   EXPERIENCE SECTION
   ========================================== */
.experience {
    background: var(--bg-secondary);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 32px;
}

.marker-dot {
    width: 32px;
    height: 32px;
    background: var(--bg-primary);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.marker-dot.current {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}

.marker-dot.current::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition-base);
}

.timeline-content:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
}

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

.timeline-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

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

.timeline-location i {
    margin-right: 4px;
}

.timeline-badge {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: var(--radius-full);
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.timeline-list {
    margin-bottom: 20px;
}

.timeline-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.timeline-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tech span {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-full);
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    background: var(--accent-gradient);
    border-color: transparent;
}

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

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.project-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card.featured .project-image {
    height: 400px;
}

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

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

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.project-links {
    display: flex;
    gap: 12px;
}

.project-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--accent-primary);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition-base);
}

.project-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.project-content {
    padding: 24px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tags .tag {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-full);
}

.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.project-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-stats i {
    color: var(--accent-primary);
}

.project-btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

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

.project-card:hover .project-btn {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.projects-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

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

.testimonial-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 32px;
    font-size: 32px;
    color: var(--accent-primary);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 16px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition-base);
}

.nav-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.nav-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-dots .dot:hover,
.nav-dots .dot.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-method:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
}

.method-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-size: 22px;
}

.method-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.method-value {
    font-size: 16px;
    font-weight: 600;
}

.hire-platforms h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.platforms {
    display: flex;
    gap: 12px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
}

.platform-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.upwork-icon {
    font-weight: 700;
    color: #14a800;
}

.platform-btn:hover .upwork-icon {
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 48px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-base);
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: 0;
    left: 16px;
    font-size: 12px;
    background: var(--bg-secondary);
    padding: 0 8px;
    color: var(--accent-primary);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.form-group textarea ~ .input-icon {
    top: 20px;
    transform: none;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 32px;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-column a:hover {
    color: var(--accent-primary);
}

/* Visitor Stats */
.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item > i {
    font-size: 24px;
    color: var(--accent-primary);
}

.stat-item.online-indicator > i {
    color: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .visitor-stats {
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 40%;
        justify-content: center;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom i {
    color: #ef4444;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
    
    .tech-orbit {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .code-window {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .skills-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        letter-spacing: -1px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 8px;
    }
    
    .timeline-item {
        gap: 24px;
    }
    
    .timeline-marker {
        width: 20px;
    }
    
    .marker-dot {
        width: 20px;
        height: 20px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .platforms {
        flex-wrap: wrap;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   ENHANCED MOBILE RESPONSIVENESS
   ========================================== */

/* Mobile Navigation Improvements */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--bg-primary);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 999;
        gap: 8px;
        padding: 20px;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 20px;
        padding: 14px 28px;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-lg);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(99, 102, 241, 0.15);
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .navbar.scrolled {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo {
        font-size: 24px;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
}

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px 6px 10px;
        justify-content: center;
    }
    
    .hero-role {
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .role-tag {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .role-divider {
        font-size: 10px;
    }
    
    .ai-status-bar {
        justify-content: center;
        padding: 10px 16px;
        gap: 12px;
        margin: 0 auto 16px;
    }
    
    .ai-typing {
        min-width: 150px;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 48px);
        letter-spacing: -1px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 24px;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 24px;
    }
    
    .stat-item {
        text-align: center;
        flex: 1 1 calc(50% - 20px);
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-suffix {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-social {
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .code-window {
        transform: none;
        max-width: 100%;
        margin: 0;
    }
    
    .window-content {
        padding: 16px;
        font-size: 12px;
        overflow-x: auto;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .floating-shapes .shape {
        opacity: 0.3;
    }
    
    .shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .shape-3,
    .shape-4,
    .shape-5 {
        display: none;
    }
}

/* About Section Mobile */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .experience-badge {
        bottom: -20px;
        left: -10px;
        padding: 16px 20px;
    }
    
    .badge-number {
        font-size: 36px;
    }
    
    .badge-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-card {
        padding: 16px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .highlight-content h4 {
        font-size: 14px;
    }
    
    .highlight-content p {
        font-size: 13px;
    }
    
    .about-intro .lead {
        font-size: 17px;
    }
    
    .services-grid {
        gap: 8px;
    }
    
    .service-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .about-services h3 {
        font-size: 18px;
    }
}

/* Skills Section Mobile */
@media (max-width: 992px) {
    .skills-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .skill-category {
        padding: 24px;
    }
    
    .category-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .category-header h3 {
        font-size: 18px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .skill-card {
        padding: 16px;
    }
    
    .skill-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .skill-name {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .credly-section {
        margin-top: 40px;
    }
    
    .credly-title {
        font-size: 1.25rem;
    }
    
    .credly-badge-placeholder {
        padding: 20px 30px;
    }
    
    .credly-badge-placeholder i {
        font-size: 36px;
    }
}

/* Experience Section Mobile */
@media (max-width: 768px) {
    .experience {
        padding: 60px 0;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .timeline-marker {
        width: 24px;
    }
    
    .marker-dot {
        width: 24px;
        height: 24px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .timeline-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .timeline-date {
        font-size: 13px;
    }
    
    .timeline-location {
        font-size: 12px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-company {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .timeline-list li {
        font-size: 14px;
        padding-left: 16px;
        margin-bottom: 6px;
    }
    
    .timeline-tech {
        gap: 6px;
    }
    
    .timeline-tech span {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* Projects Section Mobile */
@media (max-width: 992px) {
    .projects-filter {
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .project-card.featured .project-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .project-image {
        height: 180px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-content h3 {
        font-size: 18px;
    }
    
    .project-content p {
        font-size: 13px;
    }
    
    .project-tags {
        gap: 6px;
    }
    
    .project-tags .tag {
        padding: 3px 10px;
        font-size: 11px;
    }
    
    .project-stats {
        gap: 16px;
        font-size: 12px;
    }
    
    .project-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* YouTube Showcase Mobile */
@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .youtube-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 22px;
    }
    
    .youtube-card.featured .play-button {
        width: 60px;
        height: 60px;
    }
    
    .youtube-card.featured .play-button i {
        font-size: 28px;
    }
}

/* AI Capabilities Mobile */
@media (max-width: 768px) {
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-card {
        padding: 24px 20px;
    }
    
    .ai-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .ai-icon {
        width: 60px;
        height: 60px;
    }
    
    .ai-icon i {
        font-size: 24px;
    }
    
    .ai-card h3 {
        font-size: 1.1rem;
    }
    
    .ai-card p {
        font-size: 13px;
    }
    
    .ai-tech-tags span {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* Contact Section Mobile */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info .section-header {
        text-align: center;
    }
    
    .contact-intro {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-methods {
        gap: 12px;
    }
    
    .contact-method {
        padding: 16px;
        gap: 12px;
    }
    
    .method-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .method-label {
        font-size: 12px;
    }
    
    .method-value {
        font-size: 14px;
    }
    
    .platforms {
        flex-direction: column;
        gap: 10px;
    }
    
    .platform-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
    }
    
    .input-icon {
        left: 14px;
        font-size: 14px;
    }
    
    .form-group label {
        left: 44px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-content {
        padding: 24px 20px;
        margin-bottom: 24px;
    }
    
    .quote-icon {
        font-size: 24px;
        top: 16px;
        left: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .testimonial-rating {
        justify-content: center;
        margin-top: 8px;
    }
    
    .testimonials-nav {
        gap: 16px;
        margin-top: 24px;
    }
    
    .nav-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Footer Mobile */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        margin-bottom: 40px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-column li {
        margin-bottom: 8px;
    }
    
    .footer-column a {
        font-size: 14px;
    }
    
    .visitor-stats {
        gap: 16px;
        padding: 20px 0;
    }
    
    .stat-item {
        flex: 1 1 45%;
        justify-content: center;
    }
    
    .stat-item > i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/* Back to Top Mobile */
@media (max-width: 768px) {
    .back-to-top {
        right: 16px;
        bottom: 80px; /* Above chatbot */
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Chatbot Widget Mobile */
@media (max-width: 576px) {
    .chatbot-widget {
        bottom: 12px;
        right: 12px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .chat-notification {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -3px;
        right: -3px;
    }
    
    .chatbot-container {
        width: calc(100vw - 24px);
        max-height: 75vh;
        right: -6px;
        bottom: 65px;
    }
    
    .chatbot-header {
        padding: 12px;
    }
    
    .chatbot-avatar {
        width: 38px;
        height: 38px;
    }
    
    .chatbot-info h4 {
        font-size: 13px;
    }
    
    .chatbot-status {
        font-size: 11px;
    }
    
    .chatbot-messages {
        padding: 12px;
        max-height: 250px;
        gap: 12px;
    }
    
    .message-content {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .chatbot-suggestions {
        padding: 0 12px 10px;
        gap: 6px;
    }
    
    .suggestion-chip {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .chatbot-input-area {
        padding: 12px;
        gap: 8px;
    }
    
    #chatbot-input {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .chatbot-send {
        width: 40px;
        height: 40px;
    }
}

/* Gallery Mobile */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .gallery-overlay i {
        font-size: 24px;
    }
}

/* Section Headers Mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .section-tag {
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
    
    .section-title {
        font-size: clamp(26px, 6vw, 36px);
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
    
    .section-desc {
        font-size: 15px;
    }
}

/* Container Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
}

/* Profile Card Mini Mobile */
@media (max-width: 576px) {
    .profile-card-mini {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        margin: 20px auto 0;
    }
    
    .profile-mini-img {
        width: 50px;
        height: 50px;
    }
    
    .linkedin-badge {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ==========================================
   WHY HIRE ME SECTION
   ========================================== */
.why-hire-me {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-hire-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

/* Audience Tabs */
.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.audience-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.audience-tab:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.audience-tab.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.audience-tab i {
    font-size: 1.1rem;
}

/* Audience Content */
.audience-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.audience-content.active {
    display: block;
}

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

/* Value Grid - For Clients */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.value-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

.value-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-color: var(--accent-primary);
    position: relative;
    overflow: hidden;
}

.value-card.highlight::before {
    content: '⭐ TOP SERVICE';
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent-gradient);
    color: white;
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.value-list li i {
    color: #10b981;
    margin-top: 4px;
}

/* What I Build Grid */
.what-i-build {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

/* Featured Build - More prominent styling at top */
.what-i-build.featured-build {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(236, 72, 153, 0.08) 100%);
    border: 2px solid var(--accent-primary);
    padding: 48px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.what-i-build.featured-build::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.what-i-build.featured-build h3 {
    font-size: 1.75rem;
    margin-bottom: 36px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-i-build.featured-build h3 i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-i-build.featured-build .build-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.what-i-build.featured-build .build-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px) scale(1.02);
}

.what-i-build h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.what-i-build h3 i {
    color: var(--accent-primary);
    margin-right: 10px;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.build-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.build-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.build-item i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.build-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Recruiter Grid */
.recruiter-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 32px;
}

.recruiter-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.recruiter-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.recruiter-header img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent-primary);
}

.recruiter-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.recruiter-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.availability i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.quick-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Key Skills */
.key-skills {
    margin-bottom: 24px;
}

.key-skills h4,
.ideal-roles h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.skill-tag.hot {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
    border-color: #ef4444;
    color: #ef4444;
}

.skill-tag.hot i {
    margin-right: 4px;
}

/* Ideal Roles */
.ideal-roles {
    margin-bottom: 24px;
}

.ideal-roles ul {
    list-style: none;
}

.ideal-roles li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.ideal-roles li i {
    color: #10b981;
}

/* Recruiter Actions */
.recruiter-actions {
    display: flex;
    gap: 12px;
}

.recruiter-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Experience Highlights */
.experience-highlights {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.experience-highlights > h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.experience-highlights > h3 i {
    color: var(--accent-primary);
    margin-right: 10px;
}

.exp-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.exp-item:last-of-type {
    border-bottom: none;
}

.exp-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.exp-company strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.exp-company span {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
}

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

/* Why Consider */
.why-consider {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-primary);
}

.why-consider h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.why-consider ul {
    list-style: none;
}

.why-consider li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.why-consider li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Startup Grid */
.startup-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.startup-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

.startup-card.main {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
    border-color: var(--accent-primary);
}

.startup-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.startup-icon i {
    font-size: 2.5rem;
    color: white;
}

.startup-card.main h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.startup-card.main > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.startup-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 12px;
}

.benefit i {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.benefit strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.benefit span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Startup Services */
.startup-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.startup-card h4 i {
    color: var(--accent-primary);
}

.startup-services {
    list-style: none;
}

.startup-services li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.startup-services li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.startup-services strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.startup-services p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonial Card */
.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-card > p {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hire CTA */
.hire-cta {
    margin-top: 64px;
    padding: 48px;
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.hire-cta .btn-primary {
    background: white;
    color: var(--accent-primary);
}

.hire-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hire-cta .btn-outline {
    border-color: white;
    color: white;
}

.hire-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Responsive - Why Hire Me */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recruiter-grid {
        grid-template-columns: 1fr;
    }
    
    .startup-grid {
        grid-template-columns: 1fr;
    }
    
    .startup-card.main {
        grid-row: auto;
    }
    
    .hire-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-hire-me {
        padding: 60px 0;
    }
    
    .what-i-build.featured-build {
        padding: 28px 20px;
        margin-bottom: 28px;
    }
    
    .what-i-build.featured-build h3 {
        font-size: 1.35rem;
        margin-bottom: 24px;
    }
    
    .audience-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .audience-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .audience-tab i {
        font-size: 1rem;
    }
    
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .build-item {
        padding: 16px 12px;
    }
    
    .build-item i {
        font-size: 1.5rem;
    }
    
    .build-item span {
        font-size: 0.85rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .quick-stat {
        padding: 12px 8px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .startup-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit {
        gap: 10px;
    }
    
    .benefit i {
        width: 36px;
        height: 36px;
    }
    
    .recruiter-actions {
        flex-direction: column;
    }
    
    .recruiter-card,
    .experience-highlights,
    .startup-card {
        padding: 24px 20px;
    }
    
    .recruiter-header {
        flex-direction: column;
        text-align: center;
    }
    
    .recruiter-header img {
        width: 70px;
        height: 70px;
    }
    
    .recruiter-info h3 {
        font-size: 1.1rem;
    }
    
    .value-card {
        padding: 24px 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .value-icon i {
        font-size: 1.25rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-list li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .startup-card.main h3 {
        font-size: 1.4rem;
    }
    
    .startup-card.main > p {
        font-size: 1rem;
    }
    
    .startup-icon {
        width: 60px;
        height: 60px;
    }
    
    .startup-icon i {
        font-size: 1.75rem;
    }
    
    .what-i-build {
        padding: 24px 16px;
    }
    
    .what-i-build h3 {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
    
    .hire-cta {
        padding: 28px 20px;
        margin-top: 48px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .key-skills,
    .ideal-roles {
        margin-bottom: 20px;
    }
    
    .skill-tags {
        gap: 6px;
    }
    
    .skill-tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .experience-highlights > h3 {
        font-size: 1.1rem;
    }
    
    .exp-company strong {
        font-size: 1rem;
    }
    
    .exp-company span {
        font-size: 0.8rem;
    }
    
    .exp-item p {
        font-size: 0.9rem;
    }
    
    .why-consider {
        padding: 20px 16px;
    }
    
    .why-consider h4 {
        font-size: 0.95rem;
    }
    
    .why-consider li {
        font-size: 0.9rem;
        padding-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .build-item {
        padding: 14px 10px;
        gap: 8px;
    }
    
    .build-item i {
        font-size: 1.25rem;
    }
    
    .build-item span {
        font-size: 0.75rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .quick-stat {
        padding: 10px 6px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .value-card.highlight::before {
        font-size: 0.6rem;
        padding: 3px 30px;
        right: -35px;
    }
}
