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

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-cyan: #7fd0ff;
    --accent-purple: #6f7bff;
    --accent-pink: #ff8fd8;
    --accent-gold: #f7c35c;
    --gradient-main: linear-gradient(135deg, #7fd0ff 0%, #6f7bff 55%, #ff8fd8 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --shadow-glow: 0 0 30px rgba(127, 208, 255, 0.35);
    --glass-bg: rgba(10, 12, 20, 0.72);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 20px 50px rgba(3, 6, 16, 0.45);
    --glass-shadow-soft: 0 12px 30px rgba(3, 6, 16, 0.25);
    --nav-pill-bg: rgba(6, 8, 16, 0.8);
    --nav-pill-border: rgba(255, 255, 255, 0.06);
    --nav-pill-shadow: 0 18px 40px rgba(2, 6, 20, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: radial-gradient(1000px 700px at 50% 0%, rgba(120, 180, 255, 0.12), transparent 55%),
        radial-gradient(900px 800px at 15% 60%, rgba(120, 180, 255, 0.08), transparent 55%),
        linear-gradient(180deg, #05070d 0%, #0a0d16 45%, #05070d 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 15%, rgba(170, 210, 255, 0.12), transparent 55%),
        radial-gradient(circle at 5% 70%, rgba(170, 210, 255, 0.08), transparent 55%);
    pointer-events: none;
    z-index: -2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Dramatic Background with Mountains */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #05070d 0%, #0b1220 50%, #05070d 100%);
    overflow: hidden;
}

.bg-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.65), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    opacity: 0.22;
    filter: blur(2px);
    animation: floatMountain 20s infinite ease-in-out;
}

.mountain-1 {
    left: 0%;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 440px solid rgba(90, 120, 180, 0.8);
    animation-delay: 0s;
    opacity: 0.2;
}

.mountain-2 {
    left: 15%;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 520px solid rgba(80, 110, 170, 0.85);
    animation-delay: -2s;
    opacity: 0.25;
}

.mountain-3 {
    left: 35%;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 480px solid rgba(70, 100, 160, 0.85);
    animation-delay: -4s;
    opacity: 0.2;
}

.mountain-4 {
    left: 55%;
    border-left: 220px solid transparent;
    border-right: 220px solid transparent;
    border-bottom: 560px solid rgba(90, 120, 180, 0.8);
    animation-delay: -6s;
    opacity: 0.22;
}

.mountain-5 {
    left: 75%;
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    border-bottom: 420px solid rgba(80, 110, 170, 0.85);
    animation-delay: -8s;
    opacity: 0.2;
}

.mountain-6 {
    left: 90%;
    border-left: 140px solid transparent;
    border-right: 140px solid transparent;
    border-bottom: 370px solid rgba(70, 100, 160, 0.85);
    animation-delay: -10s;
    opacity: 0.18;
}

@keyframes floatMountain {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Floating Tech Coins */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.tech-coin {
    position: absolute;
    font-size: 3.2rem;
    opacity: 0.3;
    filter: drop-shadow(0 0 18px rgba(120, 180, 255, 0.45));
    animation: floatCoin 15s infinite ease-in-out;
}

.coin-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: 15%;
    animation-delay: -3s;
}

.coin-3 {
    top: 60%;
    left: 20%;
    animation-delay: -6s;
}

.coin-4 {
    top: 25%;
    right: 30%;
    animation-delay: -9s;
}

.coin-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: -12s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, -50px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, -20px) rotate(270deg) scale(1.05);
    }
}

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

#hero-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0 0.5rem;
    background: transparent;
    border-bottom: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.4rem;
    background: var(--nav-pill-bg);
    border: 1px solid var(--nav-pill-border);
    border-radius: 999px;
    backdrop-filter: blur(24px);
    box-shadow: var(--nav-pill-shadow);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

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

/* Hero Section - Dramatic and Large */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 10% 8% auto 8%;
    height: 60%;
    background: radial-gradient(circle at top, rgba(150, 200, 255, 0.15), transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(150, 200, 255, 0.12), transparent 55%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 -10% 0;
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 14, 0.85) 65%, rgba(4, 8, 14, 0.95) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.hero-title-wrapper {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3.2rem, 8.5vw, 7.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-width: 170px;
    box-shadow: var(--glass-shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--glass-shadow);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    transform: translateX(120%);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-link:focus-visible,
.opensource-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
    color: #0a0d16;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-5px);
}

/* Sections */
.section {
    padding: 7rem 0;
    position: relative;
    z-index: 10;
    scroll-margin-top: 120px;
}

.section-dark {
    background: rgba(4, 8, 14, 0.65);
    backdrop-filter: blur(16px);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

.title-label {
    display: block;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 5px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-title .title-label {
    font-size: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: min(240px, 60%);
    height: 3px;
    margin: 1.25rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(127, 208, 255, 0.7), rgba(255, 255, 255, 0.8));
    opacity: 0.7;
}

/* Content Boxes */
.content-box {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow-soft);
}

.content-box strong {
    color: #ffffff;
    font-weight: 700;
}

/* Experience Cards */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow-soft);
}

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

.experience-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

.location {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Skills */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow-soft);
}

.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-category h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.skill-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

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

.achievement-card {
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow-soft);
}

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

.achievement-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

.achievement-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Education */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.education-card {
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow-soft);
}

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

.education-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.education-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Open Source */
.opensource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.opensource-card {
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--glass-shadow-soft);
}

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

.opensource-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.opensource-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.opensource-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.opensource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.opensource-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.opensource-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: auto;
}

.opensource-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.opensource-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.opensource-stat-item {
    background: rgba(6, 9, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow-soft);
}

.opensource-stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

.opensource-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.opensource-stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: rgba(5, 8, 14, 0.9);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-content {
        padding: 0.75rem 1rem;
        border-radius: 24px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-box {
        min-width: 140px;
        padding: 1.5rem;
    }

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

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

    .education-grid,
    .opensource-grid {
        grid-template-columns: 1fr;
    }

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

    .opensource-card {
        padding: 2rem;
    }

    .opensource-stat-item {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero-description {
        padding: 1.25rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
