/*
 * OdishaCareers Theme – Main Stylesheet
 * File: assets/css/theme.css
 * Enqueued via functions.php → odishacareers_assets()
 * =====================================================
 * TABLE OF CONTENTS
 *  1.  CSS Custom Properties (Design Tokens)
 *  2.  Reset & Base
 *  3.  Utility Classes (btn, badge, section-label)
 *  4.  Announcement Bar / Ticker
 *  5.  Sticky Header
 *  6.  Hero Section
 *  7.  Notifications Section
 *  8.  Job Categories
 *  9.  Featured Jobs
 * 10.  Trust / Why Choose Us
 * 11.  Testimonials
 * 12.  Footer
 * 13.  Scroll-to-top
 * 14.  Animations
 * 15.  Responsive (Tablet & Mobile)
 * =====================================================
 */

/* =============================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
============================================= */
:root {
  --clr-saffron:    #E8560A;
  --clr-saffron-lt: #FF7A38;
  --clr-saffron-dk: #B8410A;
  --clr-navy:       #0D1F3C;
  --clr-navy-lt:    #162848;
  --clr-teal:       #0A9396;
  --clr-teal-lt:    #94D2BD;
  --clr-gold:       #E9C46A;
  --clr-offwhite:   #FAF8F5;
  --clr-warm-gray:  #F0EDE8;
  --clr-text:       #1A1A2E;
  --clr-muted:      #6B7280;
  --clr-border:     #E5E1DB;

  --ff-display: 'Sora', sans-serif;
  --ff-body:    'Literata', serif;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --shadow-card: 0 2px 12px rgba(13,31,60,.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.22s ease;
}

/* =============================================
   2. RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--clr-offwhite);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-display); border: none; background: none; }
input, select { font-family: var(--ff-display); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

/* =============================================
   3. UTILITY CLASSES
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--clr-saffron);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,86,10,.35);
}
.btn-primary:hover { background: var(--clr-saffron-lt); box-shadow: 0 6px 20px rgba(232,86,10,.45); }
.btn-outline {
  background: transparent;
  color: var(--clr-navy);
  border: 1.5px solid var(--clr-border);
}
.btn-outline:hover { border-color: var(--clr-saffron); color: var(--clr-saffron); background: rgba(232,86,10,.05); }
.btn-teal {
  background: var(--clr-teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,147,150,.3);
}
.btn-teal:hover { background: #007F82; }

.badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-saffron { background: #FFF0E8; color: var(--clr-saffron); }
.badge-teal    { background: #E0F5F5; color: var(--clr-teal); }
.badge-gold    { background: #FFF8E1; color: #8B6914; }
.badge-navy    { background: var(--clr-navy); color: #fff; }

.section-label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-saffron);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--clr-saffron);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--clr-navy);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-top: 8px;
}

/* =============================================
   4. ANNOUNCEMENT BAR / TICKER
============================================= */
.announcement-bar {
  background: var(--clr-navy);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  padding: 8px 0;
  overflow: hidden;
}
/* ticker rules consolidated into section 35 below */
.ticker-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.ticker-item::before { content: '●'; color: var(--clr-gold); font-size: 0.45rem; }
.ticker-item a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* =============================================
   5. STICKY HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--clr-saffron);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 800; font-size: 1.1rem;
  color: #fff; letter-spacing: -.02em;
}
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; color: var(--clr-navy); }
.logo-text span   { font-size: 0.7rem; color: var(--clr-teal); font-family: var(--ff-display); font-weight: 600; letter-spacing: .04em; }

/* WordPress custom logo override */
.logo .custom-logo-link img { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a, .main-nav li a {
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav li a:hover,
.main-nav a.active, .main-nav li.current-menu-item > a {
  color: var(--clr-saffron);
  background: rgba(232,86,10,.06);
}
/* Remove default WP nav list styles */
.main-nav ul  { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav li  { position: relative; }

.header-cta { display: flex; gap: 8px; align-items: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius-sm); transition: background var(--transition); }
.hamburger:hover { background: var(--clr-warm-gray); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--clr-navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 69px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--clr-warm-gray); color: var(--clr-saffron); }
.mobile-cta { display: flex; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--clr-border); }
.mobile-cta .btn { flex: 1; justify-content: center; }

