/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 300px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px; /* Adjust spacing */
   
    animation: blinkLogo 1s ease-in-out infinite alternate; /* Apply blinking animation */
}

@keyframes blinkLogo {
    from { opacity: 1; }
    to { opacity: 0; }
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
