/* Globals reset */
html, body {
  scroll-behavior: smooth;
}

/* Contact Section Styles */
.contact-section {
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.contact-form .single-form {
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 56px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 0 25px;
  font-size: 16px;
  color: #6B6F92;
  transition: all 0.3s ease-out 0s;
}

.contact-form textarea {
  height: 150px;
  padding-top: 15px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5d58f0;
  outline: none;
}

.contact-form button.main-btn {
  border: 0;
  cursor: pointer;
}

/* Client Logo Section Normalization */
.client-logo-section .single-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  opacity: .5;
  transition: all 0.3s ease-out 0s;
}

.client-logo-section .single-logo:hover {
  opacity: 1;
}

.client-logo-section .single-logo img,
.client-logo-section .single-logo svg {
  max-height: 50px;
  width: auto;
  max-width: 80%;
  display: block;
}

@media only screen and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 30px;
  }
  
  /* Client Logo Section Mobile Fixes */
  .client-logo-section .single-logo {
    margin-bottom: 30px;
  }
  
  .client-logo-section .single-logo img,
  .client-logo-section .single-logo svg {
    max-width: 120px; /* Constrain width on mobile */
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  /* Ensure SVGs without explicit dimensions behave */
  .client-logo-section .single-logo svg {
    max-height: 50px;
    width: auto;
  }
}