/* =============================================
   6. HERO SECTION
============================================= */
.hero {
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(10,147,150,.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(232,86,10,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before { content: '✦'; font-size: 0.6rem; }
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.1rem;
}
.hero h1 em { font-style: normal; color: var(--clr-saffron-lt); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-search {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 6px;
  display: flex;
  gap: 6px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}
.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--clr-warm-gray);
  border-radius: var(--radius-sm);
}
.search-field svg { flex-shrink: 0; color: var(--clr-muted); }
.search-field input {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--clr-text);
  width: 100%;
  outline: none;
}
.search-field input::placeholder { color: var(--clr-muted); }
.search-divider { width: 1px; background: var(--clr-border); align-self: stretch; margin: 4px 0; }
.hero-search .btn { white-space: nowrap; padding: 12px 24px; font-size: 0.9rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-num  { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; color: #fff; line-height: 1; }
.stat-label{ font-size: 0.78rem; color: rgba(255,255,255,.5); font-family: var(--ff-display); margin-top: 2px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  width: 100%; max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-wrap img   { width: 100%; height: 360px; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 360px;
  background: linear-gradient(135deg, var(--clr-navy-lt) 0%, rgba(10,147,150,.4) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-family: var(--ff-display);
  font-size: 0.8rem; gap: 12px; text-align: center;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-family: var(--ff-display);
}
.hero-float-card.card-a { bottom: -16px; left: -24px; display: flex; align-items: center; gap: 10px; }
.hero-float-card.card-b { top: 20px; right: -20px; text-align: right; }
.float-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 1.2rem; }
.float-icon-saffron { background: #FFF0E8; }
.float-icon-teal    { background: #E0F5F5; }
.float-card-num { font-size: 1.1rem; font-weight: 800; color: var(--clr-navy); }
.float-card-sub { font-size: 0.7rem; color: var(--clr-muted); }

/* =============================================
   7. NOTIFICATIONS SECTION
============================================= */
.notifications-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
}
.notif-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  flex-wrap: wrap; gap: 1rem;
}
.notif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.notif-card {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex; gap: 12px; align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: #fff;
}
.notif-card:hover { border-color: var(--clr-saffron); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.notif-card.urgent { border-left: 3px solid var(--clr-saffron); }
.notif-card.new    { border-left: 3px solid var(--clr-teal); }
.notif-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.notif-dot.urgent { background: var(--clr-saffron); box-shadow: 0 0 0 3px rgba(232,86,10,.15); }
.notif-dot.new    { background: var(--clr-teal);    box-shadow: 0 0 0 3px rgba(10,147,150,.15); }
.notif-body { flex: 1; min-width: 0; }
.notif-title {
  font-family: var(--ff-display);
  font-size: 0.88rem; font-weight: 600;
  color: var(--clr-navy); line-height: 1.3; margin-bottom: 4px;
}
.notif-title a { color: inherit; }
.notif-title a:hover { color: var(--clr-saffron); }
.notif-meta { font-size: 0.76rem; color: var(--clr-muted); display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--ff-display); }
.notif-deadline {
  font-family: var(--ff-display);
  font-size: 0.7rem; font-weight: 700;
  color: var(--clr-saffron); background: #FFF0E8;
  padding: 2px 8px; border-radius: 999px;
  margin-top: 6px; display: inline-block;
}

/* =============================================
   8. JOB CATEGORIES
============================================= */
.categories-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: var(--clr-warm-gray); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.cat-card {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  text-align: center; cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  display: block;
}
.cat-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--clr-saffron);
  transform: scaleX(0); transition: transform var(--transition);
}
.cat-card:hover { border-color: var(--clr-saffron); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  transition: transform var(--transition);
}
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-name  { font-family: var(--ff-display); font-size: 0.82rem; font-weight: 700; color: var(--clr-navy); line-height: 1.3; margin-bottom: 4px; }
.cat-count { font-family: var(--ff-display); font-size: 0.72rem; color: var(--clr-muted); }

/* =============================================
   9. FEATURED JOBS
============================================= */
.jobs-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: #fff; }
.jobs-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.jobs-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }
.filter-btn {
  font-family: var(--ff-display); font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 999px;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-muted); background: #fff;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--clr-navy); color: #fff; border-color: var(--clr-navy); }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}
