/* ============================================================
   AI LAB TECHNOLOGIES - Enterprise Careers Page Styles
   File: css/careers.css
   ============================================================ */

:root {
  --primary: #df2a19;
  --primary-hover: #c41e0e;
  --primary-glow: rgba(223, 42, 25, 0.35);
  --accent-900: #0f172a;
  --accent-800: #1e293b;
  --accent-700: #334155;
  --accent-600: #475569;
  --white: #ffffff;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[data-theme="dark"],
.dark,
body.dark-theme {
  --accent-900: #ffffff;
  --accent-800: #f1f5f9;
  --accent-700: #e2e8f0;
  --accent-600: #94a3b8;
}

::selection {
  background: rgba(223, 42, 25, 0.25);
  color: #0f172a;
}

[data-theme="dark"] ::selection,
.dark ::selection,
body.dark-theme ::selection {
  background: rgba(223, 42, 25, 0.5);
  color: #ffffff;
}

/* ---- HERO SECTION ---- */
.careers-hero-section {
  position: relative;
  padding: 10px 0 35px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1120 0%, #0f172a 40%, #1e293b 100%);
  color: #ffffff;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body:not(.dark-theme) .careers-hero-section,
[data-theme="light"] .careers-hero-section,
html:not(.dark) .careers-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: #0f172a !important;
}

/* Background Ambient Glows & Grid */
.careers-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.careers-hero-glow.glow-red {
  top: -10%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: rgba(223, 42, 25, 0.2);
}

.careers-hero-glow.glow-navy {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(30, 58, 138, 0.25);
}

body:not(.dark-theme) .careers-hero-glow.glow-navy {
  background: rgba(59, 130, 246, 0.15);
}

.careers-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}

body:not(.dark-theme) .careers-grid-bg {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

#careers-neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.6;
}

/* Breadcrumb */
.careers-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 8px;
  position: relative;
  z-index: 10;
}

.careers-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.careers-breadcrumb a:hover {
  color: var(--primary);
}

.careers-breadcrumb .sep {
  color: #64748b;
  font-size: 9.5px;
}

