.contact-us-section {
  background-image: url(../images/contact-b.jpg);
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  padding: 4rem;
}
.contact-us-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #194b8199;
}
.contact-section {
  background: #fff;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
  z-index: 100;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form button {
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .contact-section {
    margin: 20px;
    padding: 20px;
  }
  .contact-us-section {
    padding: 2rem;
  }
}

@media (max-width: 465px) {
  .contact-section {
    margin: 0;
  }
}
