 .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        /* Styles for the popup */
        .popup {
            display: none;
            position: fixed;
            width: 350px;
  height: 500px;
  border-radius: 20px;
            top: 50%;
            left:50%;
            /* padding: 12px; */
            transform: translate(-50%, -50%);
            background-color:none;
            padding: 10px;
            border-radius: 4px;
            /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
            z-index: 1001;
        }

        /* Styles for form elements */
        .popup form {
            display: flex;
            flex-direction: column;
            max-width: 500px;
            margin: 0 auto;
        }

        .popup label,
        .popup input[type="text"] {
            display: block;
            margin-bottom: 10px;
        }

        /* .popup input[type="text"] {
            width: 90%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ccc;
            margin-bottom: 10px;
       
        }
        .popup input[type="tel"] {
            width: 90%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ccc;
            margin-bottom: 10px;
          
        }
        .popup input[type="email"] {
            width: 90%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ccc;
            margin-bottom: 10px;
      
        }

        .popup input[type="submit"] {
            width: 95%;
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            margin-top: 10px;
            cursor: pointer;
        }

        .popup input[type="submit"]:hover {
            background-color: #0056b3;
        } */