.floating-whatsapp-circle {
    position: fixed;
    bottom: 7rem;
    right: 20px;
    z-index: 99999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25D366;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s infinite;
  }
.floating-telegram-circle {
    position: fixed;
    bottom: 7rem;
    left: 20px;
    z-index: 99999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25D366;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s infinite;
  }

  .floating-whatsapp-circle i,
 .floating-telegram-circle i {
    font-size: 4rem;
  }


  /* Blinking / Pulse Effect for Circle */
  @keyframes whatsappPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
      transform: scale(1.08);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      transform: scale(1);
    }
  }