/* Keyframes for the left-to-right reveal with blur effect */
@keyframes slideIn {
    0% {
        opacity: 0;
        clip-path: inset(75% 100% 0 0);
        filter: blur(0px);
    }
    60% {
        opacity: 1;
        clip-path: inset(75% 0 0 0);
        filter: blur(0px);
    }
    80% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        filter: blur(0px);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(1.5);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
		display: none;
		
    }
}

/* Preloader container styling */
.preloader {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    animation: fadeOut 5s ease-out forwards;
    z-index: 999;
}

/* Image styling */
.preloader img {
    opacity: 0;
    width: 200px; /* Adjust the size as needed */
    animation: slideIn 2s ease-out infinite;
    animation-delay: 1s;
}

