.chl-circular-logo-container {
    position: fixed;
    top: 0;
    left: 20px;
    z-index: 99999;
    animation: fadeIn 0.5s ease-in;
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 210px;
    pointer-events: none;
}

.chl-circular-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    pointer-events: auto;
    margin-top: 15px;
}

.chl-circular-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .chl-circular-logo-container {
        left: 15px;
        max-height: 170px;
    }

    .chl-circular-logo {
        width: 140px;
        height: 140px;
        border-width: 4px;
    }
}

@media (max-width: 768px) {
    .chl-circular-logo-container {
        left: 10px;
        max-height: 140px;
    }

    .chl-circular-logo {
        width: 100px;
        height: 100px;
        border-width: 3px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .chl-circular-logo-container {
        left: 8px;
        max-height: 110px;
    }

    .chl-circular-logo {
        width: 70px;
        height: 70px;
        border-width: 3px;
        margin-top: 8px;
    }
}
