.inner-banner.career {
  background: url("../../images/career-bg.jpg") no-repeat top / cover;
}

.career-more-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

.career-more-content.active {
  max-height: max-content;
  opacity: 1;
  margin-top: 15px;
}
button.view-details,
button.less-details {
  border: none;
  padding: 2px 10px;
  background-color: #ffc107;
  color: #fff;
  border-radius: 6px;
}

.view-details,
.less-details {
  padding: 10px 20px;
  cursor: pointer;
}
.job-body {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.job-content {
  text-align: left;
  margin-top: 6px;
}
.job-sidebar {
  width: 40%;
  background: #ffffff;
  padding: 20px 25px;
  border-left: 1px solid #eff0f6;
  text-align: left;
}
.sidebar-box {
  margin-bottom: 12px;
}
.sidebar-box h4 {
  color: #5b5b60;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
}
.sidebar-box p {
  font-size: 16px;
  margin: 0;
  color: #74788d;
}

.career-sticky-wrap {
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-about-info-wrap {
  width: 1200px;
  height: 610px;
  position: relative;
}

.career-single-about-wrap {
  position: absolute;
  width: 280px;
  height: 300px;
  left: 47%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s linear;
  will-change: transform;
}

.career-about-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  position: relative;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.career-about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.career-single-about-wrap:hover .career-about-image {
  transform: scale(1.08);
}

.career-about-image-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 230px;
  background: #f4f4f4;
  border-radius: 50%;
  bottom: -260px;
  transition: 0.3s linear;
}
section.career-hero-section {
  background-color: aliceblue;
  padding-top: 30px;
}
.career-hero-title {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: -1;
}
.career-hero-title h2 {
  font-size: 40px;
}

.career-hiring-section {
  padding: 20px 0;
}

.career-job-header {
  display: flex;
  justify-content: space-between;
}

.career-job-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  transition: 0.4s;
  margin-bottom: 20px;
}

.career-job-card:hover {
  transform: translateY(-8px);
  border-color: #c5182d;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.career-job-card h3 {
  font-size: 32px;
}

.career-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.career-job-meta li {
  padding: 3px 20px;
  background: #f3f4f6;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.career-job-card p {
  color: #6b7280;
  line-height: 1.8;
}

.career-apply-btn {
  background: #4b4242;
  color: #fff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: 0.4s;
  text-decoration: none;
  padding: 8px 23px;
}
.career-apply-btn:hover {
  color: #fff;
}

.career-cta-section {
  padding-bottom: 25px;
}

.career-cta-box {
  background: linear-gradient(135deg, #c5182d, #7f1020);
  padding: 40px;
  text-align: center;
  color: #fff;
}
.career-headding {
  margin-bottom: 30px;
}

.career-cta-box p {
  margin: auto;
  line-height: 1.9;
  margin-bottom: 24px;
}

.career-cta-btn {
  display: inline-flex;
  padding: 16px 42px;
  border-radius: 60px;
  background: #fff;
  color: #111827;
  font-weight: 600;
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  .career-hero-section {
    height: auto;
    padding: 100px 0;
  }
  .career-single-about-wrap {
    position: absolute;
    width: 223px;
    height: 259px;
  }

  .career-hero-title {
    display: none;
  }

  .career-sticky-wrap {
    position: relative;
    height: auto;
    padding: 20px;
  }
  .career-hero-section {
    height: auto;
    padding: 26px 0;
  }
  .career-job-card h3 {
    font-size: 24px;
  }
  .career-job-card {
    padding: 20px;
    margin-bottom: 13px;
  }
  .career-apply-btn {
    font-size: 14px;
    padding: 4px 16px;
  }
  .job-body {
    gap: 20px;
    flex-direction: column;
  }
  .job-sidebar {
    width: 100%;
    padding: 0;
    border-left: none;
  }
  .career-cta-box h2 {
    font-size: 28px !important;
  }
  .career-cta-btn {
    padding: 8px 26px !important;
    font-size: 18px !important;
  }
  .job-content ul {
    padding-left: 0;
  }

  .career-about-info-wrap {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .career-single-about-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    left: unset !important;
    top: unset !important;
    transform: none !important;
  }

  .career-hero-title {
    position: relative;
    margin-top: 60px;
    left: unset;
    transform: none;
  }

  .career-hero-title h1 {
    font-size: 50px;
  }

  .career-cta-box h2 {
    font-size: 42px;
  }
}

@media screen and (max-width:768px) {
    .career-headding {
    margin-bottom: 4px;
}
.career-single-about-wrap {

    height: 254px !important;
}
.career-about-image-wrap {
    border-radius: 7px !important;
}
.career-job-card h3 {
    font-size: 20px !important;
}
.career-job-meta li {
    padding: 2px 12px !important;
    font-size: 12px !important;
}
}
@media screen and (max-width:576px) {
    .career-about-image-wrap{
        clip-path: none !important;
    }
    .career-job-card {
    padding: 15px;
}
.career-job-card h3 {
    font-size: 18px !important;
}
.career-job-meta {

    gap: 4px;

    margin: 10px 0;
}
.career-cta-box h2{
    font-size: 22px !important;
}
.career-cta-btn {
    padding: 6px 18px !important;
    font-size: 14px !important;
}
.career-cta-box p {

    margin-bottom: 13px;
}
.career-cta-box {
    padding: 24px;
}

}
@media screen and (max-width:480px) {
.career-job-card h3 {
    font-size: 18px !important;
}
.career-job-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
}

@media (max-width: 576px) {

    
  .career-about-info-wrap {
    grid-template-columns: 1fr;
  }

  .career-hero-title h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .career-job-card h3 {
    font-size: 26px;
  }

  .career-about-name {
    font-size: 18px;
  }

  .career-cta-box h2 {
    font-size: 32px;
  }
}
