    body {
            background-color: #FAFAFA;
            color: #1A1A1A;
        }

        /* Smooth Anchor Scrolling offset for fixed header */
        html {
            scroll-padding-top: 80px;
        }

        /* Glassmorphism Utilities */
        .glass-panel {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .glass-nav {
            background: rgba(250, 250, 250, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

        /* Image Parallax Effect */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #FAFAFA;
        }
        ::-webkit-scrollbar-thumb {
            background: #CBD5E1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #1E8C8F;
        }
        
        /* Modal Transitions */
        .modal {
            transition: opacity 0.3s ease, visibility 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }
        .modal.open {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .modal.open .modal-content {
            transform: scale(1);
        }


        /* TYPEWRITER CURSOR BLINK */
        #cursor {
        animation: blink 0.8s infinite;
        }

        @keyframes blink {
        0%, 50% { opacity: 1; }
        50%, 100% { opacity: 0; }
        }

        /* MARQUEE */
        .marquee-text {
        display: inline-block;
        padding-left: 100%;
        animation: marquee 18s linear infinite;
        }

        @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
        }

                    /* GLOSSY MARQUEE WRAPPER */
            .glossy-marquee-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 3rem 0;
            }

            /* Marquee Container */
            .marquee-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            }

            /* Marquee Track */
            .marquee-track {
            display: inline-flex;
            animation: glossyMarquee 15s linear infinite;
            }

            /* Marquee Item */
            .marquee-item {
            font-size: 2rem;
            font-weight: 600;
            padding-right: 4rem;
            background: linear-gradient(
                90deg,
                #1e3b44,
                #0a2c32,
                #167b86,
                #35bac8,
                #0a2c32,
                #1e3b44
            );
            background-size: 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.18);
            animation: glossyShine 6s ease-in-out infinite;
            }

            /* Marquee Scroll Animation */
            @keyframes glossyMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
            }

            /* Glossy Shine Effect */
            @keyframes glossyShine {
            0% { background-position: 0% 50%; }
            50% { background-position: 150% 50%; }
            100% { background-position: 0% 50%; }
            }


