.job-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.icon-container {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 3rem;
  color: #ff4500;
}

.job-details {
  flex-grow: 1;
  padding: 15px 20px;
  min-width: 250px;
}

.job-details h2 {
  font-size: 24px;
  font-weight: bold;
}

.job-details p {
  margin: 5px 0 0;
  color: #555;
  font-size: 1rem;
}

.apply-btns .btn {
  background-color: #ff4500;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apply-btns .btn:hover {
  background-color: #0a165e!important;
}
.apply-btns .btn:active {
  color: #fff !important;

}

.apply-btns .btn:hover .arrow {
  color: #0a165e;
}

.apply-btns .btn .arrow {
  background-color: #fff;
  color: #ff4500;
  border-radius: 50%;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}

@media (max-width: 1440px) {
  .job-openings {
    max-width: 1140px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .job-details h2 {
    font-size: 22px;
    font-weight: bold;
  }

  .job-details p {
    font-size: 16px;
  }

  .apply-btns .btn {
    width: 180px;
    justify-content: center;
    font-size: 13px;
  }
}

@media (max-width: 426px) {
  .job-card {
    flex-direction: column;
  }
  .job-card .job-details .icon-container {
    display: flex;
  }
  .icon-container {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .job-details h2 {
    font-size: 22px;
    font-weight: bold;
  }
  .job-details {
    flex-grow: 1;
    padding: 15px 20px;
    min-width: 250px;
  }
  .job-details p {
    font-size: 16px;
  }

  .apply-btns {
    width: 100%;
    margin-top: 10px;
  }

  .apply-btns .btn {
    width: 50%;
    justify-content: center;
    font-size: 13px;
  }
}

@media (max-width: 425px) {
  .job-card {
    flex-direction: column;
  }
  .job-card .job-details .icon-container {
    display: flex;
  }
  .icon-container {
    font-size: 30px;
    margin-top: 20px;
  }

  .job-details h2 {
    font-size: 20px;
    font-weight: bold;
  }
  .job-details {
    flex-grow: 1;
    padding: 15px 20px;
    min-width: 250px;
  }
  .job-details p {
    font-size: 16px;
  }

  .apply-btns {
    width: 100%;
    margin-top: 10px;
  }

  .apply-btns .btn {
    width: 60%;
    justify-content: center;
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .job-card {
    flex-direction: column;
  }
  .job-card .job-details .icon-container {
    display: flex;
  }
  .icon-container {
    font-size: 30px;
    margin-top: 20px;
    width: 60px;
    height: 60px;
  }

  .job-details h2 {
    font-size: 17px;
    font-weight: bold;
  }
  .job-details {
    flex-grow: 1;
    min-width: 250px;
  }
  .job-details p {
    font-size: 16px;
  }

  .apply-btns {
    width: 100%;
    margin-top: 10px;
  }

  .apply-btns .btn {
    width: 70%;
    justify-content: center;
    font-size: 13px;
  }
}
