        /* Base styles from the custom configuration */
        body {
            font-family: 'Inter', sans-serif;
            color: var(--charcoal-text);
            background-color: var(--soft-white);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--charcoal-text);
        }

        /* Hero Floating Elements Simulation */
        .tech-bg-visual {
            background-image: linear-gradient(135deg, #4F46E533 0%, #2DD4BF33 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* Subtle Glassmorphism for UI elements */
        .glass-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(229, 231, 235, 0.5); /* Light Gray Border */
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.1), 0 0 10px rgba(45, 212, 191, 0.5);
            transform: translateY(-2px);
        }
        
        /* Smooth Fade-in on Scroll Simulation */
        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease-out forwards;
        }
        @keyframes fadeIn {
            to { opacity: 1; transform: translateY(0); }
        }
    