/* Hero Section with Video Background */
.contact-hero {
  position: relative;
  height: 50vh; /* same as you wanted */
  width: 100%;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes sure video covers area */
  z-index: 1;
}

/* Overlay (dark shade for text readability) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0); /* semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 1 15px;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-top: 10px;
}
/* Info Card */
.contact-info {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.contact-info:hover {
  transform: translateY(-5px);
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #222;
}
.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  color: #555;
}
.contact-info i {
  color: #0d6efd;
  margin-right: 10px;
}

/* Contact Form */
.contact-form {
  background: #DMC959;
  border-radius: 15px;
  padding-top: 20px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #222;
}
.contact-form .form-control {
  border-radius: 8px;
}
.contact-form button {
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #0b5ed7;
}
