.mobile-get-in-touch {
  display: none;
}
body {
  margin: 0;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

#map {
  height: 500px;
  width: 100%;
}

.leaflet-control-custom:hover {
  background-color: #f4f4f4;
}

.contact-container {
  display: flex;
  padding: 50px;
  gap: 40px;
}

.contact-left {
  width: 40%;
}

.contact-left h1 {
  color: #2f4668;
  margin: 0 0 30px 0;
}

.info-group info-row {
  display: block;
  margin-bottom: 10px;
}

.contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info .info-row img {
  flex-shrink: 0;
}

.contact-info .info-row span {
  margin-left: 10px;
  background-color: #f9f5ef;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #b1c8f1;
  display: inline-block;
}

.divider {
  margin: 30px 0;
  border: none;
  border-top: 2px solid #f4ba41;
  width: 100%;
}

.facebook-row {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.facebook-row:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}

.facebook-row span {
  margin-left: 10px;
}

.contact-right {
  width: 60%;
  background-color: #e6eaff;
  border-radius: 15px;
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  /* Ensures the label takes up full width */
  margin-bottom: 10px;
  /* This is the 5px space between the label and input */
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

button {
  align-self: flex-end;
  background-color: #003ba4;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  min-width: 150px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* darker background for overlay effect */
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 80%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeInScale 0.3s ease-out;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.mobile-heading {
  display: none;
  color: #002D72;
  margin: 0 0 30px 0;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    padding: 0px 20px;
    gap: 0px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left {
    order: 1;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .mobile-heading {
    display: block;
  }

  .contact-left h1 {
    display: none !important;
    height: 0;
    margin: 0;
    padding: 0;
    visibility: hidden;
  }

  .mobile-get-in-touch {
    display: block;
    color: #2f4668;
  margin: 0 0 30px 0;
  }
}

    @media (max-width: 440px) {
    button {
      width: 70%;
      align-self: center;
    }
  }

  @media (max-width: 411px) {
    .form-row {
      flex-direction: column;
      gap: 15px;
    }
    button {
      width: 100%;
      align-self: stretch;
    }
  }

  