/* 
 * ULTRA-PREMIUM LUXURY DESIGN - GENAI SPECIALIST
 * Maximum WOW factor with perfect alignments preserved
 */

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

/* ============================================
   GLOBAL RESET - PRESERVE ALIGNMENT
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, #page-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Reduce section spacing */
.wrapper {
    padding: 3.5em 0 4.5em 0 !important;
}

#header.wrapper {
    padding: 4rem 0 4rem 0 !important;
}

#footer.wrapper {
    padding: 5em 0 3em 0 !important;
}

/* ============================================
   ULTRA-PREMIUM COLOR SYSTEM
   ============================================ */
:root {
    /* Luxury Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-luxury: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-shine: linear-gradient(135deg, #667eea 0%, #4f46e5 20%, #7c3aed 40%, #a855f7 60%, #c084fc 80%, #f5d0fe 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    --gradient-cyber: linear-gradient(135deg, #00f5ff 0%, #667eea 50%, #f093fb 100%);
    
    /* Premium Colors */
    --accent-purple: #667eea;
    --accent-deep: #764ba2;
    --accent-pink: #f093fb;
    --accent-glow: #c084fc;
    --accent-cyber: #00f5ff;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-light: #64748b;
    
    /* Backgrounds */
    --bg-light: #fafbfc;
    --bg-white: #ffffff;
    --bg-dark: #1e293b;
    
    /* Borders */
    --border-light: #e2e8f0;
    --border-glow: rgba(102, 126, 234, 0.4);
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 12px rgba(102, 126, 234, 0.1);
    --shadow-md: 0 8px 40px rgba(102, 126, 234, 0.15);
    --shadow-lg: 0 20px 70px rgba(102, 126, 234, 0.2);
    --shadow-xl: 0 30px 100px rgba(102, 126, 234, 0.25);
    --shadow-glow: 0 0 60px rgba(102, 126, 234, 0.5);
    --shadow-glow-pink: 0 0 80px rgba(240, 147, 251, 0.4);
}

/* ============================================
   ULTRA-PREMIUM TYPOGRAPHY
   ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--text-secondary) !important;
    font-size: 16px !important;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #fafbfc 100%);
    position: relative;
}

/* Subtle animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#page-wrapper {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-primary) !important;
    margin: 0 !important;
}

/* ============================================
   CONTAINER SYSTEM - ALIGNMENT PRESERVED
   ============================================ */
.container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 3rem !important;
}

/* ============================================
   ULTRA-PREMIUM HEADER WITH PARTICLES
   ============================================ */
#header {
    background: var(--gradient-luxury) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 12s ease infinite !important;
    padding: 5rem 0 !important;
    margin: 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto !important;
    height: auto !important;
}

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

/* Animated mesh gradient overlay */
#header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

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

/* Shimmer effect */
#header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(60deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(60deg); }
}

#logo {
    text-align: center !important;
    padding: 0 2rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    position: relative;
    z-index: 1;
}

.profile-container {
    margin: 0 auto 2.5rem auto !important;
    text-align: center;
    position: relative;
}

/* Ultra-premium profile with multiple glows */
.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 0 20px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(102, 126, 234, 0.6),
        0 0 120px rgba(240, 147, 251, 0.4),
        0 25px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    margin: 0 auto;
    animation: profileFloat 4s ease-in-out infinite, profileGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes profileFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes profileGlow {
    0%, 100% { 
        box-shadow: 
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 80px rgba(102, 126, 234, 0.6),
            0 0 120px rgba(240, 147, 251, 0.4),
            0 25px 80px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 0 25px rgba(255, 255, 255, 0.15),
            0 0 100px rgba(102, 126, 234, 0.8),
            0 0 150px rgba(240, 147, 251, 0.6),
            0 30px 90px rgba(0, 0, 0, 0.4);
    }
}

.profile-image:hover {
    transform: translateY(-10px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 0 0 30px rgba(255, 255, 255, 0.2),
        0 0 120px rgba(102, 126, 234, 0.9),
        0 0 180px rgba(240, 147, 251, 0.7),
        0 35px 100px rgba(0, 0, 0, 0.5);
}

/* Ultra-premium text with multiple effects */
#logo h1 {
    color: #ffffff !important;
    font-size: 3.25rem !important;
    font-weight: 900 !important;
    margin: 0.5rem 0 !important;
    text-align: center !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 4px 25px rgba(102, 126, 234, 0.4),
        0 0 60px rgba(240, 147, 251, 0.3);
    animation: fadeInUp 0.8s ease-out, textGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.2),
            0 4px 25px rgba(102, 126, 234, 0.4),
            0 0 60px rgba(240, 147, 251, 0.3);
    }
    50% { 
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.3),
            0 4px 30px rgba(102, 126, 234, 0.6),
            0 0 80px rgba(240, 147, 251, 0.5);
    }
}

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

#logo p {
    color: rgba(255, 255, 255, 0.98) !important;
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    margin: 0.75rem auto !important;
    text-align: center !important;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

#logo p.tagline {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    margin: 1rem auto !important;
    max-width: 750px;
    text-align: center !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    line-height: 1.6;
}

/* ============================================
   ULTRA-PREMIUM NAVIGATION WITH GLASS EFFECT
   ============================================ */
#nav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
    box-shadow: 
        0 8px 40px rgba(102, 126, 234, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(102, 126, 234, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid rgba(102, 126, 234, 0.15);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60px !important;
}

/* Desktop navigation - show by default */
@media screen and (min-width: 737px) {
    #nav {
        display: flex !important;
    }
}

#nav > ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    height: 100%;
}

#nav ul li {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    position: relative;
}

