/* Common Button Styling */
.chatbox-toggle {
    position: fixed;
    width: 55px;
    height: 55px;
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
  }
  
  /* WhatsApp Button - Bottom Right */
  .chatbox-toggle1 {
    bottom: 70px;
    right: 30px;
  }
  
  /* Email Button - Bottom Left */
  .chatbox-toggle2 {
    bottom: 250px;
    right: 20px;
    background-color: #ff3b30; /* Red Email Button */
  }
  
  /* Hover Effect */
  .chatbox-toggle:hover {
    transform: scale(1.1);
    opacity: 0.9;
  }
  