/* ==========================================================================
   WAY-TO-CAREER Official Design System & Stylesheet
   Palette derived from official Logo:
   - Deep Charcoal: #1B2A38
   - Teal/Cyan Accent: #008B99 to #0FB8C7
   - Sun Gold / Amber: #F5A623 to #FFB800
   - Multi-color Gradient Accent: #FF5E14 -> #D62976 -> #962FBF
   - Backgrounds: Surface #FFFFFF, Slate #F8FAFC, Border #E2E8F0
   ========================================================================== */

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

:root {
  /* Exact 5-Swatch Palette from User */
  --palette-deep-navy: #2F4157;     /* Swatch 1: Deep Navy / Slate Blue */
  --palette-steel-blue: #577C8E;    /* Swatch 2: Steel Ocean Blue / Slate Teal */
  --palette-ice-blue: #C7D9E5;      /* Swatch 3: Soft Ice Blue / Powder Mist */
  --palette-linen: #F4EFEB;         /* Swatch 4: Warm Linen / Alabaster Cream */
  --palette-white: #FFFFFF;         /* Swatch 5: Pure White */

  /* Semantic Color Mapping */
  --color-dark: #2F4157;
  --color-dark-surface: #1F2C3A;
  --color-teal: #577C8E;
  --color-teal-light: #6E94A8;
  --color-teal-subtle: #E8F0F5;
  --color-gold: #577C8E;
  --color-gold-bright: #C7D9E5;
  --color-gold-subtle: #F4EFEB;
  --color-accent: #577C8E;
  
  /* Gradients constructed directly from the 5 palette swatches */
  --gradient-ring: linear-gradient(135deg, #577C8E 0%, #C7D9E5 50%, #2F4157 100%);
  --gradient-ring-horizontal: linear-gradient(90deg, #1F2C3A 0%, #2F4157 35%, #577C8E 70%, #2F4157 100%);
  --gradient-teal: linear-gradient(135deg, #6E94A8 0%, #577C8E 100%);
  --gradient-primary: linear-gradient(135deg, #577C8E 0%, #3D5A6A 100%);
  --gradient-gold: linear-gradient(135deg, #577C8E 0%, #2F4157 100%);
  --gradient-dark: linear-gradient(135deg, #2F4157 0%, #1F2C3A 100%);
  --gradient-banner: linear-gradient(130deg, #1F2C3A 0%, #2F4157 55%, #3D556E 100%);

  /* Backgrounds & Borders */
  --bg-body: #F4EFEB;
  --bg-surface: #FFFFFF;
  --border-subdued: #DCE5EB;
  --border-medium: #C7D9E5;
  --text-main: #2F4157;
  --text-muted: #5C7489;
  --text-light: #8FA4B4;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 3px 0 rgba(47, 65, 87, 0.06);
  --shadow-md: 0 4px 8px -1px rgba(47, 65, 87, 0.09), 0 2px 4px -2px rgba(47, 65, 87, 0.05);
  --shadow-lg: 0 10px 18px -3px rgba(47, 65, 87, 0.1), 0 4px 6px -4px rgba(47, 65, 87, 0.04);
  --shadow-xl: 0 20px 28px -5px rgba(47, 65, 87, 0.14), 0 8px 12px -6px rgba(47, 65, 87, 0.06);
  --shadow-accent: 0 10px 25px -5px rgba(87, 124, 142, 0.35);
  --shadow-ring: 0 6px 18px -3px rgba(87, 124, 142, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Official Logo Badge Styling */
.brand-logo-circle-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
  background: transparent;
  border: none;
  overflow: visible;
  padding: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.brand-logo-circle-wrap:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 18px rgba(87, 124, 142, 0.5));
}

.official-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  image-rendering: auto;
}

.brand-logo-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.08;
  margin-left: 0.95rem;
}

.brand-logo-text-col .brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--palette-deep-navy);
  letter-spacing: -0.5px;
}

.brand-logo-text-col .brand-career {
  color: #008B99;
  background: linear-gradient(135deg, #008B99 0%, #0FB8C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-logo-text-col .brand-tagline {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2.8px;
  color: var(--palette-steel-blue);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Header-Specific High-Clarity Brand Typography */
.header-brand-text {
  margin-left: 0.85rem;
}

.header-brand-text .brand-title {
  color: #FFFFFF;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-brand-text .brand-career {
  background: linear-gradient(135deg, #0FB8C7 0%, #48CAE4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-brand-text .brand-tagline {
  color: var(--palette-ice-blue);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-teal-light);
}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   Top Notification Bar / Ribbon
   ========================================================================== */
.alert-ribbon {
  background: var(--gradient-ring-horizontal);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 2px 6px rgba(47, 65, 87, 0.2);
}

.alert-ribbon .badge {
  background: var(--palette-ice-blue);
  color: var(--palette-deep-navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.alert-ribbon a {
  color: #FFFFFF;
  text-decoration: underline;
  margin-left: 0.5rem;
  font-weight: 700;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.97); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(47, 65, 87, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(87, 124, 142, 0.3) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 0.6rem 0;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo svg {
  height: 44px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  order: 3;
}

/* Mobile Menu Toggle Button (Hidden on Desktop) */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  cursor: pointer;
  padding: 0;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 70;
  outline: none;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.hamburger-box {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}

.mobile-menu-btn.open .hamburger-line.top {
  transform: translateY(6.75px) rotate(45deg);
}

.mobile-menu-btn.open .hamburger-line.mid {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.open .hamburger-line.bot {
  transform: translateY(-6.75px) rotate(-45deg);
}

/* Main Header Navigation Bar */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
  order: 2;
  margin-left: auto;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.cat-link svg {
  stroke: currentColor;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}

.cat-link:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cat-link:hover svg {
  stroke: currentColor;
}

.cat-link.active {
  background: #FFFFFF;
  color: var(--palette-deep-navy);
  border-color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.cat-link.active svg {
  stroke: var(--palette-deep-navy) !important;
}

/* ==========================================================================
   Hero Section & Multi-Filter Bar
   ========================================================================== */
.hero-portal {
  background: var(--gradient-banner);
  color: #FFFFFF;
  padding: 8.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-portal-home {
  padding: 9.5rem 0 4.5rem;
}

.hero-portal-job,
.hero-portal-category {
  padding: 8.5rem 0 3rem;
  margin-bottom: 2rem;
}

/* Hero Typography */
.hero-main-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-job-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.4px;
  word-break: break-word;
}

.hero-category-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.hero-subtext {
  color: var(--palette-ice-blue);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

/* Hero Search Bar Component */
.hero-search-box {
  background: #FFFFFF;
  border-radius: 9999px;
  padding: 6px 8px 6px 22px;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  max-width: 680px;
  margin: 0 auto;
  transition: all 0.25s ease;
}

.hero-search-box:focus-within {
  box-shadow: 0 20px 45px -6px rgba(15, 23, 42, 0.38), 0 0 0 3px rgba(72, 202, 228, 0.35);
  border-color: #0FB8C7;
  transform: translateY(-2px);
}

.hero-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}

.hero-search-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-search-icon {
  color: #64748B;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.hero-search-box:focus-within .hero-search-icon {
  color: #0FB8C7;
}

.hero-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 500;
  color: #1E293B;
  font-family: inherit;
  line-height: 1.5;
  padding: 0.5rem 0;
}

.hero-search-input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.hero-search-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 120px;
  padding: 0.72rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #1B2A38, #2F4157);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(27, 42, 56, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero-search-btn:hover {
  background: linear-gradient(135deg, #0FB8C7, #1B2A38);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 184, 199, 0.35);
  color: #FFFFFF;
}

.hero-search-btn:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero-search-box {
    border-radius: 18px;
    padding: 6px 6px 6px 14px;
  }
  .hero-search-btn {
    min-width: auto;
    padding: 0.6rem 1.1rem;
    font-size: 0.86rem;
  }
  .hero-search-input {
    font-size: 0.9rem;
  }
}

.breadcrumbs-hero {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
  line-height: 1.4;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.hero-job-meta {
  display: flex;
  gap: 1.25rem;
  color: var(--palette-ice-blue);
  font-size: 0.92rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-portal::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 124, 142, 0.35) 0%, rgba(199, 217, 229, 0.15) 50%, transparent 70%);
  pointer-events: none;
}

.hero-portal::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: 8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 217, 229, 0.2) 0%, rgba(47, 65, 87, 0.3) 50%, transparent 70%);
  pointer-events: none;
}

.hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(199, 217, 229, 0.15);
  border: 1px solid rgba(199, 217, 229, 0.35);
  backdrop-filter: blur(8px);
  color: var(--palette-ice-blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.hero-title span {
  background: linear-gradient(90deg, #C7D9E5 0%, #A5C4D8 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #C7D9E5;
  max-width: 650px;
  margin: 0 auto;
}

/* Hero Filter Box */
.filter-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  color: var(--text-main);
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-subdued);
  margin-top: -1.5rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr 1.2fr auto;
  gap: 1rem;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.filter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-input-wrap input,
.filter-input-wrap select {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-main);
  background: #FFFFFF;
  outline: none;
  transition: all 0.2s ease;
}

.filter-input-wrap input:focus,
.filter-input-wrap select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 139, 153, 0.12);
}

.filter-icon {
  position: absolute;
  left: 0.75rem;
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.btn-filter-submit {
  background: var(--gradient-teal);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  align-self: flex-end;
  box-shadow: 0 4px 12px rgba(0, 139, 153, 0.3);
}

.btn-filter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 139, 153, 0.4);
}

/* Batch Quick Pills */
.batch-pills-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subdued);
  flex-wrap: wrap;
}