#nav ul li a {
    color: var(--text-secondary) !important;
    font-weight: 700 !important;
    font-size: 0.9375rem !important;
    padding: 1.3rem 2rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    background: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    height: 100% !important;
    line-height: 1 !important;
}

/* Premium gradient underline */
#nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gradient-shine);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px 4px 0 0;
}

/* Multi-layer glow effect */
#nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gradient-shine);
    transform: translateX(-50%);
    filter: blur(12px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav ul li a:hover,
#nav ul li.current a {
    color: var(--accent-purple) !important;
    transform: translateY(0) !important;
}

#nav ul li a:hover::before,
#nav ul li.current a::before {
    width: 80%;
}

#nav ul li a:hover::after,
#nav ul li.current a::after {
    width: 100%;
    opacity: 0.8;
}

/* ============================================
   SECTION WRAPPER - PREMIUM SPACING
   ============================================ */
.wrapper {
    padding: 6rem 0 !important;
    margin: 0 !important;
    position: relative;
}

.wrapper.style1 {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%) !important;
}

.wrapper.style2 {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #fafbfc 100%) !important;
}

.wrapper.style3 {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%) !important;
}

/* Subtle decorative line */
.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    opacity: 0.3;
}

/* ============================================
   ULTRA-PREMIUM SECTION TITLES
   ============================================ */
.title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3em !important;
    color: var(--accent-purple) !important;
    margin: 0 auto 4rem auto !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    animation: fadeInUp 0.6s ease-out;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--accent-purple) !important;
    background-clip: unset !important;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2));
}

/* Premium decorative line with glow */
.title::after {
    content: '';
    display: block !important;
    width: 80px;
    height: 4px;
    background: var(--gradient-shine);
    margin: 1.25rem auto 0 auto;
    border-radius: 4px;
    box-shadow: 
        0 0 20px rgba(102, 126, 234, 0.5),
        0 0 40px rgba(240, 147, 251, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(102, 126, 234, 0.5),
            0 0 40px rgba(240, 147, 251, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(102, 126, 234, 0.7),
            0 0 60px rgba(240, 147, 251, 0.5);
    }
}

.title::before {
    display: none !important;
}

/* ============================================
   ABOUT SECTION - PREMIUM DESIGN
   ============================================ */
#intro .container {
    text-align: center;
}

#intro .style1 {
    font-size: 1.5rem !important;
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
    background: var(--gradient-primary);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

#intro .style2 {
    font-size: 2.25rem !important;
    color: var(--text-primary) !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    margin: 0 auto 4rem auto !important;
    text-align: center !important;
    max-width: 1100px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

#intro .style2 strong {
    background: var(--gradient-shine);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900 !important;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto !important;
    text-align: left;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.about-content p {
    font-size: 1.125rem !important;
    line-height: 1.9 !important;
    color: var(--text-secondary) !important;
    margin-bottom: 1.75rem !important;
}

.about-content strong {
    color: var(--text-primary) !important;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Ultra-premium education card */
.education {
    margin-top: 3.5rem;
    padding: 3rem 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    border: 2px solid var(--border-light);
    box-shadow: 
        var(--shadow-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated gradient border */
.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* Decorative corner accent */
.education::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.education:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--border-glow);
}

.education h3 {
    color: var(--text-primary) !important;
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
    font-weight: 900 !important;
    position: relative;
    z-index: 1;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background-clip: unset !important;
}

.education ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

.education ul li {
    padding: 1.5rem 0 1.5rem 3rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.9 !important;
    font-size: 1.125rem !important;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.education ul li:hover {
    color: var(--text-primary) !important;
    padding-left: 3.5rem !important;
    border-bottom-color: var(--border-glow);
}

/* Premium icon */
.education ul li::before {
    content: '🎓';
    position: absolute;
    left: 0;
    top: 1.5rem;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.education ul li:last-child {
    border-bottom: none;
}

.education ul li strong {
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    font-size: 1.1875rem !important;
}

/* ============================================
   ULTRA-PREMIUM EXPERIENCE CARDS - READABLE
   ============================================ */

/* Vertical Career Timeline */
.vertical-career-timeline {
    margin: 2.5rem 0;
    padding-left: 0;
}

.career-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.career-step:last-child {
    margin-bottom: 0;
}

/* Step Marker - Dot and Line */
.step-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--accent-purple);
    box-shadow: 
        0 2px 12px rgba(102, 126, 234, 0.4),
        0 0 0 0 rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.career-step:first-child .step-dot {
    border-color: var(--accent-pink);
    animation: dotPulse 2s ease-in-out infinite;
}

.career-step:nth-child(2) .step-dot {
    border-color: var(--accent-purple);
}

.career-step:last-child .step-dot {
    border-color: var(--accent-blue);
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 
            0 2px 12px rgba(240, 147, 251, 0.4),
            0 0 0 0 rgba(240, 147, 251, 0.5);
    }
    50% {
        box-shadow: 
            0 2px 12px rgba(240, 147, 251, 0.4),
            0 0 0 12px rgba(240, 147, 251, 0);
    }
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    opacity: 0.3;
    margin-top: 0.5rem;
    min-height: 40px;
}

.career-step:last-child .step-line {
    display: none;
}

/* Step Details */
.step-details {
    flex: 1;
    padding-bottom: 1rem;
}

.step-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.step-title h4 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
}

.step-period {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(240, 147, 251, 0.08) 100%);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    white-space: nowrap;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.75rem;
    position: relative;
}

.step-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--accent-purple);
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    width: auto !important;
    height: auto !important;
    top: auto !important;
}

