/* Styling for the WhatsApp button */
.floating_btn {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    z-index: 9999; /* Set a high z-index to ensure it's above every element */
  }
  
  .contact_icon {
    background-color: #25d366; /* WhatsApp green color */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    transition: background-color 0.3s;
  }
  
  .contact_icon:hover {
    background-color: #128C7E; /* Darker shade of green on hover */
  }
  
  .my-float {
    font-size: 24px;
    color: white;
  }
  
  /* Tooltip styling */
  .tooltip {
    position: absolute;
    background-color: #25d366; /* WhatsApp green color */
    border-radius: 19px;
    padding: 5px 10px;
    width: 200;
    opacity: 0.9;
    bottom: 80px; /* Adjust as needed */
    right: 80px; /* Adjust as needed */
    display: none;
    z-index: 9999; /* Set a high z-index to ensure it's above every element */
  }
  
  .tooltip .text {
    color: white;
  }
  
  /* Show tooltip on hover */
  .floating_btn:hover .tooltip {
    display: block;
  }
  