.job-card {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.4rem; background: #fff;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.job-card:hover { border-color: rgba(13,31,60,.2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.job-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--clr-warm-gray);
  display: grid; place-items: center; font-size: 1.3rem;
  flex-shrink: 0; border: 1px solid var(--clr-border);
}
.job-card-title { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 700; color: var(--clr-navy); line-height: 1.3; margin-bottom: 3px; }
.job-dept       { font-family: var(--ff-display); font-size: 0.8rem; color: var(--clr-muted); }
.job-tags  { display: flex; gap: 6px; flex-wrap: wrap; }
.job-info  { display: flex; gap: 1rem; flex-wrap: wrap; }
.job-info-item { display: flex; align-items: center; gap: 5px; font-family: var(--ff-display); font-size: 0.78rem; color: var(--clr-muted); }
.job-info-item svg { color: var(--clr-teal); }
.job-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--clr-border);
}
.job-deadline       { font-family: var(--ff-display); font-size: 0.75rem; color: var(--clr-muted); }
.job-deadline strong{ color: var(--clr-saffron); }
.bookmark-btn {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--clr-warm-gray);
  display: grid; place-items: center; color: var(--clr-muted);
  transition: all var(--transition);
}
.bookmark-btn:hover { background: var(--clr-navy); color: #fff; }
.jobs-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* =============================================
   10. TRUST / WHY CHOOSE US
============================================= */
.trust-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  background: var(--clr-navy);
  position: relative; overflow: hidden;
}
.trust-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 70% 50%, rgba(10,147,150,.15) 0%, transparent 70%);
  pointer-events: none;
}
.trust-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.trust-left .section-label          { color: var(--clr-gold); }
.trust-left .section-label::before  { background: var(--clr-gold); }
.trust-left .section-title          { color: #fff; }
.trust-left .section-subtitle       { color: rgba(255,255,255,.6); max-width: 420px; }
.trust-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.trust-feat { display: flex; gap: 14px; align-items: flex-start; }
.trust-feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center; font-size: 1.2rem;
  flex-shrink: 0; border: 1px solid rgba(255,255,255,.1);
}
.trust-feat-text strong { display: block; font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.trust-feat-text p      { font-size: 0.84rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trust-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.trust-stat-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.trust-stat-card:first-child { background: rgba(232,86,10,.15); border-color: rgba(232,86,10,.3); }
.trust-stat-num { font-family: var(--ff-display); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; margin-bottom: 4px; }
.trust-stat-num span { color: var(--clr-saffron-lt); }
.trust-stat-label { font-family: var(--ff-display); font-size: 0.78rem; color: rgba(255,255,255,.55); }

/* =============================================
   11. TESTIMONIALS
============================================= */
.testimonials-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: var(--clr-warm-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.testi-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 1.6rem; border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi-stars  { color: var(--clr-gold); font-size: 0.85rem; margin-bottom: 10px; }
.testi-quote  { font-size: 0.9rem; color: var(--clr-text); line-height: 1.65; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--clr-warm-gray);
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.85rem;
  color: var(--clr-navy); flex-shrink: 0;
}
.testi-name { font-family: var(--ff-display); font-weight: 700; font-size: 0.85rem; color: var(--clr-navy); }
.testi-role { font-size: 0.75rem; color: var(--clr-muted); font-family: var(--ff-display); }

/* =============================================
   12. FOOTER
============================================= */
.site-footer { background: var(--clr-navy); color: rgba(255,255,255,.7); padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-mark { background: var(--clr-saffron); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--clr-saffron); border-color: var(--clr-saffron); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-family: var(--ff-display); font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: .04em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; list-style: none; margin: 0; padding: 0; }
.footer-links li a,
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,.6);
  font-family: var(--ff-display);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links li a::before,
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: opacity var(--transition), transform var(--transition); transform: translateX(-4px); }
.footer-links li a:hover,
.footer-links a:hover { color: #fff; }
.footer-links li a:hover::before,
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-newsletter h4 { font-family: var(--ff-display); font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-newsletter p  { font-size: 0.82rem; margin-bottom: 1rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 0.85rem;
  color: #fff; outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--clr-saffron); }
.newsletter-form .btn { justify-content: center; font-size: 0.85rem; }
.footer-bottom {
  padding: 1.2rem 0;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-family: var(--ff-display); font-size: 0.78rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom-links a { font-family: var(--ff-display); font-size: 0.78rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* =============================================
   13. SCROLL TO TOP
============================================= */
#scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--clr-saffron); color: #fff;
  border-radius: 10px;
  /* Explicit flex centering — overrides any GP or block-editor inheritance */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;                     /* kill any inherited padding that shifts the icon */
  line-height: 1;                 /* prevent line-height from pushing the SVG off-centre */
  box-shadow: 0 4px 14px rgba(232,86,10,.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 900; pointer-events: none;
  cursor: pointer;
  border: none;                   /* safety: no border shifting layout */
  outline-offset: 3px;
}
#scroll-top svg {
  display: block;                 /* remove inline whitespace gap */
  flex-shrink: 0;
  /* Nudge the arrow to true optical centre (SVG viewBox starts at y=5) */
  margin-top: 1px;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover   { background: var(--clr-saffron-lt); transform: translateY(-2px); }

/* =============================================
   14. ANIMATIONS
============================================= */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,86,10,.15); }
  50%       { box-shadow: 0 0 0 6px rgba(232,86,10,.05); }
}
.hero-content > * { opacity: 0; animation: fadeUp .6s ease forwards; }
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .45s; }
.hero-content > *:nth-child(5) { animation-delay: .6s; }
.notif-dot.urgent { animation: pulse 2s ease infinite; }

/* =============================================
   15. RESPONSIVE (TABLET & MOBILE)
============================================= */
@media (max-width: 960px) {
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .trust-inner  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger              { display: flex; }
  .hero-search            { flex-direction: column; }
  .search-divider         { display: none; }
  .hero-stats             { gap: 1.2rem; }
  .jobs-grid              { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr; }
  .footer-bottom          { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .notif-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .categories-grid                { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .trust-stats                    { grid-template-columns: 1fr; }
}


/* =============================================
   16. SEARCH FORM (global override)
============================================= */
.oc-search-form { width: 100%; }
.oc-search-inner {
  display: flex; gap: 8px;
  background: var(--clr-warm-gray);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 16px;
  transition: border-color var(--transition);
}
.oc-search-inner:focus-within { border-color: var(--clr-saffron); }
.oc-search-inner input[type="search"] {
  flex: 1; border: none; background: transparent;
  font-size: 0.9rem; color: var(--clr-text); outline: none;
  font-family: var(--ff-display);
}
.oc-search-inner input::placeholder { color: var(--clr-muted); }
.oc-search-inner .btn { white-space: nowrap; padding: 10px 20px; }

/* =============================================
   17. LOOP GRID (index / archive / search)
============================================= */
.oc-loop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.oc-loop-card {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.oc-loop-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loop-card-thumb { display: block; overflow: hidden; }
.loop-card-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.oc-loop-card:hover .loop-card-thumb img { transform: scale(1.04); }
.loop-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.loop-card-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.loop-card-title { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--clr-navy); line-height: 1.3; }
.loop-card-title a { color: inherit; }
.loop-card-title a:hover { color: var(--clr-saffron); }
.loop-card-meta { display: flex; gap: 12px; flex-wrap: wrap; font-family: var(--ff-display); font-size: 0.76rem; color: var(--clr-muted); }
.loop-card-meta .meta-item,
.loop-card-meta span { display: flex; align-items: center; gap: 4px; }
.loop-card-excerpt { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; flex: 1; }
.loop-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--clr-border); }
.loop-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* =============================================
   18. ARCHIVE HEADER
============================================= */
.archive-header { padding: clamp(2rem, 4vw, 3.5rem) 0 1.5rem; border-bottom: 1px solid var(--clr-border); margin-bottom: 2rem; }
.archive-description { margin-top: .5rem; }
.archive-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.2rem; }
.archive-search-bar { margin-top: 1.5rem; max-width: 560px; }