.step-details ul li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 736px) {
    .career-step {
        gap: 1.25rem;
    }
    
    .step-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .step-line {
        width: 2px;
        min-height: 40px;
    }
    
    .step-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .step-title h4 {
        font-size: 1.125rem;
    }
    
    .step-period {
        font-size: 0.8125rem;
        padding: 0.35rem 0.875rem;
    }
    
    .step-details ul li {
        font-size: 0.9375rem;
        padding-left: 1.5rem;
    }
}

/* ============================================
   ULTRA-PREMIUM EXPERIENCE CARDS - READABLE
   ============================================ */
.experience-item {
    background: #ffffff !important;
    padding: 3.5rem !important;
    margin-bottom: 3rem !important;
    border-radius: 28px !important;
    border: 2px solid var(--border-light) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle top gradient accent only */
.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.experience-item:hover {
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    transform: translateY(-10px) scale(1.01) !important;
    border-color: var(--border-glow) !important;
}

.experience-item:hover::before {
    opacity: 1;
    height: 5px;
}

/* Subtle decorative corner glow - more transparent */
.experience-item::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.04) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.experience-item:hover::after {
    opacity: 1;
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem !important;
    gap: 1rem;
    flex-wrap: wrap;
}

.company-header h2 {
    font-size: 1.625rem !important;
    color: var(--text-primary) !important;
    font-weight: 900 !important;
    margin: 0 !important;
    flex: 1;
}

/* Ultra-premium animated badge */
.period {
    font-size: 0.9375rem !important;
    color: white !important;
    font-weight: 800 !important;
    white-space: nowrap;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.4),
        0 0 40px rgba(240, 147, 251, 0.3);
    animation: badgeGlow 2.5s ease-in-out infinite, gradientShift 6s ease infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 
            0 6px 20px rgba(102, 126, 234, 0.4),
            0 0 40px rgba(240, 147, 251, 0.3);
    }
    50% { 
        box-shadow: 
            0 8px 30px rgba(102, 126, 234, 0.6),
            0 0 60px rgba(240, 147, 251, 0.5);
    }
}

.experience-item h3 {
    font-size: 1.1875rem !important;
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.experience-section {
    margin: 2rem 0 !important;
}

.experience-section h4 {
    font-size: 1.125rem !important;
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    margin-bottom: 1.25rem !important;
}

.experience-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.experience-section ul li {
    padding: 0.75rem 0 0.75rem 2.25rem !important;
    line-height: 1.9 !important;
    color: var(--text-secondary) !important;
    position: relative;
    font-size: 1.0625rem !important;
    transition: all 0.3s ease;
}

.experience-section ul li:hover {
    color: var(--text-primary) !important;
    transform: translateX(6px);
}

/* Premium animated bullet */
.experience-section ul li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1.35rem;
    width: 10px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(102, 126, 234, 0.6),
        0 0 25px rgba(240, 147, 251, 0.4);
    animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 15px rgba(102, 126, 234, 0.6),
            0 0 25px rgba(240, 147, 251, 0.4);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 
            0 0 20px rgba(102, 126, 234, 0.8),
            0 0 35px rgba(240, 147, 251, 0.6);
    }
}

/* Ultra-premium impact box - Fixed styling */
.impact {
    margin-top: 2.5rem !important;
    padding: 2rem 2.5rem !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(240, 147, 251, 0.06) 100%) !important;
    border-radius: 16px !important;
    border-left: 5px solid var(--accent-purple) !important;
    font-size: 1.125rem !important;
    position: relative;
    overflow: hidden;
    color: var(--text-secondary) !important;
    box-shadow: 
        0 2px 8px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.impact::before {
    display: none !important;
}

.impact strong {
    color: var(--text-primary) !important;
    font-weight: 900 !important;
}

/* ============================================
   ULTRA-PREMIUM IMPACT HIGHLIGHTS
   ============================================ */
#highlights .container {
    max-width: 1400px !important;
}

#highlights .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    margin: -1rem !important;
}

#highlights .row > * {
    padding: 1rem !important;
}

.highlight {
    text-align: center;
    padding: 3.5rem 3rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%) !important;
    border-radius: 28px !important;
    border: 2px solid var(--border-light) !important;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    height: 100%;
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay animation */
.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-shine);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 28px;
}

.highlight:hover {
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    border-color: transparent !important;
    transform: translateY(-16px) scale(1.03) !important;
}

.highlight:hover::before {
    opacity: 0.05;
}

/* Ultra-premium icon with multiple glows */
.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 
        0 8px 30px rgba(102, 126, 234, 0.3),
        0 0 60px rgba(240, 147, 251, 0.2);
    animation: gradientShift 8s ease infinite, iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Rotating glow ring */
.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: rotate 4s linear infinite, gradientShift 8s ease infinite;
    filter: blur(15px);
}

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

.highlight:hover .icon-wrapper {
    transform: scale(1.25) rotate(10deg);
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.5),
        0 0 80px rgba(240, 147, 251, 0.4);
}

.highlight:hover .icon-wrapper::before {
    opacity: 1;
}

.icon-wrapper .icon {
    font-size: 2.5rem !important;
    color: white !important;
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.highlight:hover .icon-wrapper .icon {
    transform: scale(1.15);
}

.highlight h3 {
    font-size: 1.375rem !important;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem !important;
    font-weight: 900 !important;
    position: relative;
    z-index: 1;
}

.highlight p {
    color: var(--text-secondary) !important;
    line-height: 1.9 !important;
    font-size: 1.0625rem !important;
    position: relative;
    z-index: 1;
}

/* ============================================
   EXPERTISE SECTION - ULTRA-PREMIUM
   ============================================ */
#expertise .feature-list {
    max-width: 100% !important;
    margin: 0 !important;
    top: 0 !important;
}

