:root {
  /* Layout */
  --container-width: 1280px;
  --section-spacing: 80px;
  --content-spacing: 32px;
  --component-spacing: 24px;

  /* Colors */
  --bg-primary: #f5f5f5;
  --bg-secondary: #ffffff;
  --text-primary: #222;
  --text-muted: #666;
  --text-light: #fff;

  /* Gradients and Branding */
  --grad-1: linear-gradient(90deg, #ffac00, #ff6a00);
  --primary: #551B8C;
  --border: rgba(255,255,255,0.12);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Cards */
  --gap: 20px;
  --card-height: 420px;
  --transition: 450ms cubic-bezier(.2,.9,.2,1);
  --img-1: url('assets/img/bg2/why us bg.png');
  --img-2: url('assets/img/bg2/clubs-councils bg.jpg');
  --img-3: url('assets/img/bg2/skill based bg.avif');
  --img-4: url('assets/img/bg2/campus bg.webp');
}

/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito Sans', 'Poppins', system-ui;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: var(--component-spacing);
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0;
}


/*Header*/

/* Overlays for background */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* MAIN MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #ffffff;
    padding: 20px;
    transition: 0.35s ease;
    z-index: 9999;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
}

/* Slide-in active state */
.mobile-menu.active {
    left: 0;
}

/* MENU HEADER */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    height: 50px;
}

/* CLOSE BUTTON CIRCLE (Like Screenshot) */
.close-mobile-menu {
    width: 45px;
    height: 45px;
    background: #006D4D; /* green circle */
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 28px;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
}

/* MENU ITEMS */
.mobile-menu-list {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.mobile-menu-list li a {
    text-decoration: none;
    font-size: 18px;
    color: #151515;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* ARROW ICON LIKE SCREENSHOT */
.mobile-menu-list li a span {
    font-size: 20px;
    color: #555;
}


/* Search Icon Button */
.icon-btn {
    background: #ffac00;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: white;

}

/* Search Box Styling */
.searchBox {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* When Active: Open Search Box */
.searchBox.active {
    width: 250px;
    opacity: 1;
    padding: 8px 12px;
    pointer-events: auto;
}

/* Input box */
.searchBox input {
    width: 100%;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 16px;
}

/* Close (X) button */
.closeSearch {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}
/* ==========================================================================
   Career Page Styles - Graphura
   Enhanced Modern Design
   ========================================================================== */

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--content-spacing);
}

/* ========== Hero Section - Enhanced ========== */
.career-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3c1363 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}

/* Animated Gradient Overlay */
.career-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 172, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 106, 0, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Blob Animation - Enhanced */
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(50px, -60px) scale(1.15) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.95) rotate(240deg);
  }
  100% {
    transform: translate(0px, 0px) scale(1) rotate(360deg);
  }
}

.animate-blob {
  animation: blob 8s ease-in-out infinite;
}

.animation-delay-2000 {
  animation-delay: 2.5s;
}

/* Hero Content */
.career-hero .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-badge {
  display: block;
  padding: 12px 32px;
  background: rgba(255, 172, 0, 0.2);
  border: 2px solid rgba(255, 172, 0, 0.4);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #FFAC00;
  margin: 0 auto 32px auto;
  backdrop-filter: blur(15px);
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 172, 0, 0.2);
  animation: slideInDown 0.6s ease-out;
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content;
}

.company-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 172, 0, 0.3);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-heading span {
  background: linear-gradient(135deg, #FFAC00 0%, #FF8C00 50%, #FF6A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-heading span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  max-width: 750px;
  margin: 0 auto 56px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Buttons - Enhanced */
.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.primary-btn, .secondary-btn {
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 240px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(135deg, #FFAC00 0%, #FF8C00 50%, #FF6A00 100%);
  color: var(--text-light);
  border: none;
  box-shadow: 0 8px 25px rgba(255, 172, 0, 0.4),
              0 4px 10px rgba(0, 0, 0, 0.2);
}

.primary-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.5),
              0 8px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.primary-btn:hover::before {
  width: 300px;
  height: 300px;
}

.primary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.primary-btn:hover::after {
  left: 100%;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ========== Value Proposition - Enhanced ========== */
.value-proposition {
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  padding: 80px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.value-proposition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.value-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.9;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 var(--content-spacing);
  position: relative;
  animation: fadeIn 1s ease-out;
}

.value-text strong {
  color: var(--primary);
  font-weight: 800;
  position: relative;
  padding: 0 4px;
}

.value-text strong::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00);
  opacity: 0.4;
  border-radius: 2px;
}

/* ========== Section Headings - Enhanced ========== */
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-heading::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 3px;
  opacity: 0.2;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 172, 0, 0.4);
}