/* =============================================
   19. PAGINATION
============================================= */
.oc-pagination { margin-top: 3rem; text-align: center; }
.oc-pagination .nav-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.oc-pagination .page-numbers {
  font-family: var(--ff-display); font-size: 0.85rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text); transition: all var(--transition);
}
.oc-pagination .page-numbers:hover,
.oc-pagination .page-numbers.current { background: var(--clr-navy); color: #fff; border-color: var(--clr-navy); }

/* =============================================
   20. NO RESULTS
============================================= */
.oc-no-results { text-align: center; padding: 5rem 1rem; }
.no-results-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.oc-no-results h2 { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 800; color: var(--clr-navy); margin-bottom: .75rem; }
.oc-no-results p  { color: var(--clr-muted); max-width: 480px; margin-inline: auto; }
.no-results-cats  { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 1.2rem; }

/* =============================================
   21. 404 PAGE
============================================= */
.oc-404-page { padding: clamp(3rem, 8vw, 6rem) 0; }
.error-404-wrap { max-width: 680px; margin-inline: auto; text-align: center; }
.error-404-visual { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.error-num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(5rem, 15vw, 9rem); color: var(--clr-navy); line-height: 1; }
.error-icon { font-size: clamp(3rem, 8vw, 5.5rem); }
.error-404-content .section-title { margin-bottom: .5rem; }
.error-search { margin: 1.8rem auto; max-width: 520px; }
.error-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.error-categories { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }
.error-cat-label { font-family: var(--ff-display); font-size: .8rem; font-weight: 600; color: var(--clr-muted); margin-bottom: .5rem; width: 100%; }

/* =============================================
   22. SINGLE POST
============================================= */
.single-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: clamp(2rem,4vw,3.5rem) 0; }
.single-post-header { margin-bottom: 1.8rem; }
.single-post-cats   { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: .8rem; }
.single-post-title  { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem,3.5vw,2.4rem); color: var(--clr-navy); line-height: 1.2; margin-bottom: 1rem; }
.single-post-meta   { display: flex; gap: 1rem; flex-wrap: wrap; font-family: var(--ff-display); font-size: 0.8rem; color: var(--clr-muted); }
.single-post-meta .meta-item { display: flex; align-items: center; gap: 5px; }
.single-post-meta a { color: var(--clr-teal); }
.single-post-featured-img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2rem; }
.single-post-featured-img img { width: 100%; max-height: 480px; object-fit: cover; }
.single-post-content,
.oc-page-content    { font-size: 1rem; line-height: 1.8; color: var(--clr-text); }
.entry-content h2,
.entry-content h3   { font-family: var(--ff-display); font-weight: 700; color: var(--clr-navy); margin: 2rem 0 .75rem; }
.entry-content p    { margin-bottom: 1.2rem; }
.entry-content ul,
.entry-content ol   { margin: 0 0 1.2rem 1.5rem; }
.entry-content li   { margin-bottom: .4rem; }
.entry-content a    { color: var(--clr-teal); text-decoration: underline; text-underline-offset: 2px; }
.entry-content blockquote {
  border-left: 4px solid var(--clr-saffron);
  background: var(--clr-warm-gray);
  padding: 1rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--clr-muted);
}
.single-post-tags   { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); }
.tags-label         { font-family: var(--ff-display); font-size: .8rem; font-weight: 700; color: var(--clr-muted); }
.single-post-author-box {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--clr-warm-gray);
  border-radius: var(--radius-md);
  padding: 1.4rem; margin-top: 2rem;
}
.author-avatar img,
.author-img        { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.author-name       { display: block; font-family: var(--ff-display); font-weight: 700; color: var(--clr-navy); margin-bottom: 4px; }
.author-bio        { font-size: .88rem; color: var(--clr-muted); margin-bottom: .8rem; }
.single-post-nav   { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); }
.single-post-nav a { font-family: var(--ff-display); font-size: .88rem; font-weight: 600; color: var(--clr-navy); transition: color var(--transition); }
.single-post-nav a:hover { color: var(--clr-saffron); }

/* =============================================
   23. SIDEBAR
============================================= */
.oc-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.oc-sidebar .widget {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}
.oc-sidebar .widget-title {
  font-family: var(--ff-display); font-size: .9rem; font-weight: 700;
  color: var(--clr-navy); margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--clr-saffron);
}
.oc-sidebar ul   { list-style: none; padding: 0; margin: 0; }
.oc-sidebar li   { border-bottom: 1px solid var(--clr-border); padding: .5rem 0; font-family: var(--ff-display); font-size: .85rem; }
.oc-sidebar li:last-child { border-bottom: none; }
.oc-sidebar a    { color: var(--clr-text); transition: color var(--transition); }
.oc-sidebar a:hover { color: var(--clr-saffron); }

/* =============================================
   24. SINGLE JOB PAGE
============================================= */
.oc-breadcrumb { font-family: var(--ff-display); font-size: .8rem; color: var(--clr-muted); padding: 1rem 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.oc-breadcrumb a { color: var(--clr-teal); }
.oc-breadcrumb a:hover { text-decoration: underline; }
.single-job-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding-bottom: 4rem; }
.single-job-header { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.5rem; }
.single-job-logo   { font-size: 2.5rem; width: 64px; height: 64px; background: var(--clr-warm-gray); border-radius: var(--radius-md); display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--clr-border); }
.single-job-title  { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.4rem,3vw,2rem); color: var(--clr-navy); line-height: 1.2; }
.single-job-facts  { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.fact-item         { background: var(--clr-warm-gray); border-radius: var(--radius-md); padding: .9rem 1.1rem; display: flex; flex-direction: column; gap: 2px; }
.fact-item--urgent { background: #FFF0E8; border: 1px solid rgba(232,86,10,.2); }
.fact-icon         { font-size: 1.1rem; }
.fact-label        { font-family: var(--ff-display); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-muted); }
.fact-value        { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: var(--clr-navy); }
.fact-item--urgent .fact-value { color: var(--clr-saffron); }
.single-job-cta    { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); }
.related-jobs-box  { background: #fff; border: 1.5px solid var(--clr-border); border-radius: var(--radius-md); padding: 1.3rem; }
.related-jobs-title{ font-family: var(--ff-display); font-weight: 700; font-size: .95rem; color: var(--clr-navy); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--clr-saffron); }
.related-job-item  { display: flex; gap: 10px; align-items: center; padding: .7rem 0; border-bottom: 1px solid var(--clr-border); text-decoration: none; transition: background var(--transition); border-radius: 6px; }
.related-job-item:last-child { border-bottom: none; }
.related-job-item:hover { background: var(--clr-warm-gray); padding-inline: .5rem; }
.related-job-icon  { font-size: 1.3rem; flex-shrink: 0; }
.related-job-text  { display: flex; flex-direction: column; gap: 2px; }
.related-job-text strong { font-family: var(--ff-display); font-size: .85rem; font-weight: 600; color: var(--clr-navy); line-height: 1.3; }
.related-job-text small  { font-family: var(--ff-display); font-size: .72rem; color: var(--clr-muted); }
.single-job-widget-area { margin-top: 1.5rem; }
.bookmark-btn-lg   { font-size: .85rem; }