.batch-pills-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.batch-pill {
  font-size: 0.74rem;
  font-weight: 650;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  background: var(--bg-body);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.25;
}

.batch-pill:hover, .batch-pill.active {
  background: var(--color-teal);
  color: #FFFFFF;
  border-color: var(--color-teal);
  transform: translateY(-1px);
}

/* ==========================================================================
   Featured Drives Carousel / Grid
   ========================================================================== */
.section-padding {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-title .indicator {
  width: 10px;
  height: 24px;
  border-radius: 4px;
  background: var(--gradient-ring);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.featured-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subdued);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-ring);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-teal);
}

.featured-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.company-logo-wrap {
  height: 42px;
  max-width: 110px;
  display: flex;
  align-items: center;
}

.badge-urgent {
  background: var(--palette-deep-navy);
  color: var(--palette-ice-blue);
  border: 1px solid var(--palette-steel-blue);
  font-size: 0.62rem;
  font-weight: 750;
  padding: 0.08rem 0.42rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  box-shadow: 0 1px 3px rgba(47, 65, 87, 0.15);
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-item svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subdued);
}

.salary-tag {
  font-weight: 800;
  color: var(--color-teal);
  font-size: 0.95rem;
}

.btn-card-apply {
  background: var(--color-dark);
  color: #FFFFFF;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.btn-card-apply:hover {
  background: var(--color-teal);
  color: #FFFFFF;
}

