.logo-gradient-bg {
    position: relative;
    z-index: 1;
}

.logo-gradient-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;  /* Wider gradient area */
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}
