  #whatsapp-launcher {
      position: fixed;
      bottom: 20px;
      right: 5%;
      margin-bottom: 90px;
      background-color: #25d366;
      width: 75px;
      height: 75px;
      border-radius: 50%;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      padding: 16px;
  }
  
  #whatsapp-launcher img {
      width: 30px;
      height: 30px;
  }
  
  #whatsapp-launcher1 {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background-color: #25d366;
      width: 75px;
      height: 75px;
      border-radius: 50%;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
  }
  
  #whatsapp-launcher1 img {
      width: 30px;
      height: 30px;
  }
  
  .notification-dot {
      position: absolute;
      top: 5px;
      right: 5px;
      background: red;
      width: 11px;
      height: 11px;
      border-radius: 50%;
  }
  
  .notification-dot1 {
      position: relative;
      bottom: 6px;
      right: 11px;
      background: #4AD504;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      display: flex;
      align-self: end;
      border: 1px solid rgb(0, 0, 0);
  }
  
  #whatsapp-popup {
      position: fixed;
      bottom: 170px;
      right: 8%;
      width: 300px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      display: none;
      overflow: hidden;
      flex-direction: column;
      font-family: Arial;
      z-index: 99999999999999;
  }
  
  .popup-header {
      background: rgb(0, 128, 105);
      color: white;
      display: flex;
      align-items: center;
      padding: 20px;
      position: relative;
  }

  .popup-header .chatlogo {
    width: 60px; 
    height: 60px;  
    display: flex; 
    align-items: center; 
    justify-content: center;
  }
  
  .profile-pic {
      width: 50px;
      height: 50px;
      border-radius: 50%;
  }
  
  .profile-pic::before {
      content: "";
      bottom: 0px;
      right: 0px;
      width: 12px;
      height: 12px;
      box-sizing: border-box;
      position: absolute;
      z-index: 2;
      border-radius: 50%;
      background-color: rgb(74, 213, 4);
      display: block;
      border: 2px solid rgb(0, 128, 105);
  }
  
  .profile-info {
      margin-left: 10px;
      flex: 1;
      color: white;
  }
  
  .profile-info .name {
      font-weight: bold;
  }
  
  .profile-info .status {
      font-size: 12px;
      color: white;
  }
  
  .close-btn {
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
  }
  
  .popup-body {
      background: url("/wp-content/uploads/2022/07/background-whatsapp.jpg") center center / cover no-repeat;
      padding: 15px;
      min-height: 80px;
  }
  
  .chat-bubble {
      background: white;
      color: black;
      padding: 10px 14px;
      border-radius: 7px;
      display: inline-block;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .popup-body a {
      background: rgb(37, 211, 102);
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      font-weight: bold;
      font-size: 16px;
      gap: 8px;
  }
  
  .popup-body .chatbutton {
     display: flex; 
     justify-content: center; 
     align-items: center; 
     margin-top: 80px; 
     font-size: 16px;
  }
  
  .popup-body a img {
      width: 18px;
      height: 18px;
  }


  
  