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

        html {
            height: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #e8e8f0;
            background-color: #0a0a12;
            overflow-x: hidden;
        }

       /* Fixed Orb Background Layer */
.orb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a12 100%);
    overflow: hidden;
}

/* Orb Base */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

/* Primary Orb - Soft Purple Glow */
.orb-1 {
    top: 15%;
    left: 10%;
    width: clamp(250px, 35vw, 500px);
    height: clamp(250px, 35vw, 500px);
    background: radial-gradient(circle, rgba(147, 112, 219, 0.25) 0%, rgba(147, 112, 219, 0) 70%);
    animation: drift-1 25s ease-in-out infinite, pulse 8s ease-in-out infinite;
}

/* Secondary Orb - Soft Blue Glow */
.orb-2 {
    bottom: 20%;
    right: 15%;
    width: clamp(200px, 30vw, 450px);
    height: clamp(200px, 30vw, 450px);
    background: radial-gradient(circle, rgba(100, 149, 237, 0.2) 0%, rgba(100, 149, 237, 0) 70%);
    animation: drift-2 30s ease-in-out infinite, pulse 10s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

/* Accent Orb - Subtle Pink */
.orb-3 {
    top: 50%;
    right: 25%;
    width: clamp(150px, 25vw, 350px);
    height: clamp(150px, 25vw, 350px);
    background: radial-gradient(circle, rgba(219, 112, 147, 0.15) 0%, rgba(219, 112, 147, 0) 70%);
    animation: drift-3 20s ease-in-out infinite, pulse 7s ease-in-out infinite;
    animation-delay: 0s, 2s;
}

/* Small Accent Orb - Cyan Highlight */
.orb-4 {
    bottom: 35%;
    left: 20%;
    width: clamp(120px, 20vw, 280px);
    height: clamp(120px, 20vw, 280px);
    background: radial-gradient(circle, rgba(127, 255, 212, 0.12) 0%, rgba(127, 255, 212, 0) 70%);
    animation: drift-4 18s ease-in-out infinite, pulse 9s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

/* Drift Animations */
@keyframes drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.05); }
    66% { transform: translate(25px, -35px) scale(0.98); }
}

@keyframes drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.08); }
}

@keyframes drift-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, 25px) scale(1.06); }
}

