/* Trigger Button */
.open-btn {
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.open-btn:hover {
  background-color: #0056b3;
}

/* Popup Overlay */
.popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Form Box */
.form-container {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #444;
}

/* Input Styling */
form input,
form select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input {
  flex: 1;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #6c63ff;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}
.submit-btn:hover {
  background-color: #5548e4;
}

.counseling-image-container {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 90%;
}

.counseling-image {
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.counseling-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