/* ==========================================================================
   Main Portal Layout (Feed + Right Rail Sidebar)
   ========================================================================== */
.portal-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

/* Portal Section Shared Header (Equal Level Alignment for Feed & Sidebar) */
.portal-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  margin-bottom: 1rem;
}

.portal-section-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* Job Feed Cards (findmyjobss style) */
.job-feed-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.job-card-feed {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.25rem 1.65rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr 145px;
  gap: 1.5rem;
  align-items: center;
  height: 180px;
  box-sizing: border-box;
  overflow: hidden;
}

.job-card-feed:hover {
  border-color: #CBD5E1;
  box-shadow: 0 12px 28px -4px rgba(47, 65, 87, 0.12);
  transform: translateY(-2px);
}

.job-card-feed .logo-box {
  width: 140px;
  height: 90px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
  overflow: hidden;
}

.job-card-feed .logo-box img {
  max-width: 90%;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

.job-card-feed-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  height: 100%;
}

.job-card-top-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
}

.job-pill-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  flex-wrap: nowrap;
}

.company-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.96rem;
  color: #0F172A;
  letter-spacing: -0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-batch {
  background: #F1F5F9;
  color: #334155;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 180px;
}

.badge-exp {
  background: #F8FAFC;
  color: #64748B;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 160px;
}

.badge-urgent {
  display: none !important;
}

.job-card-feed-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin: 0;
  height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-feed-title a {
  color: #0F172A;
  text-decoration: none;
  transition: color 0.18s ease;
}

.job-card-feed-title a:hover {
  color: var(--color-teal);
}

.job-card-salary-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.salary-prefix {
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
}

.feed-salary {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0F766E;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card-feed-details {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card-feed-details .meta-sep {
  color: #CBD5E1;
  font-weight: bold;
}

/* Dedicated Fixed Right Action Column */
.job-card-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 145px;
}

.btn-view-drive {
  width: 100%;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 9px;
  background: #2F4157;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(47, 65, 87, 0.15);
  transition: all 0.2s ease;
}

.btn-view-drive:hover {
  color: #FFFFFF;
  background: #1B2A38;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(47, 65, 87, 0.25);
}

/* ==========================================================================
   Right Rail Sidebar
   ========================================================================== */
.sidebar-widget {
  background: #FFFFFF;
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* Sidebar Ad Widget - Clean Borderless Container */
.sidebar-ad-widget {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Sidebar Increased Length (Height) Banner */
.sidebar-rect-ad-img {
  width: 100%;
  height: 260px;
  min-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sidebar-rect-banner-link:hover .sidebar-rect-ad-img {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--palette-deep-navy) !important;
  background: var(--palette-linen);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar-cat-link:hover {
  background: var(--palette-ice-blue);
  color: var(--palette-deep-navy) !important;
  border-color: var(--palette-steel-blue);
  transform: translateX(3px);
}

.sidebar-cat-link .cat-arrow {
  color: var(--palette-steel-blue);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.sidebar-cat-link:hover .cat-arrow {
  transform: translateX(2px);
}

/* ==========================================================================
   Blog-Style Sidebar Widgets (Latest Posts, Archives, Categories)
   ========================================================================== */
.sidebar-section-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--palette-deep-navy);
  margin-top: 1.75rem;
  margin-bottom: 0.95rem;
  line-height: 1.25;
}

.sidebar-section-title:first-child {
  margin-top: 0;
}

.sidebar-text-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sidebar-text-link {
  color: #0284C7;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-block;
}

.sidebar-text-link:hover {
  color: #0369A1;
  text-decoration: underline;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border-subdued);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--color-teal);
}

/* Trending List Widget */
.trending-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subdued);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trending-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-teal);
  line-height: 1;
  min-width: 20px;
}

.trending-info h4 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.trending-item:hover .trending-info h4 {
  color: var(--color-teal);
}

.trending-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Community Box Widget */
.community-card {
  background: var(--gradient-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 139, 153, 0.4) 0%, transparent 70%);
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.community-card p {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-bottom: 1.2rem;
}

.community-btns {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.community-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ==========================================================================
   INDIVIDUAL JOB ARTICLE PAGE BLUEPRINT (findmyjobss format)
   ========================================================================== */
.job-article-page {
  padding: 2rem 0 4rem;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-teal);
}

.breadcrumbs .separator {
  color: var(--text-light);
}

.breadcrumbs .current {
  color: var(--color-dark);
  font-weight: 600;
}

/* Article Header & Metadata Card */
.job-header-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.job-header-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-ring);
}

