.counter-one {
    padding: 15px 0 10px !important;
}

.counter-one__single {
    gap: 5px !important;
}
.counter-one__count-box span {
    font-size: 40px !important;
}

.counter-one__icon {
    width: 70px!important;
    height: 70px!important;
}
.float-btn {
      position: fixed;
      bottom: 20px;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: white;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      z-index: 9999;
      transition: transform 0.2s ease-in-out;
      animation: pulse 1.5s infinite;
    }

    .float-btn:hover {
      transform: scale(1.15);
    }

    /* WhatsApp Button (Left) */
    .whatsapp {
      left: 20px;
      background-color: #25D366;
    }

    /* Call Button (Right) */
    .call {
      right: 20px;
      background-color: #007bff;
    }

    /* Tooltip style */
    .float-btn::after {
      content: attr(title);
      position: absolute;
      bottom: 65px;
      background: rgba(0,0,0,0.75);
      color: #fff;
      padding: 4px 8px;
      font-size: 12px;
      border-radius: 4px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.2s;
      white-space: nowrap;
      pointer-events: none;
    }

    .float-btn:hover::after {
      opacity: 1;
      transform: translateY(0);
    }

    /* Pulse animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
      }
    }