/* Theme: Phosphorescence - Bioluminescent deep sea creatures, glowing neons on dark backgrounds, electric blues and greens */

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #00ffea;
    background: #0a0e27;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 20%, rgba(0, 255, 234, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: plasmaShift 25s ease-in-out infinite;
}

@keyframes plasmaShift {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 234, 0.015) 2px, rgba(0, 255, 234, 0.015) 4px);
    pointer-events: none;
    z-index: 0;
    animation: scanPulse 10s linear infinite;
}

@keyframes scanPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(0, 255, 234, 0.3);
    box-shadow: 
        0 5px 30px rgba(0, 255, 234, 0.2),
        inset 0 -1px 0 rgba(0, 255, 234, 0.1);
    transition: all 0.4s ease;
}

#topnav.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 
        0 8px 40px rgba(0, 255, 234, 0.3),
        inset 0 -1px 0 rgba(0, 255, 234, 0.2);
    border-bottom-color: rgba(0, 255, 234, 0.5);
}

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

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00ffea;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0 0 10px rgba(0, 255, 234, 0.8),
        0 0 20px rgba(0, 255, 234, 0.5),
        0 0 30px rgba(0, 255, 234, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 255, 234, 0.8),
            0 0 20px rgba(0, 255, 234, 0.5),
            0 0 30px rgba(0, 255, 234, 0.3);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(0, 255, 234, 1),
            0 0 30px rgba(0, 255, 234, 0.7),
            0 0 45px rgba(0, 255, 234, 0.5);
    }
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #00ffea 0%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 255, 234, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.nav-menu li a {
    display: block;
    padding: 0.7rem 1.4rem;
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00ffea;
    box-shadow: 0 0 8px rgba(0, 255, 234, 0.8);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 70%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.6);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid #00ffea;
    color: #00ffea;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(0, 255, 234, 0.3),
        inset 0 0 10px rgba(0, 255, 234, 0.1);
}

.mobile-toggle:hover {
    background: rgba(0, 255, 234, 0.1);
    box-shadow: 
        0 0 20px rgba(0, 255, 234, 0.5),
        inset 0 0 15px rgba(0, 255, 234, 0.2);
    transform: scale(1.05);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 145px 0 100px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 234, 0.2) 0%, transparent 65%);
    border-radius: 50%;
    animation: bioFloat 20s ease-in-out infinite;
    filter: blur(40px);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    animation: bioFloat 25s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes bioFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(40px, -50px) scale(1.15);
        opacity: 0.9;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: phosphorFadeIn 1.3s ease-out;
}

@keyframes phosphorFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0 0 20px rgba(0, 255, 234, 0.5),
        0 0 40px rgba(0, 255, 234, 0.3),
        0 0 60px rgba(0, 255, 234, 0.2);
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #a78bfa;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

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

.btn {
    display: inline-block;
    padding: 1.15rem 2.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    position: relative;
    border: 2px solid;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: rgba(0, 255, 234, 0.15);
    color: #00ffea;
    border-color: #00ffea;
    box-shadow: 
        0 0 20px rgba(0, 255, 234, 0.4),
        inset 0 0 20px rgba(0, 255, 234, 0.1);
}

.btn-primary:hover {
    background: rgba(0, 255, 234, 0.25);
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 255, 234, 0.6),
        inset 0 0 30px rgba(0, 255, 234, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #a78bfa;
    border-color: #a78bfa;
    box-shadow: 
        0 0 15px rgba(138, 43, 226, 0.3),
        inset 0 0 15px rgba(138, 43, 226, 0.05);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.15);
    color: #c4b5fd;
    transform: translateY(-3px);
    box-shadow: 
        0 0 25px rgba(138, 43, 226, 0.5),
        inset 0 0 25px rgba(138, 43, 226, 0.1);
}

.hero-image {
    animation: phosphorFadeIn 1.3s ease-out 0.3s both;
}

.profile-card {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 234, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 255, 234, 0.3),
        inset 0 0 40px rgba(0, 255, 234, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

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

.profile-card:hover::before {
    left: 100%;
}

.profile-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(0, 255, 234, 0.5),
        inset 0 0 60px rgba(0, 255, 234, 0.1);
    border-color: rgba(0, 255, 234, 0.6);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 30px rgba(0, 255, 234, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 234, 0.2);
    filter: brightness(0.95) contrast(1.1);
    transition: filter 0.4s ease;
}

