
        :root {
            --bg-color: #f2f2f0;
            --text-color: #1a1a1a;
            --accent-blue: #0044ff;
            --grain-opacity: 0.05;
        }

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

            /* --- LOADER STYLES --- */
        #studio-loader {
            position: fixed;
            inset: 0;
            z-index: 200;
            background-color: #0044ff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .drawing-char {
            fill: transparent;
            stroke: #f2f2f0;
            stroke-linecap: round;
            stroke-linejoin: round;
            paint-order: stroke fill;
            font-family: 'Inter', sans-serif;
            font-weight: 900;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* Grainy Texture Overlay */
        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            /* background-image: url("https://grainy-gradients.vercel.app/noise.svg"); */
            opacity: var(--grain-opacity);
            pointer-events: none;
            z-index: 9999;
        }

        body.modal-open {
            overflow: hidden;
        }

        canvas#bg {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
            filter: grayscale(1) contrast(1.2);
            opacity: 0.4;
        }

        @media (max-width: 768px) {
            #cursor,
            #cursor-outer {
                display: none !important;
            }
            }

        /* Brutalist Typography */
        .big-text {
            font-size: clamp(3rem, 15vw, 12rem);
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .serif {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 700;
        }

        /* Custom Cursor */
        .cursor {
            width: 10px;
            height: 10px;
            background: var(--accent-blue);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
        }

        .cursor-outer {
            width: 40px;
            height: 40px;
            border: 1px solid var(--text-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            mix-blend-mode: difference;
            color: white;
            transition: all 0.3s ease;
        }

        .nav-link {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            position: relative;
            margin-left: 2rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-blue);
            transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link2 {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            position: relative;
            margin-left: 2rem;
        }

        .nav-link2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: red;
            transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .nav-link2:hover::after {
            width: 100%;
        }

        nav.scrolled {
            background: rgb(17 17 17 / var(--tw-bg-opacity, 1));
            mix-blend-mode: normal; /* IMPORTANT */
            transition: all 0.3s ease;
        }

        .nav-text {
            color: black;
            transition: color 0.3s ease;
        }

        /* When scrolled */
        nav.scrolled .nav-text {
            color: white;
        }

        /* Sections */
        section {
            padding: 10vh 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card {
            background: white;
            padding: 3rem;
            border: 1px solid #ddd;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-blue);
        }

        .card2 {
            background: white;
            padding: 3rem;
            border: 1px solid #ddd;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .card2:hover {
            transform: translateY(-0px);
            border-color: var(--accent-blue);
        }

        .accent-box {
            background: var(--accent-blue);
            color: white;
            padding: 0.5rem 1rem;
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .footer-line {
            height: 1px;
            background: rgba(0,0,0,0.1);
            width: 100%;
            margin-bottom: 2rem;
        }

        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--bg-color); }
        ::-webkit-scrollbar-thumb { background: var(--text-color); }

        .price-card {
            border-top: 1px solid #ccc;
            padding: 2rem 0;
        }

        .portfolio-image {
        width: 100%;
        /* height: 32rem; */
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        display: block;
        }

        /* Tablet */
        @media (max-width: 768px) {
        .portfolio-image {
            height: 22rem;
            border-radius: 10px;
        }
        }

        /* Mobile */
        @media (max-width: 480px) {
        .portfolio-image {
            height: 22rem;
            border-radius: 8px;
        }
        }
        /* Chrome, Safari, Edge, Opera */
        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        }

        /* Firefox */
        input[type="number"] {
        -moz-appearance: textfield;
        }


        /* projects section */

        /* Project Row Styles */
        .project-row {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
        }

        .project-row:hover {
            background-color: white;
            padding-left: 20px;
            padding-right: 20px;
            border-bottom-color: var(--accent-blue);
        }

        .project-row .image-preview {
            width: 0;
            height: 180px;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            border-radius: 0px;
        }

        .project-row:hover .image-preview {
            width: 500px;
            opacity: 1;
            margin-right: 40px;
        }

        .project-row.mobile-active{
            background-color: white;
                padding-left: 10px;
                padding-right: 10px;
                border-bottom-color: var(--accent-blue);
        }

        .project-row.mobile-active .tech-pill{
            background: var(--accent-blue);
            color: white;
            border-color: var(--accent-blue);
        }

        .project-row.mobile-active h3{
            letter-spacing: 0.05em;
        }

        .project-row.mobile-active .project-details{
            opacity: 10;
        }

        .tech-pill {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 100px;
            background: transparent;
            color: #010101;
            border: 1px solid #222;
        }

        .project-row:hover .tech-pill {
            color: var(--accent-blue);
            border-color: var(--accent-blue);
            background: rgba(12, 112, 234, 0.05);
        }

        .feature-dot {
            width: 6px;
            height: 6px;
            background: var(--accent-blue);
            border-radius: 50%;
            margin-right: 10px;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-thumb { background: #333; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }



        /* about section */
        .word {
            display: inline-block;
            margin-right: 0.25em;
            opacity: 0.15;
            filter: blur(4px);
            transition: filter 0.3s ease;
            color: #a0b0c6;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: #94a3b8;
            margin-bottom: 4px;
        }

        .feature-item i {
            color: var(--accent-blue);
            width: 12px;
            height: 12px;
        }

        /* Internship */

        .bento-card {
            /* Font family moved specifically to the card */
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #ffffff;
            border: 1px solid var(--accent-blue); /* Slate 200 */
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        }

        /* Border Beam Animation Effect */
        .card-glow-box {
            position: relative;
            overflow: hidden;
        }

        .card-glow-box::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, transparent, rgba(99, 102, 241, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            animation: rotate 4s linear infinite;
        }

        .card-glow-box:hover::after {
            opacity: 1;
        }

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

        .inner-content {
            position: relative;
            z-index: 10;
            background: #ffffff;
            margin: 1.5px; /* Creates the border width */
            border-radius: 11px;
        }

        /* Footer Cotact Card */

        .contact-card {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #ffffff;
            border: 1px solid #f1f5f9;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.035);
        }

        .input-field {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .input-field:focus {
            transform: translateY(-1px);
        }

        /* Subtle button glow */
        .btn-glow:hover {
            box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
        }

        @keyframes drift {
            from { transform: translate(-10%, -10%); }
            to { transform: translate(10%, 10%); }
        }
