/* Carousel Button Styles */

/* Apply Now Button */
.carousel-btn-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.carousel-btn-apply:hover::before {
    left: 100%;
}

.carousel-btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 25, 73, 0.6);
    background: linear-gradient(135deg, #ff6b35, #FF1949);
}

/* Talent Pool Button */
.carousel-btn-talent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.carousel-btn-talent:hover::before {
    left: 100%;
}

.carousel-btn-talent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #34d399, #10b981);
    border-color: rgba(255, 255, 255, 0.5);
}

