/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-dark: #0a0a0f;
    --bg-card: #13131a;
    --bg-card-hover: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b7f;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.1) inset;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.5) 20%, 
        rgba(139, 92, 246, 0.5) 50%, 
        rgba(99, 102, 241, 0.5) 80%, 
        transparent 100%);
    animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
    0% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo::before {
    content: '◉';
    font-size: 0.75rem;
    color: var(--primary-color);
    animation: pulse-dot 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.8));
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.nav-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.nav-logo:hover::after {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover::after {
    width: calc(100% - 2.5rem);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.nav-link.active::before {
    opacity: 0.2;
}

.nav-link.active::after {
    width: calc(100% - 2.5rem);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover::before {
    opacity: 1;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(99, 102, 241, 0.5);
}

.hamburger:hover span {
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

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

/* Decorative Elements - Coding */
.code-element {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.4);
    font-weight: bold;
    pointer-events: none;
    z-index: 0;
    animation: float-code 15s ease-in-out infinite;
}

.code-1 {
    top: 15%;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.code-2 {
    top: 60%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.code-3 {
    bottom: 20%;
    left: 20%;
    animation-duration: 22s;
    animation-delay: 6s;
    font-size: 1.5rem;
    color: rgba(139, 92, 246, 0.3);
}

@keyframes float-code {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -20px) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 30px) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 20px) rotate(3deg);
        opacity: 0.5;
    }
}

/* Decorative Elements - Travel */
.travel-element {
    position: absolute;
    font-size: 2.5rem;
    pointer-events: none;
    z-index: 0;
    animation: float-travel 12s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.travel-1 {
    top: 25%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: 0s;
}

.travel-2 {
    top: 70%;
    left: 15%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.travel-3 {
    bottom: 30%;
    right: 25%;
    animation-duration: 18s;
    animation-delay: 8s;
    font-size: 2rem;
}

@keyframes float-travel {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: translate(40px, -30px) rotate(10deg);
        opacity: 0.6;
    }
    66% {
        transform: translate(-30px, 40px) rotate(-10deg);
        opacity: 0.5;
    }
}

/* Decorative Elements - Reading */
.reading-element {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    z-index: 0;
    animation: float-reading 10s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.reading-1 {
    top: 40%;
    left: 8%;
    animation-duration: 14s;
    animation-delay: 0s;
}

.reading-2 {
    top: 80%;
    right: 12%;
    animation-duration: 12s;
    animation-delay: 5s;
}

.reading-3 {
    bottom: 15%;
    left: 30%;
    animation-duration: 16s;
    animation-delay: 10s;
    font-size: 1.5rem;
}

@keyframes float-reading {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.35;
    }
    50% {
        transform: translate(25px, -25px) rotate(5deg);
        opacity: 0.55;
    }
}

/* Section Decorations */
.section-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.travel-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float-decoration 20s ease-in-out infinite;
}

.travel-dec-1 {
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.travel-dec-2 {
    top: 50%;
    right: 8%;
    animation-duration: 30s;
    animation-delay: 5s;
}

.travel-dec-3 {
    bottom: 15%;
    left: 10%;
    animation-duration: 22s;
    animation-delay: 10s;
}

.reading-decoration {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float-decoration 18s ease-in-out infinite;
}

.reading-dec-1 {
    top: 20%;
    right: 10%;
    animation-duration: 24s;
}

.reading-dec-2 {
    bottom: 20%;
    left: 8%;
    animation-duration: 20s;
    animation-delay: 7s;
}

.coding-decoration {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.2);
    font-weight: bold;
    opacity: 0.2;
    animation: float-decoration 15s ease-in-out infinite;
}

.coding-dec-1 {
    top: 15%;
    left: 12%;
    font-size: 2.5rem;
    animation-duration: 22s;
}

.coding-dec-2 {
    bottom: 25%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 8s;
}

@keyframes float-decoration {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 30px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.linkedin-link:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.5);
    color: #0077b5;
}