.profile-card:hover img {
    filter: brightness(1.05) contrast(1.15);
}

.profile-details h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.6rem;
    color: #00ffea;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.6);
}

.profile-details p {
    color: #7dd3fc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.social-links a {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: rgba(0, 255, 234, 0.15);
    color: #00ffea;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 234, 0.4),
        inset 0 0 20px rgba(0, 255, 234, 0.1);
    border: 2px solid #00ffea;
}

.social-links a:hover {
    background: rgba(0, 255, 234, 0.25);
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 255, 234, 0.6),
        inset 0 0 30px rgba(0, 255, 234, 0.2);
}

section {
    padding: 110px 0;
    position: relative;
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '◊';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #00ffea;
    opacity: 0.4;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.6);
    animation: glowPulse 3s ease-in-out infinite;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 20px rgba(0, 255, 234, 0.5),
        0 0 40px rgba(0, 255, 234, 0.3);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #00ffea 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.8);
}

#experience {
    background: rgba(10, 14, 39, 0.3);
    backdrop-filter: blur(30px);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00ffea 0%, #a78bfa 50%, #00ffea 100%);
    box-shadow: 
        0 0 10px rgba(0, 255, 234, 0.6),
        0 0 20px rgba(0, 255, 234, 0.3);
}

.timeline-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    margin-bottom: 4.5rem;
    position: relative;
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #00ffea;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 2rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 15px rgba(0, 255, 234, 0.7),
        0 0 30px rgba(0, 255, 234, 0.4);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -53px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #00ffea;
    border: 4px solid #0a0e27;
    box-shadow: 
        0 0 0 6px rgba(0, 255, 234, 0.3),
        0 0 20px rgba(0, 255, 234, 0.6);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 6px rgba(0, 255, 234, 0.3),
            0 0 20px rgba(0, 255, 234, 0.6);
    }
    50% {
        box-shadow: 
            0 0 0 10px rgba(0, 255, 234, 0.2),
            0 0 30px rgba(0, 255, 234, 0.8);
    }
}

.timeline-content {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 234, 0.2);
    border-left: 4px solid #00ffea;
    transition: all 0.4s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 234, 0.2),
        inset 0 0 20px rgba(0, 255, 234, 0.05);
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: 
        0 0 35px rgba(0, 255, 234, 0.4),
        inset 0 0 35px rgba(0, 255, 234, 0.1);
    border-left-width: 5px;
    border-color: rgba(0, 255, 234, 0.4);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

.timeline-content h4 {
    color: #a78bfa;
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.timeline-content p {
    color: #7dd3fc;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.timeline-content a {
    color: #00ffea;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content a:hover {
    border-bottom-color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.6);
}

#ai {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.6) 100%);
    backdrop-filter: blur(30px);
}

.ai-projects {
    display: grid;
    gap: 3.5rem;
}

.project-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border: 2px solid rgba(0, 255, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 0 25px rgba(0, 255, 234, 0.2),
        inset 0 0 25px rgba(0, 255, 234, 0.05);
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ffea 0%, #a78bfa 50%, #00ffea 100%);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.6);
}

.project-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 234, 0.1) 0%, transparent 100%);
    transition: top 0.6s ease;
}

.project-card:hover::after {
    top: 0;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 45px rgba(0, 255, 234, 0.4),
        inset 0 0 45px rgba(0, 255, 234, 0.1);
    border-color: rgba(0, 255, 234, 0.4);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.project-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

.project-client {
    color: #a78bfa;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
}

.project-card > p {
    color: #7dd3fc;
    line-height: 1.75;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 1;
}

.project-impact {
    background: rgba(0, 255, 234, 0.08);
    padding: 1.8rem;
    border-left: 4px solid #00ffea;
    color: #7dd3fc;
    line-height: 1.75;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 234, 0.1),
        0 0 10px rgba(0, 255, 234, 0.2);
    position: relative;
    z-index: 1;
}

.project-impact strong {
    color: #00ffea;
    font-weight: 700;
}

#speaking {
    background: rgba(10, 14, 39, 0.3);
    backdrop-filter: blur(30px);
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.year-section {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(15px);
    padding: 2.8rem;
    border: 2px solid rgba(0, 255, 234, 0.2);
    transition: all 0.4s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 234, 0.2),
        inset 0 0 20px rgba(0, 255, 234, 0.05);
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 35px rgba(0, 255, 234, 0.4),
        inset 0 0 35px rgba(0, 255, 234, 0.1);
    border-color: rgba(0, 255, 234, 0.4);
}