.careers-breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Layout */
.careers-hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.careers-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(223, 42, 25, 0.1);
  border: 1px solid rgba(223, 42, 25, 0.25);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.careers-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.careers-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(29px, 4.5vw, 47.5px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

body:not(.dark-theme) .careers-hero-title,
[data-theme="light"] .careers-hero-title,
html:not(.dark) .careers-hero-title {
  color: #0f172a !important;
}

.gradient-text-red {
  background: linear-gradient(135deg, #ff5e4d 0%, #df2a19 60%, #b41e12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.careers-hero-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 12px !important;
  max-width: 620px;
}

body:not(.dark-theme) .careers-hero-desc,
[data-theme="light"] .careers-hero-desc,
html:not(.dark) .careers-hero-desc {
  color: #334155 !important;
}

.careers-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #df2a19 0%, #c41e0e 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(223, 42, 25, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(223, 42, 25, 0.5);
  background: linear-gradient(135deg, #ff3c29 0%, #df2a19 100%);
  color: #ffffff !important;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}

body:not(.dark-theme) .btn-hero-secondary,
[data-theme="light"] .btn-hero-secondary,
html:not(.dark) .btn-hero-secondary {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.18);
}

.btn-hero-secondary:hover {
  background: rgba(223, 42, 25, 0.08);
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-3px);
}

/* Hero Interactive Visual Graphic Card */
.careers-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glass-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

body:not(.dark-theme) .visual-glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(223, 42, 25, 0.15);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

body:not(.dark-theme) .visual-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.visual-dots {
  display: flex;
  gap: 8px;
}

.visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.visual-title-tag {
  font-size: 10px;
  font-family: monospace;
  color: var(--primary);
  background: rgba(223, 42, 25, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.collaboration-graphic {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.engineer-nodes-grid {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 12px;
}

.node-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

body:not(.dark-theme) .node-card {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.node-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.node-avatar {
  width: 44px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  color: #fff;
  position: relative;
}

.node-avatar.dev {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.node-avatar.ai {
  background: linear-gradient(135deg, #df2a19, #991b1b);
}

.node-avatar.cloud {
  background: linear-gradient(135deg, #10b981, #047857);
}

.node-role {
  font-size: 10px;
  font-weight: 700;
  color: #e2e8f0;
}

body:not(.dark-theme) .node-role {
  color: var(--accent-900);
}

.node-status {
  font-size: 8.5px;
  color: #94a3b8;
  margin-top: 2px;
}

.ai-core-hub {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(223, 42, 25, 0.15) 0%, rgba(30, 58, 138, 0.15) 100%);
  border: 1px solid rgba(223, 42, 25, 0.3);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18.5px;
  box-shadow: 0 0 20px rgba(223, 42, 25, 0.5);
  animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(223, 42, 25, 0.5);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(223, 42, 25, 0.8);
  }
}

.hub-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

body:not(.dark-theme) .hub-text h4 {
  color: var(--accent-900);
}

.hub-text p {
  font-size: 9.5px;
  color: #94a3b8;
}

.live-metrics-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

body:not(.dark-theme) .live-metrics-bar {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.metric-item {
  text-align: center;
}

.metric-val {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary);
}

.metric-lbl {
  font-size: 8.5px;
  color: #94a3b8;
  text-transform: uppercase;
}


/* ---- SECTION HEADINGS COMMON ---- */
.section-header-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(223, 42, 25, 0.08);
  border: 1px solid rgba(223, 42, 25, 0.2);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: clamp(20.5px, 3vw, 30.5px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

body:not(.dark-theme) .section-main-title,
[data-theme="light"] .section-main-title,
html:not(.dark) .section-main-title {
  color: #0f172a !important;
}

body.dark-theme .section-main-title,
[data-theme="dark"] .section-main-title,
.dark .section-main-title {
  color: #ffffff !important;
}

.section-sub-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

body:not(.dark-theme) .section-sub-desc,
[data-theme="light"] .section-sub-desc,
html:not(.dark) .section-sub-desc {
  color: #475569 !important;
}

body.dark-theme .section-sub-desc,
[data-theme="dark"] .section-sub-desc,
.dark .section-sub-desc {
  color: #94a3b8 !important;
}


/* ---- COMPANY CULTURE SECTION ---- */
.culture-section {
  padding: 24px 0 32px;
  background: var(--white);
  transition: background-color 0.4s ease;
}

body.dark-theme .culture-section {
  background: #0b1120;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.culture-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

body.dark-theme .culture-card {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.culture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b5b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 12px 30px rgba(223, 42, 25, 0.12);
}

.culture-card:hover::before {
  opacity: 1;
}

.culture-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(223, 42, 25, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.culture-card:hover .culture-icon-box {
  transform: none !important;
  background: var(--primary);
  color: #ffffff;
}

.culture-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

body:not(.dark-theme) .culture-title,
[data-theme="light"] .culture-title,
html:not(.dark) .culture-title {
  color: #0f172a !important;
}

body.dark-theme .culture-title,
[data-theme="dark"] .culture-title,
.dark .culture-title {
  color: #ffffff !important;
}

.culture-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}

body:not(.dark-theme) .culture-desc,
[data-theme="light"] .culture-desc,
html:not(.dark) .culture-desc {
  color: #475569 !important;
}

body.dark-theme .culture-desc,
[data-theme="dark"] .culture-desc,
.dark .culture-desc {
  color: #94a3b8 !important;
}


/* ---- INTERACTIVE HIRING PROCESS TIMELINE ---- */
.hiring-section {
  padding: 24px 0 32px;
  background: #f8fafc;
  transition: background-color 0.4s ease;
}

body.dark-theme .hiring-section {
  background: #0f172a;
}

.hiring-timeline-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-nav-scroll {
  width: 100%;
  position: relative;
}

.timeline-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  padding: 0 20px;
}

.timeline-progress-line {
  position: absolute;
  top: 20px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: #e2e8f0;
  z-index: 1;
}

body.dark-theme .timeline-progress-line {
  background: rgba(255, 255, 255, 0.1);
}

.timeline-progress-active {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #df2a19, #ff5e4d);
  transition: width 0.4s ease;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(223, 42, 25, 0.5);
}

.timeline-step-btn {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #cbd5e1;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body.dark-theme .step-circle,
[data-theme="dark"] .step-circle,
.dark .step-circle {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

.timeline-step-btn:hover .step-circle,
.timeline-step-btn.active .step-circle {
  border-color: #df2a19 !important;
  background: #df2a19 !important;
  color: #ffffff !important;
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(223, 42, 25, 0.45) !important;
}

.step-label {
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: #475569;
  max-width: 90px;
  text-align: center;
  transition: color 0.3s ease;
}

body.dark-theme .step-label,
[data-theme="dark"] .step-label,
.dark .step-label {
  color: #94a3b8;
}

.timeline-step-btn.active .step-label {
  color: #df2a19 !important;
  font-weight: 800;
}

/* Timeline Info Card Display */
.hiring-card-display {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  min-height: 160px;
  transition: all 0.3s ease;
}

body.dark-theme .hiring-card-display {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hiring-step-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.hiring-step-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.step-header-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.step-badge-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(223, 42, 25, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.step-content-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

body:not(.dark-theme) .step-content-title,
[data-theme="light"] .step-content-title,
html:not(.dark) .step-content-title {
  color: #0f172a !important;
}

body.dark-theme .step-content-title,
[data-theme="dark"] .step-content-title,
.dark .step-content-title {
  color: #ffffff !important;
}

.step-content-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 12px;
}

body:not(.dark-theme) .step-content-desc,
[data-theme="light"] .step-content-desc,
html:not(.dark) .step-content-desc {
  color: #475569 !important;
}

body.dark-theme .step-content-desc,
[data-theme="dark"] .step-content-desc,
.dark .step-content-desc {
  color: #cbd5e1 !important;
}

.step-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-highlights-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #332155;
}

body.dark-theme .step-highlights-list li {
  color: #e2e8f0;
}

.step-highlights-list li i {
  color: #10b981;
}

.step-meta-box {
  background: #f1f5f9;
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
}

body.dark-theme .step-meta-box {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.meta-item {
  margin-bottom: 10px;
}

.meta-item:last-child {
  margin-bottom: 0;
}

.meta-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

body.dark-theme .meta-label {
  color: #94a3b8;
}

.meta-val {
  font-size: 11.5px;
  font-weight: 600;
  color: #0f172a;
}

body:not(.dark-theme) .meta-val,
[data-theme="light"] .meta-val,
html:not(.dark) .meta-val {
  color: #0f172a !important;
}

body.dark-theme .meta-val,
[data-theme="dark"] .meta-val,
.dark .meta-val {
  color: #ffffff !important;
}


/* ---- FEATURED JOB OPENINGS SECTION ---- */
.jobs-section {
  padding: 24px 0 32px;
  background: var(--white);
  transition: background-color 0.4s ease;
}

body.dark-theme .jobs-section {
  background: #0b1120;
}

/* Controls Bar */
.jobs-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px !important;
  flex-wrap: wrap;
}

.job-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab-btn {
  padding: 8px 18px;
  border-radius: 30px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

body.dark-theme .filter-tab-btn,
[data-theme="dark"] .filter-tab-btn,
.dark .filter-tab-btn {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  background: #df2a19 !important;
  border-color: #df2a19 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(223, 42, 25, 0.35) !important;
}

.job-search-box {
  position: relative;
  min-width: 260px;
}

.job-search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 12px;
}

.job-search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a !important;
  font-size: 11.5px;
  outline: none;
  transition: all 0.25s ease;
}

body.dark-theme .job-search-input,
[data-theme="dark"] .job-search-input,
.dark .job-search-input {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
}

.job-search-input:focus {
  border-color: #df2a19;
  box-shadow: 0 0 0 3px rgba(223, 42, 25, 0.2);
}

/* Jobs Grid & Cards */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
}

body.dark-theme .job-card {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 42, 25, 0.4);
  box-shadow: 0 10px 24px rgba(223, 42, 25, 0.1);
}

.job-card-top {
  margin-bottom: 6px;
}

.job-tags-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.job-dept-pill {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(223, 42, 25, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.job-type-pill {
  font-size: 9.5px;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

.job-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

body:not(.dark-theme) .job-title,
[data-theme="light"] .job-title,
html:not(.dark) .job-title {
  color: #0f172a !important;
}

body.dark-theme .job-title,
[data-theme="dark"] .job-title,
.dark .job-title {
  color: #ffffff !important;
}

.job-card:hover .job-title {
  color: #df2a19 !important;
}

.job-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  color: #64748b;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

body.dark-theme .job-meta-row {
  color: #94a3b8;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tech-chip {
  font-size: 9px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  padding: 2.5px 8px;
  border-radius: 5px;
}

body.dark-theme .tech-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.job-card-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  margin-top: 10px;
}

body.dark-theme .job-card-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.job-exp {
  font-size: 10px;
  font-weight: 600;
  color: #475569;
}

body.dark-theme .job-exp {
  color: #94a3b8;
}

.btn-apply-job {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #df2a19 !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 11px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(223, 42, 25, 0.35) !important;
}

.btn-apply-job:hover {
  background: #b41e12 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(223, 42, 25, 0.5) !important;
}

.no-jobs-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
  display: none;
}


/* ---- JOB APPLICATION MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto 0;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.dark-theme .modal-container,
[data-theme="dark"] .modal-container,
.dark .modal-container {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Persistent Sticky Modal Top Header */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

body.dark-theme .modal-header,
[data-theme="dark"] .modal-header,
.dark .modal-header {
  background: #0f172a;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.modal-header-text {
  flex: 1;
  min-width: 0;
}

.modal-header-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

body.dark-theme .modal-header-title,
[data-theme="dark"] .modal-header-title,
.dark .modal-header-title {
  color: #ffffff;
}

.modal-sub-job {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  display: inline-block;
}

.modal-close-btn {
  position: static;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

body.dark-theme .modal-close-btn,
[data-theme="dark"] .modal-close-btn,
.dark .modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.modal-close-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff !important;
  transform: scale(1.05);
}

/* Scrollable Form Body */
.modal-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  flex: 1;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.7);
}

.modal-form-group {
  margin-bottom: 18px;
}

.modal-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #332155;
  margin-bottom: 6px;
}

body.dark-theme .modal-form-label,
[data-theme="dark"] .modal-form-label,
.dark .modal-form-label {
  color: #cbd5e1;
}

.modal-form-input,
.modal-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  outline: none;
  background: #ffffff;
  color: #0f172a;
  transition: border-color 0.2s;
  font-family: inherit;
}

body.dark-theme .modal-form-input,
body.dark-theme .modal-form-textarea,
[data-theme="dark"] .modal-form-input,
[data-theme="dark"] .modal-form-textarea,
.dark .modal-form-input,
.dark .modal-form-textarea {
  background: #1e293b;
  border-color: #334155;
  color: #ffffff;
}

.modal-form-input:focus,
.modal-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(223, 42, 25, 0.15);
}

.btn-submit-modal {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #df2a19 !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.35) !important;
  transition: all 0.2s;
  margin-top: 10px;
}

.btn-submit-modal:hover {
  background: #b41e12 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 42, 25, 0.5) !important;
}

@media (max-width: 640px) {
  .modal-overlay {
    padding: 20px 12px;
  }

  .modal-container {
    border-radius: 16px;
    max-height: calc(100vh - 40px);
  }

  .modal-header {
    padding: 18px 20px 14px;
  }

  .modal-header-title {
    font-size: 18px;
  }

  .modal-body {
    padding: 18px 20px 24px;
  }
}


/* ---- EMPLOYEE BENEFITS SECTION ---- */
.benefits-section {
  padding: 44px 0 !important;
  background: #f8fafc;
  transition: background-color 0.4s ease;
}

body.dark-theme .benefits-section {
  background: #0f172a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

body.dark-theme .benefit-card {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 42, 25, 0.3);
  box-shadow: 0 14px 30px rgba(223, 42, 25, 0.1);
}

.benefit-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(223, 42, 25, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18.5px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-circle {
  transform: none;
  background: var(--primary);
  color: #ffffff;
}

.benefit-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-900);
  margin-bottom: 8px;
}

body.dark-theme .benefit-title {
  color: #ffffff;
}

.benefit-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.6;
}