.job-main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.job-meta-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subdued);
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  color: var(--text-muted);
  border: 1px solid var(--border-subdued);
  line-height: 1.25;
}

.meta-badge.highlight {
  background: var(--color-gold-subtle);
  color: #B45309;
  border-color: #FDE68A;
  font-weight: 700;
}

.meta-badge.teal {
  background: var(--color-teal-subtle);
  color: var(--color-teal);
  border-color: #B2EBF2;
  font-weight: 700;
}

/* Social Share Bar */
.social-share-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  color: #FFFFFF;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.telegram { background: #0088CC; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy { background: var(--color-dark); cursor: pointer; border: none; }

.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Sticky Quick Links / Table of Contents */
.toc-box {
  background: #F8FAFC;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.25rem;
}

.toc-header {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.6rem;
  list-style: none;
}

.toc-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.toc-links a:hover {
  background: var(--color-teal-subtle);
  color: var(--color-teal);
  padding-left: 0.75rem;
}

/* Fast-Facts / Overview Table (findmyjobss format) */
.article-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 100px;
}

.article-section-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.article-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-subdued);
  margin-left: 0.5rem;
}

/* Table Design */
.fast-facts-table-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.fast-facts-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fast-facts-table tr {
  border-bottom: 1px solid var(--border-subdued);
}

.fast-facts-table tr:last-child {
  border-bottom: none;
}

.fast-facts-table tr:nth-child(even) {
  background-color: #F8FAFC;
}

.fast-facts-table th {
  width: 32%;
  padding: 0.95rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  background: #F1F5F9;
  border-right: 1px solid var(--border-subdued);
  vertical-align: top;
}

.fast-facts-table td {
  padding: 0.95rem 1.25rem;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
}

.fast-facts-table td strong {
  color: var(--color-teal);
  font-weight: 700;
}

/* Company Overview Block */
.about-company-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.about-company-logo {
  width: 110px;
  height: 70px;
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: #FFFFFF;
  flex-shrink: 0;
}

.about-company-text p {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.65;
}

/* Responsibilities & Skills List (Teal bullet points) */
.custom-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.custom-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.55;
}

.bullet-icon {
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Eligibility Criteria Checklist (Green/Teal checkmarks) */
.checklist-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subdued);
  border-left: 4px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.checklist-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.check-icon {
  background: #E0F2FE;
  color: #0284C7;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Visual Selection / Interview Process Pipeline */
.selection-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-teal);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Action & Application Zone (findmyjobss CTA Banner)
   ========================================================================== */
.application-zone {
  background: var(--gradient-dark);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.application-zone::before {
  content: '';
  position: absolute;
  top: -2px; bottom: -2px; left: -2px; right: -2px;
  background: var(--gradient-ring);
  border-radius: inherit;
  z-index: -1;
}

.app-zone-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.app-zone-header h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.app-zone-header p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.app-btn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.btn-official-apply {
  background: linear-gradient(135deg, #C7D9E5 0%, #F4EFEB 100%);
  color: #2F4157;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(47, 65, 87, 0.25);
  transition: all 0.2s ease;
  border: 1px solid #FFFFFF;
}

.btn-official-apply:hover {
  color: #1F2C3A;
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(199, 217, 229, 0.4);
}

.btn-zone-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.btn-zone-whatsapp:hover {
  color: #FFFFFF;
  background: #20BD5A;
  transform: translateY(-2px);
}

.btn-zone-telegram {
  background: #0088CC;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.btn-zone-telegram:hover {
  color: #FFFFFF;
  background: #0077B5;
  transform: translateY(-2px);
}

/* Disclaimer Block */
.disclaimer-card {
  background: #FFFFFF;
  border: 1px solid var(--palette-ice-blue);
  border-left: 4px solid var(--palette-steel-blue);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--palette-deep-navy);
  line-height: 1.55;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.disclaimer-card svg {
  flex-shrink: 0;
  color: var(--palette-steel-blue);
}

/* ==========================================================================
   Live Autocomplete Dropdown Modal
   ========================================================================== */
.search-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19, 31, 43, 0.65);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 1rem;
}

.search-modal-backdrop.open {
  display: flex;
}

.search-modal {
  background: #FFFFFF;
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-modal-input-bar {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subdued);
  gap: 1rem;
}

.search-modal-input-bar input {
  width: 100%;
  border: none;
  font-size: 1.15rem;
  color: var(--color-dark);
  outline: none;
}

.search-modal-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 0.75rem 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.15s ease;
  border-bottom: 1px solid #F1F5F9;
}

.search-result-item:hover, .search-result-item.selected {
  background: var(--color-teal-subtle);
}

.search-result-item .item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.search-result-item .item-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-dark-surface);
  color: #CBD5E1;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  color: #94A3B8;
  max-width: 320px;
}

