/* ==========================================================================
   JEET EDUCATION JOB OPPORTUNITIES & PLACEMENT PORTAL
   Official Portal of www.jeeteducation.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #0b1528;
  --primary-navy-light: #152238;
  --brand-blue: #1d4ed8;
  --brand-blue-hover: #1e40af;
  --brand-blue-light: #eff6ff;
  --brand-accent: #0284c7;
  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
  --accent-amber-light: #fffbeb;
  --accent-orange: #ea580c;
  --success-emerald: #10b981;
  --success-emerald-dark: #059669;
  --success-emerald-light: #ecfdf5;
  --danger-rose: #ef4444;
  --danger-rose-light: #fef2f2;
  
  /* Neutral Grayscale */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --text-inverse: #ffffff;
  
  /* Shadows & Elevations */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 40px -6px rgba(11, 21, 40, 0.2), 0 8px 16px -4px rgba(11, 21, 40, 0.1);
  --shadow-glow: 0 0 25px rgba(29, 78, 216, 0.25);
  
  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--brand-blue-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT / TICKER BAR
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #0b1528, #1e3a8a, #0b1528);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-badge {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-contact a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar-contact a:hover {
  color: var(--accent-amber);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(11, 21, 40, 0.04);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(11, 21, 40, 0.09);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

/* Brand Logo */
.brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.brand-title-group h1 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-title-group .brand-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}

/* Nav Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 6px 2px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-badge-pill {
  background: var(--accent-amber);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-post-job {
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-post-job:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.btn-saved-jobs {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-saved-jobs:hover {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.saved-counter-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--danger-rose);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.btn-call-helpline {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-call-helpline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.btn-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO SECTION & UNIFIED SEARCH HUB
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.12), transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.08), transparent 40%),
              linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  padding: 56px 0 64px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-glow-1, .hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.15);
  top: -100px;
  right: -50px;
}

.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.12);
  bottom: -100px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.18;
}

.hero-title span {
  background: linear-gradient(135deg, #1d4ed8, #0284c7, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.14rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* Smart Search Box */
.search-hub-wrapper {
  background: #ffffff;
  padding: 14px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 24px;
}

.search-form-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1.3fr auto;
  gap: 10px;
  align-items: center;
}

.search-field-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.search-field-box:focus-within {
  background: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-field-box i {
  color: var(--brand-blue);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.search-field-box input, .search-field-box select {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
}

.search-field-box select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 18px;
}

.btn-search-main {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-search-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* Quick Search Filters / Trending Pills */
.trending-pills-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.86rem;
}

.trending-label {
  font-weight: 700;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pill-filter {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pill-filter:hover, .pill-filter.active {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* Hero Stats Counter Bar */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.stat-item-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: var(--transition-normal);
}

.stat-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.stat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-icon-wrap.amber {
  background: var(--accent-amber-light);
  color: var(--accent-amber-hover);
}

.stat-icon-wrap.emerald {
  background: var(--success-emerald-light);
  color: var(--success-emerald-dark);
}

.stat-icon-wrap.orange {
  background: #fff7ed;
  color: var(--accent-orange);
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   CATEGORY EXPLORER SECTION
   ========================================================================== */
.section-padding {
  padding: 60px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}

.section-tag {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-top: 4px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.category-card:hover, .category-card.active {
  border-color: var(--brand-blue);
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-blue-light) 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-card-subtle);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.category-card:hover .category-icon, .category-card.active .category-icon {
  background: var(--brand-blue);
  color: #ffffff;
}

.category-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
}

.category-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card-subtle);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   JOB LISTINGS SECTION & FILTER TOOLBAR
   ========================================================================== */
.jobs-main-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
}

.jobs-control-toolbar {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.jobs-count-badge {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1.05rem;
}

.jobs-count-badge span {
  color: var(--brand-blue);
}

.toolbar-filters-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 8px 14px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
}

.filter-select:focus {
  border-color: var(--brand-blue);
}

.view-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2px;
}

.btn-view-toggle {
  background: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-view-toggle.active {
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}

/* Job Cards Grid Layout */
.jobs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.jobs-cards-grid.list-view {
  grid-template-columns: 1fr;
}

/* Modern Job Card */
.job-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.35);
}

