/* ============================================
   LOGO COMPONENT
   ============================================ */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Full Logo (Default) */
.logo-full-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Composite Logo (Banner) */
.logo-composite {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    /* Reduced from 40px */
    width: 180px;
    /* Reduced from 200px */
    padding: 5px;
}

.logo-text-img {
    height: 26px;
    /* Reduced from 32px */
    width: auto;
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
}

.logo-icon-img {
    height: 52px;
    /* Reduced from 70px */
    width: auto;
    position: absolute;
    top: -7px;
    left: 103%;
    /* Adjusted position */
    transform: translateX(-50%);
    z-index: 2;
    transition: transform 0.5s ease;
}

/* Hover Animation for Icon */
.logo-composite:hover .logo-icon-img {
    animation: spin-once 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes spin-once {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}