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

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

:root {
    /* Enhanced Color Palette */
    --primary: #d946ef;
    --secondary: #f43f5e;
    --accent: #0ea5e9;
    --tertiary: #8b5cf6;
    
    /* Gradient System */
    --gradient-hero: linear-gradient(135deg, #f3e8ff 0%, #d946ef 50%, #fce7f3 100%);
    --gradient-primary: linear-gradient(135deg, #d946ef 0%, #f43f5e 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-card: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: rgba(255, 255, 255, 0.9);
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    
    /* Glass Effects */
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-strong: rgba(255, 255, 255, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-colored: 0 25px 50px -12px rgba(217, 70, 239, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Animations */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor */
.cursor {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(217, 70, 239, 0.1);
    backdrop-filter: blur(10px);
}

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.8s ease;
}

.loading-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: logoGlow 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 2s ease-in-out;
}

@keyframes logoGlow {
    0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { opacity: 0.7; text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Enhanced Navigation */
.nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 0.75rem 2rem;
    z-index: 1000;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-lg);
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(20px)) {
    .nav {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .nav.scrolled {
        background: rgba(255, 255, 255, 0.95);
    }
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-color: rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    transition: color 0.3s ease;
}

.nav.scrolled .logo {
    color: var(--text-primary);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.nav.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--glass-strong);
    transform: translateY(-2px);
    color: white;
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
    background: var(--gradient-primary);
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 8rem; /* Ensure clearance from fixed navigation */
}

/* Additional Chrome-specific padding for navigation clearance */
@media screen and (-webkit-min-device-pixel-ratio: 1) {
    .hero {
        padding-top: 10rem;
    }
}

/* MacBook Pro 13-inch specific adjustments */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
    .hero {
        padding-top: 12rem;
    }
}

.hero::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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: patternFloat 25s infinite linear;
}

@keyframes patternFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: slideDown 1s ease 0.5s both;
}

/* Fallback for hero badge glass effect */
@supports not (backdrop-filter: blur(10px)) {
    .hero-badge {
        background: rgba(255, 255, 255, 0.2);
    }
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease 0.7s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    animation: slideUp 1s ease 0.9s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideUp 1s ease 1.1s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-smooth);
}

/* Additional glass effect fallbacks */
@supports not (backdrop-filter: blur(10px)) {
    .stat-item {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .btn-primary {
        background: var(--gradient-primary);
    }
    
    .filter-btn {
        background: rgba(255, 255, 255, 0.2);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    background: var(--glass-strong);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideUp 1s ease 1.3s both;
}

/* Enhanced Floating Profile */
.floating-profile {
    position: relative;
    animation: profileFloat 8s ease-in-out infinite;
}

.profile-card {
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-2xl);
}

.profile-image {
    width: 200px;
    height: 250px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    filter: none !important;
    -webkit-filter: none !important;
}

/* Ensure profile card content stays neutral */
.profile-card .profile-image {
    filter: none !important;
    -webkit-filter: none !important;
}

.profile-name {
    font-family: var(--font-display);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-card .hero-badge {
    margin-bottom: 1rem;
    margin-top: 1rem;
    display: inline-flex;
    font-size: 0.8rem;
}

.profile-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

@keyframes profileFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

/* Enhanced Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--glass-strong);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--glass);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-solid {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-colored);
}

.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), var(--shadow-colored);
}

/* Enhanced CTA Button */
.btn-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl), var(--shadow-colored);
}

.btn-cta::after {
    content: '✨';
    margin-left: 0.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(180deg); }
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-large {
    padding: 8rem 2rem;
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Featured Project */
.featured-project {
    background: var(--gradient-secondary);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    margin-bottom: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.featured-project::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateBackground 30s linear infinite;
}

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

.featured-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-text h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    transition: transform 0.3s var(--ease-smooth);
}

.featured-image:hover {
    transform: scale(1.05);
}

/* Enhanced Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.project-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.project-content {
    padding: 2.5rem;
    position: relative;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-category {
    background: var(--gradient-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.project-year {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.highlight-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.tech-tag.primary {
    background: var(--gradient-primary);
}

.tech-tag.secondary {
    background: var(--gradient-secondary);
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary);
}

.project-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Enhanced Art Gallery */
.art-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.art-gallery-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.art-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-lg);
    opacity: 1;
    transform: scale(1);
}

.art-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.art-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-2xl);
}

.art-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-smooth);
}

.art-item:hover img {
    transform: scale(1.15);
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
}

.art-item:hover .art-overlay {
    transform: translateY(0);
}

.art-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.art-medium {
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.art-description {
    opacity: 0.7;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Art Statistics */
.art-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.art-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease-smooth);
    min-width: 120px;
}

.art-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.art-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.art-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

/* Mobile Responsiveness for New Sections */
.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.art-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-lg);
}

.art-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-2xl);
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.art-item:hover img {
    transform: scale(1.15);
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
}

.art-item:hover .art-overlay {
    transform: translateY(0);
}

