:root {
    --primary-blue: #0A3D62;
    --primary-orange: #E67E22;
    --hover-blue: #3DC1D3;
    --white: #FFFFFF;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.glow-effect {
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.3);
}

.particle {
    position: absolute;
    background: rgba(230, 126, 34, 0.4); 
    border-radius: 50%;
    pointer-events: none;
}
