        * {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
        }
        
        .gradient-hero {
            background: linear-gradient(135deg, #0B0F19 0%, #1a2332 50%, #0B0F19 100%);
        }
        
        .gradient-card {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2563EB;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .abstract-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
        }

        .shadow-lg {
            background-color: white;
            transition: .3s;
        }
        .header-animation {
            background-color: transparent;
            transition: .3s;
        }
       
        .shadow-lg .main-logo {
            display: none;
        }
        .header-animation .trail-logo {
            display: none;
        }
         .header-animation > nav a {
            color:rgb(207, 207, 207)
         }

         