        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&display=swap');

        /* Base styles */
        :root {
            --bg-color: #f9fafb;
            --text-color: #1f2937;
            --primary-color: #3b82f6;
            --accent-color: #6d28d9;
            --card-bg: #ffffff;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .sidebar-trigger {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            /* background-color: var(--primary-color); */
            background-color: rgb(80, 195, 221);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top-right-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            box-shadow: var(--shadow);
            cursor: pointer;
            z-index: 101; /* Higher z-index to be on top of the sidebar */
            transition: transform 0.3s ease;
        }

        .sidebar-trigger:hover {
            transform: translateY(-50%) scale(1.1);
        }

        /* --- Side Navigation Bar --- */
        .nav-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 250px;
            background-color: var(--card-bg);
            box-shadow: var(--shadow);
            transform: translateX(-100%);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            z-index: 100;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .nav-sidebar.is-open {
            transform: translateX(0);
        }

        .nav-sidebar a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }

        .nav-sidebar a:hover {
            background-color: #f3f4f6;
        }

        /* --- Hero Section --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .hero-image-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        .hero-image-container img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hero-text-container {
            position: absolute;
            top: 75%;
            /* Initial position */
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        .hero-text-container h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            /* Make text readable on top of image initially */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        .hero-text-container p {
            margin-top: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.5;
            color: var(--text-color);
        }

        /* --- Sections --- */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
        }

        /* Tech Stack */
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            background-color: var(--card-bg);
            border-radius: 1rem;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tech-item:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .tech-item i {
            font-size: 4rem;
            transition: color 0.3s ease;
        }

        .tech-item span {
            margin-top: 1rem;
            font-weight: 600;
            font-size: 1.25rem;
        }

        /* Projects */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background-color: var(--card-bg);
            border-radius: 1rem;
            box-shadow: var(--shadow);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .project-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .project-card p {
            color: #4b5563;
        }

        .project-card .btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.75rem 2rem;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            text-align: center;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .project-card .btn:hover {
            background-color: #2563eb;
        }

        /* Resume Section */
        .resume-section {
            text-align: center;
        }

        .resume-section p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            color: #4b5563;
        }

        .resume-section a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #22c55e;
            color: white;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            /* pill shape */
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
            transition: background-color 0.3s ease;
        }

        .resume-section a:hover {
            background-color: #16a34a;
        }

        /* Connect Section */
        .connect-section {
            padding: 3rem 0;
        }

        .connect-card {
            background: linear-gradient(135deg, #4c1d95, #6d28d9);
            color: white;
            text-align: center;
            padding: 3rem;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .connect-card h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: white;
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .social-links a:hover {
            transform: scale(1.25);
        }