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

/* ---- 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 {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: var(--accent-900);
}

/* 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: 14px;
  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: 11px;
}

.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: 13px;
  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(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.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: 17px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 12px !important;
  max-width: 620px;
}

body:not(.dark-theme) .careers-hero-desc {
  color: #475569;
}

.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;
  font-weight: 700;
  font-size: 15px;
  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;
}

.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: 15px;
  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 {
  background: rgba(15, 23, 42, 0.05);
  color: var(--accent-900);
  border-color: rgba(15, 23, 42, 0.15);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
  color: var(--primary);
  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: 12px;
  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: 18px;
  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: 12px;
  font-weight: 700;
  color: #e2e8f0;
}

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

.node-status {
  font-size: 10px;
  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: 22px;
  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: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

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

.hub-text p {
  font-size: 11px;
  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: 16px;
  font-weight: 800;
  color: var(--primary);
}

.metric-lbl {
  font-size: 10px;
  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: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--accent-900);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

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

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

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


/* ---- 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: 18px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.culture-card:hover .culture-icon-box {
  transform: scale(1.08) rotate(4deg);
  background: var(--primary);
  color: #ffffff;
}

.culture-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-900);
  margin-bottom: 6px;
}

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

.culture-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

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


/* ---- 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 {
  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: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body.dark-theme .step-circle {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

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

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

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

.timeline-step-btn.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

/* 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: 12px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(223, 42, 25, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.step-content-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-900);
}

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

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

body.dark-theme .step-content-desc {
  color: #cbd5e1;
}

.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: 13px;
  color: #334155;
}

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: 10.5px;
  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: 13px;
  font-weight: 600;
  color: var(--accent-900);
}

body.dark-theme .meta-val { color: #ffffff; }


/* ---- 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 16px;
  border-radius: 30px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

body.dark-theme .filter-tab-btn {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(223, 42, 25, 0.25);
}

.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: 14px;
}

.job-search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--accent-900);
  font-size: 13px;
  outline: none;
  transition: all 0.25s ease;
}

body.dark-theme .job-search-input {
  background: #1e293b;
  border-color: #334155;
  color: #ffffff;
}

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

/* 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: 10.5px;
  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: 11px;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

.job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-900);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

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

.job-card:hover .job-title {
  color: var(--primary);
}

.job-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  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: 10.5px;
  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: 12px;
  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 16px;
  border-radius: 8px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 12.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.25);
}

.btn-apply-job:hover {
  background: #b41e12;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(223, 42, 25, 0.4);
}

.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.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-container {
  background: #ffffff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

body.dark-theme .modal-container {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

body.dark-theme .modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

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

.modal-header-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-900);
  margin-bottom: 6px;
}

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

.modal-sub-job {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

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

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

body.dark-theme .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: 14px;
  outline: none;
  background: #ffffff;
  color: var(--accent-900);
  transition: border-color 0.2s;
}

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

.modal-form-input:focus,
.modal-form-textarea:focus {
  border-color: var(--primary);
}

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

.btn-submit-modal:hover {
  background: #b41e12;
}


/* ---- 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: 22px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

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

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

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

.benefit-desc {
  font-size: 13px;
  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: 36px;
  color: rgba(223, 42, 25, 0.25);
  margin-bottom: 12px !important;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  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: 16px;
  font-weight: 700;
  color: var(--accent-900);
}

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

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

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

.author-stars {
  color: #f59e0b;
  font-size: 12px;
  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: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

body.dark-theme .carousel-btn {
  background: #1e293b;
  border-color: #334155;
  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: #334155;
}

.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: 11px;
  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: 16px;
  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: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-number {
  font-size: 42px;
  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: 14px;
  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: 17px;
  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: 15px;
  color: #475569;
  line-height: 1.7;
}

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


/* ---- FINAL CTA SECTION ---- */
.final-cta-section {
  padding: 56px 0 !important;
  background: linear-gradient(135deg, #0b1120 0%, #0f172a 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

html[data-theme="light"] .final-cta-section,
body.light-theme .final-cta-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
}

.cta-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(223, 42, 25, 0.08);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-box {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  margin-bottom: 12px !important;
  line-height: 1.2;
  color: #ffffff;
}

html[data-theme="light"] .cta-title,
body.light-theme .cta-title {
  color: #0f172a !important;
}

.cta-desc {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 24px !important;
  line-height: 1.6;
  color: #cbd5e1;
}

html[data-theme="light"] .cta-desc,
body.light-theme .cta-desc {
  color: #475569 !important;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-white {
  padding: 13px 30px !important;
  border-radius: 12px !important;
  background: #df2a19 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(223, 42, 25, 0.35) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.btn-cta-white:hover {
  background: #b91c1c !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(223, 42, 25, 0.5) !important;
}

.btn-cta-outline {
  padding: 13px 30px !important;
  border-radius: 12px !important;
  background: transparent !important;
  color: #df2a19 !important;
  border: 1.5px solid #df2a19 !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-decoration: none;
  transition: all 0.3s ease !important;
}

.btn-cta-outline:hover {
  background: rgba(223, 42, 25, 0.1) !important;
  color: #df2a19 !important;
  transform: translateY(-2px) !important;
}