.whatsapp-btn-container {

      opacity: 0;

      animation: fade-up 1000ms forwards;
      animation-delay: 1000ms;
    }

    @keyframes fade-up {
      100% {
        bottom: 24px;
        opacity: 1;
      }
    }

    .whatsapp-btn-container .show-modal {
      font-size: 48px;
      color: #25d366;
      display: inline-block;
      transition: all 400ms;
    }

    .whatsapp-btn-container .show-modal:hover {
      transform: scale(1.2);
    }

    .whatsapp-btn-container span {

      font-family: "Roboto", sans-serif;
      font-weight: bold;
      color: #075e54;
      transform: rotateZ(20deg) translateX(10px);
      opacity: 0;
      transition: all 400ms;
    }

    .whatsapp-btn-container .show-modal:hover+span {
      transform: rotateZ(0deg) translateX(0px);
      opacity: 1;
    }



    /* Google Fonts - Poppins */
    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

    * {

      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    section {
      position: fixed;
      height: 100%;
      width: 100%;
      z-index: 2;
      

    }

    button {
      font-size: 18px;
      font-weight: 400;
      color: #fff;
      padding: 14px 22px;
      border: none;
      background: #4070f4;
      border-radius: 6px;
      cursor: pointer;
    }

    button:hover {
      background-color: #265df2;
    }

    button.show-modal,
    .modal-box {
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    section.active .show-modal {
      display: none;
    }

    .overlay {
      position: fixed;
      height: 100%;
      width: 100%;

      opacity: 0;
      pointer-events: none;
    }

    section.active .overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 380px;
      width: 100%;
      padding: 30px 20px;
      border-radius: 24px;
      background-color: #fff;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      transform: translate(-50%, -50%) scale(1.2);
      border: 2px solid #1a73e9; /* Added border line */
    }

    section.active .modal-box {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(1);
    }

    .modal-box i {
      font-size: 70px;
      color: #4070f4;
    }

    .modal-box h2 {
      margin-top: 20px;
      font-size: 25px;
      font-weight: 500;
      color: #333;
    }

    .modal-box h3 {
      font-size: 16px;
      font-weight: 400;
      color: #333;
      text-align: center;
    }

    .modal-box .buttons {
      margin-top: 25px;
    }

    .modal-box button {
      font-size: 14px;
      padding: 6px 12px;
      margin: 0 10px;
    }