/* ==========================================================================
   GTA Vice City Theme - Retro 80s Miami Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Vice City Color Palette
   -------------------------------------------------------------------------- */
:root {
    /* Primary neon colors */
    --vc-pink: #ff2d95;
    --vc-pink-light: #ff6eb4;
    --vc-cyan: #00f5ff;
    --vc-cyan-dark: #00b4d8;
    --vc-purple: #b537f2;
    --vc-purple-dark: #7b2cbf;
    --vc-orange: #ff6b35;
    --vc-yellow: #ffd700;

    /* Background colors */
    --vc-dark: #0a0a0f;
    --vc-darker: #050508;
    --vc-navy: #1a1a2e;
    --vc-navy-light: #16213e;

    /* Sunset gradient colors */
    --vc-sunset-1: #ff6b35;
    --vc-sunset-2: #ff2d95;
    --vc-sunset-3: #b537f2;
    --vc-sunset-4: #1a1a2e;

    /* Text colors */
    --vc-text: #ffffff;
    --vc-text-muted: #a0a0b0;
    --vc-text-dim: #606070;

    /* Glow effects */
    --glow-pink: 0 0 10px var(--vc-pink), 0 0 20px var(--vc-pink), 0 0 40px var(--vc-pink);
    --glow-cyan: 0 0 10px var(--vc-cyan), 0 0 20px var(--vc-cyan), 0 0 40px var(--vc-cyan);
    --glow-purple: 0 0 10px var(--vc-purple), 0 0 20px var(--vc-purple), 0 0 40px var(--vc-purple);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
}

/* --------------------------------------------------------------------------
   Base Styles & Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    background-color: var(--vc-darker);
    color: var(--vc-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.neon-text {
    text-shadow: var(--glow-pink);
}

.neon-text-cyan {
    color: var(--vc-cyan);
    text-shadow: var(--glow-cyan);
}

.neon-text-purple {
    color: var(--vc-purple);
    text-shadow: var(--glow-purple);
}

.gradient-text {
    background: linear-gradient(90deg, var(--vc-pink), var(--vc-cyan), var(--vc-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--vc-pink), var(--vc-cyan));
    margin: 20px auto 0;
    box-shadow: var(--glow-pink);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 45, 149, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--vc-pink);
    text-decoration: none;
    text-shadow: var(--glow-pink);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--vc-text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vc-cyan);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--vc-cyan);
    text-shadow: var(--glow-cyan);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--vc-pink);
    box-shadow: var(--glow-pink);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(181, 55, 242, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 90%, rgba(255, 45, 149, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 90%, rgba(0, 245, 255, 0.3) 0%, transparent 40%),
        linear-gradient(180deg,
            #050510 0%,
            #0a0a18 40%,
            #0f0f25 70%,
            #0a0a15 100%
        );
    z-index: -3;
}

/* Animated stars */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 45, 149, 0.7), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(0, 245, 255, 0.6), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(181, 55, 242, 0.7), transparent),
        radial-gradient(1px 1px at 250px 20px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 300px 50px, rgba(255, 45, 149, 0.6), transparent),
        radial-gradient(1px 1px at 350px 90px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 400px 40px, rgba(0, 245, 255, 0.5), transparent);
    background-size: 450px 120px;
    animation: twinkle 6s ease-in-out infinite;
}

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

/* Neon horizon container */
.hero-sun {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: -1;
}

/* Neon horizon glow */
.hero-sun::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--vc-pink) 15%,
        var(--vc-cyan) 35%,
        var(--vc-purple) 50%,
        var(--vc-cyan) 65%,
        var(--vc-pink) 85%,
        transparent 100%
    );
    box-shadow:
        0 0 30px var(--vc-pink),
        0 0 60px var(--vc-cyan),
        0 0 90px var(--vc-purple);
    animation: neonPulse 4s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.2); }
}

/* Retro grid floor */
.hero-grid {
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
    height: 35%;
    background:
        linear-gradient(90deg, rgba(0, 245, 255, 0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 45, 149, 0.4) 1px, transparent 1px);
    background-size: 100px 50px;
    transform: perspective(350px) rotateX(70deg);
    transform-origin: center top;
    z-index: -2;
    animation: gridMove 12s linear infinite;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 500px; }
}

/* Hide palm trees - using city instead */
.hero-palms {
    display: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    position: relative;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: var(--vc-cyan);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: var(--glow-cyan);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 20px;
    line-height: 1;
}

.hero-title .first-name {
    display: block;
    color: var(--vc-text);
    font-weight: 900;
    letter-spacing: 4px;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.8);
    paint-order: stroke fill;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
}

.hero-title .last-name {
    display: block;
    font-family: 'Pacifico', 'Brush Script MT', cursive;
    color: var(--vc-pink-light);
    font-size: 0.65em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: none;
    -webkit-text-stroke: 0;
    text-shadow:
        0 0 15px var(--vc-pink),
        0 0 30px var(--vc-pink),
        0 0 60px var(--vc-pink),
        0 0 100px var(--vc-pink-light),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
}

.hero-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--vc-cyan);
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow:
        0 0 10px var(--vc-cyan),
        0 0 20px rgba(0, 245, 255, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vc-pink), var(--vc-purple));
    color: var(--vc-text);
    border: 2px solid var(--vc-pink);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.btn-secondary {
    background: transparent;
    color: var(--vc-cyan);
    border: 2px solid var(--vc-cyan);
}

.btn-secondary:hover {
    background: var(--vc-cyan);
    color: var(--vc-dark);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    background: var(--vc-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vc-pink), var(--vc-cyan), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--vc-pink);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--vc-cyan);
    border-radius: 10px;
    z-index: -1;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--vc-pink);
}

