/* =====================================================
   CAREERS PAGE – BACKGROUND UNIFICATION
===================================================== */

.ys-career-culture,

.ys-career-fit,
.ys-career-openings {
  background: #f8faff !important;
}




/* =====================================================
   YUVAASOFT CAREERS – HERO SECTION
===================================================== */

.ys-careers-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background-image: linear-gradient(to top, #fcfcfc, #f6f5fa, #eeeff7, #e7e9f5, #dee3f3, #d9e3f4, #d2e2f4, #cce2f4, #c8e6f5, #c6eaf4, #c5eef2, #c7f1ee);
  position: relative;
  position: relative;
  overflow: hidden;
}

/* soft animated glow */
.ys-careers-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(130px);
  animation: ysCareerGlow 9s ease-in-out infinite alternate;
}

/* container */
.ys-careers-hero-wrap {
  max-width: 920px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: ysCareerReveal 1s cubic-bezier(.22,.61,.36,1) forwards;
}

/* title */
.ys-careers-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 26px;
}

/* main paragraph */
.ys-careers-hero-lead {
  font-size: 1.18rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 18px;
}

/* supporting paragraph */
.ys-careers-hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 34px;
}

/* CTA */
.ys-careers-hero-actions {
  display: flex;
  justify-content: center;
}

.ys-careers-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ys-careers-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.45);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysCareerReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysCareerGlow {
  0% {
    opacity: 0.35;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.2);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-careers-hero {
    min-height: auto;
    padding: 80px 18px;
  }

  .ys-careers-hero-title {
    font-size: 2.3rem;
  }

  .ys-careers-hero-lead {
    font-size: 1.05rem;
  }

  .ys-careers-hero-sub {
    font-size: 1rem;
  }
}

/* =====================================================
   WHY WORK AT YUVAASOFT
===================================================== */

.ys-career-whywork {
  padding: 90px 0;
  background:
    linear-gradient( #eeeeee);
}

/* header */
.ys-career-whyhead {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.ys-career-whytitle {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  animation: ysWhyTitleIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-career-whysub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  animation: ysWhyTextIn 0.9s ease forwards 0.2s;
}

/* grid */
.ys-career-whygrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* card */
.ys-career-whycard {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: ysWhyCardUp 0.8s ease forwards;
}

.ys-career-whycard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.18);
}

/* check icon */
.ys-career-check {
  min-width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  position: relative;
}

.ys-career-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* text */
.ys-career-whycard p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #334155;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysWhyTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysWhyTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysWhyCardUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-career-whytitle {
    font-size: 2.1rem;
  }

  .ys-career-whywork {
    padding: 70px 0;
  }
}

/* =====================================================
   OUR WORK CULTURE
===================================================== */

.ys-career-culture {
  padding: 60px 0;
  background:
    radial-gradient(circle at bottom left, #e0e7ff, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* header */
.ys-career-culture-head {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.ys-career-culture-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  animation: ysCultureTitleIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-career-culture-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   CULTURE GRID
===================================================== */

.ys-career-culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 70px;
}

/* culture card */
.ys-culture-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: ysCultureCardUp 0.8s ease forwards;
}

.ys-culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.18);
}

/* icon */
.ys-culture-icon {
  min-width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  position: relative;
}

.ys-culture-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* text */
.ys-culture-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #334155;
}

/* =====================================================
   MINDSET BLOCK
===================================================== */

.ys-career-culture-mindset {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.1);
}

.ys-career-mindset-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 22px;
  text-align: center;
}

/* list */
.ys-career-mindset-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ys-career-mindset-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #334155;
}

.ys-career-mindset-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysCultureTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysCultureCardUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-career-culture-title {
    font-size: 2.1rem;
  }

  .ys-career-culture {
    padding: 75px 0;
  }

  .ys-career-culture-mindset {
    padding: 32px 26px;
  }
}
/* =====================================================
   TEAMS AT YUVAASOFT – FULL CSS
===================================================== */

.ys-career-teams {
  padding: 60px 0;
  background:#ffffff;
}

/* =====================================================
   HEADER
===================================================== */

.ys-career-teams-head {
  max-width: 880px;
  margin: 0 auto 70px;
  text-align: center;
}

.ys-career-teams-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  animation: ysTeamsTitleIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-career-teams-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   GRID
===================================================== */

.ys-career-teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* =====================================================
   TEAM CARD
===================================================== */

