:root {
    --bg-color: #030712;
    --bg-secondary: #0a0f1a;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --primary-color: #38bdf8;
    --secondary-color: #818cf8;
    --accent-color: #c084fc;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

/* Light Theme */
[data-theme="light"] {
    --bg-color: #f8fafc;
    --bg-secondary: #e2e8f0;
    --text-color: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Custom Cursor - Desktop Only */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none;
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--text-color);
        transition: background-color 0.3s;
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.3s;
    }

    [data-theme="light"] .cursor-outline {
        border-color: rgba(0, 0, 0, 0.3);
    }
}

/* Floating Particles Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Parallax Background */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    will-change: transform;
    transition: opacity 0.4s;
}

[data-theme="light"] .globe {
    opacity: 0.3;
    filter: blur(120px);
}

.globe-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, var(--primary-color), transparent 60%);
    top: -10%;
    left: -10%;
}

.globe-2 {
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, var(--accent-color), transparent 60%);
    bottom: -15%;
    right: -15%;
}

.globe-3 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(circle, var(--secondary-color), transparent 60%);
    top: 50%;
    left: 40%;
    opacity: 0.3;
}

/* Navbar - Mobile First */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(3, 7, 18, 0.7);
    transition: background-color 0.3s;
}

[data-theme="light"] .navbar {
    background: rgba(248, 250, 252, 0.8);
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.nav-links {
    list-style: none;
    display: none;
    gap: 2rem;
}

/* Nav Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    border-color: var(--primary-color);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
@media (max-width: 767px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-color);
        padding: 100px 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1rem;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 768px) {
    .navbar {
        padding: 1.5rem 5%;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.3s;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
}

.theme-icon {
    position: absolute;
    font-size: 1.2rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.theme-icon.sun {
    opacity: 0;
    transform: translateY(20px) rotate(-90deg);
}

.theme-icon.moon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

[data-theme="light"] .theme-icon.sun {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

[data-theme="light"] .theme-icon.moon {
    opacity: 0;
    transform: translateY(-20px) rotate(90deg);
}

/* General Layout - Mobile First */
main {
    padding-top: 70px;
}

.section {
    padding: 4rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 5%;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 8%;
    }
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Glassmorphism Card with Spotlight & Tilt */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

@media (min-width: 768px) {
    .glass {
        padding: 2.5rem;
        border-radius: 24px;
    }
}

/* Spotlight Effect */
.glass::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

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

.glass:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .glass:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.glass>* {
    position: relative;
    z-index: 1;
}

/* 3D Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Profile Photo with Glow Ring */
.profile-photo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .profile-photo-container {
        width: 180px;
        height: 180px;
    }
}

.profile-glow-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            var(--primary-color),
            var(--secondary-color),
            var(--accent-color),
            var(--primary-color));
    animation: rotateGlow 3s linear infinite;
    opacity: 0.8;
}

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

    to {
        transform: rotate(360deg);
    }
}

.profile-photo {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.profile-placeholder {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Photo View Hint */
.photo-view-hint {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.profile-photo-container:hover .photo-view-hint {
    opacity: 1;
    bottom: -20px;
}

/* Photo Lightbox Modal */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-photo {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    cursor: default;
}

.photo-modal.active .modal-photo {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    line-height: 1;
}

.modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Hero Section - Mobile First */
.hero {
    text-align: center;
    min-height: 100svh;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Image with Overlay */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* ===== REPLACE 'cover.jpg' WITH YOUR ACTUAL COVER IMAGE PATH ===== */
    background-image: url('cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark Overlay on top of background */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient overlay for better text readability */
    background: linear-gradient(to bottom,
            rgba(3, 7, 18, 0.7) 0%,
            rgba(3, 7, 18, 0.85) 50%,
            rgba(3, 7, 18, 0.95) 100%);
}

[data-theme="light"] .hero-background::after {
    background: linear-gradient(to bottom,
            rgba(248, 250, 252, 0.7) 0%,
            rgba(248, 250, 252, 0.85) 50%,
            rgba(248, 250, 252, 0.95) 100%);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

/* Animated Gradient Text */
.gradient-text-animated {
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color),
            var(--accent-color),
            var(--primary-color));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.description {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* Buttons - Mobile First */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: 100%;
    max-width: 280px;
    position: relative;
}

@media (min-width: 480px) {
    .btn {
        width: auto;
        max-width: none;
    }
}

.btn.primary {
    background: var(--text-color);
    color: var(--bg-color);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.btn.primary:hover {
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.3);
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

.btn.secondary:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Magnetic Button Effect (handled by JS) */
.magnetic {
    transition: transform 0.2s ease;
}

/* Bento Grid System - Mobile First */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(250px, auto);
    }

    .project-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .project-card.medium {
        grid-column: span 2;
    }

    .project-card.tall {
        grid-row: span 2;
    }
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 200px;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.tag {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="light"] .tag {
    background: rgba(0, 0, 0, 0.05);
}

.card-header {
    margin-bottom: 1rem;
}

/* Stats Styling */
.stat-group {
    margin-bottom: 1.5rem;
}

.stat-group:last-child {
    margin-bottom: 0;
}

.stat-group h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-color);
}

.stat-sub {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.3rem;
}

/* Family List */
.family-list {
    list-style: none;
}

.family-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.family-list strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
    .family-list strong {
        display: inline-block;
        min-width: 80px;
    }
}

/* Timeline Section */
.timeline-section {
    min-height: auto;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
    margin-left: 20px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.timeline-year {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Partner Preferences */
.preference-section {
    max-width: 900px;
    margin: 0 auto;
}

.preference-section blockquote {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-muted);
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 0;
}

.preference-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .preference-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.preference-grid h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.preference-grid ul {
    list-style: none;
    color: var(--text-muted);
}

.preference-grid ul li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.preference-grid ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact Section */
.contact-card {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

@media (min-width: 480px) {
    .contact-methods {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered Animation Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Timeline Content Fix - ensure visible */
.timeline-content.glass {
    opacity: 1;
    transform: none;
}

.timeline-item.reveal.visible .timeline-content.glass {
    opacity: 1;
    transform: none;
}