

.open-popup-btn { 
 /* display: block;
  margin: 150px auto;
  padding: 15px 35px;
  background: linear-gradient(135deg, #ff00cc, #9b00ff, #ff8800);
  border: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 0, 204, 0.3);
  transition: all 0.3s ease;*/



   display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 20px;
    padding: 16px 0;
    margin: 15px 0;
    border-radius: 30px;
    /*background: linear-gradient(135deg, #ff00cc, #9b00ff, #ff8800);*/
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(255, 136, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    touch-action: manipulation;


  padding: 12px 20px;
  /*background: linear-gradient(135deg, #ff00cc, #9b00ff, #ff8800);*/
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 0, 204, 0.3);
  transition: all 0.3s ease
}

.open-popup-btn:hover {
  transform: scale(1.08);
}

/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Modal content */
.popup-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 35px 40px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.7);
  opacity: 0;
  animation: pop-in 0.5s ease forwards;
  position: relative;
}

/* Animations */
@keyframes pop-in {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Header */
.popup-header {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  /*background: linear-gradient(135deg, #ff00cc, #9b00ff, #ff8800);*/
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

/* Form styling */
.form-group-one {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group-one input,
.form-group-one textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #ff00cc;
  background: #fff0f9;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
}

.form-group-one input:focus,
.form-group-one textarea:focus {
  border-color: #ff8800;
  box-shadow: 0 0 12px rgba(255, 136, 0, 0.4);
}

.form-group-one textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.submit-btn-one {
  background: linear-gradient(135deg, #ff00cc, #9b00ff, #ff8800);
  color: white;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn-one:hover {
  transform: translateY(-3px);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #ff1a1a;
}
/*.popup-overlay.active {
  display: flex !important;
}*/

.popup-overlay.active {
  display: flex;
}





