/* Contact Html */

.custom-contact-info {
  padding: 50px 0;
  margin-top: 10px;
}
.custom-contact-info h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
}
.custom-contact-info p {
  font-size: 1.2rem;
  color: #555;
}
.custom-contact-details {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}
.custom-contact-details i {
  color: #d4a574;
  margin-right: 30px;
}
.custom-form-container {
  margin-top: 5px;
}
.custom-form-control {
  border-radius: 10px;
  margin-bottom: 15px;
}
.custom-submit-btn {
  background-color: #d4a574;
  color: white;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #bd8549;
}
.custom-submit-btn:hover {
  background-color: #bd8549;
}
/* Apply styles for the hero section */
.hero-section {
  position: relative;
  height: 330px; /* Adjust the height as needed */
  color: white;
  top: 75px;
  margin-bottom: 70px;
}

/* Style for the image container */
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Image styling */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Darker overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Darker overlay with higher opacity */
}

/* Style for the heading and breadcrumb text */
.container-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Ensure text is above the overlay */
}

.hero-section h2 {
  font-size: 3rem;
  font-weight: bold;
}
