:root {
    --dark-gray: #1a1a1a;
    --darker-gray: #0f0f0f;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --light-blue: #00d4ff;
    --light-blue-hover: #00b8e6;
    --light-blue-transparent: rgba(0, 212, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--darker-gray);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1400px;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 1rem;
    background: rgba(26, 26, 26, 0.5);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-container {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.25rem;
    border-radius: 12px;
}

.nav-logo:hover {
    transform: translateX(-2px);
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-name {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    white-space: nowrap;
}

.nav-number {
    color: var(--light-blue);
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.nav-text {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.nav-link:hover .nav-text {
    color: var(--text-primary);
}

.nav-link:hover .nav-number {
    opacity: 1;
}

.nav-link.active {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.nav-link.active .nav-text {
    color: var(--light-blue);
}

.nav-link.active .nav-number {
    opacity: 1;
    color: var(--light-blue);
}

.nav-cta {
    padding: 0.65rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--light-blue);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 212, 255, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--light-blue);
}

.nav-cta:hover::before {
    opacity: 1;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--light-blue);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--light-blue);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 2rem 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.hero-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--light-blue) 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
    opacity: 0.4;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 25s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.hero-main {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.badge-text {
    color: var(--light-blue);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-name {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.name-line {
    display: block;
    color: var(--text-primary);
    text-transform: uppercase;
}

.name-line:first-child {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-title {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--light-blue);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: rgba(0, 212, 255, 0.2);
    color: var(--light-blue);
    border-color: rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.4);
    color: var(--light-blue);
    border-color: rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeInUp 1s ease 0.2s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 0.4rem;
    line-height: 1;
}

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

/* Interactive Tech Visualization */
.hero-interactive {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease 0.3s both;
}

.interactive-tech {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
}

.tech-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    overflow: visible;
}

.orb-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.orb-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.orb-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    bottom: -25px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.tech-orb:hover {
    transform: scale(1.2) translateZ(0);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.4),
                0 0 40px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.tech-orb:hover .orb-glow {
    opacity: 1;
}

.tech-orb:hover .orb-icon {
    transform: scale(1.2) rotate(10deg);
}

.tech-orb:hover .orb-label {
    opacity: 1;
    transform: translateY(0);
}

/* Orb Positions */
.tech-orb-1 {
    top: 10%;
    left: 20%;
    animation: floatOrb 6s ease-in-out infinite;
}

.tech-orb-2 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: floatOrb 7s ease-in-out infinite 0.5s;
}

.tech-orb-3 {
    top: 80%;
    left: 25%;
    animation: floatOrb 8s ease-in-out infinite 1s;
}

.tech-orb-4 {
    top: 15%;
    right: 15%;
    animation: floatOrb 6.5s ease-in-out infinite 1.5s;
}

.tech-orb-5 {
    top: 55%;
    right: 20%;
    transform: translateY(-50%);
    animation: floatOrb 7.5s ease-in-out infinite 2s;
}

.tech-orb-6 {
    bottom: 10%;
    right: 10%;
    animation: floatOrb 8.5s ease-in-out infinite 2.5s;
}

.tech-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

.tech-connections::before,
.tech-connections::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--light-blue) 0%, transparent 100%);
    opacity: 0.3;
}

.tech-connections::before {
    top: 20%;
    left: 30%;
    height: 30%;
    animation: pulse 3s ease-in-out infinite;
}

.tech-connections::after {
    top: 50%;
    right: 25%;
    height: 25%;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(10px, -15px) scale(1.05);
    }
    50% {
        transform: translate(-5px, -10px) scale(0.98);
    }
    75% {
        transform: translate(-10px, 5px) scale(1.02);
    }
}

.tech-orb-2,
.tech-orb-5 {
    animation-name: floatOrbReverse;
}

@keyframes floatOrbReverse {
    0%, 100% {
        transform: translateY(-50%) translate(0, 0) scale(1);
    }
    25% {
        transform: translateY(-50%) translate(-10px, -10px) scale(1.05);
    }
    50% {
        transform: translateY(-50%) translate(5px, -5px) scale(0.98);
    }
    75% {
        transform: translateY(-50%) translate(10px, 5px) scale(1.02);
    }
}

.hero-tech-stack {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
}

