/* Loader Styles */
#loader-overlay {position: fixed;inset: 0;z-index: 9999;display: flex;align-items: center;justify-content: center;background: var(--secondary);animation: fadeOut 0.6s ease 2s forwards;}
.loader-logo {max-width: 424px;animation: fadeIn 0.8s ease forwards;}
@keyframes fadeIn {  from { opacity: 0; transform: scale(0.95); }  to   { opacity: 1; transform: scale(1); }}
@keyframes fadeOut {  from { opacity: 1; }  to   { opacity: 0; pointer-events: none; }}
/* Loader Styles */

@media screen and (max-width: 991px) {
    .loader-logo {max-width: 380px;}    
}
@media screen and (max-width: 767px) {
    .loader-logo {max-width: 300px;}    
}
@media screen and (max-width: 576px) {
    .loader-logo {max-width: 239px;}    
}