.fixed-developer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.developer-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 50% 50%;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.developer-text {
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-container:hover .overlay {
    transform: translateY(0);
}

.image-container:hover .developer-text {
    opacity: 1;
}