.year-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00ffea;
    text-align: center;
    padding-bottom: 1.3rem;
    border-bottom: 2px solid rgba(0, 255, 234, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.6);
}

.year-section.books {
    grid-column: span 2;
    background: rgba(0, 255, 234, 0.1);
    border: 2px solid rgba(0, 255, 234, 0.4);
    box-shadow: 
        0 0 35px rgba(0, 255, 234, 0.3),
        inset 0 0 35px rgba(0, 255, 234, 0.1);
}

.year-section.books h3 {
    color: #00ffea;
    border-bottom-color: rgba(0, 255, 234, 0.5);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.1rem 0;
    color: #7dd3fc;
    border-bottom: 1px solid rgba(0, 255, 234, 0.1);
    line-height: 1.75;
    position: relative;
    padding-left: 2.5rem;
}

.achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ffea;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.6);
}

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

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

#personal {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.6) 100%);
    backdrop-filter: blur(30px);
}

#contact {
    background: rgba(10, 14, 39, 0.4);
    backdrop-filter: blur(30px);
}

.contact-card {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    padding: 5.5rem 4.5rem;
    text-align: center;
    box-shadow: 
        0 0 50px rgba(0, 255, 234, 0.3),
        inset 0 0 50px rgba(0, 255, 234, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid rgba(0, 255, 234, 0.3);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #00ffea 20%, #a78bfa 50%, #00ffea 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.6);
}

.contact-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(0, 255, 234, 0.5),
        0 0 40px rgba(0, 255, 234, 0.3);
}

.contact-card > p {
    font-size: 1.3rem;
    color: #7dd3fc;
    line-height: 1.75;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.4rem 3.2rem;
    background: rgba(0, 255, 234, 0.15);
    color: #00ffea;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 25px rgba(0, 255, 234, 0.4),
        inset 0 0 25px rgba(0, 255, 234, 0.1);
    border: 2px solid #00ffea;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 234, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.contact-link:hover::before {
    width: 400px;
    height: 400px;
}

.contact-link:hover {
    background: rgba(0, 255, 234, 0.25);
    transform: translateY(-5px);
    box-shadow: 
        0 0 40px rgba(0, 255, 234, 0.6),
        inset 0 0 40px rgba(0, 255, 234, 0.2);
}

.contact-link .icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 234, 0.6));
}

#footer {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 3.5rem 0;
    text-align: center;
    color: #7dd3fc;
    border-top: 2px solid rgba(0, 255, 234, 0.3);
    box-shadow: 
        0 -5px 30px rgba(0, 255, 234, 0.2),
        inset 0 1px 0 rgba(0, 255, 234, 0.1);
}

#footer a {
    color: #00ffea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

#footer a:hover {
    color: #a78bfa;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 520px;
        margin: 0 auto;
    }

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

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2.2rem;
        height: 78px;
    }

    html {
        scroll-padding-top: 78px;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2.8rem;
        gap: 0;
        box-shadow: 
            0 20px 50px rgba(0, 255, 234, 0.3),
            inset 0 -1px 0 rgba(0, 255, 234, 0.2);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 2px solid rgba(0, 255, 234, 0.3);
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        border-bottom: 1px solid rgba(0, 255, 234, 0.1);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.3rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .timeline::before {
        left: 22px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding-left: 4.5rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -42px;
        right: auto;
    }

    .contact-card {
        padding: 4.2rem 3rem;
    }
}

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

    .nav-container {
        padding: 0 2rem;
        height: 72px;
    }

    html {
        scroll-padding-top: 72px;
    }

    #hero {
        padding: 110px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

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

    .section-header h2 {
        font-size: 2.4rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .timeline-item {
        padding-left: 3.8rem;
    }

    .timeline-content {
        padding: 2.2rem;
    }

    .project-card {
        padding: 2.5rem 2rem;
    }

    .contact-card {
        padding: 3.8rem 2rem;
    }

    .contact-card h2 {
        font-size: 3rem;
    }

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

    .contact-link {
        justify-content: center;
        padding: 1.2rem 2.2rem;
        font-size: 0.95rem;
    }
}