/* Contact CSS starts */
.contactus.section-padding {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    -webkit-font-smoothing: antialiased;
    overflow: auto;
}
.contact-image {
    width: 280px;
    height: 320px;
    margin-top: 10px;
    display:  flex;
    justify-content:  center;
    align-items:  center;
}

.contactus .row {
    display: flex;
    align-items: center; /* Aligns image and text */
    gap: 20px; /* Adds spacing between the columns */
}

.contactus .contact-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 5px; /* Reduces extra space */
}
.section-title {
    margin-top: 10px; /* Adds spacing between each heading */
    margin-bottom: 10px; /* Ensures text spacing */
    font-size: 30px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}
.section-body p{
    font-size: 18px;
    font-weight: 500;
}
.section-title p{
    font-size: 20px;
    font-weight: 500;
}
.contact-details h4 {
    margin-top: 10px; /* Adds spacing between each heading */
    margin-bottom: 10px; /* Ensures text spacing */
    font-size: 25px;
    font-weight: 500;
}

.contact-details h5 {
    margin-top: 10px; /* Adds spacing between each heading */
    margin-bottom: 10px; /* Ensures text spacing */
    font-size: 20px;
    font-weight: 400;
}

.contact-details p {
    margin-bottom: 15px; /* Adds space between each paragraph */

}

.website-details h5{
    margin-top: 10px; /* Adds spacing between each heading */
    margin-bottom: 10px; /* Adds space between each paragraph */
    font-size: 20px;
    font-weight: 500;
}

.website-details a {
  text-decoration: underline !important;
  text-transform: none;
  font-size: 16px;
  color: #666;
}

.website-details a:hover, a:focus {
  text-decoration: none;
  color: #aaa;
  outline: 0;
  text-transform: none;
  font-size: 16px;
}

/* form css */
/*  form {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}*/
label {
  margin-bottom: 5px;
  font-weight: bold;
}
input, textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.button-group {
  display: flex;
  justify-content: space-between;
}
button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button {
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      background-color: #203c69;
      color: white;
    }

@media (max-width: 768px) {
  .contactus .contact-image {
    display: none;
  }

  .contactus .col-sm-7 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contactus .row {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0; /* Remove gap on mobile for single column layout */
  }
}