.ys-team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: ysTeamCardUp 0.8s ease forwards;
}

.ys-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 75px rgba(37, 99, 235, 0.18);
}

/* =====================================================
   TITLE
===================================================== */

.ys-team-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 0;
  transition: transform 0.35s ease, color 0.35s ease;
}

/* =====================================================
   DESCRIPTION (HIDDEN BY DEFAULT)
===================================================== */

.ys-team-desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;

  opacity: 0;
  max-height: 0;
  margin-top: 8px;
  transform: translateY(8px);
  overflow: hidden;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.45s ease;
}

/* =====================================================
   HOVER INTERACTION
===================================================== */

.ys-team-card:hover .ys-team-desc,
.ys-team-title:hover + .ys-team-desc {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.ys-team-card:hover .ys-team-title {
  transform: translateY(-4px);
  color: #2563eb;
}

/* =====================================================
   DECORATIVE LINE ANIMATION
===================================================== */

.ys-team-card::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, #2563eb, #1e3a8a);
  transition: width 0.4s ease;
}

.ys-team-card:hover::after {
  width: 60px;
}

/* =====================================================
   STAGGERED ENTRANCE
===================================================== */

.ys-team-card:nth-child(1) { animation-delay: 0.05s; }
.ys-team-card:nth-child(2) { animation-delay: 0.12s; }
.ys-team-card:nth-child(3) { animation-delay: 0.19s; }
.ys-team-card:nth-child(4) { animation-delay: 0.26s; }
.ys-team-card:nth-child(5) { animation-delay: 0.33s; }
.ys-team-card:nth-child(6) { animation-delay: 0.40s; }
.ys-team-card:nth-child(7) { animation-delay: 0.47s; }
.ys-team-card:nth-child(8) { animation-delay: 0.54s; }

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysTeamsTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysTeamCardUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-career-teams {
    padding: 80px 0;
  }

  .ys-career-teams-title {
    font-size: 2.1rem;
  }

  .ys-team-card {
    padding: 28px 24px;
  }
}

/* =====================================================
   WHO SHOULD APPLY – ALT ANIMATION STYLE
===================================================== */

.ys-career-fit {
  padding: 60px 0;
  background:#eeeeee;

  overflow: hidden;
}

/* =====================================================
   HEADER (SUBTLE, NO BIG MOTION)
===================================================== */

.ys-career-fit-head {
  max-width: 860px;
  margin: 0 auto 65px;
  text-align: center;
}

.ys-career-fit-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.ys-career-fit-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   GRID
===================================================== */

.ys-career-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-bottom: 60px;
}

/* =====================================================
   CARD – MASK REVEAL STYLE
===================================================== */

.ys-fit-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  overflow: hidden;

  /* entrance state */
  opacity: 0;
  transform: translateX(-40px);
  animation: ysFitSlideIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* alternate direction */
.ys-fit-card:nth-child(even) {
  transform: translateX(40px);
}

/* =====================================================
   MASK OVERLAY (REVEALS ON HOVER)
===================================================== */

.ys-fit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(37, 99, 235, 0.08),
    rgba(37, 99, 235, 0.02)
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}

.ys-fit-card:hover::before {
  transform: translateX(0);
}

/* keep content above mask */
.ys-fit-card > * {
  position: relative;
  z-index: 1;
}

/* =====================================================
   ICON – PULSE ON HOVER
===================================================== */

.ys-fit-icon {
  min-width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  position: relative;
  transition: transform 0.4s ease;
}

.ys-fit-card:hover .ys-fit-icon {
  animation: ysFitPulse 1.4s ease infinite;
}

.ys-fit-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* =====================================================
   TEXT
===================================================== */

.ys-fit-card p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.65;
  color: #334155;
}

/* =====================================================
   STAGGERED ENTRANCE
===================================================== */

.ys-fit-card:nth-child(1) { animation-delay: 0.05s; }
.ys-fit-card:nth-child(2) { animation-delay: 0.12s; }
.ys-fit-card:nth-child(3) { animation-delay: 0.19s; }
.ys-fit-card:nth-child(4) { animation-delay: 0.26s; }
.ys-fit-card:nth-child(5) { animation-delay: 0.33s; }
.ys-fit-card:nth-child(6) { animation-delay: 0.40s; }

/* =====================================================
   CLOSING NOTE – SOFT LIFT (DIFFERENT FROM CARDS)
===================================================== */

