/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #cbd5e1;
    background: linear-gradient(-45deg, 
        rgba(0, 0, 0, 0.95), 
        rgba(25, 0, 50, 0.95), 
        rgba(0, 25, 50, 0.95), 
        rgba(25, 50, 0, 0.95), 
        rgba(50, 25, 0, 0.95));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
}

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

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

/* Navigation - Dark Theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5cf6;
    text-decoration: none;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    transition: width 0.3s ease;
}

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

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 20px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.resume-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.resume-btn i {
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Dark Theme */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    color: white;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

/* Availability Status */
.availability-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Hero Name */
.hero-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-name.left-aligned {
    text-align: left;
}

.first-name {
    color: white;
    display: block;
}

.last-name {
    color: #3b82f6;
    display: block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Role */
.hero-role {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #94a3b8;
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.highlight-text {
    color: #3b82f6;
    font-weight: 600;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid #475569;
}

.btn-secondary:hover {
    background: #475569;
    color: white;
    border-color: #64748b;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #64748b;
    border-radius: 12px;
    position: relative;
    animation: float 2s ease-in-out infinite;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: #64748b;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }
}

/* Profile Image Section */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 4px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0f172a;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    border: 4px solid #0f172a;
}

/* Orbit Dots */
.orbit-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: orbit 15s linear infinite;
}

.dot-1 {
    background: #3b82f6;
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.dot-2 {
    background: #8b5cf6;
    top: 50%;
    right: 10%;
    animation-delay: -3.75s;
}

.dot-3 {
    background: #10b981;
    bottom: 10%;
    left: 50%;
    animation-delay: -7.5s;
}

.dot-4 {
    background: #f59e0b;
    top: 50%;
    left: 10%;
    animation-delay: -11.25s;
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.highlight-purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
    min-width: 0; /* Allow cards to shrink */
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-card p {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* About Main Content */
.about-main {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
}

.highlight-ai {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-code {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.skill-tag-main {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Highlight Cards */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 350px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid;
}

.highlight-card:hover {
    transform: translateX(5px);
}

.highlight-card.gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.highlight-card.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.highlight-card.teal {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.highlight-card.pink {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-card.gold .highlight-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.highlight-card.purple .highlight-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.highlight-card.teal .highlight-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
}

.highlight-card.pink .highlight-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #94a3b8;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Artistic Hero Section */
.artistic-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dancer-silhouette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.3) 0%, transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
    filter: blur(1px);
}

.gradient-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.4) 0%,
        rgba(138, 43, 226, 0.5) 25%, 
        rgba(0, 102, 255, 0.4) 50%,
        rgba(50, 205, 50, 0.4) 75%,
        rgba(255, 215, 0, 0.4) 100%);
    opacity: 0.8;
}

.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px currentColor;
}

.particle:nth-child(1) { 
    top: 20%; left: 10%; animation-delay: 0s; 
    background: var(--hot-pink);
    color: var(--hot-pink);
}
.particle:nth-child(2) { 
    top: 60%; left: 20%; animation-delay: 1s; 
    background: var(--electric-blue);
    color: var(--electric-blue);
}
.particle:nth-child(3) { 
    top: 30%; right: 15%; animation-delay: 2s; 
    background: var(--lime-green);
    color: var(--lime-green);
}
.particle:nth-child(4) { 
    bottom: 40%; left: 70%; animation-delay: 3s; 
    background: var(--gold);
    color: var(--gold);
}
.particle:nth-child(5) { 
    top: 80%; right: 30%; animation-delay: 4s; 
    background: var(--coral);
    color: var(--coral);
}
.particle:nth-child(6) { 
    bottom: 20%; right: 10%; animation-delay: 5s; 
    background: var(--turquoise);
    color: var(--turquoise);
}
.particle:nth-child(7) { 
    top: 15%; left: 60%; animation-delay: 1.5s; 
    background: var(--purple);
    color: var(--purple);
}
.particle:nth-child(8) { 
    bottom: 60%; right: 40%; animation-delay: 2.5s; 
    background: var(--orange-red);
    color: var(--orange-red);
}
.particle:nth-child(9) { 
    top: 70%; left: 40%; animation-delay: 3.5s; 
    background: var(--hot-pink);
    color: var(--hot-pink);
}
.particle:nth-child(10) { 
    bottom: 30%; left: 15%; animation-delay: 4.5s; 
    background: var(--lime-green);
    color: var(--lime-green);
}
.particle:nth-child(11) { 
    top: 40%; right: 25%; animation-delay: 0.5s; 
    background: var(--gold);
    color: var(--gold);
}
.particle:nth-child(12) { 
    bottom: 50%; right: 60%; animation-delay: 1.8s; 
    background: var(--electric-blue);
    color: var(--electric-blue);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

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

.artistic-title {
    font-family: 'Georgia', serif;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(45deg, 
        var(--hot-pink) 0%, 
        var(--electric-blue) 20%, 
        var(--lime-green) 40%, 
        var(--gold) 60%, 
        var(--coral) 80%, 
        var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.2) saturate(1.3); }
}