body.dark-theme .benefit-desc {
  color: #94a3b8;
}


/* ---- TESTIMONIALS CAROUSEL SECTION ---- */
.testimonials-section {
  padding: 44px 0 !important;
  background: var(--white);
  transition: background-color 0.4s ease;
}

body.dark-theme .testimonials-section {
  background: #0b1120;
}

.testimonials-carousel-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.testimonial-slide {
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeIn 0.4s ease forwards;
}

body.dark-theme .testimonial-slide {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-slide.active {
  display: block;
}

.quote-icon {
  font-size: 30.5px;
  color: rgba(223, 42, 25, 0.25);
  margin-bottom: 12px !important;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #332155;
  font-style: italic;
  margin-bottom: 28px;
}

body.dark-theme .testimonial-text {
  color: #e2e8f0;
}

.author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-details {
  text-align: left;
}

.author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-900);
}

body.dark-theme .author-name {
  color: #ffffff;
}

.author-role {
  font-size: 11px;
  color: #64748b;
}

body.dark-theme .author-role {
  color: #94a3b8;
}

.author-stars {
  color: #f59e0b;
  font-size: 10px;
  margin-top: 2px;
}

/* Carousel Nav Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 13.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

body.dark-theme .carousel-btn {
  background: #1e293b;
  border-color: #332155;
  color: #cbd5e1;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

body.dark-theme .dot-btn {
  background: #332155;
}

.dot-btn.active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}


/* ---- LIFE AT AI LAB GALLERY SECTION ---- */
.gallery-section {
  padding: 44px 0 !important;
  background: #f8fafc;
  transition: background-color 0.4s ease;
}