.text-center .section-heading::before,
.text-center .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ========== Benefits Section - Enhanced ========== */
.benefits-section {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.benefits-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.benefit-card {
  background: var(--bg-secondary);
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 5px solid transparent;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 172, 0, 0.2),
              0 4px 15px rgba(0, 0, 0, 0.1);
  border-top-color: #FFAC00;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(85, 27, 140, 0.1), rgba(255, 172, 0, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 172, 0, 0.2), rgba(255, 106, 0, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(255, 172, 0, 0.2), rgba(255, 106, 0, 0.2));
}

.benefit-card:hover .benefit-icon::before {
  opacity: 1;
}

.benefit-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-primary);
  line-height: 1.3;
}

.benefit-description {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 16px;
}

/* ========== Departments Section - Enhanced ========== */
.departments-section {
  padding: var(--section-spacing) 0;
  background: var(--bg-secondary);
}

.departments-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.department-card {
  background: var(--bg-secondary);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06),
              0 1px 3px rgba(0, 0, 0, 0.04);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.department-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 172, 0, 0.03), rgba(85, 27, 140, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.department-card:hover {
  border-color: #FFAC00;
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(255, 172, 0, 0.15),
              0 4px 15px rgba(0, 0, 0, 0.1);
}

.department-card:hover::after {
  opacity: 1;
}

.department-icon {
  color: #FFAC00;
  margin-bottom: 24px;
  font-size: 32px;
  transition: all 0.4s ease;
  display: inline-block;
}

.department-card:hover .department-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary);
}

.department-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.department-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.department-card:hover .department-title::after {
  transform: scaleX(1);
}

.department-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 16px;
  padding: 8px 0;
  padding-left: 8px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.department-list li:hover {
  background: rgba(255, 172, 0, 0.05);
  padding-left: 16px;
  color: var(--text-primary);
}

