
  *, *::before, *::after {
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
  }

  .custom-package-container {
    max-width: 700px;
    margin: 40px auto;
    background: #eeffee; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
    color: black; 
  }
  .custom-package-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: black;
  }

  .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: black;
  }
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #fff;
    color: black;
  }

  .checkbox-group, .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
  }
  .checkbox-group label, .radio-group label {
    width: 48%;
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
  }
  .checkbox-group h3, .radio-group h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
  }
  textarea.form-control {
    resize: vertical;
  }
  .btn-submit {
    background: #007BFF;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-align: center;
    transition: background 0.3s ease-in-out;
    margin-top: 20px;
  }
  .btn-submit:hover {
    background: #0056b3;
  }
  @media (max-width: 480px) {
    .checkbox-group label, .radio-group label {
      width: 100%;
    }
  }
  body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


body.thank-you-page {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .thank-you-container {
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .thank-you-container h1 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .thank-you-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    color: white;
    background: #007BFF;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
  }
  
  .cta-btn:hover {
    background: #0056b3;
  }
  
  .icon {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 10px;
  }
/* Floating WhatsApp Button */
/*.whatsapp-float {*/
/*    position: fixed;*/
/*    bottom: 20px;*/
/*    right: 20px;*/
/*    background-color: #25D366;*/
/*    color: white;*/
/*    font-size: 30px;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    text-align: center;*/
/*    line-height: 60px;*/
/*    border-radius: 50%;*/
/*    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);*/
/*    transition: background-color 0.3s ease-in-out;*/
/*    z-index: 1000;*/
/*    text-decoration: none;*/
/*}*/

/*.whatsapp-float i {*/
/*    display: inline-block;*/
/*}*/

/*.whatsapp-float:hover {*/
/*    background-color: #1EBEA5;*/
/*}*/

/* WhatsApp Message Popup */
/*.whatsapp-popup {*/
/*    position: fixed;*/
/*    bottom: 90px;*/
/*    right: 20px;*/
/*    background: white;*/
/*    color: #333;*/
/*    padding: 10px 15px;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
/*    font-size: 14px;*/
/*    display: none;*/
/*    animation: fadeIn 0.5s ease-in-out;*/
/*}*/

/*@keyframes fadeIn {*/
/*    from { opacity: 0; transform: translateY(10px); }*/
/*    to { opacity: 1; transform: translateY(0); }*/
/*}*/

/* Close Button */
/*.close-btn {*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    right: 10px;*/
/*    cursor: pointer;*/
/*    font-weight: bold;*/
/*    background: white;*/
/*    color: #25d366;*/
/*    border: none;*/
/*    border-radius: 50%;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 12px;*/
/*    padding: 2px;*/
/*}*/
/*  body {*/
/*    -ms-user-select: none;*/
/*    -webkit-user-select: none;*/
/*    user-select: none;*/
/*}*/


