.career-section {
  padding: 40px 0;
  background-color: antiquewhite;
}
.contact-form.style2 {
  margin: auto;
  border-radius: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.384);
  border: none;
  max-width: 700px;
  height: auto;
}
.contact-form.style2 form .form-row .form-group .input-field {
  padding: 10px 15px;
  max-width: 260px !important;
}
.git-form{
    width: 50%;
}

/* career post */
.career-job-section-rs {
  width: 50%;
}

.career-job-title-rs {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

.career-job-card-rs {
  background: white;
  padding: 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.career-job-card-rs:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.career-job-header-rs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.career-job-header-rs h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.career-job-location-rs {
  font-size: 14px;
  background: #dedede;
  padding: 4px 10px;
  border-radius: 20px;
}

.career-job-short-rs {
  margin: 12px 0;
  font-size: 15px;
  color: #555;
}

.career-job-toggle-rs {
  background: #333;
  color: #fff;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.career-job-toggle-rs:hover {
  background: #000;
}

.career-job-details-rs {
  display: none;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}

.career-job-details-rs h4 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.career-job-details-rs ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.career-job-apply-btn-rs {
  display: inline-block;
  padding: 10px 18px;
  background: #009688;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.career-job-apply-btn-rs:hover {
  background: #00796b;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(8px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width: 768px) {
  .career-job-header-rs {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .career-job-section-rs ,.git-form{
    width: 100%;
  }
}
@media screen and (max-width:1200px) {
.contact-form.style2 form .form-row {
    flex-wrap: wrap;
}}
@media screen and (max-width:575px) {
    
    .contact-form.style2 form .form-row .form-group .input-field,
.contact-form.style2 form .form-row .form-group .textarea-field {
  /* max-width: 100% !important; */
}
.contact-form.style2 form .form-row {
    flex-direction: column;
}
.contact-form.style2 {
    padding: 12px 15px;
    margin-bottom: 20px;
}
}