.career-banner {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.career-banner.career-highlight {
  background-color: #e8f0ff;
  border-radius: 10px;
  padding: 50px;
}
.career-badge {
  display: inline-block;
  background-color: #ff4500;
  color: white;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: bold;
}
.career-title {
  font-size: 36px;
  font-weight: 600;
  margin: 20px 0;
}
.career-text {
  font-size: 16px;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
}
.career-button {
  background-color: #ff4500;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
.career-button:hover {
  background-color: #0a165e;
  color:#fff !important;
}
.career-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.career-images img {
  width: 280px;
  height: auto;
  border-radius: 10px;
}
.decorative-icons {
  position: absolute;
  font-size: 30px;
  color: #ffcc00;
}
.icon-left {
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}
.icon-right {
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 425px) {
  .career-banner {
    padding: 20px 0;
  }
  .career-images img {
    width: 170px;
  }
  .career-images {
    gap: 30px;
  }
  .icon-right {
    right: 6%;
  }
  .icon-left {
    left: 6%;
  }
}
@media (max-width: 375px) {
  .career-images img {
    width: 150px;
  }
  .career-images {
    gap: 20px;
  }
}
@media (max-width: 325px) {
  .career-images img {
    width: 140px;
  }
  .career-images {
    gap: 15px;
  }
}