/* Footer Social Community Icons (Icon-only, not buttons) */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social-icon.icon-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.footer-social-icon.icon-telegram {
  background: #0088CC;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-teal);
}

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-teal-light);
  padding-left: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .portal-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 0.65rem 0;
  }

  .brand-logo-circle-wrap {
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    background: transparent;
  }

  .official-logo-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .header-brand-text {
    margin-left: 0.65rem;
  }

  .header-brand-text .brand-title {
    font-size: 1.25rem;
  }

  .header-brand-text .brand-tagline {
    font-size: 0.56rem;
    letter-spacing: 1.5px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Keep page buttons inside the mobile dropdown menu */
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    width: auto;
    background: rgba(47, 65, 87, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(199, 217, 229, 0.3);
    border-radius: var(--radius-lg);
    padding: 0.85rem;
    flex-direction: column;
    gap: 0.45rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    z-index: 100;
  }

  .main-nav.mobile-open {
    display: flex;
    animation: mobileMenuFadeIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav .cat-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
    transition: all 0.2s ease;
  }

  .main-nav .cat-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(3px);
  }

  .main-nav .cat-link.active {
    background: #FFFFFF;
    color: var(--palette-deep-navy);
    border-color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  .main-nav .cat-link.active svg {
    stroke: var(--palette-deep-navy);
  }

  .hero-portal {
    padding: 6.75rem 0 2.5rem;
  }

  .hero-portal-job,
  .hero-portal-category {
    padding: 6.75rem 0 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-job-title {
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
  }

  .hero-main-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.55rem;
  }

  .hero-category-title {
    font-size: 1.6rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
  }

  .breadcrumbs-hero {
    font-size: 0.78rem;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
  }

  .hero-badge-row {
    gap: 0.5rem;
    margin-bottom: 0.65rem;
  }

  .hero-job-meta {
    gap: 0.6rem 1.15rem;
    font-size: 0.85rem;
  }
}

@keyframes mobileMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Official Job Announcement Posters Showcase
   ========================================================================== */
.posters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Continuous Right-to-Left Scrolling Posters Marquee
   ========================================================================== */
.posters-marquee-section {
  position: relative;
  padding: 2.25rem 0 1rem;
  overflow: hidden;
}

.marquee-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(87, 124, 142, 0.12);
  color: var(--palette-steel-blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(87, 124, 142, 0.25);
  letter-spacing: 0.2px;
}

.marquee-live-indicator .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: marqueePulse 1.8s infinite;
}

@keyframes marqueePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.posters-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.6rem 0 1.25rem;
  mask-image: linear-gradient(to right, transparent 0%, black 2.5%, black 97.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2.5%, black 97.5%, transparent 100%);
}

.posters-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  user-select: none;
}

.posters-marquee-group {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
  animation: scrollRightToLeft 42s linear infinite;
  will-change: transform;
}

.posters-marquee-wrapper:hover .posters-marquee-group {
  animation-play-state: paused;
}

@keyframes scrollRightToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1.25rem));
  }
}

.posters-marquee-group .poster-card {
  width: 275px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.posters-marquee-group .poster-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -6px rgba(47, 65, 87, 0.25);
  border-color: var(--palette-steel-blue);
}

@media (max-width: 768px) {
  .posters-marquee-group .poster-card {
    width: 240px;
  }
  .posters-marquee-group {
    animation-duration: 32s;
  }
}

.poster-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -8px rgba(47, 65, 87, 0.22);
  border-color: var(--palette-steel-blue);
}

.poster-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--palette-deep-navy);
  overflow: hidden;
}

.poster-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.poster-card:hover .poster-card-img-wrap img {
  transform: scale(1.04);
}

.poster-card-badge-overlay {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(47, 65, 87, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.3px;
  border: 1px solid rgba(199, 217, 229, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.poster-card-badge-overlay .dot-pulse {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
}

.poster-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.poster-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--palette-steel-blue);
}

.poster-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--palette-deep-navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-card-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.poster-info-chip {
  background: var(--palette-linen);
  color: var(--palette-deep-navy);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.16rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subdued);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.25;
}

.poster-card-footer {
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border-subdued);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.poster-card-salary {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--palette-steel-blue);
}

.poster-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 750;
  color: #FFFFFF;
  background: var(--palette-steel-blue);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.poster-card:hover .poster-card-cta {
  background: var(--palette-deep-navy);
}

/* Detail Page Poster Showcase Box */
.detail-poster-showcase {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  overflow: hidden;
}

.detail-poster-header {
  background: linear-gradient(135deg, var(--palette-deep-navy) 0%, #3D556E 100%);
  color: #FFFFFF;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-poster-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}

.detail-poster-img-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(47, 65, 87, 0.25);
  border: 1px solid var(--border-medium);
}

.detail-poster-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-poster-points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.poster-point-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--palette-deep-navy);
  line-height: 1.45;
}

.poster-point-row svg {
  color: var(--palette-steel-blue);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ==========================================================================
   WAY-TO-CAREER Promotional In-Article Running Ads & Banners
   ========================================================================== */
.careerzaa-promo-banner,
.portal-ad-runner {
  position: relative;
  margin: 1.85rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px -4px rgba(17, 27, 38, 0.28);
  border: 1px solid rgba(87, 124, 142, 0.32);
  background: #111A26;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.careerzaa-promo-banner:hover,
.portal-ad-runner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(17, 27, 38, 0.36);
  border-color: var(--color-teal);
}

.careerzaa-banner-link,
.ad-slide {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 0;
  position: relative;
  cursor: pointer;
}

.careerzaa-banner-link img,
.ad-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 280;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* Ad Badge Pill */
.ad-tag-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 25, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 9px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  font-family: var(--font-body);
}

