body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* Moving Background Shapes */
        .shape {
            position: absolute;
            filter: blur(60px);
            z-index: -1;
            animation: float 12s infinite ease-in-out;
        }
        .shape-1 {
            top: -5%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: #4f46e5; /* Indigo */
            border-radius: 50%;
            opacity: 0.4;
        }
        .shape-2 {
            bottom: 10%;
            right: -10%;
            width: 350px;
            height: 350px;
            background: #ec4899; /* Pink */
            border-radius: 50%;
            animation-delay: 2s;
            opacity: 0.4;
        }
        .shape-3 {
            top: 40%;
            left: 30%;
            width: 200px;
            height: 200px;
            background: #06b6d4; /* Cyan */
            border-radius: 50%;
            animation-delay: 4s;
            opacity: 0.3;
        }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
            100% { transform: translate(0, 0) scale(1); }
        }

        /* Glassmorphism Styles */
        .glass-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            background: rgba(255, 255, 255, 0.9);
        }

        /* Hero Image Container */
        .hero-img-container {
            position: relative;
        }