/* Translate Floating Button */
.translate-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    z-index: 9999;
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.translate-float:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    background: #0056b3;
}
.translate-float i {
    font-size: 34px;
    line-height: 64px;
    width: 64px;
    height: 64px;
    text-align: center;
    display: block;
}