.ys-career-fit-note {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 32px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.1);
  animation: ysFitNoteFloat 1s ease forwards;
}

.ys-career-fit-note p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}

/* =====================================================
   KEYFRAMES – DISTINCT MOTION
===================================================== */

@keyframes ysFitSlideIn {
  from {
    opacity: 0;
    transform: translateX(var(--offset, -40px));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ysFitPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.18);
  }
}

@keyframes ysFitNoteFloat {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-career-fit {
    padding: 80px 0;
  }

  .ys-career-fit-title {
    font-size: 2.1rem;
  }
}

/* =====================================================
   GROWTH & LEARNING – LAYERED STYLE
===================================================== */

.ys-growth-layers {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* subtle background motion */
.ys-growth-layers::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  top: -220px;
  right: -180px;
  filter: blur(140px);
  animation: ysLayerGlow 10s ease-in-out infinite alternate;
}

/* =====================================================
   HEADER
===================================================== */

.ys-growth-layers-head {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.ys-growth-layers-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.ys-growth-layers-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   LAYER GRID
===================================================== */

.ys-growth-layers-grid {
  max-width: 900px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* =====================================================
   LAYER CARD
===================================================== */

.ys-growth-layer {
  background: #ffffff;
  padding: 34px 32px;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.1);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  animation: ysLayerRise 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* staggered appearance */
.ys-growth-layer:nth-child(1) { animation-delay: 0.1s; }
.ys-growth-layer:nth-child(2) { animation-delay: 0.2s; }
.ys-growth-layer:nth-child(3) { animation-delay: 0.3s; }
.ys-growth-layer:nth-child(4) { animation-delay: 0.4s; }
.ys-growth-layer:nth-child(5) { animation-delay: 0.5s; }

/* hover depth (no slide) */
.ys-growth-layer:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(37, 99, 235, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* title */
.ys-growth-layer h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

/* text */
.ys-growth-layer p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-growth-layers-note {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px 34px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 28px 65px rgba(2, 6, 23, 0.12);
  animation: ysLayerFade 1s ease forwards;
}

/* =====================================================
   ANIMATIONS – DISTINCT
===================================================== */

@keyframes ysLayerRise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ysLayerFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysLayerGlow {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.55;
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-growth-layers {
    padding: 80px 0;
  }

  .ys-growth-layers-title {
    font-size: 2.1rem;
  }
}


/* =====================================================
   OPPORTUNITIES FOR STUDENTS & INTERNS
===================================================== */

.ys-intern-glass {
  padding: 60px 0;
  background: #f8faff;
  color: #1f6aff;
  position: relative;
  overflow: hidden;
}

/* ambient glow */
.ys-intern-glass::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(37, 99, 235, 0.25);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  filter: blur(160px);
  opacity: 0.6;
}

/* =====================================================
   HEADER
===================================================== */

.ys-intern-glass-head {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.ys-intern-glass-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.ys-intern-glass-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
}

/* =====================================================
   GLASS GRID
===================================================== */

.ys-intern-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

/* =====================================================
   GLASS CARD
===================================================== */

.ys-intern-glass-card {
  background: rgba(255, 255, 255, 0.953);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: all 0.4s ease;
  position: relative;
}

.ys-intern-glass-card:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow:
    0 30px 90px rgba(9, 9, 9, 0.6),
    inset 0 0 0 1px rgba(96, 165, 250, 0.6);
}

/* icon */
.ys-glass-icon {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #60a5fa;
}

/* title */
.ys-intern-glass-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000000;
}

/* text */
.ys-intern-glass-card p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #000000;
}

/* =====================================================
   LIVE BADGE
===================================================== */

.ys-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(34, 145, 236, 0.15);
  color: #2372d9;
  margin-left: 8px;
}

.ys-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2372d9;
  animation: ysLivePulse 1.4s infinite;
}

@keyframes ysLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(33, 171, 251, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* =====================================================
   FOOT NOTE
===================================================== */

.ys-intern-glass-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-intern-glass {
    padding: 80px 0;
  }

  .ys-intern-glass-title {
    font-size: 2.1rem;
  }
}


/* =====================================================
   CURRENT OPENINGS – ADVANCED MOTION SYSTEM
===================================================== */