.location-icon {
    width: 18px;
    height: 18px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

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

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.education-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.education-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.education-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.education-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.field {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.university {
    color: var(--primary-color);
    font-weight: 500;
}

/* Education Section Index */
.education-section-index {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

.education-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.education-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 0 0 20px;
}

.education-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.education-item:hover::before {
    opacity: 1;
}

.education-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.upm-logo {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.ucsi-logo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.president-logo {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.education-details {
    flex: 1;
}

.education-degree {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.education-field {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.education-institution {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.education-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

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

.education-grade {
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.education-research {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(99, 102, 241, 0.3);
}

.education-research strong {
    color: var(--text-primary);
}

.education-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Travel Section */
.travel-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    position: relative;
}

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

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.travel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.travel-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.travel-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.travel-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Professional Section */
.professional-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.professional-content {
    max-width: 900px;
    margin: 0 auto;
}

.professional-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.professional-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: var(--shadow-glow);
}

.professional-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.company-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.professional-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.company-role {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

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

.tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Interests Section */
.interests-section {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
}

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

.interests-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.interest-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.interest-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.reading-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.interest-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reading-card .interest-icon {
    background: var(--gradient-1);
}

.interest-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.interest-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.baking-items {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.baking-item {
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 10, 15, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    position: relative;
    overflow: visible;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0.3;
}

.footer-top {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-nav a:hover {
    color: var(--text-primary);
    padding-left: 20px;
}

.footer-nav a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    width: fit-content;
}

.footer-social-link:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.5);
    color: #0077b5;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-location svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-content p {
    margin: 0;
    color: var(--text-muted);
    display: block;
}

.footer-crafted {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--text-muted);
}

.aeroer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.25rem;
}

.aeroer-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.heart {
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Writing Page Styles */
.writing-hero {
    padding-top: 120px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

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

.writing-icon-large {
    font-size: 6rem;
    margin-bottom: 2rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.writing-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.writing-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
}

/* Coming Soon Section */
.coming-soon-section {
    background: var(--bg-dark);
    padding: 6rem 0;
}

.coming-soon-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    animation: scan-line 3s linear infinite;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-icon 2s ease-in-out infinite;
}

.coming-soon-icon svg {
    width: 60px;
    height: 60px;
    color: white;
    z-index: 2;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.coming-soon-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.coming-soon-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Planned Content Section */
.planned-content-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

.planned-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.planned-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.planned-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planned-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

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

.travel-writing-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.book-writing-card:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.photos-writing-card:hover {
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
}

.planned-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.planned-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.planned-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.planned-feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.planned-feature-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Why Writing Section */
.why-writing-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.why-writing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.why-writing-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-writing-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Professional Page Styles */
.professional-hero {
    padding-top: 120px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

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

.professional-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.professional-hero-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.professional-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.professional-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
}

.professional-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.company-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-icon-large svg {
    width: 50px;
    height: 50px;
    color: white;
}

.company-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.company-type {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.company-location {
    color: var(--primary-color);
    font-weight: 500;
}

.role-details {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.role-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.role-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contribution-item {
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contribution-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
}

.contribution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contribution-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contribution-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Work Experience Section */
.experience-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.experience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

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

.experience-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.company-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mediway-logo {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.nardev-logo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.fresco-logo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.experience-title-info {
    flex: 1;
}

.experience-title-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.company-name {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.experience-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.employment-type {
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.experience-dates {
    font-weight: 500;
}

.experience-duration {
    color: var(--text-secondary);
}

.experience-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.experience-content {
    padding-top: 1rem;
}

.responsibilities-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.responsibilities-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.responsibilities-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.skill-badge {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.perspective-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

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

.perspective-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.perspective-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.perspective-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.perspective-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.perspective-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.skills-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

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

.skill-category {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

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

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.skill-category-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.skill-category h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.education-section {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.education-detailed-card {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    margin-top: 3rem;
}

.education-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.education-icon-large svg {
    width: 50px;
    height: 50px;
    color: white;
}

.education-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.education-field {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.education-university {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.education-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

.vision-section {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.vision-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Interests Page Styles */
.interests-hero {
    padding-top: 120px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

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

.interests-hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.baking-icon-large {
    font-size: 6rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.reading-icon-large {
    font-size: 6rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.interests-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interests-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
}

.baking-section {
    background: var(--bg-dark);
}

.baking-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.baking-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.baking-icon-main {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.baking-icon-main svg {
    width: 50px;
    height: 50px;
    color: white;
}

.baking-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.baking-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.baking-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.baking-type-card {
    padding: 2.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.baking-type-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
}

.baking-type-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.baking-type-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.baking-type-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.baking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Reading Section Styles */
.reading-section {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.reading-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.reading-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.reading-icon-main {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reading-icon-main svg {
    width: 50px;
    height: 50px;
    color: white;
}

.reading-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reading-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.reading-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.reading-type-card {
    padding: 2.5rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.reading-type-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
}

.reading-type-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.reading-type-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reading-type-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.reading-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.reading-features .feature-tag {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
}

/* Reading List Section */
.reading-list-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

.reading-status-section {
    margin-bottom: 3rem;
}

.reading-status-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.status-icon {
    font-size: 2rem;
}

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

.book-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

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

.book-card.current-reading {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.book-card.current-reading::before {
    opacity: 1;
}

.book-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    animation: float-book 3s ease-in-out infinite;
}

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

.book-cover-container {
    flex-shrink: 0;
    width: 120px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    background: var(--bg-card-hover);
}

.book-card:hover .book-cover-container {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.4);
}

.book-card.current-reading .book-cover-container {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.book-card:hover .book-cover {
    transform: scale(1.05);
}

.book-cover-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover .book-cover-container::after {
    opacity: 1;
}

.book-info {
    flex: 1;
}

.book-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.book-author {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.reading-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
}

.reading-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
    animation: none;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }
}

.why-reading-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

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

.why-baking-section {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.why-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.baking-philosophy-section {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.philosophy-baking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.philosophy-baking-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.philosophy-baking-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-baking-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Additional tech-style enhancements */
@media (min-width: 769px) {
    .nav-link {
        overflow: hidden;
    }
    
    .nav-link:hover {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    
    .nav-link.active {
        text-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    }
}

/* Tech-style mobile menu improvements */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(19, 19, 26, 0.98);
        backdrop-filter: blur(30px);
    }
    
    .nav-link {
        margin: 0 1rem;
        justify-content: center;
    }
    
    .nav-link::after {
        bottom: 0.75rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--primary-color);
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--primary-color);
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(19, 19, 26, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        padding: 2rem 0;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-1);
        opacity: 0.5;
    }

    .hamburger {
        display: flex;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
    }

    .professional-header {
        flex-direction: column;
        text-align: center;
    }

    .travel-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .travel-icon {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-social-link {
        margin: 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .skills-tags {
        justify-content: center;
    }
}

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

    .hero-content {
        padding: 1rem;
    }

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

    /* Reduce decorative elements on mobile */
    .code-element,
    .travel-element,
    .reading-element {
        font-size: 1.5rem;
        opacity: 0.2;
    }

    .travel-decoration,
    .reading-decoration,
    .coding-decoration {
        font-size: 1.5rem;
        opacity: 0.1;
    }

    .education-card,
    .professional-card,
    .interest-card {
        padding: 1.5rem;
    }

    .professional-main-card,
    .baking-main-card,
    .reading-main-card {
        padding: 2rem;
    }

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

    .contribution-grid,
    .perspective-content,
    .baking-types,
    .reading-types,
    .books-grid,
    .why-baking-grid,
    .why-reading-grid,
    .skills-container {
        grid-template-columns: 1fr;
    }

    .skill-category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .book-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .book-cover-container {
        width: 100px;
        height: 150px;
        margin: 0 auto;
    }

    .education-detailed-card,
    .education-item,
    .baking-header,
    .reading-header,
    .experience-header {
        flex-direction: column;
        text-align: center;
    }

    .education-logo-placeholder {
        margin: 0 auto;
    }

    .education-meta {
        justify-content: center;
    }

    .company-logo-placeholder {
        margin: 0 auto;
    }

    .experience-meta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .interests-hero-icons {
        gap: 1rem;
    }

    .baking-icon-large,
    .reading-icon-large {
        font-size: 4rem;
    }

    .vision-content,
    .philosophy-baking-content,
    .why-writing-content {
        padding: 2rem;
    }

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

    .coming-soon-card {
        padding: 3rem 2rem;
    }
}

