/* Custom Styles for HR Systems Landing Page */

html {
    scroll-behavior: smooth;
}

/* Glow Text Utility */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 84, 0, 0.4), 0 0 20px rgba(255, 84, 0, 0.2);
}

.text-shadow-glow {
    text-shadow: 0 0 25px rgba(255,84,0,0.6);
}

/* Subtle float animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Slide up animation for intro elements */
.slide-up {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0c;
}

::-webkit-scrollbar-thumb {
    background: #2a2a30;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5400;
}