.job-card.featured {
  border-left: 4px solid var(--brand-blue);
}

/* Card Header */
.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.job-company-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.job-company-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
}

.job-company-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.verified-icon {
  color: var(--brand-blue);
  font-size: 0.85rem;
}

.job-bookmark-btn {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.job-bookmark-btn:hover, .job-bookmark-btn.saved {
  background: var(--accent-amber-light);
  color: var(--accent-amber-hover);
  border-color: var(--accent-amber);
}

/* Title & Meta Badges */
.job-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.35;
  cursor: pointer;
  transition: var(--transition-fast);
}

.job-title:hover {
  color: var(--brand-blue);
}

.job-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge-nature {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

.badge-time {
  background: var(--accent-amber-light);
  color: #b45309;
}

.badge-urgent {
  background: var(--danger-rose-light);
  color: var(--danger-rose);
}

.badge-featured {
  background: #fdf4ff;
  color: #9333ea;
}

.badge-vacancies {
  background: var(--bg-card-subtle);
  color: var(--text-muted);
}

/* Salary & Location */
.job-highlight-info {
  background: var(--bg-card-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-salary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.job-salary-amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--success-emerald-dark);
  font-family: 'Outfit', sans-serif;
}

.job-salary-annual {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
}

.job-location-row {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-location-row i {
  color: var(--danger-rose);
}

/* Skills Tags */
.job-skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.skill-tag {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* Actions Row */
.job-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.btn-apply-job {
  flex: 2;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
  transition: var(--transition-fast);
}

.btn-apply-job:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
}

.btn-call-job {
  flex: 1;
  background: var(--brand-blue-light);
  color: var(--brand-blue) !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.btn-call-job:hover {
  background: var(--brand-blue);
  color: #ffffff !important;
}

.btn-share-job {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-share-job:hover {
  background: #ffffff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-details-job {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-details-job:hover {
  background: #ffffff;
  color: var(--primary-navy);
}

/* Empty State */
.empty-jobs-state {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border-color);
  grid-column: 1 / -1;
}

.empty-icon {
  font-size: 3rem;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

/* ==========================================================================
   PLACED CANDIDATES & SUCCESS STORIES SECTION (HALL OF FAME)
   ========================================================================== */
.placed-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.placed-tabs-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

/* Placed Candidates Grid */
.placed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.placed-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.placed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 158, 11, 0.4);
}

/* Candidate Card Banner & Photo */
.placed-card-header {
  position: relative;
  background: linear-gradient(135deg, #0b1528, #1e3a8a);
  padding: 24px 20px 50px 20px;
  color: #ffffff;
}

.placed-verified-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.4px;
}

.placed-batch-tag {
  font-size: 0.76rem;
  color: var(--accent-amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.placed-avatar-wrapper {
  position: absolute;
  bottom: -36px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.candidate-passport-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.placed-salary-pill {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.4);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 8px;
}

/* Placed Card Body */
.placed-card-body {
  padding: 46px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.candidate-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.candidate-placed-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 2px;
}

.candidate-company-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.candidate-company-row i {
  color: var(--primary-navy);
}

.candidate-course-badge {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.candidate-course-badge i {
  color: var(--accent-amber-hover);
}

.joining-date-row {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Testimonial Quote Box */
.candidate-testimonial-box {
  background: #f8fafc;
  border-left: 3px solid var(--brand-blue);
  padding: 10px 12px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.84rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.45;
  position: relative;
}

/* Placed Card Actions */
.placed-actions-row {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.btn-view-offer {
  flex: 1;
  background: var(--brand-blue-light);
  color: var(--brand-blue) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.btn-view-offer:hover {
  background: var(--brand-blue);
  color: #ffffff !important;
}

.btn-read-story {
  flex: 1;
  background: var(--primary-navy);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.btn-read-story:hover {
  background: var(--brand-blue-hover);
}

/* ==========================================================================
   RECRUITER PARTNERS & WHY HIRE SECTION
   ========================================================================== */
.recruiters-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

.recruiters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.recruiter-badge-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.recruiter-badge-card:hover {
  background: #ffffff;
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.recruiter-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.recruiter-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

.recruiter-type {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Why Recruit CTA Box */
.why-recruit-banner {
  background: linear-gradient(135deg, #0b1528 0%, #1e3a8a 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: #ffffff;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.why-recruit-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-recruit-desc {
  color: #cbd5e1;
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.why-recruit-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #f1f5f9;
}

.perk-item i {
  color: var(--accent-amber);
}

.why-recruit-action {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   MODALS SYSTEM & POPUPS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 21, 40, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-card.modal-lg {
  max-width: 780px;
}

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

.modal-header {
  padding: 20px 24px;
  background: var(--bg-card-subtle);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-title {
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.modal-close-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--danger-rose);
  color: #ffffff;
  border-color: var(--danger-rose);
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.modal-footer {
  padding: 16px 24px;
  background: var(--bg-card-subtle);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.col-span-2 {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-label span.req {
  color: var(--danger-rose);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

/* Drag & Drop File Upload Box */
.file-dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  background: var(--bg-card-subtle);
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-dropzone:hover {
  border-color: var(--brand-blue);
  background: var(--brand-blue-light);
}

.file-dropzone i {
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

/* Social Share Drawer / Modal */
.share-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.share-channel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: #ffffff;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--transition-fast);
}

.share-channel-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.share-channel-btn.whatsapp { color: #25D366; }
.share-channel-btn.whatsapp:hover { background: #25D366; color: #fff; }

.share-channel-btn.linkedin { color: #0A66C2; }
.share-channel-btn.linkedin:hover { background: #0A66C2; color: #fff; }

.share-channel-btn.facebook { color: #1877F2; }
.share-channel-btn.facebook:hover { background: #1877F2; color: #fff; }

.share-channel-btn.twitter { color: #000000; }
.share-channel-btn.twitter:hover { background: #000000; color: #fff; }

.share-icon-wrap {
  font-size: 1.6rem;
}

.share-channel-name {
  font-size: 0.78rem;
  font-weight: 700;
}

.share-copy-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  padding: 6px 10px;
  border-radius: var(--radius-md);
}

.share-copy-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Digital Offer Letter / Certificate Styling */
.offer-letter-doc {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  position: relative;
}

.offer-letter-doc::before {
  content: 'OFFICIAL PLACEMENT RECORD';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(30, 58, 138, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.offer-institute-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e3a8a;
}

.offer-ref {
  font-size: 0.75rem;
  color: #64748b;
  text-align: right;
}

.offer-ctc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}

.offer-ctc-table th, .offer-ctc-table td {
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  text-align: left;
}

.offer-ctc-table th {
  background: #f8fafc;
  font-weight: 700;
}

.offer-seal-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px dashed #cbd5e1;
}

.offer-stamp-badge {
  border: 2px solid #10b981;
  color: #10b981;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   OFFCANVAS / DRAWER (SAVED JOBS & MOBILE MENU)
   ========================================================================== */
.offcanvas-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: var(--shadow-xl);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.offcanvas-drawer.active {
  right: 0 !important;
}

.offcanvas-header {
  padding: 18px 20px;
  background: var(--bg-card-subtle);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

/* Saved Jobs List */
.saved-job-mini-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saved-job-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.saved-job-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Toast Notifications System */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  pointer-events: auto;
  animation: slideInToast 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--brand-blue);
}

.toast.success { border-left-color: var(--success-emerald); }
.toast.info { border-left-color: var(--brand-blue); }
.toast.warning { border-left-color: var(--accent-amber); }

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0b1528;
  color: #cbd5e1;
  padding: 60px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-amber);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.86rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--accent-amber);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.86rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item i {
  color: var(--brand-blue);
  margin-top: 4px;
}

/* Visitor Counter & Copyright Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

.visitor-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-field-box:nth-child(1) {
    grid-column: 1 / -1;
  }
  .btn-search-main {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-recruit-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-call-helpline {
    display: none;
  }
  .btn-mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.col-span-2 {
    grid-column: auto;
  }
  .share-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}
