.floating-shape {
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
    animation-delay: -2s;
}

.floating-shape:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.document-icon {
    transition: all 0.3s ease;
}

.document-icon:hover {
    transform: scale(1.1);
}

.service-button {
    background: linear-gradient(135deg, #1A4FD3 0%, #4A84F7 100%);
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 79, 211, 0.3);
}