.artistic-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
}

/* Quick Stats Row */
.stats-row {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.neon-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-tile {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

@keyframes pinkGlow {
    0% { box-shadow: 0 0 30px rgba(255, 20, 147, 0.5); }
    100% { box-shadow: 0 0 40px rgba(255, 20, 147, 0.8); }
}

@keyframes blueGlow {
    0% { box-shadow: 0 0 30px rgba(0, 102, 255, 0.5); }
    100% { box-shadow: 0 0 40px rgba(0, 102, 255, 0.8); }
}

@keyframes greenGlow {
    0% { box-shadow: 0 0 30px rgba(50, 205, 50, 0.5); }
    100% { box-shadow: 0 0 40px rgba(50, 205, 50, 0.8); }
}

@keyframes coralGlow {
    0% { box-shadow: 0 0 30px rgba(255, 127, 80, 0.5); }
    100% { box-shadow: 0 0 40px rgba(255, 127, 80, 0.8); }
}

.stat-tile:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.2), 
        rgba(138, 43, 226, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-tile:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.2), 
        rgba(64, 224, 208, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-tile:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(50, 205, 50, 0.2), 
        rgba(255, 215, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-tile:nth-child(4)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 127, 80, 0.2), 
        rgba(255, 69, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dance Styles Showcase */
.dance-styles-showcase {
    padding: 120px 0;
    background: #000000;
    position: relative;
}

.styles-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.style-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.style-category::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.classical-styles::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 70, 239, 0.1));
}

.modern-styles::before {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
}

.bollywood-styles::before {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(245, 158, 11, 0.1));
}

.learner-highlight::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
}

