       body {
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .gradient-blue {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        }
        
        .gradient-orange {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
        }
        
        .glass {
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .hover-scale {
            transition: transform 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        .card-shadow {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s ease;
        }
        
        .card-shadow:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

.nav-link {
    position: relative;
    padding-bottom: 5px; 
    display: inline-block; 
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fb923c;
    transition: width 0.35s ease-out;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #fb923c !important; 
}    
.thank-you-container {
            min-height: 50vh;
}