.contact-hero {
    margin-top: 130px;
  position: relative;
  text-align: center;
  color: white;
  background-size: contain;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:grey;
  width: 100%;
  padding-top: 180px;
  padding-bottom:70px;

}


/* ///Map */


/* .map-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 100px 0 70px 0px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.map-frame {
  width: 100%;
  height: 500px;
  border: none;
 
}

.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-controls button {
  padding: 8px;
  font-size: 16px;
  cursor: pointer;
}

.larger-map-link {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  padding: 6px 10px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  border: 1px solid #ccc;
  z-index: 5;
} */



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

.contact-hero {
  position: relative;
  text-align: center;
  color: white;
}

.contact-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay-content h1 {
  font-size: 48px;
  margin: 0;
}
@media (max-width: 768px) {
 

  .overlay-content h1 {
    font-size: 36px;
  }
}

/* Mobile screens (≤480px) */
@media (max-width: 480px) {
 

  .overlay-content h1 {
    font-size: 28px;
  }
}
.breadcrumb {
  font-size: 16px;
  margin-top: 10px;
}

.map {
  padding: 40px 20px;
  text-align: center;
}

.map-title {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 170px;
}

.map-container {
  max-width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border: 0;
}

.larger-map-link {
  display: block;
  margin-bottom: 10px;
  color: #ff7a45;
  font-weight: bold;
  text-decoration: none;
}



.contact-section {
  display: flex;
  gap: 30px; /* Adjust spacing between sections */
  padding: 20px; /* Add some padding around the section */
  padding-top: 0px;
  border-radius: 5px; /* Optional rounded corners */
  margin-bottom: 20px; /* Add margin below the section */
}

.contact-details {
  flex: 1; /* Takes up remaining space */
}

.contact-details h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.contact-details p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.contact-details h4 {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.office-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.office-info .info-item img {
  width: 20px; /* Adjust icon size */
  height: 20px;
  margin-right: 10px;
  /* You'll need to provide the actual paths to your icons */
}

.office-info .info-item p {
  margin: 0;
}

.office-info .info-item a {
  color: #007bff; /* Example link color */
  text-decoration: none;
}

.office-info .info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1; /* Takes up remaining space */
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Important for padding and border */
}

.form-group select {
  appearance: none; /* Remove default arrow */
  background-image: url('path/to/dropdown-arrow.png'); /* Add custom arrow */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px; /* Adjust arrow size */
}

.submit-button {
  background-color: #ff6f61; /* Example button color */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.submit-button:hover {
  background-color: #e06054; /* Darker shade on hover */
}