.about-content p {
    color: var(--vc-text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--vc-navy);
    border-radius: 10px;
    border: 1px solid rgba(255, 45, 149, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--vc-cyan);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--vc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Skills Section
   -------------------------------------------------------------------------- */
.skills {
    background: linear-gradient(180deg, var(--vc-dark) 0%, var(--vc-navy) 100%);
}

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

.skill-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 45, 149, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vc-pink), var(--vc-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--vc-pink);
    box-shadow: 0 20px 40px rgba(255, 45, 149, 0.2);
}

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

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--vc-cyan);
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--vc-pink);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    padding: 5px 12px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--vc-cyan);
}

/* --------------------------------------------------------------------------
   Experience Timeline
   -------------------------------------------------------------------------- */
.experience {
    background: var(--vc-dark);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--vc-pink), var(--vc-cyan), var(--vc-purple));
    box-shadow: var(--glow-pink);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 5%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 5%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--vc-pink);
    border-radius: 50%;
    box-shadow: var(--glow-pink);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10%;
    transform: translateX(50%);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -5%;
    transform: translateX(-50%);
}

.timeline-content {
    background: var(--vc-navy);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 45, 149, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--vc-pink);
    box-shadow: 0 10px 30px rgba(255, 45, 149, 0.2);
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--vc-cyan);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.2rem;
    color: var(--vc-pink);
    margin-bottom: 5px;
}

.timeline-company {
    font-size: 1rem;
    color: var(--vc-text-muted);
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--vc-text-dim);
}

/* --------------------------------------------------------------------------
   Projects Section
   -------------------------------------------------------------------------- */
.projects {
    background: linear-gradient(180deg, var(--vc-navy) 0%, var(--vc-dark) 100%);
}

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

.project-card {
    background: var(--vc-navy);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 45, 149, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--vc-cyan);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--vc-purple-dark), var(--vc-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 50%, rgba(0, 245, 255, 0.1) 50%),
        linear-gradient(0deg, transparent 50%, rgba(0, 245, 255, 0.1) 50%);
    background-size: 4px 4px;
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 1.3rem;
    color: var(--vc-cyan);
    margin-bottom: 10px;
}

.project-description {
    color: var(--vc-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tech span {
    padding: 4px 10px;
    background: rgba(255, 45, 149, 0.1);
    border: 1px solid rgba(255, 45, 149, 0.3);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--vc-pink);
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-links a {
    color: var(--vc-cyan);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.project-links a:hover {
    color: var(--vc-pink);
    text-shadow: var(--glow-pink);
}

/* --------------------------------------------------------------------------
   Research Section
   -------------------------------------------------------------------------- */
.research {
    background: var(--vc-dark);
    position: relative;
}

.research-grid {
    display: grid;
    gap: 30px;
}

.research-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(181, 55, 242, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    transition: all 0.3s ease;
}

.research-card:hover {
    border-color: var(--vc-purple);
    box-shadow: 0 10px 40px rgba(181, 55, 242, 0.2);
}

.research-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vc-purple), var(--vc-pink));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.research-content h3 {
    font-size: 1.3rem;
    color: var(--vc-purple);
    margin-bottom: 10px;
}

.research-content p {
    color: var(--vc-text-muted);
    margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   Awards Section
   -------------------------------------------------------------------------- */
.awards {
    background: linear-gradient(180deg, var(--vc-dark) 0%, var(--vc-navy) 100%);
}

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

.award-card {
    background: var(--vc-navy);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--vc-yellow), var(--vc-orange)) 1;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.award-title {
    font-size: 1.1rem;
    color: var(--vc-yellow);
    margin-bottom: 10px;
}

.award-description {
    color: var(--vc-text-muted);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Education Section
   -------------------------------------------------------------------------- */
.education {
    background: var(--vc-dark);
}

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

.education-card {
    background: var(--vc-navy);
    border-left: 4px solid var(--vc-cyan);
    padding: 25px;
    transition: all 0.3s ease;
}

.education-card:hover {
    border-left-color: var(--vc-pink);
    box-shadow: 0 10px 30px rgba(255, 45, 149, 0.2);
}

.education-degree {
    font-size: 1.1rem;
    color: var(--vc-cyan);
    margin-bottom: 5px;
}

.education-school {
    font-size: 1rem;
    color: var(--vc-text);
    margin-bottom: 5px;
}

.education-date {
    font-size: 0.85rem;
    color: var(--vc-text-muted);
}

.education-gpa {
    margin-top: 10px;
    padding: 5px 10px;
    background: rgba(255, 45, 149, 0.2);
    border-radius: 5px;
    display: inline-block;
    font-size: 0.85rem;
    color: var(--vc-pink);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
    background: linear-gradient(180deg, var(--vc-navy) 0%, var(--vc-darker) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--vc-pink);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vc-pink), var(--vc-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--vc-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--vc-cyan);
}

.contact-form {
    background: var(--vc-navy);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 45, 149, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--vc-dark);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    color: var(--vc-text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vc-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--vc-darker);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 45, 149, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--vc-pink);
    text-shadow: var(--glow-pink);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--vc-navy);
    border: 1px solid var(--vc-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-pink);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--vc-pink);
    color: var(--vc-dark);
    box-shadow: var(--glow-pink);
    transform: translateY(-3px);
}

.footer-copyright {
    color: var(--vc-text-muted);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Scanlines Effect (Optional)
   -------------------------------------------------------------------------- */
.scanlines::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image::before {
        display: none;
    }

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

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: calc(100% - 50px);
        margin-left: 50px;
        text-align: left;
        padding-left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -40px;
        transform: none;
    }

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

    .research-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .research-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--vc-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--vc-pink);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }


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

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

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

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

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: var(--glow-pink);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-neon {
    animation: neonFlicker 3s infinite;
}

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

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