
.sevices-card:not(:first-child)::before {
    content: '';
    position: absolute;
    background-image: url('../images/services/thread2.webp');
    background-repeat: no-repeat;
    width: 71%;
    height: 140px;
    right: 0;
    z-index: 99999;
    transition: all 0.5s;
    right: 76%;
    top: 28%;
}

@media only screen and (max-width: 768px) {
    .sevices-card:not(:first-child)::before {
      content: '';
      position: absolute;
      background-image: url('../images/services/thread3.webp');
      background-repeat: no-repeat;
      width: 50%;
      height: 170px;
      z-index: 99999;
      transition: all 0.5s;
      right: 0;
      top: -24%;
    }
    .swiper-button-next, .swiper-button-prev{
      top: 65% !important;
    }
}
@keyframes whatsappSmoothPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(72, 195, 86, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(72, 195, 86, 0.3);
  }
}

#whatsapp a {
  animation: whatsappSmoothPulse 2s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden; /* prevent flicker */
  transform-origin: center; /* keeps scaling centered */
}
