.apply-now-section {
  padding: 40px 20px 70px;
  background: #f5f9ff;
}

.apply-now-container {
  max-width: 1250px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* LEFT */
.apply-left {
  flex: 0.9;
  background: linear-gradient(135deg, #12c2c2, #0a7cc7);
  padding: 35px 40px;
  color: white;
}

.apply-left h2 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 1px;
}

.apply-left span {
  font-size: 60px;
}

/* RIGHT */
.apply-right {
  flex: 2;
  background: #082c54;
  color: white;
  padding: 30px 35px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: #13a8ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.contact-item small {
  font-size: 12px;
  opacity: 0.9;
}

.contact-item p {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

/* TABLET */
@media (max-width: 992px) {
  .apply-now-container {
    flex-direction: column;
  }

  .apply-left,
  .apply-right {
    width: 100%;
    text-align: center;
  }

  .apply-right {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .apply-left h2 {
    font-size: 34px;
  }

  .apply-left span {
    font-size: 40px;
  }

  .apply-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-item p {
    font-size: 16px;
  }
}