/* Pulse (Fade In/Out) Animation */
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

        /* Navigation Bar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: clamp(20px, 3vw, 30px) clamp(20px, 5vw, 80px);
            background: rgba(10, 10, 18, 0.4);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 500;
            background: linear-gradient(135deg, #ffffff 0%, #a8a8b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: clamp(20px, 4vw, 40px);
            list-style: none;
        }

        .nav-links a {
            color: #b8b8c8;
            text-decoration: none;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Content Layer */
        .content {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: clamp(20px, 5vw, 80px);
            padding-top: clamp(100px, 15vw, 150px);
            text-align: center;
        }

        .content h1 {
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #a8a8b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideUp 1s ease-out;
        }

        .content p {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            color: #b8b8c8;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            animation: slideUp 1s ease-out 0.2s backwards;
        }

        .cta-button {
            padding: clamp(12px, 2vw, 18px) clamp(32px, 5vw, 48px);
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 500;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            animation: slideUp 1s ease-out 0.4s backwards;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite, slideUp 1s ease-out 0.6s backwards;
        }

        .scroll-indicator::after {
            content: '';
            display: block;
            width: 2px;
            height: 30px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
            margin: 0 auto;
            animation: scrollLine 2s infinite;
        }

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

        @keyframes scrollLine {
            0% { opacity: 0; height: 0; }
            50% { opacity: 1; height: 30px; }
            100% { opacity: 0; height: 30px; }
        }

        /* Additional Content Section */
        .extra-content {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
            background: rgba(10, 10, 18, 0.8);
            backdrop-filter: blur(20px);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 300;
            margin-bottom: clamp(40px, 8vw, 80px);
            background: linear-gradient(135deg, #ffffff 0%, #a8a8b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(20px, 4vw, 40px);
        }

        .feature-card {
            padding: clamp(24px, 4vw, 40px);
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .feature-card h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 400;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }

        .feature-card p {
            font-size: clamp(0.9rem, 2vw, 1rem);
            line-height: 1.6;
            color: #a8a8b8;
        }

        /* Contact Section */
        .contact-section {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
            background: rgba(15, 15, 22, 0.9);
            backdrop-filter: blur(20px);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: clamp(16px, 3vw, 24px);
            margin: clamp(30px, 5vw, 50px) 0;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .form-group label {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #b8b8c8;
            margin-bottom: 8px;
            font-weight: 400;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: clamp(12px, 2vw, 16px);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ffffff;
            font-size: clamp(0.9rem, 2vw, 1rem);
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

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

        .submit-button {
            padding: clamp(14px, 2.5vw, 18px) clamp(40px, 6vw, 60px);
            font-size: clamp(1rem, 2vw, 1.1rem);
            font-weight: 500;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            margin-top: 10px;
        }

        .submit-button:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
        }

        /* Success Message */
        .success-message {
            display: none;
            margin-top: 20px;
            padding: clamp(16px, 3vw, 20px);
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            border-radius: 12px;
            color: #81c784;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            text-align: center;
            animation: slideDown 0.5s ease-out;
        }

        .success-message.show {
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: clamp(20px, 4vw, 30px);
            margin-top: clamp(40px, 6vw, 60px);
        }

        .social-link {
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #b8b8c8;
            text-decoration: none;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: translateY(-4px);
        }

        /* Footer */
        footer {
            position: relative;
            z-index: 1;
            padding: clamp(30px, 5vw, 50px);
            text-align: center;
            background: rgba(10, 10, 18, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        footer p {
            color: #6a6a7a;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
        }

        /* About Section - Timeline Styles */
        .about-section {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
            background: rgba(10, 10, 18, 0.85);
            backdrop-filter: blur(20px);
        }

        /* About Story Card */
        .about-story {
            max-width: 1000px;
            margin: 0 auto clamp(60px, 10vw, 100px);
        }

        .story-card {
            position: relative;
            padding: clamp(40px, 6vw, 60px);
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.08) 0%, rgba(100, 149, 237, 0.08) 50%, rgba(219, 112, 147, 0.08) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            backdrop-filter: blur(20px);
            overflow: hidden;
            text-align: center;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #9370db, #6495ed, #db7093);
            opacity: 0.6;
        }

        .story-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
        }

        .story-icon {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(100, 149, 237, 0.2));
    border: 2px solid rgba(155, 135, 217, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.story-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.story-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

        .story-title-group {
            text-align: center;
        }

        .story-card h3 {
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 400;
            background: linear-gradient(135deg, #ffffff 0%, #9b87d9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .story-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: #9b87d9;
            font-weight: 400;
        }

        .story-content {
            display: grid;
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
        }

        .story-card p {
            font-size: clamp(1.05rem, 2.5vw, 1.2rem);
            line-height: 1.8;
            color: #c8c8d8;
            margin: 0;
            text-align: center;
            position: relative;
        }

        .story-card p::before {
            display: none;
        }

        .story-interests {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 35px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            justify-content: center;
        }

        .interest-tag {
            padding: 12px 24px;
            background: rgba(155, 135, 217, 0.12);
            border: 1px solid rgba(155, 135, 217, 0.3);
            border-radius: 25px;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            color: #b8a8e8;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .interest-tag:hover {
            background: rgba(155, 135, 217, 0.25);
            border-color: rgba(155, 135, 217, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(155, 135, 217, 0.2);
        }

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(40px, 8vw, 80px);
        }

        .timeline-section {
            position: relative;
        }

        .timeline-heading {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 400;
            margin-bottom: clamp(30px, 5vw, 50px);
            color: #ffffff;
        }

        .timeline-heading svg {
            color: #9b87d9;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, rgba(155, 135, 217, 0.5), rgba(155, 135, 217, 0.1));
        }

        .timeline-item {
            position: relative;
            margin-bottom: clamp(30px, 5vw, 40px);
            padding-bottom: clamp(20px, 4vw, 30px);
        }

        .timeline-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -35px;
            top: 8px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #9b87d9;
            box-shadow: 0 0 20px rgba(155, 135, 217, 0.5);
            z-index: 1;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: clamp(20px, 4vw, 30px);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .timeline-date {
            display: inline-block;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
            color: #9b87d9;
            background: rgba(155, 135, 217, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .timeline-content h4 {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            font-weight: 500;
            color: #ffffff;
            margin: 10px 0 5px;
        }

        .institution {
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            color: #b8b8c8;
            margin-bottom: 8px;
        }

        .details {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #8a8a9a;
            line-height: 1.5;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .orb {
                filter: blur(40px);
            }
            
            .content {
                padding: 40px 20px;
                padding-top: 120px;
            }

            .content h1 {
                font-size: 2.5rem;
            }

            .content p {
                font-size: 1.1rem;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(10, 10, 18, 0.98);
                backdrop-filter: blur(20px);
                padding: 20px;
                gap: 15px;
                display: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

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

            .mobile-menu-toggle {
                display: block;
            }
            
            /* Better spacing for mobile */
            .extra-content,
            .about-section,
            .contact-section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            /* Story card mobile improvements */
            .story-card {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .story-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .story-icon {
                font-size: 4rem;
            }

            .story-card h3 {
                font-size: 2rem;
            }

            .story-subtitle {
                font-size: 1.1rem;
            }

            .story-card p {
                font-size: 1.05rem;
                padding-left: 15px;
            }

            .story-interests {
                justify-content: center;
                margin-top: 25px;
                padding-top: 25px;
            }

            .interest-tag {
                padding: 10px 18px;
                font-size: 0.95rem;
            }

            /* Timeline mobile improvements */
            .timeline-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .timeline {
                padding-left: 25px;
            }

            .timeline-dot {
                left: -31px;
            }

            .timeline-content {
                padding: 20px;
            }

            .timeline-heading {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            /* Contact form mobile */
            .contact-form {
                gap: 20px;
            }

            .form-group input,
            .form-group textarea {
                padding: 14px;
                font-size: 1rem;
            }

            .submit-button {
                padding: 16px 40px;
                font-size: 1rem;
            }

            /* Social links mobile */
            .social-links {
                gap: 20px;
                margin-top: 40px;
            }

            .social-link {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            /* Projects grid mobile */
            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 25px 20px;
            }

            .feature-card h3 {
                font-size: 1.3rem;
            }

            .feature-card p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .orb-1, .orb-2, .orb-3, .orb-4 {
                filter: blur(30px);
            }

            nav {
                padding: 15px 20px;
            }

            .logo {
                font-size: 1.2rem;
            }

            .content {
                padding-top: 100px;
            }

            .content h1 {
                font-size: 2rem;
            }

            .content p {
                font-size: 1rem;
            }

            .cta-button {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .scroll-indicator {
                bottom: 30px;
            }

            /* Story card small mobile */
            .story-card {
                padding: 25px 18px;
            }

            .story-icon {
                font-size: 3.5rem;
            }

            .story-card h3 {
                font-size: 1.8rem;
            }

            .story-card p {
                font-size: 1rem;
                line-height: 1.7;
            }

            .interest-tag {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            /* Timeline extra small screens */
            .timeline-heading {
                font-size: 1.3rem;
            }

            .timeline-content h4 {
                font-size: 1.2rem;
            }

            .institution {
                font-size: 1rem;
            }

            .details {
                font-size: 0.95rem;
            }

            /* Contact small screens */
            .contact-container h2 {
                font-size: 1.8rem;
            }

            .submit-button {
                padding: 14px 36px;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }