/* Eantrax Logo Animation */
.eantrax-logo {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    animation: jump 0.8s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.eantrax-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

/* Pause animation on hover */
.eantrax-logo:hover {
    animation-play-state: paused;
    transform: scale(1.3);
}
