body {
  font-family: 'Open Sans', sans-serif;
  font-family: "Times New Roman", serif;
  background: white;
}

/* LEFT HERO */
.left-hero {
  position: relative;
  min-height: 100vh;

  /* BACKGROUND IMAGE */
  background: url('images/hero-left-bg.jpg') no-repeat left center;
  background-size: contain;
}

/* LOGO ON TOP */
.hero-logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 220px;
}

/* APPLY TEXT */
.apply-text {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-20%);
  color: #f37021;
  font-size: 56px;
  font-weight: 700;
}

/* ILLUSTRATION */
.hero-illustration {
  position: absolute;
  bottom: 80px;
  left: 55%;
  transform: translateX(-20%);
  width: 320px;
}

/* FORM */
.form-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.form-box h4{
    font-family: "Times New Roman", serif;
  font-weight: 700;
}

/* BUTTONS */
.toggle-btn {
  border: 1px solid #1f3c88;
  color: #1f3c88;
  margin: 0 5px;
  border-radius: 10px;
}

.toggle-btn.active {
  background: #1f3c88;
  color: #fff;
}

.submit-btn {
  background: #1f3c88;
  color: #fff;
  border-radius: 8px;
}

/* INPUT */
.form-control, .form-select {
  border: 1px solid #1f3c88;
}

/* CAPTCHA */
.captcha {
  height: 40px;
}

/* MOBILE */
@media(max-width:992px){
  .left-hero {
    min-height: 400px;
    background-position: center;
  }

  .apply-text {
    font-size: 36px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-illustration {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  /* RESET LEFT HERO */
  .left-hero {
    min-height: auto;
    background-size: cover;
    background-position: center;
    padding-top:210px;
    text-align: center;
  }

  /* LOGO CENTER */
  .hero-logo {
  position: absolute;   /* keep overlay */
  top: 15px;
  left: 15px;
  width: 100px;
  margin: 0;            /* remove auto centering */
}

  /* APPLY TEXT */
  .apply-text {
    position: static;
    transform: none;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* ILLUSTRATION */
  .hero-illustration {
    position: static;
    transform: none;
    width: 220px;
    margin: 0 auto;
    display: block;
  }

  /* RIGHT COLUMN FIX */
  .col-lg-5 {
    margin-top: 20px !important;
    justify-content: center !important;
  }

  /* FORM BOX */
  .form-box {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
  }

  /* INPUT SIZE IMPROVE */
  .form-control,
  .form-select {
    font-size: 14px;
    padding: 10px;
  }

  /* BUTTON */
  .submit-btn {
    padding: 10px;
    font-size: 14px;
  }

  /* TOGGLE BUTTONS */
  .toggle-btn {
    padding: 5px 12px;
    font-size: 13px;
  }

  /* CAPTCHA ALIGN */
  .captcha {
    height: 35px;
  }

  /* SPACING FIX */
  /* .hero-section {
    padding: 20px 10px;
  } */
}






/* SECTION TITLE */
.section-title {
  color: #1f3c88;
  font-weight: 700;
  position: relative;
}

.underline {
  display: block;
  width: 50px;
  height: 3px;
  background: #1f3c88;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* STEP BOX */
.step-item {
  position: relative;
}

.step-box {
  background: #f37021;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  width: 80%;
}

.step-number {
  font-size: 28px;
  font-weight: 700;
}

.step-box h6 {
  margin: 0;
  font-weight: 700;
}

.step-box p {
  margin: 0;
  font-size: 13px;
}

/* ICON CIRCLE */
.step-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step-icon img {
  width: 40px;
}

/* INSTRUCTIONS */
.instruction-item {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 15px;
}

.instruction-item span {
  background: #1f3c88;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  font-size: 14px;
  min-width: 35px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width:768px){
  .step-box {
    width: 100%;
  }

  .step-icon {
    margin-left: -20px;
  }
}