:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: "Amarna", sans-serif;
  --theme-color: #79cb27;
  --theme-bg-light: #F9FBFE;
  --body-text-color: #000000;
  --color-white: #ffffff;
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --border-info-color: rgba(0, 0, 0, 0.08);
  --transition2: all .3s ease-in-out;
}

.contact-section {
  padding: 30px 20px;
  background-color: var(--theme-bg-light);
  font-family: var(--body-font);
  color: #000;
}

.contact-section h2 {
  font-family: var(--heading-font);
  font-size: 2.5em;
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 30px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* gap: 40px; */
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  flex: 1 1 480px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: var(--box-shadow2);
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid var(--border-info-color);
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--theme-color);
  outline: none;
}

.submit-btn {
  background-color: var(--theme-color);
  color: var(--color-white);
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  box-shadow: var(--box-shadow2);
  transition: var(--transition2);
}

.submit-btn:hover {
  background-color: #66b820;
}

/* 📍 Contact Info Block */
.contact-info {
  flex: 1 1 400px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: var(--box-shadow2);
}

.contact-info h3 {
  font-family: var(--heading-font);
  font-size: 1.6em;
  margin-bottom: 16px;
  color: var(--theme-color);
  padding: 20px;
}

.contact-form h3 {
  font-family: var(--heading-font);
  font-size: 1.6em;
  margin-bottom: 16px;
  color: var(--theme-color);
  padding: 20px 20px 20px 2px;
  width: 100%;
  text-align: center;
}


.contact-info p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-info a {
  color: var(--theme-color);
  text-decoration: none;
}

.contact-info a:hover {
  /* text-decoration: underline; */
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}






/*clients*/


.client-logos {
  background-color: var(--theme-bg-light);
  padding: 60px 20px;
  text-align: center;
  font-family: var(--body-font);
}

.client-logos h2 {
  font-size: 2.2em;
  font-family: var(--heading-font);
  color: var(--theme-color);
  margin-bottom: 40px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  width: 100%;
  /* max-height: 80px; */
  object-fit: contain;
  /* filter: grayscale(80%); */
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 10px;
}

.logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}