/* Target the image by adding a spacer below it or a section ID if you want.
Quick universal version: animate ALL images with a specific filename keyword.
Rename your file to: credibility-wall.jpg before uploading for easy targeting. */
img[src*="credibility-wall"]{
will-change: filter, transform;
transform: translateZ(0);
animation: credPulse 8s ease-in-out infinite;
}
@keyframes credPulse{
0% { filter: brightness(1) contrast(1); transform: scale(1); }
50% { filter: brightness(1.03) contrast(1.02); transform: scale(1.002); }
100% { filter: brightness(1) contrast(1); transform: scale(1); }
}
@media (prefers-reduced-motion: reduce){
img[src*="credibility-wall"]{ animation:none; }
}