  /* Open Button */
  .open-popup-btn {
      background-color: #0B97CF;
      color: #262A64;
      padding: 12px 20px;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      display: inline-block;
      margin: 20px;
      transition: 0.3s;
  }

  .open-popup-btn:hover {
      background-color: #e69b14;
  }

  /* Overlay */
  .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
  }

  /* Popup Form Container */
  .popup-container {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 500px;
      background: white;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      color: #262A64;
  }

  /* Close Button */
  .popup-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
      color: #262A64;
  }

  /* Form Header */
  .popup-header {
      font-size: 32px;
      font-weight: bold;
     line-height: 30px;
      color: #262A64;
  }
  .mt-2px{
    margin-top: 8px;
  }

  .popup-subtext {
      font-size: 14px;
      color: #000000;
      margin-bottom: 15px;
  }

  /* Form Grid */
  .popup-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
  }

  .popup-input {
      width: 48%;
  }

  .popup-input input,
  .popup-input select,
  .popup-input textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid #262A64;
      border-radius: 5px;
      font-size: 14px;
      background: #f9f9f9;
      color: #262A64;
  }
  .popup-input select{
    padding: 14px;

  }

  .popup-input textarea {
      height: 60px;
      resize: none;
      margin-top: 15px;
  }
/* Submit Button */
.popup-submit {
    width: 100%;
    background-color: #23B0E8;
    color: #262A64;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-submit:hover {
    background-color: #ffffff;
}
  /* Responsive */
  @media (max-width: 768px) {
      .popup-form {
          flex-direction: column;
      }

      .popup-input {
          width: 100%;
      }
  }

 /* Close Button Styling */
 .popup-close {
     position: absolute;
     top: 15px;
     right: 20px;
     background-color: #0B97CF;
     color: #262A64;
     border: none;
     font-size: 20px;
     font-weight: bold;
     width: 35px;
     height: 35px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
 }

 /* Hover Effect with Animation */
 .popup-close:hover {
     background-color: #262A64;
     transform: scale(1.2) rotate(180deg);
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .popup-close {
         top: 10px;
         right: 10px;
         font-size: 18px;
         width: 30px;
         height: 30px;
     }
 }