.ys-career-openings {
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, #e0e7ff, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   HEADER – ANCHORED REVEAL
===================================================== */

.ys-career-openings-head {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.ys-career-openings-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  opacity: 0;
  animation: ysTitleFocus 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-career-openings-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
  opacity: 0;
  animation: ysSubtleFade 0.8s ease forwards;
  animation-delay: 0.15s;
}

/* =====================================================
   TEAM BLOCK – STRUCTURAL EMPHASIS
===================================================== */

.ys-job-team {
  max-width: 920px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: scale(0.97);
  animation: ysTeamFocusIn 0.8s ease forwards;
}

/* stagger */
.ys-job-team:nth-of-type(1) { animation-delay: 0.15s; }
.ys-job-team:nth-of-type(2) { animation-delay: 0.25s; }
.ys-job-team:nth-of-type(3) { animation-delay: 0.35s; }
.ys-job-team:nth-of-type(4) { animation-delay: 0.45s; }

/* =====================================================
   TEAM TITLE
===================================================== */

.ys-job-team-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 22px;
}

.ys-job-team-title span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 6px;
}

.ys-job-team-title::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #2563eb, #1e3a8a);
  border-radius: 3px;
  animation: ysUnderlineGrow 0.6s ease forwards;
}

/* =====================================================
   JOB CARD – BASE (CLOSED BY DEFAULT)
===================================================== */

.ys-job-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* hover (closed) */
.ys-job-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 70px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* =====================================================
   SUMMARY – CLICKABLE BAR
===================================================== */

.ys-job-summary {
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.35s ease;
}

.ys-job-card:not(.is-open):hover .ys-job-summary {
  background: rgba(37, 99, 235, 0.04);
}

.ys-job-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 4px;
}

.ys-job-meta {
  font-size: 0.95rem;
  color: #64748b;
}

/* toggle icon */
.ys-job-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2563eb;
  transform: rotate(45deg);
  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    color 0.3s ease;
}

/* =====================================================
   CONTENT – CLOSED STATE
===================================================== */

.ys-job-content {
  max-height: 0;
  padding: 0 28px;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    max-height 0.55s cubic-bezier(.22,.61,.36,1),
    opacity 0.35s ease,
    transform 0.35s ease,
    padding 0.35s ease;
}

.ys-job-content p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #334155;
}

/* =====================================================
   OPEN STATE – CONFIDENT & FOCUSED
===================================================== */

.ys-job-card.is-open {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow:
    0 35px 85px rgba(37, 99, 235, 0.2),
    0 0 0 1px rgba(37, 99, 235, 0.25);
}

.ys-job-card.is-open .ys-job-summary {
  background: rgba(37, 99, 235, 0.06);
}

.ys-job-card.is-open .ys-job-title {
  color: #1e3a8a;
}

.ys-job-card.is-open .ys-job-toggle {
  transform: rotate(0deg);
  color: #020617;
}

.ys-job-card.is-open .ys-job-content {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
  padding: 8px 28px 26px;
  pointer-events: auto;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysTitleFocus {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ysSubtleFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ysTeamFocusIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ysUnderlineGrow {
  from { width: 0; }
  to { width: 70px; }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-career-openings {
    padding: 85px 0;
  }

  .ys-career-openings-title {
    font-size: 2.1rem;
  }

  .ys-job-summary {
    padding: 22px;
  }

  .ys-job-card.is-open .ys-job-content {
    max-height: 650px;
    padding: 8px 22px 22px;
  }
}

/* =====================================================
   APPLICATION PROCESS – PROCESS FLOW
===================================================== */

.ys-hiring-process {
  padding: 60px 0;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* =====================================================
   HEADER
===================================================== */

.ys-hiring-process-head {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

.ys-hiring-process-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 18px;

  animation: ysProcessTitleIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.ys-hiring-process-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   STEPS CONTAINER
===================================================== */

.ys-hiring-steps {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* connector line */
.ys-hiring-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.25),
    rgba(37, 99, 235, 0.6),
    rgba(37, 99, 235, 0.25)
  );
}

/* =====================================================
   STEP ITEM
===================================================== */

.ys-hiring-step {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 22px 28px;
  width: 100%;
  text-align: center;

  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.08);

  opacity: 0;
  transform: scale(0.94);
  animation: ysStepReveal 0.8s ease forwards;
}

/* stagger */
.ys-hiring-step:nth-child(1) { animation-delay: 0.15s; }
.ys-hiring-step:nth-child(2) { animation-delay: 0.30s; }
.ys-hiring-step:nth-child(3) { animation-delay: 0.45s; }
.ys-hiring-step:nth-child(4) { animation-delay: 0.60s; }
.ys-hiring-step:nth-child(5) { animation-delay: 0.75s; }

/* number badge */
.ys-step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* text */
.ys-hiring-step p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
}

