
  /* Popup styles */
  .home-popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .home-popup-content {
    background: white;
    color: black;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    position: relative;
  }
  .home-popup-content input,
  .home-popup-content textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .home-popup-content button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
  }
  .home-close-btn {
    font-size: 30px;
    color: #333;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  
  /* Success popup styles */
  .success-content {
    text-align: center;
    padding: 40px 30px;
  }
  .success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
    animation: successPulse 0.6s ease-in-out;
  }
  @keyframes successPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
  }
  .success-content h2 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 28px;
  }
  .success-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
  }
  .success-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .success-btn:hover {
    background: #218838;
    transform: translateY(-2px);
  }
  