/* =============================================
   25. PAGE TEMPLATE
============================================= */
.oc-page-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--clr-border); }

/* =============================================
   26. COMMENT STYLES
============================================= */
.comment-respond,
.comments-area { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--clr-border); }
.comments-title,
.comment-reply-title { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; color: var(--clr-navy); margin-bottom: 1.2rem; }
.comment { padding: 1rem 0; border-bottom: 1px solid var(--clr-border); }
.comment-author .fn { font-family: var(--ff-display); font-weight: 700; font-size: .9rem; color: var(--clr-navy); }
.comment-metadata { font-family: var(--ff-display); font-size: .75rem; color: var(--clr-muted); margin: 3px 0 .6rem; }
.comment-content p { font-size: .9rem; line-height: 1.65; }
.comment-form input,
.comment-form textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm); font-family: var(--ff-display);
  font-size: .9rem; background: #fff; outline: none;
  transition: border-color var(--transition); margin-bottom: .8rem;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--clr-saffron); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .submit  { background: var(--clr-saffron); color: #fff; border: none; padding: 11px 28px; border-radius: var(--radius-sm); font-family: var(--ff-display); font-weight: 600; font-size: .875rem; cursor: pointer; transition: background var(--transition); }
.comment-form .submit:hover { background: var(--clr-saffron-lt); }

/* =============================================
   27. RESPONSIVE ADDITIONS
============================================= */
@media (max-width: 960px) {
  .single-post-layout  { grid-template-columns: 1fr; }
  .single-job-layout   { grid-template-columns: 1fr; }
  .single-job-sidebar  { order: -1; }
}
@media (max-width: 768px) {
  .oc-loop-grid         { grid-template-columns: 1fr; }
  .single-job-facts     { grid-template-columns: 1fr 1fr; }
  .single-post-author-box { flex-direction: column; }
}
@media (max-width: 480px) {
  .error-num      { font-size: 4rem; }
  .single-job-facts { grid-template-columns: 1fr; }
}


/* =============================================
   28. FOLLOW BARS  [sm_links_style1 / style2]
============================================= */
.oc-follow-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px; font-family: var(--ff-display);
}
.oc-follow-bar--compact {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: #fbfbfb;
  padding: 4px 14px;
  min-height: 42px;
}
.oc-follow-label {
  font-size: 13px; font-weight: 600;
  margin-right: 8px; color: var(--clr-text);
}
.oc-follow-icon {
  width: 30px; height: 30px;
  border-radius: 50%; background: #efefef;
  padding: 5px; object-fit: contain;
  transition: transform var(--transition);
}
.oc-follow-icon:hover { transform: scale(1.15); }

