.cressoft-floating-icon {
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: block;
    transition: all 0.3s ease;
}

.cressoft-floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hover Animations */
.animation-bounce:hover {
    animation: bounce 0.8s ease infinite;
}

.animation-zoom:hover {
    transform: scale(1.2);
}

.animation-rotate:hover {
    transform: rotate(360deg);
}

.animation-pulse:hover {
    animation: pulse 1s ease infinite;
}

.animation-shake:hover {
    animation: shake 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
} 