/* Custom Preloader Styles */
.custom-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.preloader-custom-image {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Preloader fade out animation */
.preloader {
    transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .preloader-custom-image {
        max-width: 150px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .preloader-custom-image {
        max-width: 120px;
        max-height: 120px;
    }
}
