.contact-hero {
  position: relative;
  background: url("images/index.png") no-repeat center center/cover;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-attachment: fixed;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-hero .hero-text {
  position: relative;
  z-index: 2;
}

.contact-form-section {
  padding: 6rem 2rem;
  /* background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); */
  color: #eee;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #1f1f1f;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.form-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.form input,
.form textarea {
  background: #2b2b2b;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #aaa;
}

.send-btn {
  display: block;
  width: 100%;
  background: #ffd700;
  color: #111;
  font-weight: 600;
  border: none;
  padding: 0.75rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #ffac00;
  color: #fff;
}

.form-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

/* additions */

.contact-intro {
  padding: 5rem 2rem 3rem 2rem;
  text-align: center;
}

.intro-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.intro-subheading {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-side-image {
  width: 500px;
  border-radius: 15px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
  object-fit: cover;
}
