:root {
  --text: #0b1b2b;
  --muted: #6b7b8c;
  --accent: #0056ff;
  --radius: 50%;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial;
  color: var(--text);
}

/* Hero Layout */
.career-hero {
  background: #fff;
  padding: 60px 20px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #0040c9;
}

.hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.video-circle {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: url('../images/career-hero.webp') center/cover no-repeat;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.play-button {
  background: rgba(255,255,255,0.85);
  color: var(--text);
  font-size: 40px;
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Decorative small circles */
.small-circle {
  position: absolute;
  border-radius: var(--radius);
}

/* All circles closer to the big one */
.circle1 {
  width: 40px; height: 40px;
  background: #ff4d4d;
  top: 10px; left: 100%;
  transform: translateX(10px);
}
.circle2 {
  width: 25px; height: 25px;
  background: #00d084;
  top: 50%;
  left: 100%;
  transform: translate(10px, -50%);
}
.circle3 {
  width: 30px; height: 30px;
  background: #ffbb00;
  bottom: 10px;
  left: 100%;
  transform: translateX(10px);
}
/* Blue Circle */
.circle4 {
  width: 20px; height: 20px;
  background: #4a90e2; /* blue */
  top: 40%;
  left: 120%;
  transform: translate(10px, -10px); /* small offset */
}

/* Brown Circle */
.circle5 {
  width: 15px; height: 15px;
  background: #999; /* brown/grey */
  top: 70%;
  left: 100%;
  transform: translate(30px, 5px); /* placed slightly below and right of blue */
}


@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
}


/* Section Gradient Background */
:root{
  --text:#0b1b2b;
  --muted:#6b7b8c;
  --line:#e7edf3;
  --accent:#1c6cff;
  --shadow:0 10px 25px rgba(16,24,40,.08);
}

*{box-sizing:border-box}
body{margin:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial; color:var(--text); background:#fff;}
.container{max-width:960px; margin:0 auto; padding:0 20px}

/* Header with gradient limited to top area only */
.process-head{
  position:relative;
  padding:48px 0 28px;
  text-align:center;
  overflow:hidden;
}
.process-head::before{
  content:"";
  position:absolute; inset:-140px -20% auto -20%;
  height:260px;
  background:
    radial-gradient(500px 220px at 15% 0%, #ff6a5b 0%, transparent 70%),
    radial-gradient(600px 260px at 90% 0%, #2e7cf7 0%, transparent 70%),
    radial-gradient(500px 220px at 50% 0%, #7ad6a0 0%, transparent 70%);
  filter:blur(6px);
  z-index:-1;
}
.process-head h2{
  margin:0 0 8px; font-size:clamp(26px,3.2vw,36px); font-weight:600;
}
.process-head h2 span{ font-weight:800; }
.process-head p{ margin:0; color:var(--muted); }

/* Timeline */
.timeline{
  list-style:none; margin:36px auto 10px; padding:0;
  position:relative;
}
.timeline::before{
  content:"";
  position:absolute; left:50%; top:0; transform:translateX(-50%);
  width:2px; height:100%; background:var(--line);
}

.item{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 80px 1fr; /* left | center(line+dot) | right */
  gap:24px;
  align-items:center;
  margin:22px 0;
}

/* dot on the center line */
.dot{
  grid-column:2;
  width:34px; height:34px; border-radius:50%;
  background:#fff; border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto; box-shadow:var(--shadow);
}
.dot span{ font-size:13px; color:var(--accent); font-weight:700; }

/* content blocks */
.content{
  font-size:14px; color:var(--muted);
}
.content h4{ margin:0 0 6px; font-size:16px; color:var(--text); }

/* sides: choose which side holds content */
.side-right .content{ grid-column:3; text-align:left; }
.side-right::after{ content:""; grid-column:1; } /* empty left */

.side-left .content{ grid-column:1; text-align:right; }
.side-left::after{ content:""; grid-column:3; }  /* empty right */

/* Ending text */
.ending{ text-align:center; margin:18px 0 40px; color:var(--muted); }

.timeline li .dot {
  position: relative;
}

.timeline li:nth-child(2) .dot {
  top: 45px;
}
.timeline li:nth-child(4) .dot {
  top: 45px;
}
.timeline li:nth-child(6) .dot {
  top: 45px;
}
.timeline li:last-child .dot {
  font-size: 18px; /* Emoji size */
  top: 45px;
}

/* Mobile */
@media (max-width: 760px){
  .timeline::before{ left:22px; transform:none; }
  .item{
    grid-template-columns: 44px 1fr; gap:12px; align-items:flex-start;
  }
  .dot{ grid-column:1; margin:0; }
  .side-right .content,
  .side-left .content{
    grid-column:2; text-align:left;
  }
}

/* Section wrapper (light gradient box) */
.open-positions {
  background: linear-gradient(180deg, #f7fbff 0%, #eef3f8 100%);
  padding: 56px 20px 72px;
}

.op-title {
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(24px, 3.2vw, 40px);
}

/* Two-column layout */
.op-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

/* Sidebar */
.op-panel {
  position: sticky;
  top: 84px;                    /* adjust if your header is taller */
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(16,24,40,.06);
}

.op-all {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.op-all-label { font-weight: 700; }
.op-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 22px; padding: 0 6px;
  font-size: 12px; border-radius: 999px;
  background: #edf3ff; color: #1c6cff;
}

/* Category list */
.op-cats { list-style: none; margin: 12px 0 16px; padding: 0; }
.op-cats li { margin: 4px 0; }
.op-cats a, .op-cats li > span {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0b1b2b;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.op-cats .count { color: #6b7b8c; font-size: 12px; }

.op-cats li.active a {
  background: #f5f9ff;
  border-color: #d9e6ff;
  color: #1445b8;
}

.op-cats li:not(.disabled) a:hover {
  background: #f7f9fc;
  border-color: #e8eef3;
}

.op-cats li.disabled > span {
  color: #9aa7b7;
  cursor: not-allowed;
}

/* Sidebar note */
.op-note {
  margin-top: 12px;
  color: #6b7b8c;
  font-size: 14px;
}
.op-linkedin {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 10px;
  font-size: 14px;
  text-decoration: none;
  color: #0a66c2;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
}
.op-linkedin:hover { background: #f0f6ff; }

/* Job cards */
.op-listing { display: grid; gap: 18px; }

.position-card {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(16,24,40,.06);
}
.position-card h3 { margin: 0 0 6px; font-size: clamp(18px, 2.2vw, 24px); }
.position-card .experience { color: #6b7b8c; margin: 0 0 14px; }
.position-card .summary { margin: 0 0 16px; color: #2f3a45; line-height: 1.6; }
.position-card .btn {
  display: inline-block;
  background: #f15a29; color: #fff;
  padding: 10px 16px; border-radius: 10px;
  text-decoration: none; font-weight: 600;
}
.position-card .btn:hover { background: #1c6cff; }

/* Responsive */
@media (max-width: 900px) {
  .op-grid { grid-template-columns: 1fr; }
  .op-panel { position: static; }
}

