/* -------- GLOBAL STYLES -------- */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* -------- HERO SECTION (FULL BACKGROUND IMAGE) -------- */
.career-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #10728b;
  text-align: center;
  background-size: cover;
  background-position: center;
   margin-top: 0 !important;        /* removes any margin */
  padding-top: 1rem !important;    /* reduce top padding */
  padding-bottom: 3rem;   
}

.career-hero .container {
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.career-hero h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #10728b;
}

.career-hero h2 span:first-child {
  color: #10728b;
}

.career-hero h2 span:last-child {
  color: #73aa1b;
}

.career-hero p {
  color: #10728b;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}


/* -------- CHECKBOX STYLING (blue circle + green tick) -------- */
.check-box {
  width: 22px;
  height: 22px;
  background-color: #ffffff;       /* white background */
  border: 3px solid #0d6efd;       /* blue border (Bootstrap blue) */
  border-radius: 50%;              /* make it circular */
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}

/* ✅ Green tick mark inside */
.check-box::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid #6bbf43;           /* ✅ green tick color */
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  top: 2px;
  left: 7px;
}

/* Wrapper for Center Logo + Divider */
.logo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* Centers logo vertically */
  align-items: center;       /* Centers horizontally */
  text-align: center;
  height: 100%;              /* Fills parent column height */
  min-height: 400px;         /* Keeps visible even if row is small */
}

.logo-wrapper .divider-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%; /* Full column height */
  background: linear-gradient(
    to bottom,
    rgba(252, 237, 212, 0) 0%,
    rgba(252, 237, 212, 0.9) 30%,
    rgba(252, 237, 212, 0.9) 70%,
    rgba(252, 237, 212, 0) 100%
  );
  box-shadow: 0 0 25px rgba(252, 237, 212, 0.8);
  opacity: 0.9;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 35px #fde8c1;
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

/* -------- BUTTON STYLES -------- */
.btn-skillaim {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.btn-skillaim:hover {
  background-color: #fff;
  color: #007bff;
  border: 2px solid #007bff;
}

/* -------- JOIN OUR TEAM SECTION -------- */
.join-team {
  background-color: #f4f9ff;
  padding: 80px 0;
  text-align: center;
}

.join-team h2 {
  font-size: 2rem;
  color: #0b4b63;
  margin-bottom: 2.5rem;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.team-card h5 {
  font-weight: 600;
  color: #10728b;
}

.team-card p {
  color: #6c757d;
  margin: 10px 0 20px;
}

.btn-apply {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  background-color: #0b4b63;
  color: #fff;
}

/* -------- LIFE AT SKILLAIM SECTION (Careerly-style fix) -------- */
.life-skillaim {
  background-color: #ffffff;
  padding: 80px 0;
}

.life-skillaim .icon-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.life-skillaim .icon-box i {
  color: #007bff;
  font-size: 30px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.life-skillaim h5 {
  font-weight: 600;
  color: #0b4b63;
  margin-bottom: 5px;
}

.life-skillaim p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

.life-skillaim h2 {
  color: #0b4b63;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.life-skillaim h2 span:first-child {
  color: #10728b;
}

.life-skillaim h2 span:last-child {
  color: #73aa1b;
}

.life-skillaim .btn-skillaim {
  margin-top: 15px;
}

/* -------- MODAL STYLES -------- */
.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.modal-content h5 {
  color: #15708b;
  font-weight: 700;
}

/* -------- SECTION SPACING -------- */
section {
  padding: 10px 0;
}

/* -------- RESPONSIVE FIXES -------- */
@media (max-width: 991px) {
  .career-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .career-hero .col-md-5 {
    padding: 0 15px;
  }

  .life-skillaim {
    text-align: center;
  }

  .life-skillaim .icon-box {
    justify-content: center;
  }

  .life-skillaim .icon-box i {
    margin-bottom: 10px;
  }

  .card, .team-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .career-hero h2,
  .join-team h2,
  .life-skillaim h2 {
    font-size: 1.6rem;
  }

  .icon-box i {
    font-size: 24px;
  }

  .btn-apply {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}