.oc-follow-bar--full {
  justify-content: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-top: 16px;
  border-bottom: 1px solid var(--clr-border);
}
.oc-follow-link {
  display: flex; align-items: center;
  text-decoration: none; color: var(--clr-text) !important;
  padding: 6px 16px;
  border: 1px solid var(--clr-border);
  background: #fbfbfb;
  border-radius: var(--radius-sm);
  gap: 10px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.oc-follow-link:hover { border-color: var(--clr-teal); box-shadow: var(--shadow-sm); }
.oc-follow-icon-lg { width: 38px; height: 38px; border-radius: 50%; background: #efefef; padding: 6px; object-fit: contain; }
.oc-follow-text { font-size: 14px; font-weight: 600; }
@media (max-width: 768px) { .hide-4-mobile { display: none !important; } }

/* =============================================
   29. FLOATING WHATSAPP / TELEGRAM BUTTONS
============================================= */
.oc-float-btn {
  display: flex; align-items: center; justify-content: center;
  position: fixed; right: -4px;
  width: 44px; height: 44px;
  border-radius: 8px 0 0 8px;
  z-index: 1000;
  box-shadow: -2px 2px 8px rgba(0,0,0,.2);
  transition: right var(--transition), box-shadow var(--transition);
}
.oc-float-btn:hover { right: 0; box-shadow: -2px 2px 14px rgba(0,0,0,.3); }
.oc-float-btn--whatsapp { background: #008f0c; bottom: calc(47% + 50px); }
.oc-float-btn--telegram  { background: #0088cc; bottom: 47%; }
.oc-float-icon { width: 28px; height: 28px; object-fit: contain; }

/* =============================================
   30. MOBILE BOTTOM NAVIGATION BAR
============================================= */
.oc-bottom-nav { display: none; }
@media (max-width: 768px) {
  .oc-bottom-nav {
    display: block;
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid #d0d0d0;
    padding: 0 10px 3px;
    box-shadow: 0 -4px 12px rgba(0,0,0,.12);
    z-index: 9999;
  }
  #bmul {
    display: flex; justify-content: space-around;
    list-style: none; margin: 6px 0 0; padding: 0;
  }
  .bml { text-align: center; flex: 1; }
  .bml a {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    text-decoration: none;
    color: #060606;
    font-family: var(--ff-display);
    font-size: 10px; font-weight: 600;
    padding: 4px 0;
  }
  .oc-bnav-icon { width: 24px; height: 24px; display: block; }
  /* Push page content up so bottom nav doesn't cover it */
  body { padding-bottom: 60px; }
}

/* =============================================
   31. AUTHOR BOX  [webinsights_author_box]
============================================= */
.oc-author-box {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  overflow: hidden;
  font-family: var(--ff-display);
}
.oc-author-box__head {
  background: #d8d8d8;
  padding: 5px 15px;
  border-radius: 0 0 6px 0;
  display: inline-block;
}
.oc-author-box__badge { font-size: 14px; font-weight: 700; color: #000; }
.oc-author-box__body {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 16px;
}
.oc-author-img { width: 80px; height: 80px; border-radius: 50%; border: 2px solid #f0f0f0; flex-shrink: 0; }
.oc-author-box__name { display: block; font-weight: 700; font-size: 0.95rem; color: var(--clr-navy); margin-bottom: 4px; }
.oc-author-box__desc { font-size: 13px; color: var(--clr-muted); line-height: 1.5; margin-bottom: 6px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.oc-author-box__more { font-size: 13px; color: var(--clr-teal); font-weight: 600; }
.oc-author-box__footer {
  background: #d8d8d8; text-align: center; font-size: 10px;
  padding: 3px; font-weight: 500; color: #000;
}
@media (max-width: 480px) { .oc-author-box__body { flex-direction: column; } }

/* =============================================
   32. ALSO READ (single inline)  [short-code1..10]
============================================= */
.oc-also-read {
  border: 1px dashed #0995D3;
  border-radius: var(--radius-sm);
  background: rgba(9,149,211,.05);
  padding: 10px;
  margin: 20px 0 14px;
  position: relative;
}
.oc-also-read::before {
  content: "Also Read";
  position: absolute; top: -11px; left: 12px;
  background: #fff; padding: 0 6px;
  font-family: var(--ff-display); font-size: 12px;
  color: #0995D3; font-weight: 600;
  border-radius: 20px;
}
.oc-also-read__link {
  display: flex; gap: 10px; align-items: center;
  text-decoration: none; color: var(--clr-text);
}
.oc-rp-img {
  width: 100px; height: auto; max-width: 150px;
  border-radius: 4px; flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.15);
}
.oc-also-read__title { font-family: var(--ff-display); font-size: 15px; font-weight: 600; line-height: 1.4; color: #333; }
@media (max-width: 768px) { .oc-rp-img { width: 80px; } .oc-also-read__title { font-size: 13px; } }

/* =============================================
   33. RELATED POSTS BOX  [Related-Posts]
============================================= */
.oc-related-box {
  border: 1px solid var(--clr-border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.oc-related-box__heading {
  background: #0995D3;
  color: #fff; margin: 0;
  padding: 9px 14px;
  font-family: var(--ff-display);
  font-size: 17px !important; font-weight: 700;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.oc-related-box__inner { padding: 10px 12px; display: flex; flex-direction: column; gap: 14px; }
.oc-related-box__item {
  display: flex; gap: 12px; align-items: center;
  text-decoration: none; color: var(--clr-text);
  transition: background var(--transition); border-radius: 4px; padding: 4px;
}
.oc-related-box__item:hover { background: var(--clr-warm-gray); }
.oc-related-box__img { width: 90px; height: auto; border-radius: 4px; flex-shrink: 0; box-shadow: 0 1px 6px rgba(0,0,0,.15); }
.oc-related-box__title { font-family: var(--ff-display); font-size: 14px; font-weight: 600; color: var(--clr-navy); line-height: 1.4; }

/* =============================================
   34. POST TAGS  [post_tags]
============================================= */
.oc-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
.oc-post-tag {
  background: #d8d8d8; color: #333;
  border-radius: 999px; padding: 5px 14px;
  text-decoration: none; font-family: var(--ff-display);
  font-size: 13px; font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.oc-post-tag:hover { background: var(--clr-navy); color: #fff; }


/* =============================================
   35. TICKER — definitive single-source rules
       .ticker-wrap  = flex container (NO overflow hidden — label must not clip)
       .ticker-label = saffron pill, flex-shrink:0, always visible on the left
       .ticker-clip  = the ONLY element with overflow:hidden — constrains the track
       .ticker-track = the infinitely scrolling row of items
============================================= */
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 10px;               /* space between pill and the clip area */
  /* NO overflow:hidden here — that would clip the pill itself */
}
.ticker-label {
  flex-shrink: 0;          /* pill NEVER shrinks or scrolls */
  position: relative;
  z-index: 2;
  background: var(--clr-saffron);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.ticker-clip {
  flex: 1;
  overflow: hidden;        /* clips ONLY the scrolling track — pill is outside this */
  position: relative;
  min-width: 0;            /* allows flex child to shrink below content size */
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;      /* wider than the clip — required for scrolling */
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }

/* =============================================
   36. HEADER NAV HOVER FIX
============================================= */
/* Explicit, high-specificity hover for GP child compatibility */
.site-header .main-nav a:hover,
.site-header .main-nav li a:hover,
.site-header .main-nav li:hover > a {
  color: var(--clr-saffron) !important;
  background: rgba(232,86,10,.08) !important;
  border-radius: var(--radius-sm);
}
/* Remove GP's potential colour override */
.site-header .main-nav a,
.site-header .main-nav li a {
  transition: color .2s ease, background .2s ease !important;
}

/* =============================================
   37. HEADER — remove CTA gap when buttons gone
============================================= */
.header-cta { display: none !important; }  /* buttons removed from PHP */
/* Ensure hamburger sits flush right */
.header-inner { justify-content: space-between; }

/* =============================================
   38. HERO SEARCH — single-field layout
============================================= */
.hero-search--single {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 6px;
}
.search-field--hero {
  flex: 1;
  background: var(--clr-warm-gray);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-field--hero input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-family: var(--ff-display);
  color: var(--clr-text);
  outline: none;
}
.search-field--hero input::placeholder { color: var(--clr-muted); }
.search-field--hero svg               { flex-shrink: 0; color: var(--clr-muted); }
.hero-search-btn {
  flex-shrink: 0;
  padding: 13px 28px;
  font-size: 0.95rem;
  background: var(--clr-saffron) !important;  /* always visible */
  color: #fff !important;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(232,86,10,.4);
}
.hero-search-btn:hover {
  background: var(--clr-saffron-lt) !important;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .hero-search--single { flex-direction: column; }
  .search-field--hero  { width: 100%; }
  .hero-search-btn     { width: 100%; justify-content: center; }
}

/* =============================================
   39. SEARCH BUTTON — global primary colour fix
       (sidebar search form + archive search)
============================================= */
.oc-search-inner .btn,
.oc-search-inner button,
.oc-search-form .btn,
.widget_search .search-submit,
input[type="submit"] {
  background: var(--clr-saffron) !important;
  color: #fff !important;
  border: none;
  cursor: pointer;
}
.oc-search-inner .btn:hover,
.oc-search-inner button:hover {
  background: var(--clr-saffron-lt) !important;
}

/* =============================================
   40. SIDEBAR REORDER — below content on mobile
       (single-post-layout is grid; sidebar comes
        second in DOM so it naturally flows below
        on small screens when grid collapses)
============================================= */
@media (max-width: 960px) {
  .single-post-layout {
    grid-template-columns: 1fr;
  }
  /* Sidebar renders after article in DOM — already correct order */
  .oc-sidebar {
    margin-top: 2rem;
    border-top: 2px solid var(--clr-border);
    padding-top: 2rem;
  }
}

/* =============================================
   41. SIDEBAR WIDGET STYLES (new manual widgets)
============================================= */
.oc-sidebar-widget {
  background: #fff;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.2rem;
}
.oc-sidebar-widget .widget-title {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--clr-saffron);
}
/* Post list */
.oc-sidebar-post-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .7rem;
}
.oc-sidebar-post-list li { border-bottom: 1px solid var(--clr-border); padding-bottom: .65rem; }
.oc-sidebar-post-list li:last-child { border-bottom: none; padding-bottom: 0; }
.oc-sidebar-post-list a {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--clr-navy);
  font-family: var(--ff-display); font-size: .83rem; font-weight: 500;
  line-height: 1.35;
  transition: color var(--transition);
}
.oc-sidebar-post-list a:hover { color: var(--clr-saffron); }
.oc-sidebar-thumb { width: 56px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.oc-sidebar-post-list small {
  display: block; font-family: var(--ff-display);
  font-size: .72rem; color: var(--clr-muted); margin-top: 2px;
}
.oc-sidebar-job-icon { font-size: 1rem; flex-shrink: 0; }
.oc-sidebar-deadline { display: block; font-family: var(--ff-display); font-size: .72rem; color: var(--clr-saffron); margin-top: 2px; }
.oc-sidebar-more {
  display: inline-block; margin-top: .8rem;
  font-family: var(--ff-display); font-size: .8rem;
  font-weight: 600; color: var(--clr-teal);
  text-decoration: none;
  transition: color var(--transition);
}
.oc-sidebar-more:hover { color: var(--clr-saffron); }
/* Plain list (archives + categories) */
.oc-sidebar-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.oc-sidebar-list li { border-bottom: 1px solid var(--clr-border); }
.oc-sidebar-list li:last-child { border-bottom: none; }
.oc-sidebar-list a {
  display: flex; justify-content: space-between;
  padding: 7px 4px;
  font-family: var(--ff-display); font-size: .83rem;
  color: var(--clr-text); text-decoration: none;
  transition: color var(--transition);
}
.oc-sidebar-list a:hover { color: var(--clr-saffron); }


/* =============================================
   42. SINGLE JOB — post-style header additions
============================================= */
.single-job-logo-inline {
  display: inline-block;
  font-size: 1.6rem;
  vertical-align: middle;
  margin-right: 10px;
  line-height: 1;
}
.single-job-dept-sub {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--clr-muted);
  margin-top: 4px;
  margin-bottom: 0;
}
/* Urgent meta item — deadline in red/saffron */
.meta-item--urgent { color: var(--clr-saffron) !important; font-weight: 600; }
.meta-item--urgent strong { color: var(--clr-saffron); }

/* =============================================
   43. FOOTER SOCIAL LINKS — SVG icon style
       (replaces text/emoji icons)
============================================= */
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.75);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}
.social-link:hover {
  background: var(--clr-saffron);
  border-color: var(--clr-saffron);
  color: #fff;
  transform: translateY(-3px);
}
.social-link svg { display: block; }


/* =============================================
   44. REMOVE MOBILE BOTTOM NAVIGATION
============================================= */
.oc-bottom-nav,
#BottomMenu {
  display: none !important;
}
/* Remove the padding-bottom that was added for the bottom nav */
@media (max-width: 768px) {
  body { padding-bottom: 0 !important; }
}

/* =============================================
   45. FOOTER — full mobile centre-alignment
============================================= */

/* Wrap the two link columns together in the grid */
.footer-links-row {
  display: contents; /* desktop: behaves as two separate grid items */
}

@media (max-width: 768px) {

  /* ── Grid: single column stack ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;              /* centre all text inside footer on mobile */
  }

  /* ── Brand column ── */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand > div:first-child { justify-content: center; }
  .footer-brand p { max-width: 100%; text-align: center; }
  .social-links { justify-content: center; }

  /* ── Quick Links + Resources side-by-side ── */
  .footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-links-row .footer-col h4 { text-align: center; }
  .footer-links-row .footer-links,
  .footer-links-row ul.footer-links { align-items: center; }
  .footer-links-row .footer-links a,
  .footer-links-row ul.footer-links li a {
    justify-content: center;
    text-align: center;
  }
  /* Hide the → arrow pseudo on mobile (looks odd when centred) */
  .footer-links-row .footer-links a::before,
  .footer-links-row ul.footer-links li a::before { display: none; }

  /* ── Newsletter column ── */
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-newsletter h4 { text-align: center; }
  .footer-newsletter p  { text-align: center; }
  .newsletter-form {
    width: 100%;
    align-items: center;
  }
  .newsletter-form input,
  .newsletter-form .btn { width: 100%; text-align: center; }
  .oc-subscribe-success { text-align: center; }

  /* ── Footer bottom bar ── */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
  }
  .footer-bottom p { text-align: center; }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
  }
}

/* =============================================
   46. NEWSLETTER SUBSCRIBE SUCCESS MESSAGE
============================================= */
.oc-subscribe-success {
  background: rgba(10,147,150,.15);
  border: 1px solid var(--clr-teal);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--clr-teal-lt);
  font-family: var(--ff-display);
  font-size: .88rem;
  font-weight: 600;
}


/* =============================================
   47. SCROLL-TO-TOP — pixel-perfect icon centering
       Root cause: SVG viewBox "0 0 24 24" with the
       chevron path sitting in the middle-lower area
       means pure flex centering leaves it visually
       slightly low. Fix: use a tighter viewBox that
       crops exactly around the chevron, so the SVG
       intrinsic bounds match the visible glyph.
       We override via CSS without touching the PHP.
============================================= */
#scroll-top {
  /* Reset everything to a known state */
  display: grid !important;           /* grid is even more predictable than flex for centering */
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 0 !important;            /* kill any text-node whitespace */
  overflow: hidden;
}
#scroll-top svg {
  display: block !important;
  margin: 0 !important;               /* remove the previous 1px nudge — grid handles it */
  width: 20px  !important;            /* slightly larger for better visual weight */
  height: 20px !important;
  flex-shrink: 0;
  /* Shift viewBox to optically centre the chevron glyph inside its 24×24 frame.
     The "M5 15 l7-7 l7 7" path draws at y≈8–15, so the glyph sits in the
     lower-centre of the canvas. A translateY of -1px corrects the optical offset. */
  transform: translateY(-1px);
  pointer-events: none;
}

