.hiring-section {
  background-color: #242424;
  color: white;
  padding: 5vw 5vw;
  padding-left: 0vw;
  /* font-family: 'Inter', sans-serif; */
  padding-bottom:1vw;
}

.hiring-container {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; */
  gap: 4vw;
}

.hiring-left {
  position: relative;
  flex: 1 1 50vw;
  max-width: 50vw;
  /* border-radius: 1vw; */
  overflow: hidden;
}

.cta-box img{
  position: relative;
  bottom:5vw;
  left:4vw;
z-index: 1;
  width: 80%;
  opacity: 0; /* Start hidden */
  transform: translateX(-100%); /* Start off-screen */
}

.cta-box img.animate{
    animation: slideFromLeft 1.0s ease-out forwards;
}
@keyframes slideFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.hiring-image {
  width:100%;
  
  height: auto;
  display: block;
  border-radius: 1vw 1vw 1vw 0;
  margin-left:-1vw;
}

.hiring-right {
  flex: 1 1 45vw;
  max-width: 45vw;
}

.hiring-right h2 {
  font-size: 2.5vw;
  margin-bottom: 1vw;
  font-weight: 500;
}

.hiring-right .desc {
  font-size: 1.5vw;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2vw;
}

.hiring-right h3 {
  font-size: 1.8vw;
  margin-bottom: 1.5vw;
  font-weight: 500;
}

.hiring-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2vw 0;
}

.hiring-list li {
  font-size: 1.5vw;
  font-weight: 300;
  margin-bottom: 2.5vw;
  display: flex;
  align-items: center;
}

.hiring-list .dot {
  width: 0.5vw;
  height: 0.5vw;
  min-width: 8px;
  min-height: 8px;
  background-color: #e31e24;
  border-radius: 50%;
  margin-right: 0.8vw;
}

.apply-btn {
  background-color: #fff;
  color: #000;
  padding: 0.8vw 2vw;
  font-weight: 400;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  font-size: 1vw;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #000;
  color: #ffffff;
}
.benefits-section {
  padding: 4vw 5vw;
  background-color: #fff;
  /* font-family: 'Inter', sans-serif; */
  text-align: center;
}
.benefits-section h3{
  font-size: 2.5vw;
  font-weight: 500;
   margin-bottom: 4vw;
}
.benefits-heading {
  color: #e31e24;
  font-weight: 600;
  font-size: clamp(1.0375vw, 3.5vw, 1.5021vw);
  margin-bottom: 1vw;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 3vw; */
  /* min-width: 1200px; */
 /* width: 80vw;  */
 width: 100%;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center; 
  /* justify-items:center; */
  gap:0.525vw;
  text-align: center;
   padding: 1vw 0vw;
   width:100%;
   box-sizing: border-box; 
  border-right: 1px solid #8E8E8E;
  border-bottom: 1px solid #8E8E8E;
  
}

/* Remove right border from last column items */
.benefits-grid .benefit-item:nth-child(3n) {
  border-right:none;
}

/* Remove bottom border from last row items */
.benefits-grid .benefit-item:nth-last-child(-n+3) {
  border-bottom:none;
}
.benefits-grid .benefit-item:nth-child(3n + 1) {
  justify-content: flex-start; /* Columns 1, 4 */
}
.benefits-grid .benefit-item:nth-child(3n + 2) {
  justify-content: center; /* Columns 2, 5 */
}
.benefits-grid .benefit-item:nth-child(3n) {
 /* align-content: center; */
 text-align: center;
 justify-content: center;

}
#rp{
  position: relative;
  right:1vw;
}
.benefit-item svg{
  width:2.5vw;
  height: 2.5vw;
  flex-shrink: 0;
  display: block;
}
.benefit-item svg:hover{
  transform: scale(1.1);
}

.icon-circle {
  width: 5vw;
  height: 5vw;
  background-color: #1c1b58;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vw;
}
.icon-circle:hover{
  transform: scale(1.1);
}
.icon-circle img {
  width: 35px;
  height: 35px;
}

.benefit-item h3 {
  font-size: 1.2vw;
  font-weight: 600;
  margin-bottom: 0.5vw;
  color: #000;
}

.benefit-item p {
  font-size: 0.95vw;
  color: #444;
  max-width: 250px;
}
.tailored-section{
  padding-top: 5.5vw;
  padding-bottom: 4.5vw;
}
@media (max-width: 768px) {
.hero-image {
  width: 100%;
  height:24vh;
  opacity: 1;
  position: relative; /* Ensure it's not absolute/fixed */
  z-index: -9999; /* lower than .supply-chain-section */
  transition: opacity 0.3s ease;
  animation: fadeInOut 2s ease-in-out forwards;
}
}