/* Loader Container */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    /* Max z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Hide State */
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Car Animation Container */
.loader-content {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 150px;
    overflow: hidden;
}

/* Moving Car Icon */
.loader-car {
    font-size: 60px;
    /* Adjust icon size */
    color: #FFD700;
    /* Primary color (Gold) */
    position: absolute;
    bottom: 20px;
    left: -100px;
    /* Start off-screen */
    animation: driveCar 2s linear infinite;
    z-index: 2;
}

/* Road Line */
.loader-road {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* Animation Keyframes */
@keyframes driveCar {
    0% {
        left: -100px;
        transform: scaleX(1);
        /* Facing right */
    }

    45% {
        left: 50%;
        /* Drive to middle */
        transform: scaleX(1);
    }

    55% {
        left: 50%;
        transform: scaleX(1);
    }

    100% {
        left: 110%;
        /* Drive off screen */
        transform: scaleX(1);
    }
}

/* Loading Text */
.loader-text {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}