body.dark-theme .gallery-section {
  background: #0f172a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 8px;
}

.gallery-title {
  font-size: 13.5px;
  font-weight: 700;
}


/* ---- COMPANY STATISTICS COUNTER SECTION ---- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 42, 25, 0.4);
}

.stat-icon {
  font-size: 27px;
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-number {
  font-size: 35.5px;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}


/* ---- FAQ SECTION ---- */
.faq-section {
  padding: 44px 0 !important;
  background: var(--white);
  transition: background-color 0.4s ease;
}

body.dark-theme .faq-section {
  background: #0b1120;
}

.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

body.dark-theme .faq-item {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-900);
  cursor: pointer;
  outline: none;
}

body.dark-theme .faq-question-btn {
  color: #ffffff;
}

.faq-question-btn i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer-panel {
  padding: 0 28px 24px;
}

.faq-answer-panel p {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
}

body.dark-theme .faq-answer-panel p {
  color: #cbd5e1;
}


/* ==================== CTA BANNER (INDEX PAGE FORMAT) ==================== */
.hp-cta-banner {
  padding: 42px 0;
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.2) 100%), url('../assets/images/project/civilxpress.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  width: 100%;
}

html[data-theme="light"] .hp-cta-banner,
body.light-theme .hp-cta-banner {
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.2) 100%), url('../assets/images/project/civilxpress.jpg') !important;
  background-color: #0f172a !important;
}