.ad-tag-text {
  font-size: 0.64rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-teal);
  padding: 1px 5px;
  border-radius: 4px;
}

.ad-tag-plan {
  font-size: 0.70rem;
  font-weight: 700;
  color: #FFB800;
  letter-spacing: 0.02em;
}

/* Ad Carousel Slides */
.ad-slides-container {
  position: relative;
  width: 100%;
  min-height: 120px;
}

.ad-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Ad Dot Navigation */
.ad-dots-wrap {
  position: absolute;
  bottom: 9px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.ad-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: all 0.22s ease;
}

.ad-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.ad-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--color-teal);
}

/* ==========================================================================
   ₹149 / Month Subscription Modal Styling
   ========================================================================== */
.sub-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 18, 28, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sub-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.sub-modal-card {
  position: relative;
  background: linear-gradient(160deg, #182838 0%, #131E2B 100%);
  color: #FFFFFF;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 184, 199, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(15, 184, 199, 0.15);
  padding: 2.25rem 2rem 2rem;
  overflow: hidden;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-modal-backdrop.open .sub-modal-card {
  transform: scale(1) translateY(0);
}

.sub-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sub-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.sub-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(15, 184, 199, 0.18);
  border: 1px solid rgba(15, 184, 199, 0.45);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #5CE1E6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.sub-modal-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.sub-modal-desc {
  font-size: 0.88rem;
  color: #C3DAE9;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.sub-pricing-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 184, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  text-align: center;
}

.sub-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.sub-currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFB800;
}

.sub-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.sub-period {
  font-size: 1rem;
  font-weight: 600;
  color: #FFB800;
}

.sub-guarantee {
  font-size: 0.78rem;
  color: #E2EEF8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.sub-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.sub-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.sub-feat-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.sub-feature-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.sub-feature-item p {
  font-size: 0.78rem;
  color: #A6C2D6;
  line-height: 1.35;
  margin: 0;
}

.btn-sub-proceed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #0FB8C7 0%, #008B99 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 99px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(15, 184, 199, 0.4);
  transition: all 0.22s ease;
}

.btn-sub-proceed:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 184, 199, 0.55);
  filter: brightness(1.08);
}

