/* BeyondRankers - Custom Styles */

html {
    scroll-behavior: smooth;
}

/* Gradient text */
.gradient-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #1e3a5f;
    border-radius: 3px;
}

/* Header shadow on scroll */
.header-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* Modal backdrop animation */
#enrollment-modal {
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Modal content slide-in */
#enrollment-modal .modal-card {
    animation: slideUp 0.25s ease;
}
@keyframes slideUp {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Focus styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #1e3a5f;
    outline-offset: 2px;
}

/* Smooth transitions */
.transition-all {
    transition-duration: 300ms;
}

/* WhatsApp button pulse on hover */
.btn-whatsapp:hover {
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25);
}

/* Floating WhatsApp button */
#wa-float {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