#expertise .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    margin: -1rem !important;
}

#expertise .row > * {
    padding: 1rem !important;
}

#expertise .feature-list section {
    padding: 3rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%) !important;
    border-radius: 24px !important;
    border: 2px solid var(--border-light) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    border-top: 2px solid var(--border-light) !important;
    padding-left: 3rem !important;
    position: relative;
    overflow: hidden;
}

/* Animated left border */
#expertise .feature-list section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 6s ease infinite;
}

#expertise .feature-list section:hover {
    box-shadow: 
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    border-color: var(--border-glow) !important;
    transform: translateY(-6px) translateX(6px) !important;
}

#expertise .feature-list section:hover::before {
    height: 100%;
}

#expertise h3 {
    font-size: 1.1875rem !important;
    color: var(--text-primary) !important;
    margin: 0 0 1.5rem 0 !important;
    font-weight: 900 !important;
}

#expertise h3.icon::before {
    color: var(--accent-purple) !important;
    margin-right: 1.25rem !important;
    font-size: 1.75rem !important;
    display: inline !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--accent-purple) !important;
    background-clip: unset !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 2px 6px rgba(102, 126, 234, 0.3));
}

#expertise p {
    color: var(--text-secondary) !important;
    line-height: 1.9 !important;
    font-size: 1.0625rem !important;
}

/* ============================================
   TECHNOLOGY STACK - ULTRA-PREMIUM
   ============================================ */
#techstack .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 3rem !important;
}

#techstack .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    margin: -1.5rem !important;
}

#techstack .row > * {
    padding: 1.5rem !important;
}

#techstack .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.tech-category {
    margin-bottom: 2rem !important;
    padding: 3rem 3rem 2.5rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    border: 2px solid var(--border-light);
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    position: relative;
    overflow: visible;
}

/* Animated top gradient */
.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-shine);
    background-size: 200% 200%;
    border-radius: 24px 24px 0 0;
    animation: gradientShift 8s ease infinite;
}

.tech-category:hover {
    box-shadow: 
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.tech-category h3 {
    font-size: 1.25rem !important;
    color: var(--text-primary) !important;
    margin: 0 0 2rem 0 !important;
    font-weight: 900 !important;
    padding: 0 0 1.25rem 0 !important;
    border-bottom: 2px solid var(--border-light) !important;
    text-align: left !important;
    display: block !important;
    position: relative;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background-clip: unset !important;
    line-height: 1.3 !important;
}

.tech-category h3::before {
    display: none !important;
}

.tech-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.tech-list li {
    padding: 1rem 0 !important;
    color: var(--text-secondary) !important;
    line-height: 1.8 !important;
    font-size: 1.0625rem !important;
    text-align: left !important;
    transition: all 0.3s ease;
    border-left: none !important;
    background: none !important;
    border-radius: 0 !important;
    position: relative;
    margin: 0 !important;
    display: block !important;
}

.tech-list li:hover {
    color: var(--text-primary) !important;
    transform: translateX(6px);
    box-shadow: none !important;
}

.tech-list li strong {
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    font-size: 1.0625rem !important;
    display: inline !important;
    min-width: auto !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ============================================
   ULTRA-PREMIUM FOOTER
   ============================================ */
#footer {
    background: var(--gradient-luxury) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 15s ease infinite !important;
    color: rgba(255, 255, 255, 0.98) !important;
    padding: 7rem 0 3rem 0 !important;
    position: relative;
    overflow: hidden;
}

/* Animated mesh background */
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* Shimmer overlay */
#footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 70%
    );
    animation: shimmer 5s infinite;
}

#footer .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 3rem !important;
    position: relative;
    z-index: 1;
}

#footer .title {
    color: white !important;
    text-align: center !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

#footer .title::after {
    background: white;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.4);
}

#footer header.style1 {
    padding: 0 0 4rem 0 !important;
    margin: 0 0 4rem 0 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    text-align: center !important;
}

#footer header.style1 h2 {
    color: white !important;
    font-size: 2.75rem !important;
    font-weight: 900 !important;
    margin: 0 0 1.5rem 0 !important;
    text-align: center !important;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
}

#footer header.style1 p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1875rem !important;
    line-height: 1.8 !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
}

/* Premium Let's Connect Button */
#footer .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: white !important;
    color: var(--accent-purple) !important;
    padding: 1.25rem 3rem !important;
    border-radius: 50px !important;
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    position: relative;
    margin-top: 1rem;
}

#footer .button:hover {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

#footer .button .icon {
    font-size: 1.25rem;
}

/* Social Icons Styling */
.social-links {
    text-align: left !important;
}

.social-links h3 {
    color: white !important;
    font-size: 1.125rem !important;
    font-weight: 900 !important;
    margin-bottom: 1.5rem !important;
}

.social-icons {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
}

.social-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 1.75rem !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: visible !important;
}

.social-icons a::before {
    font-size: 1.75rem !important;
    color: white !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.4s ease !important;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-6px) scale(1.15) rotate(5deg) !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 255, 255, 0.4) !important;
    border-color: white !important;
}

.social-icons a:hover::after {
    opacity: 1;
}

.social-icons a:hover::before {
    color: var(--accent-purple) !important;
}

.social-icons a .label {
    display: none !important;
}

#footer h3 {
    color: white !important;
    font-size: 1.125rem !important;
    font-weight: 900 !important;
    margin-bottom: 1.25rem !important;
}

#footer h3.icon::before {
    color: white !important;
    margin-right: 0.875rem !important;
    display: inline !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

#footer p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.0625rem !important;
    line-height: 1.8 !important;
}

