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

:root {
    --primary-black: #0f172a;
    --primary-white: #ffffff;
    --accent-pink: #06b6d4;
    --soft-pink: #67e8f9;
    --gray-light: #f8fafc;
    --gray-medium: #64748b;
    --gray-dark: #1e293b;
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--primary-white);
    overflow-x: hidden;
}

.nav-hover {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 6px;
}

.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--primary-black);
    border-radius: 2px;
}

.hover-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    min-width: 220px;
}

.hover-menu a {
    display: block;
    padding: 6px 4px;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 15px;
}

.hover-menu a:hover {
    color: var(--accent-pink);
}

.nav-hover:hover .hover-menu {
    display: block;
}

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

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    width: 100%;
    text-align: center;
    padding: 4rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--gray-light) 100%);
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 4rem; /* Add top padding for spacing from top */
    padding-bottom: 6rem; /* Add padding to prevent overlap with scroll indicator */
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-black), var(--accent-pink));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.profile-image:hover::before {
    opacity: 1;
}

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

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

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gray-dark) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.resume-link {
    margin-top: 1rem;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-pink);
    text-decoration: none;
}

.resume-link:hover {
    color: var(--soft-pink);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem; /* Increased from 2rem to provide more space */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10; /* Ensure it stays above other elements */
}

.scroll-arrow {
    width: 2px;
    height: 28px; /* Reduced from 40px to make it shorter */
    background: var(--accent-pink);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent-pink);
    border-bottom: 2px solid var(--accent-pink);
    transform: rotate(45deg);
}

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

/* About Section - Snapshot */
.about-section {
    background: var(--primary-black);
    color: var(--primary-white);
}

.snapshot-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.snapshot-icon {
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

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

.about-section .section-title {
    color: var(--primary-white);
    margin-bottom: 0;
}

.about-section .section-title::after {
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

.snapshot-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-quote {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

.main-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--primary-white);
    font-style: italic;
    position: relative;
}

.main-quote p::before,
.main-quote p::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-pink);
    position: absolute;
    top: -0.5rem;
}

.main-quote p::before {
    left: -2rem;
}

.main-quote p::after {
    right: -2rem;
}

.subtext {
    margin-bottom: 4rem;
}

.subtext p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;
    color: var(--gray-light);
    font-weight: 300;
}

.journey-map {
    margin: 4rem 0;
    padding: 3rem 0;
}

.flight-container {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.flight-svg {
    width: 100%;
    height: 100%;
    max-width: 800px;
}

#flight-path {
    stroke-dasharray: 15,10;
    animation: dashMove 3s linear infinite;
    filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.4));
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -25;
    }
}

.country-marker {
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

.country-marker:hover {
    r: 12;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.9));
}

.flying-plane {
    position: absolute;
    font-size: 2rem;
    z-index: 10;
    animation: flyAlongPath 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.5));
    transform-origin: center;
}

@keyframes flyAlongPath {
    0% {
        left: 10%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(15deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    50% {
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 90%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-15deg);
        opacity: 0;
    }
}

.country-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
    gap: 2rem;
}

.country-label {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    flex: 1;
}

.country-label:nth-child(1) { animation-delay: 1s; }
.country-label:nth-child(2) { animation-delay: 1.3s; }
.country-label:nth-child(3) { animation-delay: 1.6s; }

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

.country-code {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.country-full-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.3rem;
    letter-spacing: 0.15em;
}

.country-subtitle {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-style: italic;
    font-weight: 300;
}

/* Add particles effect */
.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(6, 182, 212, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(6, 182, 212, 0.08) 1px, transparent 1px);
    background-size: 80px 80px, 60px 60px, 40px 40px, 100px 100px;
    animation: floatParticles 25s linear infinite;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .map-container {
        padding: 2rem 1rem;
        min-height: 400px;
    }
    
    .world-map {
        height: 300px;
    }
    
    .country-labels {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .country-code {
        font-size: 2rem;
    }
    
    .country-full-name {
        font-size: 1rem;
    }
    
    .flying-plane {
        font-size: 2rem;
    }
    
    @keyframes flyAlongPath {
        0% {
            left: 78%;
            top: 33%;
            transform: rotate(-45deg);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        45% {
            left: 52%;
            top: 31%;
            transform: rotate(-25deg);
        }
        50% {
            left: 52%;
            top: 31%;
            transform: rotate(-25deg);
        }
        85% {
            opacity: 1;
        }
        100% {
            left: 22%;
            top: 37%;
            transform: rotate(-15deg);
            opacity: 0;
        }
    }
}

@keyframes floatParticles {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50px); }
}

/* Country tooltip */
.country-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid var(--accent-pink);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 10;
    pointer-events: none;
}

.country-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--accent-pink);
}

.country-tooltip strong {
    color: var(--accent-pink);
}

/* Country Modal */
.country-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: var(--transition-fast);
}

.modal-content {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    border: 2px solid var(--accent-pink);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-medium);
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--accent-pink);
    transform: scale(1.2);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    background: linear-gradient(135deg, var(--primary-black), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Academic Highlights Section */
.academic-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, #0c1426 100%);
    position: relative;
    overflow: hidden;
}

