/* Section Base */
.contact-form {
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #0d1e46, #f8b82f); */
  /* color: #fff; */
}

.contact-subheader {
  font-size: 18px;
  color: #f1f1f1;
}

/* Form Styling */
.contact-form-box {
  background: #fff;
  /* background: linear-gradient(135deg, #0d1e46, #f8b82f); */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  color: #333;
}

.contact-form-box .form-group {
  margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #0d1e46;
  box-shadow: 0 0 8px rgba(3,146,154,0.3);
}

/* Submit Button */
.btn-submit {
  background: #0d1e46;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #02747a;
}
.contact-form-box,
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background: #fff;
  color: #333;
  min-height: 100%; /* equal height effect */
}
.contact-details{
    transition: all 0.3s ease;
}
/* Hover Effect */
.contact-details:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid #0d1e46;
}

/* Optional: highlight header text on hover */
.contact-details:hover .details-info-header {
  color: #0d1e46;
  border-color: #0d1e46;
}

.details-info-header {
  font-size: 25px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f8b82f;
  display: inline-block;
  padding-bottom: 5px;
  color: #0d1e46;
}

.details-info-subheader {
  font-size: 16px;
  margin-bottom: 20px;
  /* color: #e0e0e0; */
}

.field-list {
  list-style: none;
  padding: 0;
}

.field-list li {
  margin-bottom: 12px;
  font-size: 16px;
}
.form-icon{
    color: #f8b82f;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-form {
    padding: 40px 15px;
  }
  .contact-form-box,
  .contact-details {
    margin-bottom: 20px;
  }
}


.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.map-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  /* background: linear-gradient(to right, #0d1e46, #03929A); */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.wave-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg); 
  margin-top: 20px;
}

.wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px; /* medium height, adjust as needed */
}
.wave-top svg path {
  fill: #0d1e46; /* wave color */
}