.style-category:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.style-category:hover::before {
    opacity: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.style-tag {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
}

.style-tag.classical {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.style-tag.modern {
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
    border-color: rgba(20, 184, 166, 0.3);
}

.style-tag.bollywood {
    background: rgba(217, 70, 239, 0.15);
    color: #d946ef;
    border-color: rgba(217, 70, 239, 0.3);
}

.style-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.learner-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learning-badge {
    display: flex;
    gap: 0.75rem;
}

.learning-badge span {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dance-philosophy {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.dance-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d946ef, #14b8a6);
    border-radius: 20px 20px 0 0;
}

.philosophy-content h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.philosophy-content p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.1rem;
    font-style: italic;
}

/* Media Highlights */
.media-highlights {
    padding: 100px 0;
    background: #000000;
}

.section-title-artistic {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f59e0b, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.media-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.media-card.tv-show {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.media-card.music-video {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 70, 239, 0.1));
}

.media-card.promotion {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
}

.media-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.media-card.tv-show:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.media-card.music-video:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
}

.media-card.promotion:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.media-image {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.media-placeholder {
    text-align: center;
    color: #94a3b8;
}

.media-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.media-type {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.media-overlay h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.media-overlay p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.media-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.tv-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.music-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.promo-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Quote Strip */
.quote-strip {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.quote-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
}

.spotlight-silhouette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(217, 70, 239, 0.1) 0%, 
        transparent 50%, 
        rgba(20, 184, 166, 0.1) 100%);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dramatic-quote {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: white;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 300;
}

.quote-content cite {
    color: #f59e0b;
    font-size: 1.1rem;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #000000;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-sparkle {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

.cta-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f59e0b, #d946ef);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #c026d3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}



.cultural-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.cultural-breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cultural-breadcrumb a:hover {
    color: #60a5fa;
}

.cultural-breadcrumb span {
    color: #64748b;
}

/* Active nav link styling */
.nav-link.active {
    color: #8b5cf6 !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Cultural page specific adjustments */
.cultural-page {
    padding: 60px 0 120px 0;
}

/* More About Me - Vibrant & Joyful Section */
.more-about-vibrant {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Bright & Colorful Palette */
:root {
    --peacock-blue: #0891b2;
    --fuchsia: #d946ef;
    --saffron: #f59e0b;
    --mint: #10b981;
    --warm-white: #fef7f0;
    --electric-blue: #0066ff;
    --hot-pink: #ff1493;
    --lime-green: #32cd32;
    --orange-red: #ff4500;
    --purple: #8a2be2;
    --gold: #ffd700;
    --coral: #ff7f50;
    --turquoise: #40e0d0;
}

/* Background Gradient Swashes */
.gradient-swash {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
}

.gradient-swash.top-left {
    top: -200px;
    left: -200px;
    background: linear-gradient(135deg, var(--saffron), var(--fuchsia));
}

.gradient-swash.bottom-right {
    bottom: -200px;
    right: -200px;
    background: linear-gradient(135deg, var(--peacock-blue), var(--mint));
}

/* Warm Typography */
.section-title-warm {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--warm-white);
    position: relative;
    z-index: 1;
}

.highlight-saffron {
    background: linear-gradient(135deg, var(--saffron), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-warm {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(254, 247, 240, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Life Cards */
.life-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.life-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Card - Spans 2 columns */
.hero-card {
    grid-column: span 2;
    min-height: 400px;
}

/* Photo Banner for Hero Card */
.card-photo-banner {
    height: 150px;
    background: linear-gradient(135deg, var(--peacock-blue), var(--fuchsia));
    position: relative;
    overflow: hidden;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.8), rgba(217, 70, 239, 0.8));
}

.photo-caption {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Card Content */
.card-content {
    padding: 2rem;
}

/* Vibrant Icons with Glow */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.life-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
}

.dance-icon-vibrant {
    background: linear-gradient(135deg, var(--saffron), #fbbf24);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
}

.sports-icon-vibrant {
    background: linear-gradient(135deg, var(--mint), #059669);
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.4);
}

.culture-icon-vibrant {
    background: linear-gradient(135deg, var(--fuchsia), #c026d3);
    box-shadow: 0 0 24px rgba(217, 70, 239, 0.4);
}

.travel-icon-vibrant {
    background: linear-gradient(135deg, var(--peacock-blue), #0284c7);
    box-shadow: 0 0 24px rgba(8, 145, 178, 0.4);
}

.community-icon-vibrant {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 0 24px rgba(239, 68, 68, 0.4);
}

/* Sparkles for Hero Card */
.icon-sparkles {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

/* Card Typography */
.life-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
}

.card-highlight {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.life-card p {
    color: rgba(254, 247, 240, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pastel Tag Pills */
.life-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.life-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
}

.life-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.life-tag.saffron {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

.life-tag.saffron:hover {
    background: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}

.life-tag.peacock {
    background: rgba(8, 145, 178, 0.15);
    color: #0891b2;
    border-color: rgba(8, 145, 178, 0.3);
}

.life-tag.peacock:hover {
    background: rgba(8, 145, 178, 0.25);
    box-shadow: 0 0 16px rgba(8, 145, 178, 0.3);
}

.life-tag.fuchsia {
    background: rgba(217, 70, 239, 0.15);
    color: #d946ef;
    border-color: rgba(217, 70, 239, 0.3);
}

.life-tag.fuchsia:hover {
    background: rgba(217, 70, 239, 0.25);
    box-shadow: 0 0 16px rgba(217, 70, 239, 0.3);
}

.life-tag.mint {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.life-tag.mint:hover {
    background: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.3);
}

/* Philosophy Quote Card */
.philosophy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--fuchsia), var(--peacock-blue), var(--mint));
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.philosophy-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--warm-white);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
}

.philosophy-card cite {
    color: rgba(254, 247, 240, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-card {
        grid-column: span 1;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .philosophy-card {
        padding: 2rem;
    }
    
    .section-title-warm {
        font-size: 2rem;
    }
    
    .artistic-title {
        font-size: 3rem;
    }
    
    .artistic-subtitle {
        font-size: 1.1rem;
    }
    
    .neon-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .style-category {
        padding: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .dance-philosophy {
        padding: 2rem;
    }
    
    .philosophy-content h3 {
        font-size: 1.3rem;
    }
    
    .philosophy-content p {
        font-size: 1rem;
    }
    
    .media-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dramatic-quote {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title-artistic {
        font-size: 2rem;
    }
    

}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .life-card:hover {
        transform: none;
    }
    
    .life-card:hover .card-icon {
        transform: none;
    }
    
    .icon-sparkles {
        animation: none;
    }
}

/* Education Section */
.education {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.education-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6 0%, #F59E0B 100%);
}

.education-card.current::before {
    background: linear-gradient(90deg, #10B981 0%, #8B5CF6 100%);
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

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

.education-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6 0%, #F59E0B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-icon i {
    font-size: 1.2rem;
    color: white;
}

.degree-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.university {
    margin-bottom: 15px;
}

.university a {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.university a:hover {
    color: #A855F7;
}

.education-duration {
    color: #FBBF24;
    font-weight: 500;
    margin-bottom: 10px;
}

.education-location {
    color: #9CA3AF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.education-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.education-highlights li {
    color: #D1D5DB;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.education-highlights li::before {
    content: '•';
    color: #8B5CF6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.education-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .education-card {
        padding: 20px;
    }
    
    .degree-title {
        font-size: 1.3rem;
    }
}

/* Skills Section - Advanced */
.skills {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.skills-grid-advanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.skill-category-advanced {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.skill-category-advanced.ml-ai::before {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.skill-category-advanced.data-science::before {
    background: linear-gradient(90deg, #10b981, #14b8a6);
}

.skill-category-advanced.programming::before {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.skill-category-advanced.backend::before {
    background: linear-gradient(90deg, #a855f7, #ec4899);
}

.skill-category-advanced.frontend::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.skill-category-advanced.cloud::before {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.skill-category-advanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-header-advanced {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-icon-advanced {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.ml-ai .skill-icon-advanced {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.data-science .skill-icon-advanced {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.programming .skill-icon-advanced {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.backend .skill-icon-advanced {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.frontend .skill-icon-advanced {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.cloud .skill-icon-advanced {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.skill-title-section {
    flex: 1;
}

.skill-title-section h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.skill-title-section p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.skill-level {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-level.expert {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.skill-level.advanced {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.skill-level.intermediate {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.skill-items-advanced {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-item-detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.skill-item-detailed:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.skill-name {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
}

.skill-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.skill-badge.expert {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.skill-badge.advanced {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.skill-badge.intermediate {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

@media (max-width: 1024px) {
    .skills-grid-advanced {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .skills-grid-advanced {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .skill-category-advanced {
        padding: 1rem;
    }
    
    .skill-header-advanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .skill-level {
        align-self: flex-start;
    }
}

/* Compact Skills Section */
.skills-compact-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.skill-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.skill-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-tab:hover::before {
    left: 100%;
}

.skill-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.skill-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-color: rgba(59, 130, 246, 0.6);
    color: white;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tab.active::before {
    display: none;
}

.skill-tab i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.skill-tab:hover i {
    transform: scale(1.1) rotate(5deg);
}

.skill-tab.active i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.skill-content-area {
    min-height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.skill-content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
    opacity: 0.6;
}

.skill-content {
    display: none;
    animation: slideInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.skill-items-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.skill-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: #e2e8f0;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}

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

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    color: #ffffff;
}

/* Add different colors for different categories */
#ml-ai .skill-item {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

#ml-ai .skill-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

#data-science .skill-item {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

#data-science .skill-item:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(20, 184, 166, 0.25) 100%);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

#programming .skill-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

#programming .skill-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

#backend .skill-item {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

#backend .skill-item:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

#frontend .skill-item {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

#frontend .skill-item:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(249, 115, 22, 0.25) 100%);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

#cloud .skill-item {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

#cloud .skill-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(249, 115, 22, 0.25) 100%);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

/* Skill Logo and Icon Styles */
.skill-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.skill-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.skill-item:hover .skill-logo {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.skill-item:hover .skill-icon {
    transform: scale(1.1);
    color: #60a5fa;
}

.skill-name {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #e2e8f0;
}

.skill-years {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

/* Responsive Design for Compact Skills */
@media (max-width: 1024px) {
    .skill-tabs {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .skill-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .skill-content-area {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .skill-tabs {
        gap: 0.5rem;
        padding: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .skill-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .skill-tab span {
        display: none;
    }
    
    .skill-tab i {
        font-size: 1.3rem;
    }
    
    .skill-content-area {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    .skill-items-row {
        gap: 0.75rem;
    }
    
    .skill-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .skill-tabs {
        justify-content: center;
        gap: 0.4rem;
        padding: 0.4rem;
        flex-wrap: wrap;
    }
    
    .skill-tab {
        padding: 0.6rem;
        min-width: 50px;
        justify-content: center;
        border-radius: 20px;
    }
    
    .skill-tab i {
        font-size: 1.4rem;
    }
    
    .skill-content-area {
        padding: 1.2rem;
        min-height: 100px;
    }
    
    .skill-items-row {
        gap: 0.6rem;
    }
    
    .skill-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}

/* Add smooth scroll behavior for better UX */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.skill-tab:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.skill-tab:focus:not(:focus-visible) {
    outline: none;
}

/* Add loading animation for skill items */
.skill-item {
    animation: skillItemLoad 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.skill-content.active .skill-item {
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

@keyframes skillItemLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add pulse effect for active tab */
.skill-tab.active {
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6), 0 0 0 4px rgba(59, 130, 246, 0.1);
    }
}

/* Enhanced section subtitle for skills */
.skills .section-subtitle {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #94a3b8;
    text-align: center;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: #000000;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #475569;
    background: transparent;
    color: #cbd5e1;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-color: transparent;
}

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

.project-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-link {
    color: white;
    font-size: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.project-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.project-tech span {
    background: #334155;
    color: #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Project Styles */
.project-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
}



.project-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
}

.project-card.featured .project-tech span {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

/* Ongoing Project Styles */
.project-card.ongoing {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    position: relative;
}

.project-card.ongoing::before {
    content: '🔬 ONGOING RESEARCH';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.project-card.ongoing:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
    border-color: #fbbf24;
}

.project-card.ongoing .project-tech span {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.2));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #e2e8f0;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: #000000;
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 16px 16px 0 0;
}

.achievement-card.featured::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.achievement-card.featured:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.achievement-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.achievement-link:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
    color: #60a5fa;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.achievement-card.featured .achievement-icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.achievement-icon i {
    font-size: 1.8rem;
    color: white;
}

.achievement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.3;
}

.achievement-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.achievement-date {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.achievement-card.featured .achievement-date {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-link {
        top: 0.75rem;
        right: 0.75rem;
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: #cbd5e1;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: translateY(-3px);
}

.contact-form {
    background: #111111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    border: 1px solid #333333;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #475569;
    border-radius: 8px;
    font-size: 1rem;
    background: #1e293b;
    color: #cbd5e1;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #334155;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .resume-btn {
        display: none; /* Hide resume button on mobile, show in menu instead */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-role {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .profile-container {
        width: 300px;
        height: 300px;
    }

    .profile-circle {
        width: 250px;
        height: 250px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .about-main {
        flex-direction: column;
        gap: 3rem;
    }

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

    .about-highlights {
        min-width: auto;
    }

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

    .stats {
        justify-content: center;
    }

    .edu-exp-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }

    .hero-role {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .profile-container {
        width: 250px;
        height: 250px;
    }

    .profile-circle {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-heading {
        font-size: 1.5rem;
    }

    .highlight-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .project-filters {
        flex-wrap: wrap;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .project-filters {
        flex-wrap: wrap;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* About Details Section */
.about-details {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Education & Experience - Simplified */
.edu-exp-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.simple-section {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.simple-card {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.simple-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.simple-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.simple-card .institution,
.simple-card .company {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.simple-card .gpa {
    font-size: 0.85rem;
    color: #60a5fa;
    font-weight: 500;
}

.simple-card .description {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* Interactive Timeline Journey Section */
.timeline-journey {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.timeline-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(58, 12, 163, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(114, 9, 183, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.timeline-journey .container {
    position: relative;
    z-index: 2;
}

.interactive-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Glowing Central Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow:
        0 0 8px rgba(99, 102, 241, 0.6),
        0 0 16px rgba(139, 92, 246, 0.4),
        0 0 24px rgba(217, 70, 239, 0.3);
    z-index: 0;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
    transform: translateX(-50%);
    border-radius: 1px;
}

/* Timeline Entry */
.timeline-entry {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-entry.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-entry[data-side="left"] .timeline-card {
    margin-right: 52%;
    padding-right: 1rem;
}

.timeline-entry[data-side="right"] .timeline-card {
    margin-left: 52%;
    padding-left: 1rem;
}

/* Timeline Icons */
.timeline-icon {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 1.2rem;
    color: white;
    border: 3px solid #0a0e1a;
    transition: all 0.4s ease;
}

.timeline-entry.animate-in .timeline-icon {
    animation: iconPulse 2s ease-in-out infinite alternate;
}

.work-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
}

.internship-icon {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.4);
}

.research-icon {
    background: linear-gradient(135deg, #d946ef, #6366f1);
    box-shadow: 0 0 16px rgba(217, 70, 239, 0.4);
}

.education-icon {
    background: linear-gradient(135deg, #6366f1, #d946ef);
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
}

.leadership-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

@keyframes iconPulse {
    0% {
        box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
        transform: translateX(-50%) scale(1);
    }

    100% {
        box-shadow: 0 0 24px rgba(99, 102, 241, 0.6), 0 0 32px rgba(139, 92, 246, 0.3);
        transform: translateX(-50%) scale(1.05);
    }
}

/* Timeline Cards */
.timeline-card {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(71, 85, 105, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    max-width: 420px;
    z-index: 1;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Status Tags */
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.status-tag.current {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-tag.current::before {
    content: '●';
    color: #10b981;
    animation: pulse 2s infinite;
}

.status-tag.completed {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Entry Content */
.entry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.entry-company {
    margin-bottom: 0.5rem;
}

.entry-company a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.entry-company a:hover {
    color: #93c5fd;
}

.entry-duration {
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.entry-duration::before {
    content: '📅';
    font-size: 0.8rem;
}

.entry-location {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.entry-location i {
    color: #60a5fa;
    font-size: 0.75rem;
}

/* Contributions List */
.entry-contributions {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.entry-contributions li {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.entry-contributions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

/* Skills Pills */
.entry-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.skill-pill {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.skill-pill:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.skill-pill:nth-child(even) {
    background: rgba(139, 92, 246, 0.12);
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.2);
}

.skill-pill:nth-child(even):hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Interactive Timeline Mobile */
    .timeline-line {
        left: 24px;
    }

    .timeline-entry[data-side="left"] .timeline-card,
    .timeline-entry[data-side="right"] .timeline-card {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        max-width: calc(100% - 60px);
    }

    .timeline-icon {
        left: 24px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-card {
        padding: 1.25rem;
    }

    .entry-title {
        font-size: 1.1rem;
    }

    .entry-contributions li {
        font-size: 0.85rem;
    }

    .skill-pill {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .timeline-journey {
        padding: 80px 0;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-entry[data-side="left"] .timeline-card,
    .timeline-entry[data-side="right"] .timeline-card {
        margin-left: 50px;
        max-width: calc(100% - 50px);
    }

    .timeline-icon {
        left: 20px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .timeline-card {
        padding: 1rem;
    }

    .entry-title {
        font-size: 1rem;
    }

    .entry-contributions li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .skill-pill {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Typing Animation */
.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    color: #fbbf24;
    font-weight: 400;
    transition: opacity 0.1s ease;
    animation: none; /* Remove default blinking, we'll control it with JS */
}

.typing-cursor.blink {
    animation: blink 0.8s infinite;
}

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

#typing-text {
    color: #fbbf24;
    font-weight: 600;
    display: inline-block;
    min-height: 1.5em; /* Prevent layout shift */
}

.hero-role {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 2em; /* Prevent layout shift during typing */
}

/* Image P
laceholders */
.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    border: 4px solid #0f172a;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.project-placeholder i {
    font-size: 3rem;
}

.project-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
}

.about-content-redesign {
    flex: 1;
    max-width: 650px;
}

.about-heading-redesign {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.2;
}

.about-bio {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: left;
    font-weight: 400;
}

/* Modern Skill Tags */
.modern-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.modern-skill-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.modern-skill-tag:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.modern-skill-tag:nth-child(2n) {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.modern-skill-tag:nth-child(2n):hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Responsive Design for Redesigned Section */
@media (max-width: 768px) {
    .about-main-redesign {
        flex-direction: column;
        gap: 3rem;
    }

    .about-content-redesign {
        max-width: 100%;
    }

    .about-heading-redesign {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-bio {
        font-size: 1rem;
        text-align: center;
    }

    .modern-skill-tags {
        justify-content: center;
        gap: 0.75rem;
    }

    .modern-skill-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-heading-redesign {
        font-size: 1.8rem;
    }

    .modern-skill-tags {
        gap: 0.5rem;
    }

    .modern-skill-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Side
-by-Side About Section Layout */
.about-side-by-side {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content Area */
.about-left-content {
    flex: 1;
    max-width: 600px;
}

.about-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
}

.about-main-bio {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: left;
    font-weight: 400;
}

/* Modern Skill Tags */
.skill-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag-modern {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.25);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag-modern:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.skill-tag-modern:nth-child(even) {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.25);
}

.skill-tag-modern:nth-child(even):hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Right Feature Cards Area */
.about-right-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 350px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.02);
}

.feature-card:hover {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card.gold-feature {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.08);
}

.feature-card.purple-feature {
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.08);
}

.feature-card.teal-feature {
    border-color: rgba(20, 184, 166, 0.25);
    background: rgba(20, 184, 166, 0.08);
}

.feature-card.pink-feature {
    border-color: rgba(236, 72, 153, 0.25);
    background: rgba(236, 72, 153, 0.08);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gold-feature .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.purple-feature .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.teal-feature .feature-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
}

.pink-feature .feature-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Side-by-Side Layout */
@media (max-width: 768px) {
    .about-side-by-side {
        flex-direction: column;
        gap: 3rem;
    }

    .about-left-content {
        max-width: 100%;
    }

    .about-right-features {
        min-width: auto;
    }

    .about-main-heading {
        font-size: 2rem;
        text-align: center;
    }

    .about-main-bio {
        text-align: center;
    }

    .skill-tags-modern {
        justify-content: center;
        gap: 0.6rem;
    }

    .skill-tag-modern {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-main-heading {
        font-size: 1.7rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .feature-content h4 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }
}

/* Two-
Column About Section Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column Styling */
.about-left-column {
    padding-right: 1rem;
}

.about-column-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
}

.about-column-bio {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: left;
    font-weight: 400;
}

/* Pill-Shaped Skill Tags */
.pill-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill-skill-tag {
    background: rgba(30, 41, 59, 0.8);
    color: #cbd5e1;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(71, 85, 105, 0.5);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.pill-skill-tag:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
    color: #60a5fa;
}

/* Right Column Styling */
.about-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 1rem;
}

.gradient-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gradient-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gradient-feature-card.gold-gradient {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.gradient-feature-card.purple-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.gradient-feature-card.teal-gradient {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%);
    border-color: rgba(20, 184, 166, 0.3);
}

.gradient-feature-card.pink-gradient {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
    border-color: rgba(236, 72, 153, 0.3);
}

.gradient-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.gold-gradient .gradient-feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.purple-gradient .gradient-feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.teal-gradient .gradient-feature-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.pink-gradient .gradient-feature-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.gradient-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.gradient-feature-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Two-Column Layout */
@media (max-width: 768px) {
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left-column,
    .about-right-column {
        padding-left: 0;
        padding-right: 0;
    }

    .about-column-heading {
        font-size: 2rem;
        text-align: center;
    }

    .about-column-bio {
        text-align: center;
    }

    .pill-skill-tags {
        justify-content: center;
        gap: 0.6rem;
    }

    .pill-skill-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-column-heading {
        font-size: 1.7rem;
    }

    .gradient-feature-card {
        padding: 1.25rem;
    }

    .gradient-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .gradient-feature-content h4 {
        font-size: 1rem;
    }

    .gradient-feature-content p {
        font-size: 0.85rem;
    }
}


/* Skill pill glow animation */
@keyframes skillPillGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
    }

    50% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    }
}

.timeline-entry.animate-in .skill-pill {
    animation: skillPillGlow 2s ease-in-out infinite alternate;
    animation-delay: calc(var(--pill-index, 0) * 0.2s);
}

/* Card entrance animations */
.timeline-entry[data-side="left"] .timeline-card {
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-entry[data-side="right"] .timeline-card {
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Icon pulse animation when active */
.timeline-icon.active {
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

/* Status tag animations */
.status-tag.current {
    animation: currentStatusGlow 2s ease-in-out infinite alternate;
}

@keyframes currentStatusGlow {
    0% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    }

    100% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
    }
}

/* Company link hover effect enhancement */
.entry-company a {
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin: -0.2rem -0.5rem;
}

.entry-company a:hover {
    background-position: 0% 0;
}

/* Smooth scroll behavior for timeline navigation */
.timeline-journey {
    scroll-margin-top: 80px;
}

/* Enhanced mobile animations */
@media (max-width: 768px) {

    .timeline-entry[data-side="left"] .timeline-card,
    .timeline-entry[data-side="right"] .timeline-card {
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .timeline-icon {
        animation-duration: 1.5s;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

    .timeline-entry,
    .timeline-icon,
    .timeline-card,
    .skill-pill {
        animation: none !important;
        transition: none !important;
    }

    .timeline-line {
        animation: none !important;
    }
}

/* Focus states for accessibility */
.timeline-card:focus-within {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.entry-company a:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .timeline-journey {
        background: white !important;
        color: black !important;
    }

    .timeline-line {
        background: #333 !important;
        box-shadow: none !important;
    }

    .timeline-card {
        background: white !important;
        border: 1px solid #333 !important;
        box-shadow: none !important;
    }

    .timeline-icon {
        background: #333 !important;
        box-shadow: none !important;
    }
}
