/* Main logo container */
.logo-box {
    width: 85px; 
    height: 65px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Image styling */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .logo-box {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .logo-box {
        width: 42px;
        height: 42px;
    }
}
/*# sourceMappingURL=custom.min.css.map */

