/* 
    Created on : Aug 23, 2026, 4:11:56 PM
    Author     : Vivek Dev
*/

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
/* Shadows from screens */
.elevation-1 {
    box-shadow: 0px 4px 20px rgba(13, 81, 148, 0.1);
}
.elevation-2 {
    box-shadow: 0px 8px 30px rgba(13, 81, 148, 0.15);
}
.card-border-green {
    border-top: 4px solid var(--tw-colors-tertiary-container);
}
.card-border-orange {
    border-top: 4px solid var(--tw-colors-secondary-container);
}
.card-border-blue {
    border-top: 4px solid var(--tw-colors-primary-container);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}
.hide-scrollbar {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-section {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.register-blink {
    animation: registerBlink 1.5s ease-in-out infinite;
}

@keyframes registerBlink {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }

}