.art-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.art-medium {
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

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

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

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    animation: iconFloat 4s ease-in-out infinite;
}

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

.skill-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.about-text {
    color: white;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-cta {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 5rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Timeline Styles */
.timeline-container {
    position: relative;
    padding: 3rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-smooth);
    position: relative;
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    display: none;
}


.timeline-date {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    margin: 0 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.timeline-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.timeline-date:hover::before {
    left: 100%;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
}

.timeline-card {
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

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

.timeline-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.timeline-card.featured {
    background: var(--gradient-secondary);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-card.featured::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    height: 6px;
}

.timeline-card.featured .timeline-title,
.timeline-card.featured .timeline-company {
    color: white;
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconBounce 4s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-5px); }
    50% { transform: translateY(0px); }
    75% { transform: translateY(-3px); }
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.timeline-company {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-company::before {
    content: '🏢';
    font-size: 1rem;
}

.timeline-card.featured .timeline-company::before {
    content: '⭐';
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.timeline-card.featured .timeline-description {
    color: rgba(255, 255, 255, 0.95);
}

.timeline-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.timeline-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.timeline-achievement {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-achievement-icon {
    font-size: 1.5rem;
    animation: achievementGlow 2s ease-in-out infinite alternate;
}

@keyframes achievementGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.3); }
}

.timeline-achievement-text {
    font-weight: 600;
    color: var(--primary);
    flex: 1;
}

.timeline-card.featured .timeline-achievement {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.timeline-card.featured .timeline-achievement-text {
    color: white;
}

/* Impact Grid Styles */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

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

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.impact-card.featured {
    background: var(--gradient-secondary);
    color: white;
}

.impact-card.featured .impact-title,
.impact-card.featured .impact-description {
    color: white;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.impact-organization {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.impact-card.featured .impact-organization {
    color: rgba(255, 255, 255, 0.9);
}

.impact-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.impact-stat {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Research Grid Styles */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.research-card {
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.research-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.research-card.featured {
    background: var(--gradient-secondary);
    color: white;
    grid-column: span 2;
}

.research-card.featured .research-title,
.research-card.featured .research-description {
    color: white;
}

.research-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.research-icon {
    font-size: 2.5rem;
}

.research-category {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.research-year {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.research-card.featured .research-year {
    color: rgba(255, 255, 255, 0.8);
}

.research-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.research-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.research-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.research-card:not(.featured) .highlight-item {
    background: var(--gradient-accent);
    color: white;
    border: none;
}

.highlight-icon {
    font-size: 1rem;
}

.research-applications {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.research-applications h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.research-applications ul {
    list-style: none;
    padding: 0;
}

.research-applications li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.research-applications li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

/* Certifications Styles */
.certifications-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.certifications-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cert-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Awards & Recognition Section Styles */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

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

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.award-card.featured {
    background: var(--gradient-secondary);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.award-card.featured::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    height: 6px;
}

.award-card.featured .award-title,
.award-card.featured .award-organization,
.award-card.featured .award-year,
.award-card.featured .award-description {
    color: white;
}

.award-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    animation: iconFloat 4s ease-in-out infinite;
}

.award-card.featured .award-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.award-content {
    flex: 1;
}

.award-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.award-organization {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.award-year {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.award-card.featured .award-year {
    color: rgba(255, 255, 255, 0.8);
}

.award-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Awards Statistics */
.awards-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.awards-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease-smooth);
    min-width: 120px;
    box-shadow: var(--shadow-md);
}

.awards-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.awards-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.awards-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

/* Mobile Responsiveness for Awards Section */
@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .award-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
@media (max-width: 1024px) {
    .hero-container,
    .featured-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .floating-profile {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        top: 1rem;
        padding: 0.5rem 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 8rem 1rem 2rem;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .floating-profile {
        display: none;
    }

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

    .featured-project {
        padding: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .art-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .section {
        padding: 4rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 9rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .art-gallery {
        grid-template-columns: 1fr;
    }

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

    .project-card,
    .skill-card {
        padding: 1.5rem;
    }
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 1024px) {
    .timeline-container::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row !important;
    }

    .timeline-content {
        max-width: 100%;
    }

    .timeline-date {
        position: absolute;
        left: 0;
        margin: 0;
        transform: translateX(-50%);
    }

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

    .impact-grid,
    .research-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-date {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .impact-card,
    .research-card {
        padding: 1.5rem;
    }

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

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

    .certification-item {
        padding: 1rem;
    }

    .research-highlights {
        flex-direction: column;
    }

    .art-gallery-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .art-filters {
        flex-direction: column;
        align-items: center;
    }

    .art-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .filter-btn {
        min-width: 120px;
        text-align: center;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .awards-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .award-card {
        padding: 1.5rem;
    }

    .award-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .art-gallery-enhanced {
        grid-template-columns: 1fr;
    }

    .art-stats .stat-item {
        padding: 1rem;
        min-width: 100px;
    }

    .art-stats .stat-number {
        font-size: 2rem;
    }
}

/* Hide cursor on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}