#footer a {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative;
}

#footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transition: width 0.3s ease;
}

#footer a:hover {
    color: white !important;
    transform: translateX(4px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

#footer a:hover::after {
    width: 100%;
}

#footer .feature-list {
    max-width: 100% !important;
    top: 0 !important;
    margin: 0 !important;
}

#footer .feature-list section {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 0 !important;
    padding-left: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#footer .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: -1rem !important;
}

#footer .row > * {
    padding: 1rem !important;
}

#copyright {
    margin-top: 4.5rem !important;
    padding-top: 3rem !important;
    border-top: 2px solid rgba(255, 255, 255, 0.2) !important;
    text-align: center !important;
}

#copyright ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block !important;
    text-align: center !important;
}

#copyright li {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9375rem !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* ============================================
   ROW/GRID SYSTEM - ALIGNMENT PRESERVED
   ============================================ */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: -1rem !important;
}

.row > * {
    padding: 1rem !important;
}

.row.aln-center {
    justify-content: center !important;
}

/* ============================================
   ULTRA-PREMIUM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-shine);
    background-size: 200% 200%;
    border-radius: 7px;
    border: 2px solid #fafbfc;
    animation: gradientShift 8s ease infinite;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-luxury);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* ============================================
   MOBILE NAVIGATION FIX - USE TEMPLATE'S NAV
   ============================================ */

/* On mobile, hide desktop nav and use template's mobile nav */
@media screen and (max-width: 736px) {
    /* Hide desktop navigation on mobile */
    #nav {
        display: none !important;
    }
    
    /* Style the mobile title bar */
    #titleBar {
        background: var(--gradient-luxury) !important;
        background-size: 200% 200% !important;
        animation: gradientShift 12s ease infinite !important;
        height: 44px !important;
        line-height: 44px !important;
    }
    
    #titleBar .title {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
    }
    
    /* Fix hamburger icon - make it visible and clickable */
    #titleBar .toggle {
        width: 50px !important;
        height: 44px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        display: block !important;
        z-index: 1 !important;
        opacity: 1 !important;
    }
    
    /* Create visible hamburger lines */
    #titleBar .toggle:before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        margin-top: -1px !important;
        margin-left: -10px !important;
        width: 20px !important;
        height: 2px !important;
        background: white !important;
        border-radius: 2px !important;
        box-shadow: 0 -6px 0 0 white, 0 6px 0 0 white !important;
        transition: all 0.3s ease !important;
    }
    
    #titleBar .toggle:hover:before {
        background: rgba(255, 255, 255, 0.8) !important;
        box-shadow: 0 -6px 0 0 rgba(255, 255, 255, 0.8), 0 6px 0 0 rgba(255, 255, 255, 0.8) !important;
    }
    
    #titleBar .toggle:active:before {
        background: rgba(255, 255, 255, 0.6) !important;
        box-shadow: 0 -6px 0 0 rgba(255, 255, 255, 0.6), 0 6px 0 0 rgba(255, 255, 255, 0.6) !important;
    }
    
    /* Style the mobile nav panel */
    #navPanel {
        background: var(--gradient-luxury) !important;
        background-size: 200% 200% !important;
    }
    
    #navPanel .link {
        color: white !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    #navPanel .link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        padding-left: 2rem !important;
    }
    
    #navPanel .link:first-child {
        border-top: none !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SUPER MOBILE OPTIMIZED
   ============================================ */

/* Extra Large Screens */
@media screen and (max-width: 1600px) {
    .container {
        max-width: 1200px !important;
    }
}

/* Large Tablets and Small Desktops */
@media screen and (max-width: 1280px) {
    .container {
        max-width: 1100px !important;
        padding: 0 2.5rem !important;
    }
    
    #logo h1 {
        font-size: 3rem !important;
    }
    
    #logo p {
        font-size: 1.25rem !important;
    }
    
    #logo p.tagline {
        font-size: 1.0625rem !important;
    }
}

/* Tablets */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 100% !important;
        padding: 0 2rem !important;
    }
    
    .wrapper {
        padding: 4.5rem 0 !important;
    }
    
    #header {
        padding: 3.5rem 0 !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    #logo h1 {
        font-size: 2.75rem !important;
    }
    
    .profile-image {
        width: 160px !important;
        height: 160px !important;
    }
    
    #techstack .col-6,
    #footer .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .experience-item {
        padding: 3rem 2.5rem !important;
    }
    
    .company-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .period {
        align-self: flex-start;
    }
    
    .highlight {
        padding: 3rem 2.5rem !important;
    }
    
    #highlights .col-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    #expertise .col-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    /* Center all cards */
    #highlights .row,
    #expertise .row,
    #techstack .row {
        justify-content: center !important;
    }
}

/* Small Tablets and Large Phones (Landscape) */
@media screen and (max-width: 840px) {
    .container {
        padding: 0 1.75rem !important;
    }
    
    .wrapper {
        padding: 4rem 0 !important;
    }
    
    #header {
        padding: 3rem 0 !important;
    }
    
    #logo h1 {
        font-size: 2.5rem !important;
    }
    
    #logo p {
        font-size: 1.1875rem !important;
    }
    
    #logo p.tagline {
        font-size: 1rem !important;
        line-height: 1.7;
    }
    
    .profile-image {
        width: 150px !important;
        height: 150px !important;
    }
    
    /* Navigation - Horizontal scroll for small tablets */
    #nav {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    #nav > ul {
        min-width: min-content;
        padding: 0 1rem;
    }
    
    #nav ul li a {
        padding: 1.2rem 1.5rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap;
    }
    
    .experience-item {
        padding: 2.5rem 2rem !important;
    }
    
    .company-header h2 {
        font-size: 1.5rem !important;
    }
    
    .experience-section h4 {
        font-size: 1.0625rem !important;
    }
    
    #intro .style2 {
        font-size: 1.875rem !important;
    }
    
    .education {
        padding: 2.5rem 2.5rem !important;
    }
    
    .tech-category {
        padding: 2.5rem 2.5rem 2rem 2.5rem !important;
    }
    
    #highlights .col-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    #expertise .col-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    #footer header.style1 h2 {
        font-size: 2.25rem !important;
    }
}