/* =============================================
   48. FOOTER MOBILE — comprehensive centre-alignment
       (consolidates & strengthens previous rules)
============================================= */
@media (max-width: 768px) {

  /* Every direct child of footer gets centred text */
  .site-footer .container,
  .site-footer .footer-grid > *,
  .site-footer .footer-brand,
  .site-footer .footer-col,
  .site-footer .footer-newsletter {
    text-align: center !important;
  }

  /* Flex containers: centre their children */
  .site-footer .footer-brand {
    align-items: center !important;
  }
  .site-footer .footer-brand > div:first-child {
    justify-content: center !important;
  }

  /* Social icons row */
  .site-footer .social-links {
    justify-content: center !important;
  }

  /* Footer link lists — stack centred */
  .site-footer .footer-links,
  .site-footer ul.footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .site-footer .footer-links li,
  .site-footer ul.footer-links li {
    width: 100%;
    text-align: center !important;
  }
  .site-footer .footer-links a,
  .site-footer ul.footer-links li a {
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
  }
  /* Hide arrow pseudo (looks wrong when centred) */
  .site-footer .footer-links a::before,
  .site-footer ul.footer-links li a::before {
    display: none !important;
  }

  /* Newsletter form */
  .site-footer .footer-newsletter {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .site-footer .newsletter-form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .site-footer .newsletter-form input,
  .site-footer .newsletter-form button {
    width: 100% !important;
    text-align: center !important;
  }

  /* Footer bottom bar */
  .site-footer .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: .6rem !important;
  }
  .site-footer .footer-bottom p {
    text-align: center !important;
  }
  .site-footer .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: .6rem 1rem !important;
  }

  /* Success subscription message */
  .site-footer .oc-subscribe-success {
    text-align: center !important;
    width: 100%;
  }
}

/* =============================================
   49. WHY CHOOSE US — tighter feature layout
       The 3 client-provided features are longer
       paragraphs; give them a bit more breathing room
       and a subtle left-border accent on each card.
============================================= */
.trust-feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--clr-saffron);
  border-radius: 0 10px 10px 0;
  padding: .9rem 1.1rem .9rem 1rem;
  gap: 14px;
  transition: background .22s ease, border-color .22s ease;
}
.trust-feat:hover {
  background: rgba(255,255,255,.07);
  border-left-color: var(--clr-teal);
}
.trust-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-feat-text strong {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 5px;
}
.trust-feat-text p {
  font-size: .87rem;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
}