.hp-cta-banner .cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hp-cta-banner .cta-banner-content {
  flex: 1;
  max-width: 800px;
}

.hp-cta-banner .cta-banner-content h2 {
  color: #ffffff !important;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hp-cta-banner .cta-banner-content p {
  color: #cbd5e1 !important;
  font-size: 1.025rem;
  line-height: 1.6;
  margin: 0;
}

.hp-cta-banner .cta-banner-content p strong {
  color: #ffffff !important;
  font-weight: 600;
}

.hp-cta-banner .cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.hp-cta-banner .btn-banner-white {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.hp-cta-banner .btn-banner-white:hover {
  background: #f1f5f9 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}

.hp-cta-banner .btn-banner-outline {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hp-cta-banner .btn-banner-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hp-cta-banner {
    padding: 36px 0;
  }

  .hp-cta-banner .cta-banner-inner {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
  }

  .hp-cta-banner .cta-banner-content h2 {
    font-size: 1.5rem;
  }

  .hp-cta-banner .cta-banner-content p {
    font-size: 0.95rem;
  }

  .hp-cta-banner .cta-banner-actions {
    width: 100%;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (@media)
   ========================================================================== */

/* Tablet & Below (Max-width 1024px) */
@media (max-width: 1024px) {
  .careers-hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .careers-hero-title {
    font-size: clamp(27px, 5vw, 35.5px);
  }

  .aero-stats-grid,
  .benefits-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Tablet & Mobile Timeline Nav Scroll (Max-width 900px) */
@media (max-width: 900px) {
  .timeline-nav-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 8px 6px 16px 6px;
    margin-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .timeline-nav-scroll::-webkit-scrollbar {
    display: none;
  }

  .timeline-nav {
    min-width: 630px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 24px;
    margin-bottom: 0;
  }

  .timeline-progress-line {
    top: 20px;
    left: 45px;
    right: 45px;
  }

  .timeline-step-btn {
    flex-shrink: 0;
    width: 78px;
    min-width: 78px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .step-label {
    font-size: 11px;
    max-width: 78px;
    line-height: 1.25;
    margin-top: 6px;
  }
}

/* Mobile (Max-width 768px) */
@media (max-width: 768px) {
  .hiring-section,
  .jobs-section,
  .culture-section,
  .benefits-section,
  .testimonials-section,
  .faq-section {
    padding: 28px 0;
  }

  .section-header-wrap {
    margin-bottom: 20px;
    text-align: center;
  }

  .section-main-title {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .section-sub-desc {
    font-size: 12.5px;
    line-height: 1.6;
    padding: 0 6px;
  }

  .careers-hero-split {
    gap: 28px;
  }

  .careers-hero-title {
    font-size: clamp(24px, 6vw, 30.5px);
  }

  .careers-hero-desc {
    font-size: 13px;
  }

  .careers-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .careers-hero-ctas a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Force 1 column for grid layouts on mobile */
  .careers-hero-split,
  .culture-grid,
  .step-content-grid,
  .jobs-grid,
  .benefits-grid,
  .gallery-grid,
  .stats-grid,
  .aero-stats-grid,
  .core-modules-grid,
  .features-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  /* Hiring Process Info Card Mobile */
  .hiring-card-display {
    padding: 18px 16px;
    border-radius: 16px;
    min-height: auto;
  }

  .step-content-grid {
    gap: 16px;
  }

  .step-header-wrap {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }

  .step-content-title {
    font-size: 16px;
  }

  .step-content-desc {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .step-highlights-list {
    gap: 8px;
  }

  .step-highlights-list li {
    font-size: 11.5px;
    line-height: 1.45;
    gap: 10px;
  }

  .step-highlights-list li i {
    font-size: 12.5px;
    flex-shrink: 0;
  }

  .step-meta-box {
    margin-top: 4px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .meta-item {
    margin-bottom: 0;
  }

  /* Job Controls Bar & Search */
  .jobs-controls-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .job-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    width: 100%;
    overflow: visible;
    padding: 0;
  }

  .filter-tab-btn {
    padding: 7px 14px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
  }

  .job-search-box {
    width: 100%;
    min-width: 0;
  }

  .job-card {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .job-tags-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .job-meta-row {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .engineer-nodes-grid {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .visual-glass-card,
  .collaboration-graphic {
    padding: 16px !important;
  }
}

/* Extra Small Mobile (Max-width 480px) */
@media (max-width: 480px) {
  .timeline-nav-scroll {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .timeline-nav {
    min-width: 580px;
    padding: 0 20px;
  }

  .timeline-progress-line {
    top: 19px;
    left: 38px;
    right: 38px;
  }

  .timeline-step-btn {
    width: 72px;
    min-width: 72px;
  }

  .step-circle {
    width: 38px;
    height: 38px;
    font-size: 11.5px;
  }

  .step-label {
    font-size: 10px;
    max-width: 70px;
  }

  .step-meta-box {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hiring-card-display {
    padding: 16px 14px;
  }

  .job-filter-tabs {
    gap: 6px 8px;
  }

  .filter-tab-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* Micro Displays (320px - 380px) */
@media (max-width: 380px) {
  .careers-hero-title {
    font-size: 21px !important;
  }

  .job-card {
    padding: 16px 12px !important;
  }

  .job-card-actions .btn {
    width: 100%;
    justify-content: center;
  }
}