.career-poster{
  font-family: 'Space Grotesk', sans-serif;
}

.career-poster .wrapper {
  margin: 40px 40px 0 40px;
  background: linear-gradient(to bottom, #e65c00 0%, #fc8139 50%, #f9a149 100%);
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.career-poster .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.career-poster .left-content {
  flex: 1 1 50%;
  max-width: 50%;
}

.career-poster .small-heading {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffff;
}

.career-poster .main-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffff;
}

.career-poster .apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.career-poster .left-content a{
  text-decoration: none;
}
.career-poster .apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.career-poster .apply-btn:hover::before {
  left: 100%;
}

.career-poster .apply-btn:hover {
  transform: scale(1.05);
  color: #ff7426;
  background-color: white;
}

.career-poster .apply-btn span:last-child {
  transition: transform 0.3s ease;
}

.career-poster .apply-btn:hover span:last-child {
  transform: translateX(5px);
}

.career-poster .right-image {
  flex: 1 1 50%;
  max-width: 50%;
  text-align: center;
}

.career-poster .right-image img {
  width: 100%;
  max-width: 750px;
  height: auto;
}

@media (max-width: 768px) {
  .career-poster .wrapper {
    border-radius: 30px;
  }
  .career-poster .container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .career-poster .left-content,
  .career-poster .right-image {
    max-width: 100%;
  }
  .career-poster .main-heading {
    font-size: 28px;
  }
}
