/* ===== CAREER INTRO ===== */
.career-intro {
  padding: 60px 0;
  text-align: center;
}

.career-intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.career-intro p {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--color-text);
  max-width: 750px;
  margin: 0 auto 16px;
}

/* ===== WHY JOIN US ===== */
.why-join {
  padding: 40px 20px;
  text-align: center;
}

.why-join h2 {
  /* font-size: 2.5rem;
  font-weight: 700; */
  margin: 20px;
  color: var(--color-dark);
}

.why-join-text {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto 16px;
}

.why-join-boxes {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin: 40px 60px;
}

.why-join-box {
  border-radius: 16px;
  overflow: hidden;
}

.why-join-image {
  background: #eee;
}

.why-join-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  border-radius: 16px;
}

.why-join-offer {
  /* background: rgba(0, 0, 0, 0.5); */
  background: #f0f0f0;
  padding: 28px;
  /* border: 1px solid var(--color-border); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-join-offer h3 {
  /* font-size: 1.75rem;
  font-weight: 700; */
  margin: 20px;
  color: var(--color-dark);
}

.why-join-offer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
}

.why-join-offer li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  color: var(--color-dark);
  line-height: 1.5;
}

.why-join-offer li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-dark);
}

.why-join-bottom {
  font-size: var(--text-body);
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CAREER DEVELOPMENT ===== */
.career-development {
  padding-bottom: 80px;
  text-align: center;
}

.cd-intro {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 800px;
  margin: -20px auto 0px;
}

.cd-bottom {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 800px;
  margin: 30px auto;
}

/* Career Know More Button */
.career-know-more-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.career-know-more-btn:hover {
  background: #222;
}

/* ===== CIRCLE CAROUSEL ===== */
.circle-carousel {
  position: relative;
  overflow: hidden;
  padding: 40px 0 20px;
}

.circle-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 220px;
}

.circle-item {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              order 0s linear;
  opacity: 0.3;
  transform: scale(1);
  filter: blur(4px);
  margin: 0 -15px;
  cursor: pointer;
  will-change: transform, opacity, filter, width, height;
  border: 1px solid #ccc;
}

.circle-item.active {
  width: 200px;
  height: 200px;
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 5;
  margin: 0 -15px;
  transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              order 0s linear;
}

.circle-item.near {
  width: 150px;
  height: 150px;
  opacity: 0.5;
  transform: scale(1);
  filter: blur(2px);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              order 0s linear;
}

.circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-label {
  /* font-size: 1rem;
  font-weight: 600; */
  color: var(--color-dark);
  margin-top: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.circle-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cdot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-dark);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1000px){

  .why-join-boxes{
    margin: 40px 0px;
    gap:15px;
  }
}

@media (max-width: 768px) {
  .why-join-boxes {
    grid-template-columns: 1fr;
    margin: 40px;
  }

  .circle-item {
    width: 80px;
    height: 80px;
  }

  .circle-item.active {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 450px){

  .why-join-boxes{
    margin: 40px 0px;
    gap:15px;
  }
}
