.reachout-section {

  background-image: url('../image/halfhead.jpeg');
  background-size: cover;
  background-position: center;
  padding: 120px 100px;
  position: relative;
  color: white;
  filter: brightness(1.2);
}

.reachout-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.reachout-content {
  position: relative;
  z-index: 1;
}

.reachout-title {
  padding-right: 30px;
}

.reachout-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.reachout-title p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.reachout-form {
  background-color: transparent;
  padding: 40px;
  border-radius: 5px;
}
/* 
.form-control-custom {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  padding: 5px 5px 5px 0;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.form-control-custom::placeholder {
  color: white;
  opacity: 1;
}

.form-control-custom:focus {
  background: transparent;
  border-bottom-color: white;
  box-shadow: none;
  color: white;
} */

.form-control-custom {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  width: 100%;
  padding: 10px 5px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.form-control-custom::placeholder {
  color: white;
  opacity: 1;
}

.form-control-custom:focus {
  background: transparent;
  border-bottom: 1px solid white;
  box-shadow: none;
  outline: none;
  color: white;
}

.btn-submit {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0;
  padding: 10px 40px;
  margin-top: 10px;
  transition: all 0.3s ease;
  float: right;
}

.btn-submit:hover {
  background: white;
  color: black;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 768px) {
  .reachout-title {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .reachout-section {
    padding: 60px 0;
  }

  .reachout-form {
    padding: 30px;
  }

  .btn-submit {
    width: 100%;
    float: none;
  }
}
