
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;

            
            overflow-x: hidden;
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .hero-gradient {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.8) 100%),
                url('https://images.unsplash.com/photo-1581092162384-8987c1d64718?auto=format&fit=crop&q=80');
            background-size: cover;
            background-position: center;
        }

        .float-anim {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #eab308;
            transition: width .3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }
   