 .zoom-animation {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* optional */
  animation: zoomEffect 3s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* thoda zoom karega */
  }
}
.arrow-animate {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.arrow-animate span {
  display: inline-block;
  margin-left: 5px;
  animation: arrowColor 2s infinite;
}

.arrow-animate span:nth-child(1) {
  animation-delay: 0s;
}
.arrow-animate span:nth-child(2) {
  animation-delay: 0.3s;
}
.arrow-animate span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes arrowColor {
  0%   { color: #ff0000; transform: translateX(0); }
  25%  { color: #ff9900; transform: translateX(3px); }
  50%  { color: #00cc00; transform: translateX(6px); }
  75%  { color: #0066ff; transform: translateX(9px); }
  100% { color: #ff0000; transform: translateX(0); }
}