/* Mobile Phones (Portrait and Landscape) */
@media screen and (max-width: 736px) {
    body {
        font-size: 15px !important;
    }
    
    .container {
        padding: 0 1.5rem !important;
    }
    
    .wrapper {
        padding: 3.5rem 0 !important;
    }
    
    #header {
        padding: 2.5rem 0 !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    #logo {
        padding: 0 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #logo h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    #logo p {
        font-size: 1.0625rem !important;
        line-height: 1.5 !important;
    }
    
    #logo p.tagline {
        font-size: 0.9375rem !important;
        line-height: 1.8 !important;
    }
    
    .profile-image {
        width: 130px !important;
        height: 130px !important;
        border-width: 4px !important;
    }
    
    .profile-container {
        margin-bottom: 2rem !important;
    }
    
    /* All cards full width and centered on mobile */
    .row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .row {
        margin: -0.75rem !important;
        justify-content: center !important;
    }
    
    .row > * {
        padding: 0.75rem !important;
    }
    
    /* Ensure all card sections are centered */
    #highlights .row,
    #expertise .row,
    #techstack .row,
    #experience .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Cards should be full width but centered */
    .highlight,
    #expertise .feature-list section,
    .tech-category,
    .experience-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Improved Mobile Navigation */
    #nav {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    #nav > ul {
        min-width: min-content;
        padding: 0 0.75rem;
        justify-content: flex-start !important;
    }
    
    #nav ul li a {
        padding: 1.1rem 1.25rem !important;
        font-size: 0.8125rem !important;
        white-space: nowrap;
    }
    
    /* Hide scrollbar but keep functionality */
    #nav::-webkit-scrollbar {
        height: 3px;
    }
    
    #nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }
    
    #nav::-webkit-scrollbar-thumb {
        background: var(--accent-purple);
        border-radius: 3px;
    }
    
    .title {
        font-size: 0.875rem !important;
        letter-spacing: 0.25em !important;
        margin-bottom: 3rem !important;
    }
    
    .title::after {
        width: 60px !important;
        height: 3px !important;
        margin-top: 1rem !important;
    }
    
    /* About Section */
    #intro .style1 {
        font-size: 1.25rem !important;
    }
    
    #intro .style2 {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        margin-bottom: 3rem !important;
    }
    
    .about-content p {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .education {
        padding: 2rem 2rem !important;
        margin-top: 3rem !important;
    }
    
    .education h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .education ul li {
        padding: 1.25rem 0 1.25rem 2.5rem !important;
        font-size: 1rem !important;
    }
    
    .education ul li::before {
        font-size: 1.5rem !important;
    }
    
    .education ul li strong {
        font-size: 1.0625rem !important;
    }
    
    /* Experience Cards */
    .experience-item {
        padding: 2rem 1.5rem !important;
        margin-bottom: 2rem !important;
        border-radius: 20px !important;
    }
    
    .company-header {
        flex-direction: column;
        align-items: flex-start !important;
        margin-bottom: 1rem !important;
        gap: 0.75rem !important;
    }
    
    .company-header h2 {
        font-size: 1.375rem !important;
        line-height: 1.3 !important;
    }
    
    .period {
        font-size: 0.8125rem !important;
        padding: 0.6rem 1.25rem !important;
        align-self: flex-start;
    }
    
    .experience-item h3 {
        font-size: 1.0625rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .experience-section {
        margin: 1.5rem 0 !important;
    }
    
    .experience-section h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .experience-section ul li {
        padding: 0.625rem 0 0.625rem 2rem !important;
        font-size: 0.9375rem !important;
        line-height: 1.7 !important;
    }
    
    .experience-section ul li::before {
        width: 8px !important;
        height: 8px !important;
        top: 1.15rem !important;
        left: 0.5rem !important;
    }
    
    .impact {
        margin-top: 2rem !important;
        padding: 1.5rem 1.75rem !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        border-left-width: 4px !important;
    }
    
    /* Highlights Section */
    .highlight {
        padding: 2.5rem 2rem !important;
        border-radius: 20px !important;
        margin-bottom: 1.5rem;
    }
    
    .icon-wrapper {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 2rem !important;
    }
    
    .icon-wrapper .icon {
        font-size: 2rem !important;
    }
    
    .highlight h3 {
        font-size: 1.1875rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .highlight p {
        font-size: 0.9375rem !important;
        line-height: 1.8 !important;
    }
    
    /* Expertise Section */
    #expertise .feature-list section {
        padding: 2.5rem 2rem !important;
        border-radius: 20px !important;
        padding-left: 2rem !important;
        margin-bottom: 1.5rem;
    }
    
    #expertise h3 {
        font-size: 1.0625rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    #expertise h3.icon::before {
        font-size: 1.5rem !important;
        margin-right: 1rem !important;
    }
    
    #expertise p {
        font-size: 0.9375rem !important;
        line-height: 1.8 !important;
    }
    
    /* Technology Stack */
    .tech-category {
        padding: 2.5rem 2rem 2rem 2rem !important;
        border-radius: 20px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .tech-category h3 {
        font-size: 1.125rem !important;
        margin-bottom: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
    
    .tech-list li {
        padding: 0.875rem 0 !important;
        font-size: 0.9375rem !important;
    }
    
    .tech-list li strong {
        font-size: 0.9375rem !important;
    }
    
    /* Footer */
    #footer {
        padding: 5rem 0 2.5rem 0 !important;
    }
    
    #footer header.style1 {
        padding: 0 0 3rem 0 !important;
        margin: 0 0 3rem 0 !important;
    }
    
    #footer header.style1 h2 {
        font-size: 1.875rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.25rem !important;
    }
    
    #footer header.style1 p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 2rem !important;
    }
    
    #footer .button {
        padding: 1.125rem 2.5rem !important;
        font-size: 1rem !important;
    }
    
    #footer h3 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    #footer p {
        font-size: 0.9375rem !important;
        line-height: 1.7 !important;
    }
    
    .social-icons {
        gap: 1.25rem !important;
    }
    
    .social-icons a {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.5rem !important;
    }
    
    .social-icons a::before {
        font-size: 1.5rem !important;
    }
    
    #copyright {
        margin-top: 3.5rem !important;
        padding-top: 2.5rem !important;
    }
    
    #copyright li {
        font-size: 0.875rem !important;
    }
}

