/* Fix for Apply Now buttons - removing white shine/light effect */

/* Reset all previous shine effects */
.apply-button::before,
.cta-section .apply-button::before,
[class*="section"] .apply-button::before,
a.apply-button::before,
.apply-button.bg-black::before,
.text-center .apply-button::before,
.hero-content .apply-button::before {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
    box-shadow: none !important;
}

/* Reset hover effects */
.apply-button:hover::before,
.cta-section .apply-button:hover::before,
[class*="section"] .apply-button:hover::before,
a.apply-button:hover::before,
.apply-button.bg-black:hover::before,
.text-center .apply-button:hover::before,
.hero-content .apply-button:hover::before {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
    box-shadow: none !important;
}

/* Unified Apply Now button styling based on first button */
.apply-button,
.cta-section .apply-button,
[class*="section"] .apply-button,
a.apply-button,
.apply-button.bg-black,
.text-center .apply-button,
.hero-content .apply-button {
    background: #000000 !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.375rem !important;
    font-weight: 500 !important;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    cursor: pointer !important;
    z-index: 1 !important;
}

/* Unified hover effect without white shine */
.apply-button:hover,
.cta-section .apply-button:hover,
[class*="section"] .apply-button:hover,
a.apply-button:hover,
.apply-button.bg-black:hover,
.text-center .apply-button:hover,
.hero-content .apply-button:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

/* Remove any animation keyframes that might interfere */
@keyframes buttonShine {
    0%, 100% {
        opacity: 0 !important;
    }
}
