* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.contact-section {
  min-height: 80vh;
    background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-box {
  background: #fff;
  width: 100%;
  max-width: 850px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

#hee5{
  color: var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
}
.contact-box h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
}

.contact-box h2 span {
  color: #15ff00;
  position: relative;
}

.contact-box h2 span::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #15ff00;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.contact-box p {
  text-align: center;
  margin: 15px 0 30px;
  color: #000000;
  font-size: 15px;
}

form .row {
  display: flex;
  gap: 20px;
}

.input-group {
  flex: 1;
  margin-bottom: 20px;
}

.input-group.full {
  width: 100%;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #000000;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #15ff00;
}

button {
  display: block;
  margin: 10px auto 0;
  padding: 12px 40px;
  background: linear-gradient(135deg, #15ff00, #15ff00);
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  form .row {
    flex-direction: column;
  }

  .contact-box {
    padding: 25px;
  }
}
