
  /* WhatsApp & Call Float Button Styling - Uniform Design */
  .whatsapp-float, .call-float {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
    border: 2px solid currentColor; /* Border matches icon color */
  }

  .whatsapp-float {
    color: #25D366; /* WhatsApp green */
    top: 50%;
    transform: translateY(-50%);
  }

  .call-float {
    color: #000000; /* Call red-orange */
    top: calc(50% + 80px);
    transform: translateY(-50%);
  }

  .whatsapp-float:hover, .call-float:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    /* background: currentColor; Fills with icon color on hover */
    background-color: white;
    text-decoration: none;
  }

.whatsapp-float:hover  {color: #25D366}
.call-float:hover {color: #000000;;}

  .whatsapp-float:hover i {
    color:#25D366 /* White icon on hover */
  }

.call-float:hover i{
  color: #000000;;
}

  .whatsapp-float i {
    font-size: 26px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
  }

  .call-float i {
    font-size: 20px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
  }


  /* Tooltip text */
  .whatsapp-float::after {
    content: "Chat on WhatsApp";
    background: #25D366; /* WhatsApp green */
  }
  
  .call-float::after {
    content: "Call Us Now";
    background: #000000; /* Call button color */
  }
  
  .whatsapp-float::after, .call-float::after {
    position: absolute;
    right: 70px;
    width: max-content;
    padding: 8px 12px;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .whatsapp-float:hover::after, .call-float:hover::after {
    opacity: 1;
  }

  /* Pulse animation for WhatsApp */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }

  .whatsapp-float {
    animation: pulse 2s infinite;
  }

  /* Bounce animation for Call */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(-50%);}
    40% {transform: translateY(-50%) translateY(-10px);}
    60% {transform: translateY(-50%) translateY(-5px);}
  }

  .call-float {
    animation: bounce 2s infinite;
  }

/* mobile */
  @media (max-width: 768px) {
  .whatsapp-float, .call-float {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float i, .call-float i {
    font-size: 20px;
  }

  .whatsapp-float::after, .call-float::after {
    font-size: 12px;
    padding: 6px 10px;
  }
}