/* Extra Small Mobile Phones */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px !important;
    }
    
    .container {
        padding: 0 1.25rem !important;
    }
    
    .wrapper {
        padding: 3rem 0 !important;
    }
    
    #header {
        padding: 2rem 0 !important;
    }
    
    #logo {
        padding: 0 1.25rem !important;
    }
    
    #logo h1 {
        font-size: 1.75rem !important;
    }
    
    #logo p {
        font-size: 0.9375rem !important;
    }
    
    #logo p.tagline {
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
    }
    
    .profile-image {
        width: 110px !important;
        height: 110px !important;
        border-width: 3px !important;
    }
    
    .profile-container {
        margin-bottom: 1.75rem !important;
    }
    
    #nav ul li a {
        padding: 1rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    .title {
        font-size: 0.8125rem !important;
        letter-spacing: 0.2em !important;
        margin-bottom: 2.5rem !important;
    }
    
    .title::after {
        width: 50px !important;
        margin-top: 0.875rem !important;
    }
    
    #intro .style1 {
        font-size: 1.125rem !important;
    }
    
    #intro .style2 {
        font-size: 1.375rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .about-content p {
        font-size: 0.9375rem !important;
    }
    
    .education {
        padding: 1.75rem 1.5rem !important;
        border-radius: 18px !important;
    }
    
    .education h3 {
        font-size: 1.125rem !important;
    }
    
    .education ul li {
        padding: 1.125rem 0 1.125rem 2.25rem !important;
        font-size: 0.9375rem !important;
    }
    
    .education ul li::before {
        font-size: 1.375rem !important;
    }
    
    .experience-item {
        padding: 1.75rem 1.25rem !important;
        margin-bottom: 1.75rem !important;
        border-radius: 18px !important;
    }
    
    .company-header h2 {
        font-size: 1.25rem !important;
    }
    
    .period {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .experience-item h3 {
        font-size: 1rem !important;
    }
    
    .experience-section h4 {
        font-size: 0.9375rem !important;
    }
    
    .experience-section ul li {
        font-size: 0.875rem !important;
        padding: 0.5rem 0 0.5rem 1.75rem !important;
    }
    
    .experience-section ul li::before {
        width: 7px !important;
        height: 7px !important;
        left: 0.375rem !important;
    }
    
    .impact {
        padding: 1.25rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
    
    .highlight {
        padding: 2.25rem 1.75rem !important;
        border-radius: 18px !important;
    }
    
    .icon-wrapper {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 1.75rem !important;
    }
    
    .icon-wrapper .icon {
        font-size: 1.75rem !important;
    }
    
    .highlight h3 {
        font-size: 1.0625rem !important;
    }
    
    .highlight p {
        font-size: 0.875rem !important;
    }
    
    #expertise .feature-list section {
        padding: 2.25rem 1.75rem !important;
        padding-left: 1.75rem !important;
        border-radius: 18px !important;
    }
    
    #expertise h3 {
        font-size: 1rem !important;
    }
    
    #expertise h3.icon::before {
        font-size: 1.375rem !important;
        margin-right: 0.875rem !important;
    }
    
    #expertise p {
        font-size: 0.875rem !important;
    }
    
    .tech-category {
        padding: 2.25rem 1.75rem 1.75rem 1.75rem !important;
        border-radius: 18px !important;
    }
    
    .tech-category h3 {
        font-size: 1.0625rem !important;
    }
    
    .tech-list li {
        padding: 0.75rem 0 !important;
        font-size: 0.875rem !important;
    }
    
    .tech-list li strong {
        font-size: 0.875rem !important;
    }
    
    #footer {
        padding: 4rem 0 2rem 0 !important;
    }
    
    #footer header.style1 h2 {
        font-size: 1.625rem !important;
    }
    
    #footer header.style1 p {
        font-size: 0.9375rem !important;
    }
    
    #footer .button {
        padding: 1rem 2.25rem !important;
        font-size: 0.9375rem !important;
    }
    
    #footer h3 {
        font-size: 0.9375rem !important;
    }
    
    #footer p {
        font-size: 0.875rem !important;
    }
    
    .social-icons a {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.375rem !important;
    }
    
    .social-icons a::before {
        font-size: 1.375rem !important;
    }
}

