.hero {
  position: relative;
  width: auto;
  /* margin:  0 30px 10px 30px; */
  height: 90vh;
  background-image: url("../img/contact-us.png"); /* 🔥 same image */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* dark to transparent gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* text */
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-content p {
  font-size: 17px;
  color: #e5e7eb;
}

.hero-content span {
  color: #f7941d;
  font-weight: 600;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    background-position: center;
     /* margin:  0 10px 10px 10px; */
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}


/* Contact Section CSS */
.contact-section {
  padding: 80px 20px;
  background: #fdfdfd;
  font-family: 'Arial', sans-serif;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  background: #fff;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  flex: 1 1 400px;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.sub-heading {
  color: #555;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 3px;
  font-size: 16px;
}

.contact-form button {
  background: #f7941d;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 3px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f7941d;
}

.contact-info .section-label {
  color: #f7941d;
  font-size: 32px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  background-image: url("../img/globe1.png");
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 18px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-item h4 {
  color: #f7941d;
  margin-bottom: 5px;
  font-size: 24px;
}

.info-item p {
  color: #333;
  margin: 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}


/* ===== FULL WIDTH MAP ===== */
.full-map {
  width: 100%;
  height: 580px;
  position: relative;
}

.full-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .full-map {
    height: 480px;
  }
}

@media (max-width: 576px) {
  .full-map {
    height: 300px;
  }
}