.tech-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.tech-item {
    padding: 0.75rem 1.75rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.tech-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--light-blue);
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-text {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--light-blue) 0%, rgba(0, 212, 255, 0.5) 50%, transparent 100%);
    animation: scrollDown 2s infinite;
    border-radius: 2px;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.title-number {
    color: var(--light-blue);
    font-size: 1.5rem;
    font-weight: 600;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--darker-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

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

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.highlight-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.3));
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(42, 42, 42, 0.4));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .profile-photo {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Education Section */
.education {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--darker-gray) 100%);
    position: relative;
    overflow: hidden;
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.education::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.education .container {
    position: relative;
    z-index: 1;
}

.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 2rem;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--light-blue) 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
    opacity: 0.4;
}

.education-item {
    display: flex;
    gap: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.education-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--light-blue);
    border-radius: 50%;
    border: 3px solid var(--darker-gray);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.3),
                0 0 20px rgba(0, 212, 255, 0.5);
    z-index: 2;
}

.education-year {
    min-width: 120px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-blue);
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.education-content {
    flex: 1;
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.education-content:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.education-institution {
    font-size: 1.1rem;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.education-highlights {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.education-highlight {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 18px;
    color: var(--light-blue);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Skills Section */
.skills {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.skills::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.skills .container {
    position: relative;
    z-index: 1;
}

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

.skill-category {
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.skill-category:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.category-title {
    color: var(--light-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue), transparent);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-item {
    padding: 0.75rem 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 18px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.skill-item:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.projects::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.project-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    opacity: 0;
    transform: translate3d(0, 50px, 0) rotateX(10deg);
    animation: projectCardEnter 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

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

.project-card.active .project-link {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover {
    transform: translate3d(0, -12px, 0) rotateX(0deg) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3),
                0 0 0 1px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.project-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(0, 212, 255, 0.1) 50%,
        rgba(42, 42, 42, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.project-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.project-card:hover .project-mockup {
    transform: scale(1.05);
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    opacity: 0.2;
    will-change: transform;
    transform: translateZ(0);
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
    opacity: 0.3;
    animation: shimmer 4s ease-in-out infinite;
    will-change: opacity;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 212, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    will-change: opacity;
    flex-direction: column;
    pointer-events: none;
}

.project-overlay .project-link {
    pointer-events: auto;
}

.project-coming-soon .project-overlay {
    flex-direction: column;
    gap: 1.5rem;
    pointer-events: auto;
}

.project-coming-soon .coming-soon-badge,
.project-coming-soon .coming-soon-text {
    pointer-events: none;
}

.coming-soon-badge {
    padding: 1rem 2rem;
    background: rgba(0, 212, 255, 0.25);
    color: var(--light-blue);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 212, 255, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    text-align: center;
    max-width: 300px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-coming-soon:hover .coming-soon-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

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

/* On mobile, only show overlay when active class is present */
@media (max-width: 768px) {
    .project-card:not(.active) .project-overlay {
        opacity: 0;
    }
    
    .project-card:not(.active) .project-link {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
}

.project-link {
    padding: 0.875rem 1.75rem;
    background: rgba(0, 212, 255, 0.25);
    color: var(--light-blue);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 20px, 0);
    opacity: 0;
    will-change: transform, opacity;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.project-card:hover .project-link {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.project-link:nth-child(1) {
    transition-delay: 0.1s;
}

.project-link:nth-child(2) {
    transition-delay: 0.2s;
}

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

.project-link:hover::before {
    left: 100%;
}

.project-link:hover {
    background: rgba(0, 212, 255, 0.35);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translate3d(0, -2px, 0) scale(1.08);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.5),
                0 0 40px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.project-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.project-card:hover .project-title {
    transform: translate3d(5px, 0, 0);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-description {
    color: var(--text-primary);
}

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

.tag {
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--light-blue);
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.tag:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

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

/* Beyond Code Section */
.beyond {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--darker-gray) 0%, #1a1a1a 100%);
    overflow: hidden;
}

.beyond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.beyond .container {
    position: relative;
    z-index: 1;
}

.beyond-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.beyond-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.beyond-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 0.9;
}

.beyond-word {
    font-size: 7rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.beyond-word-accent {
    font-size: 7rem;
    font-weight: 900;
    color: var(--light-blue);
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 1;
    background: linear-gradient(135deg, var(--light-blue) 0%, #00b8e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    -webkit-text-stroke: 1px rgba(0, 212, 255, 0.2);
    text-stroke: 1px rgba(0, 212, 255, 0.2);
}

.beyond-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.beyond-description-main {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
}

.beyond-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beyond-card-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.beyond-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.beyond-card-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.beyond-card-item:hover::before {
    opacity: 1;
}

.beyond-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: transform 0.4s ease;
}

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

.beyond-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.beyond-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.beyond-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.beyond-card-plus {
    font-size: 2rem;
    font-weight: 300;
    color: var(--light-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beyond-card-item:hover .beyond-card-plus {
    transform: rotate(90deg) scale(1.2);
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 50% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-availability {
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.availability-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.availability-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.availability-item:last-child {
    border-bottom: none;
}

.availability-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.availability-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(8px);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.method-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.3));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(15, 15, 15, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

.contact-form .btn-primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%);
    color: var(--light-blue);
    border: 2px solid rgba(0, 212, 255, 0.4);
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 4px 20px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 0 rgba(0, 212, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.contact-form .btn-primary::after {
    content: '→';
    position: absolute;
    right: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35) 0%, rgba(0, 212, 255, 0.25) 100%);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 4px rgba(0, 212, 255, 0.1);
    color: var(--light-blue);
}

.contact-form .btn-primary:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form .btn-primary span {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--darker-gray);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer p {
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.footer-note {
    color: var(--text-secondary);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes projectCardEnter {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateX(0deg);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

@keyframes projectCardEnterMobile {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-name {
        font-size: 4rem;
    }

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

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

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

    .education-timeline {
        padding-left: 1.5rem;
        gap: 2rem;
    }

    .education-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .education-item::before {
        left: -1.75rem;
    }

    .education-year {
        min-width: auto;
        width: fit-content;
    }

    .beyond-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .beyond-word {
        font-size: 4.5rem;
    }

    .beyond-word-accent {
        font-size: 4.5rem;
    }

    .beyond-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .beyond-description-main {
        font-size: 1rem;
    }

    .beyond-card-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .beyond-card-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .beyond-card-title {
        font-size: 1rem;
    }

    .beyond-card-desc {
        font-size: 0.9rem;
    }

    .beyond-card-plus {
        font-size: 1.75rem;
    }

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

    .navbar {
        width: calc(100% - 2rem);
        top: 1rem;
        border-radius: 16px;
    }

    .nav-container {
        padding: 0.875rem 1.5rem;
        gap: 1.5rem;
    }

    .logo-name {
        display: block;
        font-size: 0.95rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5.5rem;
        flex-direction: column;
        align-items: stretch;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 1px solid rgba(0, 212, 255, 0.2);
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 5.5rem);
        text-align: left;
        transition: left 0.2s ease-out;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
        padding: 2rem 1.5rem;
        gap: 0.75rem;
        z-index: 1000;
        border-radius: 0 24px 24px 0;
        margin: 0;
        overflow-y: auto;
        will-change: transform;
        transform: translateX(0);
    }

    .nav-menu li {
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: left;
        justify-content: flex-start !important;
    }

    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .nav-menu.active {
        left: 0;
        transform: translateZ(0);
    }

    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease;
        transform: translateZ(0);
    }

    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Blur the page content when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open > *:not(.navbar):not(.nav-menu):not(.nav-backdrop) {
        filter: blur(4px);
        transition: filter 0.15s ease;
    }

    body.menu-open .navbar {
        filter: blur(0);
    }

    .nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 12px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background: rgba(26, 26, 26, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
        position: relative;
        z-index: 1;
        transition: background 0.15s ease, border-color 0.15s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        text-align: left;
        transform: translateZ(0);
    }

    .nav-link > * {
        text-align: left;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.15s ease;
        border-radius: 12px;
        z-index: -1;
    }

    .nav-link:hover,
    .nav-link.active {
        border-color: rgba(0, 212, 255, 0.4);
        background: rgba(0, 212, 255, 0.15);
        transform: translateX(3px) translateZ(0);
        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        opacity: 1;
    }

    .nav-link:hover .nav-text,
    .nav-link.active .nav-text {
        color: var(--light-blue);
    }

    .nav-number {
        font-size: 0.85rem;
        opacity: 0.6;
        margin-right: 0.75rem;
        min-width: 32px;
        text-align: left;
        flex-shrink: 0;
        display: inline-block;
    }

    .nav-text {
        font-size: 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
        text-align: left;
        display: inline-block;
        flex: 0 1 auto;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }


    .hamburger {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 1.5rem);
        top: 0.75rem;
        border-radius: 14px;
    }

    .navbar,
    .navbar.active,
    .hamburger.active ~ *,
    .nav-menu.active ~ * {
        border-radius: 14px !important;
    }

    .navbar {
        border-radius: 14px !important;
    }

    .nav-cta {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 3rem);
        max-width: 400px;
        padding: 1rem 2rem;
        background: rgba(0, 212, 255, 0.25);
        color: var(--light-blue);
        border: 1px solid rgba(0, 212, 255, 0.4);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3),
                    0 0 0 1px rgba(0, 212, 255, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        z-index: 999;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .nav-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(0, 212, 255, 0.25));
        opacity: 0;
        transition: opacity 0.15s ease;
        border-radius: 50px;
    }

    .nav-cta:hover,
    .nav-cta:active {
        background: rgba(0, 212, 255, 0.35);
        border-color: rgba(0, 212, 255, 0.6);
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4),
                    0 0 0 1px rgba(0, 212, 255, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
        color: var(--text-primary);
    }

    .nav-cta:hover::before,
    .nav-cta:active::before {
        opacity: 1;
    }

    .nav-container {
        padding: 0.75rem 1.25rem;
    }

    .nav-container .nav-cta {
        display: none;
    }

    .hero {
        padding: 8rem 1.5rem 2.5rem;
    }

    .hero-badge {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .hero-interactive {
        display: none;
    }

    .interactive-tech {
        max-width: 100%;
        max-height: 400px;
    }

    .tech-orb {
        width: 60px;
        height: 60px;
    }

    .orb-icon {
        font-size: 1.5rem;
    }

    .orb-label {
        font-size: 0.6rem;
        bottom: -20px;
    }

    .tech-orb-1 {
        top: 5%;
        left: 15%;
    }

    .tech-orb-2 {
        top: 50%;
        left: 5%;
    }

    .tech-orb-3 {
        bottom: 5%;
        left: 20%;
    }

    .tech-orb-4 {
        top: 10%;
        right: 10%;
    }

    .tech-orb-5 {
        top: 55%;
        right: 15%;
    }

    .tech-orb-6 {
        bottom: 10%;
        right: 5%;
    }

    .hero-stats {
        gap: 1rem;
        padding: 1.25rem 0;
    }

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

    .hero-tech-stack {
        margin-top: 1rem;
        padding-top: 1.25rem;
    }

    .scroll-indicator {
        right: 1.5rem;
        bottom: 2rem;
    }

    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .scroll-line {
        height: 40px;
    }

    .tech-items {
        gap: 0.5rem;
    }

    .tech-item {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-name {
        font-size: 3rem;
        letter-spacing: -1px;
    }

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

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

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

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .education-timeline {
        padding-left: 1rem;
        gap: 2rem;
    }

    .education-item {
        gap: 1rem;
    }

    .education-item::before {
        left: -1.25rem;
        width: 10px;
        height: 10px;
    }

    .education-content {
        padding: 1.5rem;
    }

    .education-degree {
        font-size: 1.25rem;
    }

    .education-institution {
        font-size: 1rem;
    }

    .education-description {
        font-size: 0.95rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        perspective: none;
    }

    .project-card {
        border-radius: 20px;
        animation: projectCardEnterMobile 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .project-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .project-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .project-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .project-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 2rem;
    }

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

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

    .project-overlay {
        flex-direction: column;
        gap: 0.75rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .project-card.active .project-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .project-link {
        width: 80%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .project-card.active .project-link {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .project-card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .project-coming-soon .project-overlay {
        opacity: 1;
        pointer-events: none;
    }

    .project-coming-soon .coming-soon-badge {
        opacity: 1;
        transform: none;
        pointer-events: none;
    }

    .project-coming-soon .coming-soon-text {
        opacity: 1;
        transform: translateY(0);
        pointer-events: none;
    }

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