/* Landscape Orientation for Phones */
@media screen and (max-width: 736px) and (orientation: landscape) {
    #header {
        padding: 2rem 0 !important;
    }
    
    .profile-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .profile-container {
        margin-bottom: 1.5rem !important;
    }
    
    #logo h1 {
        font-size: 1.75rem !important;
    }
    
    #logo p {
        font-size: 0.9375rem !important;
    }
    
    #logo p.tagline {
        font-size: 0.8125rem !important;
    }
    
    .wrapper {
        padding: 2.5rem 0 !important;
    }
    
    #intro .style2 {
        font-size: 1.375rem !important;
    }
}

/* Very Small Screens (iPhone SE, etc) */
@media screen and (max-width: 375px) {
    .container {
        padding: 0 1rem !important;
    }
    
    #logo h1 {
        font-size: 1.625rem !important;
    }
    
    #logo p {
        font-size: 0.875rem !important;
    }
    
    #logo p.tagline {
        font-size: 0.8125rem !important;
    }
    
    .profile-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    #nav ul li a {
        padding: 0.875rem 0.875rem !important;
        font-size: 0.75rem !important;
    }
    
    .experience-item {
        padding: 1.5rem 1rem !important;
    }
    
    .education {
        padding: 1.5rem 1.25rem !important;
    }
    
    .highlight,
    #expertise .feature-list section,
    .tech-category {
        padding: 2rem 1.5rem !important;
    }
}

/* ============================================
   SMOOTH SCROLLING & SELECTION
   ============================================ */
html {
    scroll-behavior: smooth !important;
}

::selection {
    background: var(--gradient-primary);
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
   FINAL ALIGNMENT PRESERVATION
   ============================================ */
section {
    position: relative !important;
    margin: 0 !important;
}

article {
    margin: 0 !important;
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0 !important;
}

/* ============================================
   STAGGERED ENTRANCE ANIMATIONS
   ============================================ */
.experience-item,
.highlight,
#expertise .feature-list section,
.tech-category {
    animation: fadeInUp 0.8s ease-out backwards;
}

.experience-item:nth-child(1) { animation-delay: 0.1s; }
.experience-item:nth-child(2) { animation-delay: 0.2s; }
.experience-item:nth-child(3) { animation-delay: 0.3s; }
.experience-item:nth-child(4) { animation-delay: 0.4s; }
.experience-item:nth-child(5) { animation-delay: 0.5s; }
.experience-item:nth-child(6) { animation-delay: 0.6s; }

.highlight:nth-child(1) { animation-delay: 0.1s; }
.highlight:nth-child(2) { animation-delay: 0.2s; }
.highlight:nth-child(3) { animation-delay: 0.3s; }
.highlight:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   MOBILE TOUCH OPTIMIZATION
   ============================================ */

/* Better touch targets for mobile */
@media screen and (max-width: 736px) {
    a, button, input, select, textarea {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }
    
    /* Prevent text selection on buttons */
    .button, #nav a, #navPanel a {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* Prevent horizontal scroll issues */
body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

#page-wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for very wide content */
* {
    max-width: 100%;
}

.container,
.wrapper,
section {
    max-width: 100vw !important;
}

/* ============================================
   RESPONSIVE COL SYSTEM - MOBILE FIRST
   ============================================ */

/* Tablet adjustments */
@media screen and (min-width: 737px) and (max-width: 1024px) {
    .col-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .col-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Small Desktop adjustments */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .col-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}


/* ============================================
   IMPROVED MOBILE TYPOGRAPHY SCALE
   ============================================ */
@media screen and (max-width: 480px) {
    /* Ensure proper line heights for readability */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    p, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Prevent long words from breaking layout */
    .company-header h2,
    .experience-item h3,
    .tech-category h3 {
        word-break: break-word;
    }
}

/* ============================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media screen and (max-width: 736px) {
    /* Reduce animations for better mobile performance */
    .experience-item::after,
    .highlight::before,
    .education::after {
        display: none;
    }
    
    /* Simplify complex shadows on mobile */
    .experience-item:hover,
    .highlight:hover,
    .tech-category:hover {
        box-shadow: 
            0 12px 40px rgba(102, 126, 234, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    }
    
    /* Disable float animations on mobile */
    .profile-image {
        animation: profileGlow 3s ease-in-out infinite !important;
    }
    
    .icon-wrapper {
        animation: gradientShift 8s ease infinite !important;
    }
}

/* ============================================
   LANDSCAPE MODE SPECIFIC FIXES
   ============================================ */
@media screen and (max-height: 500px) and (orientation: landscape) {
    /* Reduce vertical padding in landscape */
    .wrapper {
        padding: 2rem 0 !important;
    }
    
    #header {
        padding: 1.5rem 0 !important;
    }
    
    .profile-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .profile-container {
        margin-bottom: 1rem !important;
    }
    
    #logo h1 {
        font-size: 1.5rem !important;
    }
    
    #logo p {
        font-size: 0.875rem !important;
    }
    
    #logo p.tagline {
        font-size: 0.75rem !important;
    }
    
    .experience-item,
    .highlight,
    #expertise .feature-list section,
    .tech-category {
        padding: 1.5rem !important;
    }
}

/* ============================================
   PRINT STYLES (BONUS)
   ============================================ */
@media print {
    #nav,
    #footer .button,
    .social-icons {
        display: none !important;
    }
    
    .experience-item,
    .highlight,
    #expertise .feature-list section {
        page-break-inside: avoid;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
        animation: none !important;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-purple);
    outline-offset: 3px;
}

/* Better focus for navigation links */
#nav a:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
    background: rgba(102, 126, 234, 0.1);
}

/* Skip to content link (for accessibility) */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-purple);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 700;
}

.skip-to-content:focus {
    top: 0;
}
