.download__img {
    width: 250px; /* Increased size */
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.download__img:hover {
    transform: scale(1.1) translateY(-5px); /* Animation on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation-play-state: paused; /* Pause the pulse on hover */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