.academic-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.academic-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.academic-section .section-title {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.academic-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0 0.5rem 0;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin: 2.5rem 0;
    opacity: 0;
    transform: translateY(50px);
    animation: stepReveal 0.8s ease forwards;
    position: relative;
}

.timeline-step:nth-child(1) { animation-delay: 0.5s; }
.timeline-step:nth-child(2) { animation-delay: 1s; }
.timeline-step:nth-child(3) { animation-delay: 1.5s; }

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

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

.step-marker {
    position: relative;
    z-index: 2;
    margin: 0 1.2rem;
    flex-shrink: 0;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #0891b2 100%);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.8);
}

.step-content {
    flex: 1;
    max-width: 320px;
    min-height: 180px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-5px);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.step-location {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.step-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Academic step image hover effect */
.step-image-container {
    position: absolute;
    top: 60%;
    right: -220px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    pointer-events: none;
}

.step-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) saturate(1.2);
}

.step-content:hover .step-image-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1.05);
}

/* For even numbered steps (right-aligned), show image on the left */
.timeline-step:nth-child(even) .step-image-container {
    right: auto;
    left: -220px;
}

@keyframes stepGlow {
    0% {
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(6, 182, 212, 1), 0 0 80px rgba(6, 182, 212, 0.4);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
        transform: scale(1);
    }
}

/* Responsive design for academic timeline */
@media (max-width: 768px) {
    .timeline-step {
        flex-direction: row !important;
        margin-left: 0;
    }
    
    .timeline-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .step-marker {
        position: relative;
        left: 0;
        margin: 0 2rem;
    }
    
    .step-content {
        max-width: none;
    }
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, #020617 0%, var(--primary-black) 50%, #0c1426 100%);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.experience-header {
    text-align: center;
    margin-bottom: 3rem;
}

.experience-section .section-title {
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

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

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #0891b2 100%);
    transform: translateX(-50%);
}

.experience-item {
    display: flex;
    align-items: flex-start;
    margin: 3rem 0;
    position: relative;
}

.experience-item:nth-child(odd) {
    flex-direction: row;
}

.experience-item:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-year {
    flex: 0 0 120px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-white);
    text-align: center;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #0891b2 100%);
    padding: 0.8rem 1rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 
        0 8px 25px rgba(6, 182, 212, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.experience-year:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(6, 182, 212, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.experience-year::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background: var(--accent-pink);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px var(--primary-white), 0 0 15px rgba(6, 182, 212, 0.5);
}

.experience-item:nth-child(odd) .experience-year::before {
    right: -35px;
}

.experience-item:nth-child(even) .experience-year::before {
    left: -35px;
}

.experience-content {
    flex: 1;
    max-width: 450px;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
}

.experience-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-pink) 0%, 
        #0891b2 50%, 
        #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-content:hover::before {
    opacity: 1;
}

.experience-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(15, 23, 42, 0.9);
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.3rem;
}

.experience-company {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-pink);
    margin-bottom: 0.8rem;
}

.experience-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.experience-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-highlights li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: bold;
}

.highlight-metric {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1em;
    position: relative;
    padding: 0 4px;
    text-shadow: none;
}

.highlight-metric::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.4) 0%, rgba(233, 30, 99, 0.4) 100%);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.experience-highlights li:hover .highlight-metric::after {
    transform: scaleX(1);
}

.experience-highlights li {
    transition: all 0.3s ease;
}

.experience-highlights li:hover {
    transform: translateX(8px);
    color: var(--primary-white);
}

@media (max-width: 768px) {
    .experience-timeline::before {
        left: 30px;
    }
    
    .experience-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .experience-year {
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .experience-year::before {
        left: -45px !important;
    }
    
    .experience-content {
        margin: 0;
        max-width: none;
    }
}

/* What I Love to Build Section */
.projects-section {
    background: linear-gradient(135deg, #020617 0%, var(--primary-black) 50%, #0c1426 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.projects-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.projects-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.projects-section .section-title {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-subtitle p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gray-light);
    font-style: italic;
    font-weight: 400;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: projectReveal 0.8s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }
.project-card:nth-child(4) { animation-delay: 0.8s; }
.project-card:nth-child(5) { animation-delay: 1.0s; }
.project-card:nth-child(6) { animation-delay: 1.2s; }
.project-card:nth-child(7) { animation-delay: 1.4s; }
.project-card:nth-child(8) { animation-delay: 1.6s; }

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

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

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

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(6, 182, 212, 0.2);
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.project-example {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-style: italic;
}

.project-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.github-link {
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.github-link:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.github-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.github-link:hover .github-icon {
    transform: rotate(360deg);
}

@keyframes iconBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive design for projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .projects-subtitle p {
        font-size: 1.1rem;
    }
}

/* Skills Section */
.skills-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, #0c1426 50%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 105, 180, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.skills-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.skills-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.6));
    animation: toolsRotate 4s ease-in-out infinite;
}

@keyframes toolsRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.skills-section .section-title {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Skills Container - Simple Layout */
.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

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

.skill-group {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: skillGroupReveal 0.6s ease forwards;
}

.skill-group:nth-child(1) { animation-delay: 0.2s; }
.skill-group:nth-child(2) { animation-delay: 0.4s; }
.skills-column:nth-child(2) .skill-group:nth-child(1) { animation-delay: 0.6s; }
.skills-column:nth-child(2) .skill-group:nth-child(2) { animation-delay: 0.8s; }

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

.skill-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
}

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

.skill-group-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.skill-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin: 0;
}

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

