.filter-section {
  background-color: transparent;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.filter-section h4 {
  font-family: var(--font-family-montserrat);
  color: var(--black-color);
  font-size: 24px;
  font-weight: 600;
}
/* Change: added will-change/backface-visibility to reduce mobile jank */
.job-card {
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  background-color: var(--white-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  border: 1px solid var(--lightGray-color);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.job-card:hover {
  transform: translateY(-5px);
}
.job-card i {
  font-size: 36px;
  color: #ff7f50;
}
.job-heading {
  font-size: 18px;
  font-weight: bold;
  color: var(--gray-color);
}
.job-text {
  font-size: 14px;
  color: var(--gray-color);
}
.contact-container {
  background: transparent;
  border-radius: 20px;
}
.form-section {
  flex: 1;
}
.form-section form .form-control {
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px 20px;
  background-color: var(--surface2-color);
}
.form-section p {
  font-size: 18px;
  margin-bottom: 0;
}
.form-section form .btn {
  font-size: 18px;
  background: #ff7f50;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
  font-weight: 700;
}
.form-section {
  border-radius: 8px;
  padding: 30px;
}
.btn-orange {
  background-color: var(--orange-color);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
}
.btn-orange:disabled {
  background-color: var(--orange-color);
  opacity: 0.7;
}
.error {
  color: red;
  font-size: 0.875rem;
  margin-top: 5px;
}
.upload-section {
  border: 2px dashed #ccc;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
}
.upload-section input {
  display: none;
}
.success-message {
  display: none;
  color: green;
  font-weight: bold;
  margin-top: 10px;
}
.card {
  border-radius: 15px !important;
  padding: 10px !important;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
  cursor: default;
}
.card:hover {
  transform: translateY(-5px);
  background-color: var(--orange-color);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transition: transform 0.3s, background-color 0.3s;
}
.card:hover span {
  color: #000000;
}
.card h5 {
  font-size: 26px;
  font-weight: 500;
}
.card .phone-Ptag {
  margin-bottom: 0 !important;
}
.card a {
  text-decoration: none;
}
.card:hover h5,
.card:hover p {
  color: #fff;
}
.icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.icon img {
  width: 40px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .hero-section br {
    display: none;
  }
  .filter-section h4 {
    font-size: 20px;
  }
}

/* Add this if primary-button isn't defined yet */
.primary-button {
  background-color: var(--orange-color); /* Orange color matching your theme */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.primary-button:hover {
  background-color: var(--orange-soft-color);
}
