        :root {
            /* Light Theme Variables */
            --bg-color: #f8faff;
            --glass-bg: rgba(255, 255, 255, 0.65);
            --glass-border: rgba(255, 255, 255, 0.8);
            --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
            --primary-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%); /* Blue to Cyan */
            --text-main: #1e293b;
            --text-muted: #64748b;
            --accent-color: #2563eb;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            position: relative;
        }

        /* --- LIQUID BACKGROUND ANIMATION (PASTEL VERSION) --- */
        .liquid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: white;
        }

        .blob {
            position: absolute;
            filter: blur(80px);
            opacity: 0.8;
            animation: float 25s infinite alternate;
            border-radius: 50%;
            mix-blend-mode: multiply; /* Blends nicely on white */
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: #dbeafe; /* Light Blue */
            animation-delay: 0s;
        }

        .blob-2 {
            bottom: 10%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: #e0e7ff; /* Light Indigo */
            animation-delay: -5s;
        }

        .blob-3 {
            top: 40%;
            left: 30%;
            width: 400px;
            height: 400px;
            background: #ccfbf1; /* Light Teal */
            animation-delay: -10s;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(60px, 40px) rotate(15deg); }
        }

        /* --- GLASS CARDS (FROSTED WHITE) --- */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: var(--glass-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.12);
            background: rgba(255, 255, 255, 0.85);
        }

        /* --- TYPOGRAPHY & UI --- */
        .text-gradient {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .section-title {
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            color: var(--text-main);
        }

        .navbar-glass {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .nav-link {
            color: var(--text-main) !important;
            font-weight: 600;
            margin-left: 15px;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        .profile-img {
            width: 90%;
            height: auto;
            object-fit: cover;
            transform: rotate(-3deg);
            transition: transform 0.3s;
        }
        .profile-img:hover {
            transform: rotate(0deg) scale(1.02);
        }

        /* Skills Chips - Light Mode */
        .skill-chip {
            background: white;
            color: var(--accent-color);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border: 1px solid rgba(37, 99, 235, 0.1);
            transition: all 0.2s;
        }
        .skill-chip:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }

        .btn-gradient {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
            transition: all 0.3s;
        }
        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
            color: white;
        }

        .timeline-badge {
            background: rgba(37, 99, 235, 0.1);
            color: var(--accent-color);
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: inline-block;
        }