/* hover emphasis (optional) */
.ys-hiring-step:hover {
  box-shadow:
    0 38px 90px rgba(37, 99, 235, 0.18),
    inset 0 0 0 1px rgba(37, 99, 235, 0.25);
  transition: box-shadow 0.35s ease;
}

/* =====================================================
   CLOSING NOTE
===================================================== */

.ys-hiring-process-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;

  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.1);

  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;

  animation: ysProcessNoteIn 0.9s ease forwards;
}

/* =====================================================
   ANIMATIONS – STRUCTURED & CALM
===================================================== */

@keyframes ysProcessTitleIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ysStepReveal {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ysProcessNoteIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .ys-hiring-steps {
    flex-direction: column;
    gap: 36px;
  }

  .ys-hiring-steps::before {
    display: none;
  }

  .ys-hiring-step {
    padding-top: 36px;
  }
}

@media (max-width: 768px) {
  .ys-hiring-process {
    padding: 90px 0;
  }

  .ys-hiring-process-title {
    font-size: 2.2rem;
  }
}

/* =====================================================
   WORK WITH PURPOSE – IMPACT STATEMENT
===================================================== */

.ys-purpose {
  padding: 60px 10px;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =====================================================
   INNER WRAP
===================================================== */

.ys-purpose-inner {
  max-width: 600px;
  padding: 60px 6px;

  text-align: left;

  opacity: 0;
  transform: scale(0.96);
  animation: ysPurposeReveal 1s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   TITLE
===================================================== */

.ys-purpose-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 28px;

  animation: ysPurposeTitleIn 0.8s ease forwards;
}

/* =====================================================
   MAIN TEXT
===================================================== */

.ys-purpose-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 22px;
  width: 1000px;
}

/* =====================================================
   SUBTEXT
===================================================== */

.ys-purpose-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  width: 100%;
}

/* =====================================================
   ANIMATIONS – SLOW & MEANINGFUL
===================================================== */

@keyframes ysPurposeReveal {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ysPurposeTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-purpose {
    padding: 90px 0;
  }

  .ys-purpose-inner {
    padding: 46px 28px;
  }

  .ys-purpose-title {
    font-size: 2.2rem;
  }

  .ys-purpose-text {
    font-size: 1.05rem;
  }
}

/* =====================================================
   FINAL CTA – BLUE MOMENTUM STYLE
===================================================== */

.ys-final-cta-blue {
  padding: 60px 0;
  background: #1f6fe5;
  position: relative;
  overflow: hidden;
}

/* animated light sweep */
.ys-final-cta-blue::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18),
    transparent 65%
  );
  animation: ysBlueSweep 7s linear infinite;
}

/* =====================================================
   INNER CONTAINER
===================================================== */

.ys-final-cta-blue-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(28px);
  animation: ysBlueCtaIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   TITLE
===================================================== */

.ys-final-cta-blue-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.6px;
  margin-bottom: 26px;
}

/* =====================================================
   TEXT
===================================================== */

.ys-final-cta-blue-text {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #eaf1ff;
}

/* =====================================================
   ACTION BUTTONS
===================================================== */

.ys-final-cta-blue-actions {
  display: flex;
  justify-content: left;
  gap: 22px;
  flex-wrap: wrap;
}

/* primary */
.ys-blue-btn-primary {
  padding: 16px 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f6fe5;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  align-items: left;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ys-blue-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

/* outline */
.ys-blue-btn-outline {
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.ys-blue-btn-outline:hover {
  background: #1f6fe5;
  color: #ffffff;
}



.ys-blue-btn-outline1 {
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid #1f6fe5;
  background: #1f6fe5;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


.ys-blue-btn-outline1:hover {
  background: #ffffff;
  color: #1f6fe5;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ysBlueSweep {
  from {
    transform: translateX(-30%) rotate(0deg);
  }
  to {
    transform: translateX(30%) rotate(0deg);
  }
}

@keyframes ysBlueCtaIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-final-cta-blue {
    padding: 100px 0;
  }

  .ys-final-cta-blue-title {
    font-size: 2.3rem;
  }

  .ys-final-cta-blue-text {
    font-size: 1.05rem;
  }
}
.ys-career-fit {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, #e0e7ff, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
