/* =========================
   LEARNING SECTION
========================= */
.learning-section {
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.main-title {
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 50px;
  text-align: center;
}

.learning-wrapper {
  display: flex;
  align-items: flex-start;
}

/* LEFT SIDE */
.learning-left {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub-title {
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  padding-bottom: 15px;
}

.job-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.job-item h4 {
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}

.job-item p {
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}

/* RIGHT SIDE FORM */
.learning-right {
  width: 60%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form-outer {
  width: 80%;
  background: #000;
  padding: 20px;
  border-radius: 30px;
}

.form-box {
  width: 100%;
  background: #f4a32d;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.form-box textarea {
  resize: none;
  height: 80px;
}

.upload-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upload-box button {
  background: #777;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.upload-box span {
  font-size: 13px;
}

.captcha-box {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
}

.submit-btn {
  background: #fff;
  border: none;
  padding: 10px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */

/* Large Laptop */
@media (max-width: 1200px) {
  .learning-left {
    width: 45%;
  }

  .learning-right {
    width: 55%;
  }

  .job-item h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .job-item p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .learning-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .learning-left,
  .learning-right {
    width: 100%;
  }

  .sub-title {
    font-size: 24px;
    line-height: 32px;
  }

  .job-item h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .job-item p {
    font-size: 15px;
    line-height: 24px;
  }

  .form-outer {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .learning-section {
    padding: 0;
  }

  .main-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .sub-title {
    font-size: 18px;
    line-height: 26px;
  }

  .job-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .form-box {
    padding: 25px;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    font-size: 13px;
    padding: 10px;
  }

  .submit-btn {
    padding: 8px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .learning-wrapper {
    gap: 30px;
  }
  .main-title {
    font-size: 18px;
  }

  .sub-title {
    font-size: 16px;
  }

  .job-item h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .job-item p {
    font-size: 13px;
    line-height: 20px;
  }

  .form-box {
    padding: 20px;
  }
}
