/* Custom CSS for RRHH Demo */
.demo-badge {
    background-color: #ffc107;
    color: #212529;
    font-weight: bold;
}

.scroll-animation {
    opacity: 1;
    transform: translateY(0);
}

.icon-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.icon-xl {
    font-size: 2rem;
}

.icon-lg {
    width: 50px;
    height: 50px;
}

.icon-employee {
    color: #007bff;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-gradient-purple {
    background: linear-gradient(45deg, #6f42c1, #9561e2) !important;
}
