/* Pop-Up Form Overlay */
.popup-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  /* Pop-Up Form Content */
  .popup-form-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }
  
  .close-btn:hover {
    color: #000;
  }
  
  /* Form Styling */
  .popup-form-content h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #131313;
  }
  
  .popup-form-content p {
    margin-bottom: 20px;
    color: #211f1f;
  }
  
  .popup-form-content .form-group {
    margin-bottom: 20px;
  }
  
  .popup-form-content input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .popup-form-content .btn {
    width: 100%;
    padding: 10px;
    background: #2575fc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 15px;
  }
  
  .popup-form-content .btn:hover {
    background: #1a5bbf;
  }