.skill-tag {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 105, 180, 0.05) 100%);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    color: var(--gray-dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 105, 180, 0.1) 100%);
    border-color: rgba(255, 105, 180, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

/* Soft Skills Floating Bubbles */
.soft-skills-section {
    text-align: center;
    position: relative;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
}

.soft-skills-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 3rem;
    opacity: 0;
    animation: titleFadeIn 1s ease 1s forwards;
}

@keyframes titleFadeIn {
    to {
        opacity: 1;
    }
}

.soft-skills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    min-height: 200px;
}

.skill-bubble {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(255, 105, 180, 0.05) 100%);
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.5);
}

.bubble-1 { 
    animation: bubbleFloat 1s ease 1.2s forwards, float1 6s ease-in-out infinite 2.2s;
}
.bubble-2 { 
    animation: bubbleFloat 1s ease 1.4s forwards, float2 7s ease-in-out infinite 2.4s;
}
.bubble-3 { 
    animation: bubbleFloat 1s ease 1.6s forwards, float3 8s ease-in-out infinite 2.6s;
}
.bubble-4 { 
    animation: bubbleFloat 1s ease 1.8s forwards, float4 6.5s ease-in-out infinite 2.8s;
}
.bubble-5 { 
    animation: bubbleFloat 1s ease 2.0s forwards, float5 7.5s ease-in-out infinite 3.0s;
}

@keyframes bubbleFloat {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(10px) rotate(-2deg); }
    66% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(15px) rotate(-2deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(12px) rotate(-1deg); }
    66% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(1deg); }
    66% { transform: translateY(8px) rotate(-1deg); }
}

.skill-bubble::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-bubble:hover::before {
    opacity: 1;
}

.skill-bubble:hover {
    transform: scale(1.1);
    border-color: rgba(255, 105, 180, 0.8);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.25) 0%, rgba(255, 105, 180, 0.1) 100%);
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.4);
}

.bubble-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.6));
    transition: all 0.3s ease;
}

.skill-bubble:hover .bubble-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 25px rgba(255, 105, 180, 0.9));
}

.bubble-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-white);
    text-align: center;
    transition: all 0.3s ease;
}

.skill-bubble:hover .bubble-text {
    color: var(--accent-pink);
    transform: scale(1.05);
}

/* Responsive design for skills */
@media (max-width: 968px) {
    .tech-stack {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .soft-skills-container {
        gap: 2rem;
    }
    
    .skill-bubble {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .tech-category {
        padding: 2rem;
    }
    
    .tech-blocks {
        gap: 0.6rem;
    }
    
    .tech-block {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .skill-bubble {
        width: 130px;
        height: 130px;
    }
    
    .bubble-icon {
        font-size: 2rem;
    }
    
    .bubble-text {
        font-size: 1rem;
    }
}

/* Journey Section */
.journey-section {
    background: var(--primary-white);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-pink), var(--primary-black), var(--accent-pink));
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    justify-content: space-between;
}

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

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-right: auto;
}

.timeline-year {
    font-family: 'Source Sans Pro', sans-serif;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-black);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid var(--primary-white);
    box-shadow: 0 0 0 2px var(--accent-pink);
}

.timeline-content {
    width: 45%;
    padding: 0 2rem;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.timeline-content p {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background: var(--primary-black);
    color: var(--primary-white);
}

.values-section .section-title {
    color: var(--primary-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--gray-dark);
    border-radius: 15px;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
}

.value-item:hover {
    border-color: var(--accent-pink);
    transform: translateY(-10px);
    background: rgba(255, 105, 180, 0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.value-item:hover .value-icon {
    filter: grayscale(0%);
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.value-item p {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--primary-white) 100%);
}

.contact-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-link {
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, #0c1426 100%);
    border: 2px solid var(--primary-black);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.contact-link:hover {
    background: linear-gradient(135deg, #020617 0%, #0c1426 100%);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.5);
}

.contact-link .arrow {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.contact-link:hover .arrow {
    transform: translateX(5px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-content {
        padding: 3rem 0;
    }
    
    .main-quote p::before,
    .main-quote p::after {
        display: none;
    }
    
    .main-quote p {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-column {
        gap: 1.5rem;
    }
    
    .skill-group {
        padding: 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-name {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-content {
        padding: 2rem 0;
    }
    
    .skill-category,
    .value-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-links {
        max-width: 100%;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
}

/* Smooth scrolling improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
