* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Pastikan navbar tetap di top */
        #navbar {
            margin: 0 !important;
            padding: 0 !important;
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Urbanist', sans-serif;
        }

        .gradient-hero {
            background: linear-gradient(135deg, #0A1128 0%, #001F54 100%);
        }

        .gradient-card {
            background: linear-gradient(135deg, #001F54 0%, #0080FF 100%);
        }

        .text-gradient {
            background: linear-gradient(135deg, #00D9FF 0%, #00FFF5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .animate-pulse-slow {
            animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        /* Active State Styles */
        .nav-link.active {
            color: #0047FF;
            background-color: rgba(0, 71, 255, 0.1);
            font-weight: 600;
        }

        .nav-link.active .nav-indicator {
            width: 100%;
        }

        .nav-link-mobile.active {
            color: #F26B21;
            background-color: rgba(255, 255, 255, 0.15);
            font-weight: 600;
            border-left: 4px solid #F26B21;
        }

        /* Hover effect for indicator */
        .nav-link:hover .nav-indicator {
            width: 100%;
        }