 .boxx2 {
      background-color: #017469;
      margin: 0;
      border-radius: 10px;
      padding: 10px;
    }

    .box2 h2 {
      color: #fff;
    }

    .form-container {
      background-color: white;
      max-width: 400px;
      margin: 2rem auto;
      padding: 20px;
    }

    .form-group {
      margin-top: 1.5rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
      font-size: 18px;
      color: #ffffff;
    }

    input[type="text"],
    input[type="tel"] {
      width: 90%;
      padding: 0.5rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      box-sizing: border-box;
      margin-top: 10px;
    }

    .form-group select {
      width: 90%;
      padding: 0.5rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 16px;
      box-sizing: border-box;
      margin-top: 10px;
    }

    button[type="submit"] {
      margin-top: 30px;
      background-color: #ffffff;
      color: rgb(0, 0, 0);
      padding: 0.5rem;
      border: none;
      border-radius: 24px;
      font-size: 16px;
      cursor: pointer;
      width: 80%;
    }

    button[type="submit"]:hover {
      background-color: #e0e0e0;
    }

    .info2 {
      width: 100%;
      /* border: 1px solid; */
    }

    .boxx2 {
      display: flex;
      /* flex-direction: column; */
      justify-content: center;
      align-items: center;
      padding: 5px;
    }

    .boxx2 p {
      font-size: 18px;
    }

    .btn2 {
      font-size: 16px;
      padding: 10px 15px;
    }

    /* Popup Overlay */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
    }

    /* Popup Content */
    .popup-content {
      background: white;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .popup-content h2 {
      font-size: 16px;
    }

    .popup-content p {
      margin-top: 10px;
      font-size: 10px;
    }

    .popup-content .text {
      color: #ff6600;
      font-weight: 600;
    }

    .boox2 p {
      margin-top: 10px;
      font-size: 16px;
      color: #ddd;
    }

    .boox2 .text {
      color: #ff6600;
      font-weight: 600;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      margin-top: -15px;
      right: 35px;
      font-size: 30px;
      cursor: pointer;
      /* font-weight: bold; */
    }

    /* Form Styling */
    .popup-content input {
      width: 100%;
      padding: 8px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .popup-content .submit-btn {
      background: #017469;
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-content .submit-btn:hover {
      background: #005f57;
    }

    .appoint .btn3 {
      display: none;
    }

    @media (max-width: 600px) {
      .boox2 {
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 30px;
        width: 80%;
        padding: 20px;
      }

      .form-container {
        max-width: 70% !important;
        padding: 10px;
      }

      .box2 h2 {
        font-size: 16px;
      }

      label {
        font-size: 14px;
        margin: 5px;
      }

      input[type="text"],
      input[type="tel"] {
        margin-top: 0px;
        font-size: 14px;
        padding: 5px;
      }

      button[type="submit"] {
        padding: 0.5rem 1rem;
        font-size: 14px;
      }

      .boox2 {
        display: none;
      }

      .boox2 {
        padding: 0;
      }

      .boxx2 p {
        padding: 5px;
        font-size: 12px;
      }

      .appoint .btn {
        padding: 10px 15px;
        font-size: 12px;
      }

      .appoint .btn2 {
        padding: 10px 15px;
        font-size: 10px;
        margin-bottom: 10px;
      }

      .appoint .btn3 {
        display: inline-block;
      }

      .appoint .btn3 {
        margin-bottom: 10px;
        padding: 10px 12px;
        font-size: 10px;
      }
    }

    .toast {
      visibility: hidden;
      min-width: 250px;
      margin-left: -125px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 16px;
      position: fixed;
      z-index: 9999;
      left: 83%;
      top: 16%;
      font-size: 14px;
      transition: all 0.5s ease;
    }

    .toast.show {
      visibility: visible;
      opacity: 1;
    }

    .toast.success {
      background-color: #32df5a;
    }

    .toast.error {
      background-color: #dc3545;
    }