.department-list li::before {
  content: "▸";
  color: #FFAC00;
  font-weight: 900;
  margin-right: 16px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.department-list li:hover::before {
  transform: translateX(4px);
  color: var(--primary);
}

/* ========== Culture Section - Enhanced ========== */
.culture-section {
  background: linear-gradient(135deg, var(--primary) 0%, #3c1363 100%);
  color: var(--text-light);
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.culture-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 172, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.culture-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.culture-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.culture-title span {
  background: linear-gradient(135deg, #FFAC00 0%, #FF8C00 50%, #FF6A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.culture-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-align: center;
  margin-bottom: 70px;
  opacity: 0.95;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.culture-values {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  position: relative;
  z-index: 1;
}

.value-card {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2),
              0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
              0 8px 20px rgba(0, 0, 0, 0.15);
  border-bottom-color: #FFAC00;
}

.value-icon {
  color: #FFAC00;
  margin-bottom: 24px;
  font-size: 36px;
  transition: all 0.4s ease;
  display: inline-block;
}

.value-card:hover .value-icon {
  transform: scale(1.2) rotate(-5deg);
  color: var(--primary);
}

.value-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.3;
}

.value-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ========== Who Can Apply & Benefits - Enhanced ========== */
.apply-benefits {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  padding: var(--section-spacing) 0;
}

.apply-benefits-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.apply-card, .benefits-card {
  background: var(--bg-primary);
  padding: 40px 36px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid transparent;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.apply-card::before,
.benefits-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), #FFAC00);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.apply-card:hover::before,
.benefits-card:hover::before {
  transform: scaleY(1);
}

.apply-card:hover, .benefits-card:hover {
  box-shadow: 0 12px 40px rgba(85, 27, 140, 0.15),
              0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-left-color: var(--primary);
}

.apply-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 24px;
}

.apply-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.apply-item:hover {
  background: rgba(255, 172, 0, 0.1);
  color: var(--text-primary);
  transform: translateX(5px);
}

.apply-item i {
  color: #FFAC00;
  flex-shrink: 0;
  font-size: 20px;
  width: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.apply-item:hover i {
  color: var(--primary);
  transform: scale(1.2);
}

.apply-item span {
  font-weight: 500;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 24px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: rgba(255, 172, 0, 0.08);
  color: var(--text-primary);
  transform: translateX(5px);
}

.benefits-list i {
  color: #FFAC00;
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 22px;
  width: 28px;
  transition: all 0.3s ease;
}

.benefits-list li:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary);
}

.benefits-list strong {
  color: var(--text-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* ========== Hiring Process - Enhanced ========== */
.hiring-process {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding: var(--section-spacing) 0;
}

.process-container {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.process-timeline {
  background: var(--bg-secondary);
  padding: 40px 36px;
  border-radius: 24px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #FFAC00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-timeline:hover::before {
  transform: scaleX(1);
}

.process-timeline:hover {
  box-shadow: 0 12px 45px rgba(85, 27, 140, 0.15),
              0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFAC00, #FF6A00, var(--primary));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 172, 0, 0.3);
}

.process-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 48px;
  transition: all 0.3s ease;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:hover {
  padding-left: 75px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #FFAC00, #FF6A00);
  border-radius: 50%;
  border: 6px solid var(--bg-secondary);
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255, 172, 0, 0.3),
              0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(255, 172, 0, 0.4),
              0 6px 15px rgba(255, 172, 0, 0.4);
}

.step-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  color: #FFAC00;
  transform: translateX(3px);
}

.step-description {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ========== Current Openings - Enhanced ========== */
.openings-card {
  background: linear-gradient(135deg, var(--primary) 0%, #3c1363 100%);
  color: var(--text-light);
  padding: 40px 36px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(85, 27, 140, 0.3),
              0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.openings-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFAC00, #FF6A00, #FFAC00);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.openings-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 172, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.openings-card h3 {
  color: #FFAC00;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.openings-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.openings-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.openings-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 8px;
  transform: translateX(5px);
}

.openings-list i {
  color: #4ade80;
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 20px;
  transition: all 0.3s ease;
}

.openings-list li:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #22c55e;
}

.apply-now-btn {
  background: linear-gradient(135deg, #FFAC00 0%, #FF8C00 50%, #FF6A00 100%);
  color: var(--text-light);
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 28px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 25px rgba(255, 172, 0, 0.4),
              0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.apply-now-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.apply-now-btn:hover::before {
  width: 400px;
  height: 400px;
}

.apply-now-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(255, 106, 0, 0.5),
              0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

/* ========== FAQ Section - Enhanced ========== */
.faq-section {
  background: var(--bg-secondary);
  padding: var(--section-spacing) 0;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-primary);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: rgba(255, 172, 0, 0.4);
  box-shadow: 0 8px 25px rgba(255, 172, 0, 0.15),
              0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 28px 32px;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
  gap: 20px;
}

.faq-question i {
  color: #FFAC00;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-question:hover {
  background: rgba(85, 27, 140, 0.05);
  color: var(--primary);
}

.faq-item.active .faq-question {
  background: rgba(255, 172, 0, 0.1);
  color: var(--primary);
}

.faq-answer {
  padding: 0 32px 28px;
  color: var(--text-muted);
  line-height: 1.8;
  display: none;
  font-size: 15px;
}

.faq-answer.active {
  display: block;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}

.faq-answer a {
  color: #FFAC00;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.faq-answer a:hover {
  border-bottom-color: #FFAC00;
  color: #FF6A00;
}

/* ========== CTA Section - Enhanced ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #3c1363 100%);
  padding: 80px 0;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 172, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h3 {
  color: #FFAC00;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-primary, .cta-btn-secondary {
  padding: 18px 42px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #FFAC00 0%, #FF8C00 50%, #FF6A00 100%);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(255, 172, 0, 0.4),
              0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 45px rgba(255, 106, 0, 0.5),
              0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* ========== Animations - Enhanced ========== */
.fade-in {
  animation: fadeIn 0.8s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== Utility Classes ========== */
.text-center {
  text-align: center;
}

.mb-6 {
  margin-bottom: 32px;
}

.text-secondary {
  color: #FFAC00;
}

.text-lg {
  font-size: 18px;
}

.italic {
  font-style: italic;
}

.text-sm {
  font-size: 14px;
}

.text-gray-400 {
  color: #9ca3af;
}

/* ========== Utility Classes for Blobs ========== */
.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.w-96 {
  width: 24rem;
}

.h-96 {
  height: 24rem;
}

.rounded-full {
  border-radius: 9999px;
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.blur-3xl {
  filter: blur(64px);
}

.opacity-10 {
  opacity: 0.1;
}

/* Spacing Utilities */
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Background Utilities */
.bg-light {
  background-color: #f8f9fa;
}

.bg-white {
  background-color: #ffffff;
}

.bg-purple-500 {
  background-color: #a855f7;
}

@media (min-width: 640px) {
  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Ensure proper spacing for smooth scrolling */
section {
  scroll-margin-top: 120px;
}

/* ========== Responsive Design - Enhanced ========== */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 70px;
    --content-spacing: 28px;
    --component-spacing: 24px;
  }
  
  .career-hero {
    padding: 80px 0 100px;
    min-height: 80vh;
  }
  
  .benefits-grid,
  .departments-grid,
  .culture-values,
  .apply-benefits-grid,
  .process-container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  
  .value-proposition {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
    --content-spacing: 24px;
    --component-spacing: 20px;
  }
  
  .career-hero {
    padding: 70px 0 80px;
    min-height: auto;
    background-attachment: scroll;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }
  
  .primary-btn, .secondary-btn {
    padding: 16px 36px;
    font-size: 16px;
    min-width: 100%;
    width: 100%;
  }
  
  .section-heading {
    margin-bottom: 50px;
  }
  
  .value-proposition {
    padding: 50px 0;
  }
  
  .value-text {
    font-size: 1.3rem;
  }
  
  .benefit-card, .department-card, .value-card,
  .apply-card, .benefits-card, .process-timeline,
  .openings-card {
    padding: 32px 24px;
  }
  
  .benefit-icon,
  .department-icon,
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .culture-subtitle {
    margin-bottom: 50px;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  
  .cta-buttons {
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }
  
  .cta-btn-primary, .cta-btn-secondary {
    width: 100%;
    max-width: 320px;
    padding: 16px 36px;
  }
  
  .apply-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  
  .faq-question {
    font-size: 17px;
    padding: 24px;
  }
  
  .faq-answer {
    padding: 0 24px 24px;
    font-size: 15px;
  }
  
  .process-step {
    padding-left: 65px;
    margin-bottom: 40px;
  }
  
  .process-steps::before {
    left: 20px;
  }
  
  .process-step::before {
    left: 12px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-spacing: 50px;
    --content-spacing: 20px;
    --component-spacing: 18px;
  }
  
  .career-hero {
    padding: 60px 0 70px;
  }
  
  .company-badge {
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    max-width: 100%;
  }
  
  .primary-btn, .secondary-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .value-proposition {
    padding: 40px 0;
  }
  
  .value-text {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  
  .section-heading {
    margin-bottom: 40px;
  }
  
  .benefits-grid, 
  .departments-grid, 
  .culture-values,
  .apply-benefits-grid, 
  .process-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefit-card, 
  .department-card, 
  .value-card,
  .apply-card, 
  .benefits-card, 
  .process-timeline,
  .openings-card {
    padding: 28px 20px;
  }
  
  .benefit-title,
  .department-title {
    font-size: 1.3rem;
  }
  
  .value-card h4 {
    font-size: 1.2rem;
  }
  
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .apply-item {
    padding: 10px 12px;
  }
  
  .benefits-list li {
    margin-bottom: 20px;
    padding: 10px;
  }
  
  .process-step {
    padding-left: 55px;
    margin-bottom: 32px;
  }
  
  .process-steps::before {
    left: 16px;
  }
  
  .process-step::before {
    left: 8px;
    width: 24px;
    height: 24px;
  }
  
  .step-number {
    font-size: 1.15rem;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 20px;
  }
  
  .faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .cta-text h3 {
    margin-bottom: 12px;
  }
  
  .cta-btn-primary, .cta-btn-secondary {
    max-width: 100%;
    padding: 14px 32px;
    font-size: 15px;
  }
}