.sub-secure-note {
  text-align: center;
  font-size: 0.75rem;
  color: #8FA4B4;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .posters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .posters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-poster-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand-logo-circle-wrap {
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    background: transparent;
  }

  .official-logo-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .posters-grid {
    grid-template-columns: 1fr;
  }

  .cat-link {
    padding: 0.36rem 0.75rem;
    font-size: 0.78rem;
  }

  .hero-portal {
    padding: 9.75rem 0 2.25rem;
  }

  .hero-portal-job,
  .hero-portal-category {
    padding: 9.75rem 0 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-job-title {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .hero-main-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .hero-category-title {
    font-size: 1.45rem;
  }

  .job-card-feed {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.35rem;
    gap: 1rem;
    align-items: stretch;
    min-height: auto;
    height: auto !important;
  }

  .job-card-feed-title {
    height: auto !important;
    display: block !important;
    margin: 0.15rem 0 !important;
  }

  .job-card-top-row,
  .job-pill-row,
  .job-card-salary-line,
  .job-card-feed-details {
    flex-wrap: wrap !important;
    white-space: normal !important;
  }

  .badge-batch,
  .badge-exp,
  .company-tag,
  .feed-salary {
    max-width: none !important;
    white-space: normal !important;
  }

  .job-card-feed .logo-box {
    width: 110px;
    height: 75px;
    padding: 8px 12px;
    margin: 0 auto;
    align-self: center;
  }

  .job-card-feed .logo-box img {
    max-height: 58px;
    margin: 0 auto;
  }

  .job-card-feed-content {
    width: 100%;
    height: auto !important;
  }

  .job-card-action {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #F1F5F9;
  }

  .job-card-action .btn-view-drive {
    width: 100%;
    justify-content: center;
    padding: 0.58rem 1.2rem;
    font-size: 0.86rem;
  }

  .feed-salary {
    font-size: 0.92rem;
    font-weight: 800;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-rail {
    margin-top: 1.5rem;
  }

  .sidebar-widget {
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .fast-facts-table th {
    width: 38%;
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }

  .fast-facts-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .about-company-box {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .about-company-logo {
    margin-bottom: 0.5rem;
  }

  .btn-official-apply {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center;
  }

  .selection-pipeline {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-card {
    padding: 0.85rem;
  }

  .detail-poster-body {
    padding: 1rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.45rem 0;
    min-height: 58px;
  }

  .brand-logo-circle-wrap {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .header-brand-text {
    margin-left: 0.55rem;
  }

  .header-brand-text .brand-title {
    font-size: 1.12rem;
  }

  .header-brand-text .brand-tagline {
    font-size: 0.52rem;
    letter-spacing: 1.2px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.65rem;
  }

  .hero-portal {
    padding: 6.25rem 0 1.75rem;
  }

  .hero-portal-job,
  .hero-portal-category {
    padding: 6.25rem 0 1.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-job-title {
    font-size: 1.22rem;
    line-height: 1.35;
  }

  .hero-main-title {
    font-size: 1.35rem;
  }

  .hero-category-title {
    font-size: 1.25rem;
  }

  .hero-subtext {
    font-size: 0.86rem;
    margin-bottom: 1rem;
  }

  .hero-badge-row .badge-urgent,
  .hero-badge-row .badge-batch {
    font-size: 0.68rem;
    padding: 0.18rem 0.5rem;
  }

  .job-pill-row {
    gap: 0.25rem;
  }

  .job-card-feed-title {
    font-size: 0.95rem;
  }

  .job-card-feed-details {
    font-size: 0.74rem;
  }

  .feed-salary {
    font-size: 0.88rem;
  }

  .btn-view-drive {
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.25;
  }
}

/* ==========================================================================
   Blog-Style Sidebar Rail (Latest Posts, Archives, Categories)
   ========================================================================== */
.sidebar-section-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1E293B;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.sidebar-text-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sidebar-text-list li {
  margin: 0;
  padding: 0;
  line-height: 1.45;
}

.sidebar-text-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: #0284C7;
  text-decoration: none;
  line-height: 1.45;
  display: inline-block;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}

.sidebar-text-link:hover {
  color: #0369A1;
  text-decoration: underline;
}

/* ==========================================================================
   WAY-TO-CAREER Official AI Career & Chart Bot Widget (Circular WhatsApp style)
   ========================================================================== */
.ai-chat-launcher {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #00F2FE, #0072FF) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 10px 28px rgba(0, 114, 255, 0.45), 0 0 25px rgba(0, 242, 254, 0.5) !important;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-launcher:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 14px 34px rgba(0, 114, 255, 0.6), 0 0 35px rgba(0, 242, 254, 0.75) !important;
}

.ai-launcher-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50% !important;
  border: 2.5px solid #00F2FE;
  opacity: 0;
  animation: aiPulseRing 2.2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

@keyframes aiPulseRing {
  0% { transform: scale(0.92); opacity: 0.85; }
  50% { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.ai-launcher-icon-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.ai-sparkle-icon {
  width: 30px;
  height: 30px;
  stroke: #FFFFFF;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

/* Floating AI Chat Window */
.ai-chat-modal {
  position: fixed;
  bottom: 86px;
  right: 24px;
  width: 410px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 110px);
  background: #0B1120;
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 242, 254, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9995;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 0.26s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Header */
.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-header-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ai-avatar-wrap {
  position: relative;
  width: 38px;
  height: 38px;
}

.ai-avatar-core {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, #00F2FE, #0072FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.35);
}

.ai-status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #0F172A;
}

.ai-header-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF;
}

.ai-pro-badge {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: #00F2FE;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.ai-header-tagline {
  font-size: 0.72rem;
  color: #94A3B8;
  font-weight: 500;
}

.ai-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ai-btn-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Chat Messages Stream */
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 5px;
}
.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}

.ai-msg {
  display: flex;
  gap: 10px;
  max-width: 90%;
  animation: aiMsgFadeIn 0.25s ease forwards;
}

@keyframes aiMsgFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-msg-bot {
  align-self: flex-start;
}

.ai-msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00F2FE, #0072FF);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 242, 254, 0.25);
}

.ai-msg-user .ai-msg-avatar {
  background: #334155;
  color: #E2E8F0;
}

.ai-msg-body {
  display: flex;
  flex-direction: column;
}

.ai-msg-content {
  padding: 11px 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  border-radius: 14px;
  word-break: break-word;
}

.ai-msg-bot .ai-msg-content {
  background: #131E32;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #E2E8F0;
  border-top-left-radius: 3px;
}

.ai-msg-bot .ai-msg-content p {
  margin: 0 0 0.5rem 0;
}
.ai-msg-bot .ai-msg-content p:last-child {
  margin-bottom: 0;
}

.ai-msg-user .ai-msg-content {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: #FFFFFF;
  border-top-right-radius: 3px;
  font-weight: 500;
}

.ai-msg-time {
  font-size: 0.65rem;
  color: #64748B;
  margin-top: 3px;
  padding: 0 4px;
}

.ai-msg-user .ai-msg-time {
  text-align: right;
}

.ai-features-bullet {
  margin: 0.5rem 0 0 0;
  padding-left: 1.15rem;
  color: #CBD5E1;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Typing Indicator */
.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #131E32;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border-top-left-radius: 3px;
  width: fit-content;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00F2FE;
  animation: aiTypingBounce 1.4s infinite ease-in-out;
}
.ai-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes aiTypingBounce {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Visual Interactive Chart Widget */
.ai-chart-card {
  margin-top: 10px;
  background: rgba(10, 18, 35, 0.95);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 12px;
  padding: 13px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ai-chart-head {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 8px;
}

.ai-chart-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.86rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chart-tag {
  font-size: 0.65rem;
  color: #00F2FE;
  background: rgba(0, 242, 254, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.ai-chart-sub {
  font-size: 0.72rem;
  color: #94A3B8;
  margin-top: 2px;
}

.ai-chart-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ai-chart-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ai-chart-row-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: #E2E8F0;
}

.ai-chart-row-val {
  color: #94A3B8;
  font-size: 0.72rem;
}

.ai-chart-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.ai-chart-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

/* Job Cards inside AI Chat */
.ai-jobs-stream {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-job-item {
  display: block;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  transition: all 0.18s ease;
}

.ai-job-item:hover {
  border-color: #00F2FE;
  background: rgba(14, 30, 52, 0.95);
  transform: translateX(3px);
}

.ai-job-company {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00F2FE;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ai-job-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 2px 0 6px 0;
  line-height: 1.3;
}

.ai-job-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
}

.ai-job-salary {
  color: #10B981;
  font-weight: 700;
}

.ai-job-cta {
  color: #94A3B8;
  font-weight: 600;
}
.ai-job-item:hover .ai-job-cta {
  color: #00F2FE;
}

/* Action CTA inside bot */
.ai-bot-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #00F2FE, #0072FF);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.3);
  transition: all 0.18s ease;
}

.ai-bot-action-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Quick Prompts Bar */
.ai-quick-prompts {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  overflow-x: auto;
  white-space: nowrap;
  background: #0D1527;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-quick-prompts::-webkit-scrollbar {
  height: 0px;
}

.ai-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 9999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.ai-chip:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: #00F2FE;
  color: #00F2FE;
}

/* Chat Input Bar */
.ai-chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #0B1120;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-input {
  flex: 1;
  background: #151F33;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 9px 16px;
  color: #FFFFFF;
  font-size: 0.84rem;
  outline: none;
  transition: all 0.18s ease;
}

.ai-chat-input::placeholder {
  color: #64748B;
  font-size: 0.8rem;
}

.ai-chat-input:focus {
  border-color: #00F2FE;
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.18);
  background: #18243C;
}

.ai-chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00F2FE, #0072FF);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.35);
  transition: all 0.18s ease;
}

.ai-chat-send-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.ai-chat-send-btn:active {
  transform: scale(0.96);
}

@media (max-width: 640px) {
  .ai-chat-launcher {
    bottom: 16px;
    right: 16px;
    padding: 6px 12px 6px 8px;
  }
  .ai-chat-modal {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 85vh;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }
}

/* ==========================================================================
   AJAX "Load More" Button & Infinite Pagination Styles
   ========================================================================== */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 0.5rem;
  width: 100%;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #FFFFFF;
  color: var(--palette-deep-navy, #1A2530);
  border: 1.5px solid var(--border-medium, #D1DFEA);
  padding: 0.78rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 37, 48, 0.05);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-load-more:hover {
  background: var(--palette-deep-navy, #1A2530);
  color: #FFFFFF;
  border-color: var(--palette-deep-navy, #1A2530);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 37, 48, 0.16);
}

.btn-load-more:hover svg {
  transform: translateY(2px);
}

.btn-load-more:active {
  transform: translateY(0);
}

.btn-load-more:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.btn-load-more-spinner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-load-more-icon {
  transition: transform 0.2s ease;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 0.85s linear infinite;
}

.load-more-end {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  background: #FFFFFF;
  color: var(--palette-steel-blue, #577C8E);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  border: 1px solid var(--border-subdued, #E2EBF1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-card-entering {
  animation: cardFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   Modern Pagination Component Styles
   ========================================================================== */
.pagination-wrapper {
  margin: 2.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pagination-info {
  font-size: 0.88rem;
  color: var(--text-muted, #5A6D7C);
  font-weight: 500;
  text-align: center;
}

.pagination-info strong {
  color: var(--palette-deep-navy, #1A2530);
  font-weight: 700;
}

.pagination-page-tag {
  margin-left: 0.4rem;
  color: var(--palette-steel-blue, #577C8E);
  font-weight: 600;
}

.pagination-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.85rem;
  border-radius: 10px;
  background: #FFFFFF;
  color: var(--palette-deep-navy, #1A2530);
  border: 1.5px solid var(--border-medium, #D1DFEA);
  font-family: var(--font-heading, sans-serif);
  font-size: 0.90rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(26, 37, 48, 0.04);
  user-select: none;
}

.page-btn:hover:not(.disabled):not(.active):not(.ellipsis) {
  background: var(--palette-ice-blue, #EBF3F8);
  border-color: var(--palette-steel-blue, #577C8E);
  color: var(--palette-steel-blue, #577C8E);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(87, 124, 142, 0.15);
}

.page-btn.active {
  background: var(--palette-deep-navy, #1A2530);
  border-color: var(--palette-deep-navy, #1A2530);
  color: #FFFFFF;
  font-weight: 800;
  cursor: default;
  box-shadow: 0 4px 12px rgba(26, 37, 48, 0.2);
}

.page-btn.prev-btn,
.page-btn.next-btn {
  gap: 0.45rem;
  padding: 0 1.15rem;
  font-weight: 700;
}

.page-btn.disabled {
  opacity: 0.45;
  background: #F8FAFC;
  border-color: #E2E8F0;
  color: #94A3B8;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.page-btn.ellipsis {
  background: transparent;
  border: none;
  color: var(--text-muted, #5A6D7C);
  box-shadow: none;
  cursor: default;
  min-width: 28px;
  font-size: 1rem;
  letter-spacing: 2px;
}

@media (max-width: 540px) {
  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
    padding: 0 0.65rem;
  }
  .page-btn.prev-btn,
  .page-btn.next-btn {
    padding: 0 0.85rem;
  }
  .pagination-page-tag {
    display: block;
    margin-top: 0.2rem;
    margin-left: 0;
  }
}
