/* =====================================================
 * Aradhya Placement — Theme Stylesheet
 * Ported from the original HTML preview into a structured WP theme.
 * ===================================================== */

:root {
  --navy: #1a2d7c;
  --navy2: #14236a;
  --navy3: #0e1a54;
  --green: #3dab5e;
  --green2: #2d8f4a;
  --green3: #4ec870;
  --gold: #f5a623;
  --bg: #f0f4ff;
  --bg2: #e6eaf8;
  --white: #fff;
  --border: #d0d8f0;
  --text: #1a2040;
  --muted: #6b7aaa;
  --light: #a0aad0;
  --danger: #e84b4b;
  --r: 12px;
  --shadow: 0 4px 24px rgba(26, 45, 124, .10);
  --shadow2: 0 8px 40px rgba(26, 45, 124, .18);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: var(--navy); text-decoration: none; transition: color .2s }
a:hover { color: var(--green) }
ul { list-style: none }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--bg2) }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px }

/* ------- Buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 22px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: .84rem; font-weight: 600;
  cursor: pointer; transition: all .2s; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff }
.btn-primary:hover { background: var(--green2); transform: translateY(-1px); color: #fff }
.btn-navy { background: var(--navy); color: #fff }
.btn-navy:hover { background: var(--navy2); color: #fff }
.btn-green { background: #25D366; color: #fff }
.btn-green:hover { background: #1ebe5a; color: #fff; transform: translateY(-1px) }
.btn-gold { background: var(--gold); color: #fff; font-weight: 700 }
.btn-gold:hover { background: #e09300; transform: translateY(-1px); color: #fff }
.btn-outline-navy { background: none; border: 2px solid var(--navy); color: var(--navy) }
.btn-outline-navy:hover { background: var(--navy); color: #fff }
.btn-outline-white { background: none; border: 2px solid rgba(255, 255, 255, .5); color: #fff }
.btn-outline-white:hover { background: rgba(255, 255, 255, .15); color: #fff }
.btn-sm { padding: 7px 16px; font-size: .76rem }
.btn-lg { padding: 13px 32px; font-size: .92rem }
.btn-full { width: 100% }

/* ------- Header ------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); height: 68px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3); transition: all .3s;
}
.site-header.scrolled { height: 60px; background: rgba(14, 26, 84, .97); backdrop-filter: blur(10px) }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: transparent; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain }
.logo-text { display: flex; flex-direction: column; line-height: 1.15 }
.logo-brand { font-size: 1rem; font-weight: 800; color: #fff }
.logo-sub { font-size: .58rem; font-weight: 600; color: var(--green3); letter-spacing: 2px; text-transform: uppercase }

.nav-menu { display: flex; gap: 2px; align-items: center }
.nav-menu ul,
.nav-menu .nav-list { display: flex; gap: 2px; align-items: center; list-style: none; margin: 0; padding: 0 }
.nav-menu a {
  display: block; padding: 8px 13px;
  color: rgba(255, 255, 255, .75); font-size: .82rem; font-weight: 500;
  border-radius: 8px; transition: all .2s;
}
.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item > a {
  color: #fff; background: rgba(255, 255, 255, .12);
}

.header-cta { display: flex; gap: 8px; align-items: center }
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; background: var(--navy2); padding: 10px 0 }
.mobile-nav.open { display: block; }
.mobile-menu { list-style: none; margin: 0; padding: 0; }
.mobile-menu li a {
  display: block; padding: 12px 24px;
  color: rgba(255, 255, 255, .85); font-size: .88rem; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  text-decoration: none;
}

/* ------- Hero ------- */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 35%, #1e3d90 65%, #0a4a25 100%);
  position: relative; overflow: hidden; padding: 90px 0 70px;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 171, 94, .12), transparent 70%);
  pointer-events: none; animation: floatOrb 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 45, 124, .2), transparent 70%);
  pointer-events: none; animation: floatOrb 10s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1) }
  50% { transform: translate(20px, -20px) scale(1.05) }
}
.hero-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; position: relative; z-index: 1; width: 100% }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px; padding: 6px 18px;
  font-size: .72rem; font-weight: 600; color: #fff;
  margin-bottom: 24px; letter-spacing: .5px;
  animation: fadeInDown .6s ease both;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 14px;
  animation: fadeInUp .6s ease .1s both;
}
.hero-title span { color: var(--green3); text-shadow: 0 0 40px rgba(78, 200, 112, .3) }
.hero-sub {
  color: rgba(255, 255, 255, .72); font-size: .97rem;
  max-width: 520px; margin: 0 auto 40px; line-height: 1.75;
  animation: fadeInUp .6s ease .2s both;
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px) } to { opacity: 1; transform: translateY(0) } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }

.search-wrap { max-width: 740px; margin: 0 auto; animation: fadeInUp .6s ease .3s both }
.search-box {
  background: #fff; border-radius: 14px; padding: 6px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, .3);
}
.search-ico { padding: 0 10px; font-size: 1.1rem; color: var(--muted); flex-shrink: 0 }
.search-input {
  flex: 1; background: none; border: none;
  font-family: 'Poppins', sans-serif; font-size: .9rem; color: var(--text);
  padding: 10px 6px; outline: none; min-width: 0;
}
.search-input::placeholder { color: var(--light) }
.search-select {
  background: none; border: none; border-left: 1px solid var(--border);
  font-family: 'Poppins', sans-serif; font-size: .8rem; color: var(--muted);
  padding: 10px 12px; outline: none; cursor: pointer; max-width: 165px;
}
.popular-tags { margin-top: 14px; font-size: .74rem; color: rgba(255, 255, 255, .6) }
.popular-tags a { color: var(--green3); font-weight: 600; margin: 0 5px; transition: opacity .2s }
.popular-tags a:hover { opacity: .75 }

/* ------- Stats Bar ------- */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(26, 45, 124, .06) }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 24px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.stat-item { text-align: center }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1 }
.stat-lbl { font-size: .68rem; color: var(--muted); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px }

/* ------- Section ------- */
.section { padding: 64px 0 }
.section-bg { background: #fff }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px }
.section-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; gap: 16px }
.section-title { font-size: 1.65rem; font-weight: 800; color: var(--navy); line-height: 1.2 }
.section-title span { color: var(--green) }
.section-sub { font-size: .84rem; color: var(--muted); margin-top: 6px }

/* ------- Categories ------- */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 12px }
.cat-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 20px 14px; text-align: center; cursor: pointer;
  transition: all .25s; display: block; text-decoration: none;
}
.cat-card:hover { border-color: var(--cat-color, var(--navy)); transform: translateY(-4px); box-shadow: var(--shadow2) }
.cat-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(26, 45, 124, .08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 12px; transition: all .2s;
}
.cat-card:hover .cat-icon { transform: scale(1.1) }
.cat-name { font-size: .8rem; font-weight: 700; color: var(--text) }
.cat-count { font-size: .7rem; color: var(--muted); margin-top: 3px }

/* ------- Job Cards ------- */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 16px }
.job-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow); transition: all .25s;
  position: relative; cursor: pointer;
}
.job-card-link {
  position: absolute; inset: 0; z-index: 1;
  text-indent: -9999px; overflow: hidden;
  display: block;
}
.job-card .card-inner { position: relative; z-index: 2; pointer-events: none; }
.job-card .card-inner button,
.job-card .card-inner a { pointer-events: auto; position: relative; z-index: 3; }
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  opacity: 0; transition: opacity .25s; z-index: 4;
}
.job-card:hover { border-color: rgba(26, 45, 124, .3); transform: translateY(-4px); box-shadow: var(--shadow2) }
.job-card:hover::before { opacity: 1 }
.job-card.featured { border-color: rgba(245, 166, 35, .4) }

.card-inner { padding: 22px }
.card-header { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 14px }
.co-logo {
  width: 50px; height: 50px; border-radius: 11px;
  background: var(--bg2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0; overflow: hidden;
}
.co-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.3 }
.co-name { font-size: .76rem; color: var(--muted); font-weight: 500 }

.job-badge {
  position: absolute; top: 14px; right: 14px;
  border-radius: 5px; padding: 2px 9px;
  font-size: .63rem; font-weight: 700; letter-spacing: .3px; z-index: 4;
}
.badge-urgent { background: var(--gold); color: #fff }
.badge-featured { background: var(--navy); color: #fff }

.tags-row { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px }
.tag {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 9px;
  font-size: .68rem; font-weight: 500; color: var(--muted);
}
.tag.type    { color: var(--navy); border-color: rgba(26,45,124,.2);  background: rgba(26,45,124,.06) }
.tag.remote  { color: var(--green); border-color: rgba(61,171,94,.25); background: rgba(61,171,94,.07) }
.tag.hybrid  { color: #e67e22;     border-color: rgba(230,126,34,.25); background: rgba(230,126,34,.07) }
.tag.bpo     { color: #9b59b6;     border-color: rgba(155,89,182,.25); background: rgba(155,89,182,.07) }

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 8px;
}
.job-salary { font-size: .9rem; font-weight: 700; color: var(--green) }
.card-footer-right { display: flex; align-items: center; gap: 8px }
.openings-pill {
  font-size: .68rem; color: var(--muted); background: var(--bg2);
  border-radius: 100px; padding: 3px 9px;
}
.apply-btn {
  background: var(--navy); color: #fff; border: none;
  border-radius: 8px; padding: 7px 16px;
  font-size: .76rem; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.apply-btn:hover { background: var(--green) }
.card-time { font-size: .68rem; color: var(--light); margin-top: 6px }

/* ------- Why Section ------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px }
.why-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 28px; box-shadow: var(--shadow); transition: all .22s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow2); border-color: rgba(26, 45, 124, .2) }
.why-icon { font-size: 2rem; margin-bottom: 14px }
.why-card h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 8px }
.why-card p { font-size: .82rem; color: var(--muted); line-height: 1.7 }

/* ------- CTA Section ------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--green2));
  padding: 64px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap }
.cta-text h2 { font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 6px }
.cta-text p { color: rgba(255, 255, 255, .72); font-size: .9rem }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap }

/* ------- Footer ------- */
.site-footer { background: var(--navy3); color: rgba(255,255,255,.65); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px 0;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px }
.footer-logo { width: 44px; height: 44px; }
.footer-brand-name { font-size: 1rem; font-weight: 800; color: #fff }
.footer-brand-tag { font-size: .6rem; color: var(--green3); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase }
.footer-brand p {
  font-size: .82rem; color: rgba(255, 255, 255, .55); line-height: 1.7;
  margin-bottom: 20px;
}
.fc-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8rem; color: rgba(255, 255, 255, .65); margin-bottom: 8px;
}
.fc-item a { color: rgba(255, 255, 255, .65) }
.fc-item a:hover { color: var(--green3) }
.wa-footer-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; border-radius: 8px;
  padding: 10px 20px; font-size: .8rem; font-weight: 700;
  text-decoration: none; transition: all .2s; margin-top: 16px;
}
.wa-footer-btn:hover { background: #1ebe5a; color: #fff }

.footer-col h4 {
  font-size: .82rem; font-weight: 700; color: #fff;
  margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase;
}
.footer-menu li { margin-bottom: 6px }
.footer-menu a,
.footer-link-btn {
  font-size: .8rem; color: rgba(255, 255, 255, .55);
  text-decoration: none; transition: color .2s;
  background: none; border: none; cursor: pointer; padding: 0;
}
.footer-menu a:hover,
.footer-link-btn:hover { color: var(--green3) }
.footer-bottom { background: rgba(0, 0, 0, .2); border-top: 1px solid rgba(255, 255, 255, .05) }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; flex-wrap: wrap; gap: 8px }
.footer-bottom p { font-size: .75rem; color: rgba(255, 255, 255, .38) }

/* ------- Modals ------- */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .6); z-index: 500;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(5px); padding: 20px;
}
.modal-bg.open { display: flex }
.modal-box {
  background: #fff; border-radius: 18px; width: 100%;
  max-width: 560px; max-height: 92vh; overflow-y: auto;
  padding: 32px; box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
  position: relative; animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(20px) }
  to   { opacity: 1; transform: scale(1) translateY(0) }
}
.modal-box h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 6px }
.modal-sub { font-size: .8rem; color: var(--muted); margin-bottom: 22px }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg2); border: none; color: var(--muted);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--danger); color: #fff }

.job-applied-info { background: var(--bg2); border-radius: 10px; padding: 14px; margin-bottom: 20px }
.job-applied-info strong { font-size: .93rem; color: var(--navy); display: block; font-weight: 700 }
.job-applied-info span { font-size: .78rem; color: var(--muted) }

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.form-group { margin-bottom: 16px }
.form-group label {
  display: block; font-size: .73rem; font-weight: 700;
  color: var(--navy); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: .4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: inherit; font-size: .86rem;
  padding: 11px 14px; outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: #fff }
.form-group textarea { min-height: 80px; resize: vertical }

.file-area {
  border: 2px dashed var(--border); border-radius: 10px;
  padding: 24px; text-align: center; cursor: pointer;
  transition: all .2s; position: relative;
}
.file-area:hover { border-color: var(--navy); background: rgba(26, 45, 124, .03) }
.file-area input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100% }
.file-ui { pointer-events: none }
.file-icon-big { font-size: 1.8rem; margin-bottom: 6px }
.file-text { font-size: .8rem; color: var(--muted) }
.file-formats { font-size: .68rem; color: var(--light); margin-top: 4px }
.file-selected-name { font-size: .8rem; font-weight: 600; color: var(--green); margin-top: 4px; pointer-events: none }

.success-view { text-align: center; padding: 20px }
.success-icon { font-size: 3.5rem; margin-bottom: 12px; animation: bounceIn .5s ease }
@keyframes bounceIn { 0% { transform: scale(0) } 60% { transform: scale(1.15) } 100% { transform: scale(1) } }
.success-view h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px }
.success-view p { font-size: .83rem; color: var(--muted); margin-bottom: 20px }

/* ------- Chatbot ------- */
.chat-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 300 }
.chat-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  border: none; cursor: pointer; font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(26, 45, 124, .45);
  transition: all .3s; color: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2.5s infinite;
}
.chat-fab:hover { transform: scale(1.12) }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(26, 45, 124, .45) }
  50%      { box-shadow: 0 4px 32px rgba(26, 45, 124, .7), 0 0 0 8px rgba(26, 45, 124, .08) }
}
.chat-win {
  position: absolute; bottom: 72px; right: 0; width: 340px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 12px 50px rgba(26, 45, 124, .2);
  display: none; flex-direction: column; overflow: hidden;
  animation: modalIn .25s ease;
}
.chat-win.open { display: flex }
.chat-header { background: var(--navy); padding: 14px 18px; display: flex; align-items: center; gap: 10px }
.chat-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.chat-info strong { font-size: .83rem; color: #fff; display: block }
.chat-info span { font-size: .68rem; color: rgba(255, 255, 255, .65) }
.chat-close-x { background: none; border: none; color: rgba(255, 255, 255, .65); cursor: pointer; font-size: 1.1rem; margin-left: auto }
.chat-msgs { height: 280px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px }
.msg { max-width: 86% }
.msg.bot { align-self: flex-start }
.msg.user { align-self: flex-end }
.bubble { padding: 9px 13px; border-radius: 12px; font-size: .78rem; line-height: 1.55 }
.bot .bubble { background: var(--bg2); border: 1px solid var(--border); border-bottom-left-radius: 4px }
.user .bubble { background: var(--navy); color: #fff; border-bottom-right-radius: 4px }
.msg-time { font-size: .62rem; color: var(--light); margin-top: 3px; padding: 0 4px }
.quick-btns { padding: 8px 14px; display: flex; flex-wrap: wrap; gap: 5px; border-top: 1px solid var(--border) }
.qbtn {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 11px;
  font-size: .7rem; color: var(--muted); cursor: pointer;
  font-family: inherit; font-weight: 500; transition: all .2s;
}
.qbtn:hover { border-color: var(--navy); color: var(--navy) }
.chat-input-row { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border) }
.chat-input {
  flex: 1; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .78rem;
  padding: 8px 12px; outline: none; color: var(--text);
}
.chat-input:focus { border-color: var(--navy) }
.send-btn {
  background: var(--navy); border: none; border-radius: 8px;
  width: 36px; height: 36px; cursor: pointer;
  color: #fff; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.send-btn:hover { background: var(--green) }
.typing {
  display: flex; gap: 4px; align-items: center;
  padding: 9px 13px; background: var(--bg2);
  border-radius: 12px; border-bottom-left-radius: 4px; align-self: flex-start;
}
.typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); animation: typingDot 1.2s infinite }
.typing span:nth-child(2) { animation-delay: .2s }
.typing span:nth-child(3) { animation-delay: .4s }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0) } 30% { transform: translateY(-5px) } }

/* ------- Toast ------- */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 24px; font-size: .82rem;
  z-index: 9999; transition: transform .3s;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
  font-weight: 500; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0) }
.toast.success { border-color: var(--green); color: var(--green) }
.toast.error { border-color: var(--danger); color: var(--danger) }

/* ------- Single Job Detail ------- */
.job-detail-hero {
  background: linear-gradient(135deg, var(--navy), #1e4080);
  padding: 100px 0 48px; color: #fff;
}
.jd-top { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap }
.jd-logo {
  width: 80px; height: 80px; border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  border: 2px solid rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0;
}
.jd-info { flex: 1; min-width: 250px }
.jd-badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap }
.jd-badge { border-radius: 5px; padding: 3px 10px; font-size: .63rem; font-weight: 700; letter-spacing: .3px }
.jd-title { font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 6px }
.jd-company { color: rgba(255, 255, 255, .72); font-size: .9rem; font-weight: 600; margin-bottom: 14px }
.jd-tags { display: flex; flex-wrap: wrap; gap: 8px }
.jd-tags .tag { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .9) }
.jd-cta { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0 }
.jd-salary { font-size: 1.6rem; font-weight: 900; color: var(--green3); margin-bottom: 4px }
.jd-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding: 40px 0 }
.jd-main { display: flex; flex-direction: column; gap: 20px }
.jd-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; align-self: start }

.info-box {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px; box-shadow: var(--shadow);
}
.info-box h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px }
.info-box h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px }
.info-box h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 14px }
.highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; list-style: none }
.highlights-list li { font-size: .85rem; padding-left: 22px; position: relative; color: var(--text) }
.highlights-list li::before { content: '✅'; position: absolute; left: 0; font-size: .7rem; top: 2px }
.desc-content { font-size: .88rem; color: var(--muted); line-height: 1.8 }
.desc-content h4 { font-size: .95rem; color: var(--navy); margin: 16px 0 8px; font-weight: 700 }
.desc-content ul { padding-left: 20px; list-style: disc; margin-bottom: 12px }
.desc-content li { margin-bottom: 5px }
.skills-cloud { display: flex; flex-wrap: wrap; gap: 8px }
.skill-pill {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 14px;
  font-size: .8rem; font-weight: 600; color: var(--navy);
}
.overview-list { display: flex; flex-direction: column; gap: 10px; list-style: none }
.overview-list li {
  display: flex; justify-content: space-between;
  font-size: .82rem; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.overview-list li:last-child { border: none; padding: 0 }
.overview-list span { color: var(--muted) }
.overview-list strong { color: var(--text); text-align: right }
.cta-buttons-row { display: flex; gap: 12px; flex-wrap: wrap }

/* ------- Jobs Archive ------- */
.jobs-hero {
  background: linear-gradient(135deg, var(--navy), #1e4080);
  padding: 100px 0 40px; color: #fff;
}
.jobs-hero-title { font-size: 2rem; font-weight: 900; margin-bottom: 10px }
.jobs-hero-sub { color: rgba(255,255,255,.7); margin-bottom: 24px }
.jobs-search-box { max-width: 800px }
.jobs-search-box .search-input,
.jobs-search-box .search-select { color: var(--text) }

.quick-chips {
  padding: 10px 24px 8px; display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.quick-chips .qbtn.active-chip {
  background: var(--navy); color: #fff; border: none;
  border-radius: 8px; padding: 7px 14px;
  font-size: .76rem; font-weight: 600;
}

.jobs-archive-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 28px; padding-top: 28px; padding-bottom: 40px;
  align-items: start;
}
.jobs-archive-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px }
#jobsCount { font-size: .84rem; font-weight: 600; color: var(--muted) }
.jobs-archive-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; align-self: start }
.sidebar-cats { display: flex; flex-direction: column; gap: 2px; list-style: none }
.sidebar-cats a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px; border-radius: 8px;
  font-size: .8rem; color: var(--text); transition: all .2s;
}
.sidebar-cats a:hover { background: var(--bg2) }
.cat-pill { background: var(--bg2); border-radius: 100px; padding: 1px 8px; font-size: .68rem; font-weight: 700; color: var(--muted) }
.pagination-wrap { margin-top: 24px; display: flex; justify-content: center; }
.pagination-wrap .page-numbers {
  display: inline-block; padding: 8px 14px; margin: 0 4px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: .8rem; color: var(--text); background: #fff;
}
.pagination-wrap .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy) }

/* ------- About ------- */
.about-hero {
  background: linear-gradient(135deg, var(--navy), #1e4080);
  padding: 100px 0 70px; text-align: center; color: #fff;
}
.about-hero-logo {
  width: 70px; height: 70px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; overflow: hidden; background: transparent;
}
.about-hero-logo img { width: 100%; height: 100%; object-fit: contain }
.about-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px }
.about-hero p { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 20px; font-size: .9rem }
.about-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap }
.about-pills .pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 5px 16px;
  font-size: .72rem; font-weight: 600;
}
.about-layout {
  padding: 52px 24px; display: grid;
  grid-template-columns: 2fr 1fr; gap: 32px; align-items: start;
}
.about-main-col { display: flex; flex-direction: column; gap: 16px; }
.about-aside { display: flex; flex-direction: column; gap: 16px }
.contact-rows { font-size: .82rem; color: var(--muted); display: flex; flex-direction: column; gap: 10px }
.contact-rows a { color: var(--muted); }
.contact-rows a:hover { color: var(--green); }
.about-stats-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 14px; padding: 24px; color: #fff; text-align: center;
}
.about-stat-num { font-size: 2rem; font-weight: 900; margin-top: 14px; }
.about-stat-num:first-child { margin-top: 0; }
.about-stat-lbl { font-size: .72rem; opacity: .7; margin-bottom: 6px; }

/* Services Grid */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
}
.service-icon { font-size: 1.3rem; margin-bottom: 8px; }
.service-title { font-weight: 700; font-size: .84rem; color: var(--navy); margin-bottom: 4px; }
.service-desc { font-size: .75rem; color: var(--muted); }

/* No Jobs State */
.no-jobs-state {
  text-align: center; padding: 48px; color: var(--muted); grid-column: 1 / -1;
}
.no-jobs-state h3 { color: var(--navy); margin-bottom: 8px; }

/* ------- Contact ------- */
.contact-hero {
  background: linear-gradient(135deg, var(--navy), #1e4080);
  padding: 100px 0 60px; color: #fff;
}
.contact-hero h1 { font-size: 2rem; font-weight: 900; margin-bottom: 8px }
.contact-hero p { color: rgba(255,255,255,.7) }
.contact-layout {
  padding: 48px 24px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
.contact-blocks { display: flex; flex-direction: column; gap: 18px }
.contact-block { display: flex; gap: 14px; align-items: flex-start }
.contact-emoji { font-size: 1.3rem }
.contact-label { font-weight: 700; font-size: .86rem; color: var(--navy) }

/* ------- Mobile ------- */
@media (max-width: 768px) {
  .nav-menu,
  .header-cta .btn-outline-white { display: none }
  .mobile-toggle { display: flex }
  .jobs-grid { grid-template-columns: 1fr }
  .cats-grid { grid-template-columns: repeat(3, 1fr) }
  .why-grid { grid-template-columns: 1fr 1fr }
  .footer-top { grid-template-columns: 1fr; gap: 28px }
  .form-row2 { grid-template-columns: 1fr }
  .search-box { flex-wrap: wrap }
  .search-select { border-left: none; border-top: 1px solid var(--border); width: 100%; max-width: 100% }
  .search-box .btn { width: 100% }
  .cta-inner { flex-direction: column; text-align: center }
  .jd-layout, .jobs-archive-layout, .about-layout, .contact-layout { grid-template-columns: 1fr }
  .footer-bottom-inner { flex-direction: column; text-align: center }
  .chat-win { width: calc(100vw - 56px); right: -14px }
  .stats-inner { gap: 24px }
  .jd-top { flex-direction: column }
  .services-grid { grid-template-columns: 1fr 1fr }
  .header-cta .btn-green { font-size: .7rem; padding: 6px 12px }
}
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr) }
  .why-grid { grid-template-columns: 1fr }
  .highlights-list { grid-template-columns: 1fr }
  .services-grid { grid-template-columns: 1fr }
  .hero-title { font-size: 1.6rem; letter-spacing: -0.5px }
  .hero-sub { font-size: .85rem }
  .section-title { font-size: 1.3rem }
  .jd-title { font-size: 1.4rem }
  .stat-num { font-size: 1.4rem }
  .stats-inner { gap: 16px }
  .cta-text h2 { font-size: 1.4rem }
}


/* ═══════════════════════════════════════
   GLOBAL LOGO RECTANGLE
   Same logo & sizing used in header,
   footer-brand and about-hero.
   ═══════════════════════════════════════ */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.logo-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  overflow: hidden;
  border-radius: 6px;
  background: transparent;
}
.logo-rect .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  max-width: 100%;
}

/* Footer: let the logo-rect render at its real width (override .footer-logo 44×44 sizing). */
.site-footer .footer-brand-row .logo-wrap { line-height: 0; }
.site-footer .footer-brand-row .logo-rect {
  width: 150px;
  height: 50px;
  background: rgba(255, 255, 255, .04);
  border-radius: 8px;
  padding: 4px 6px;
}

/* About-hero: stretch the rounded box so 150×50 logo fits cleanly.
   Override the legacy 70×70 square. */
.about-hero .about-hero-logo {
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, .08);
  padding: 8px 14px;
  border-radius: 12px;
}
.about-hero .about-hero-logo .logo-rect {
  width: 170px;
  height: 56px;
  background: transparent;
}

/* Responsive — match header breakpoints. */
@media (max-width: 1024px) {
  .logo-rect { width: 130px; height: 44px; }
  .site-footer .footer-brand-row .logo-rect { width: 130px; height: 44px; }
  .about-hero .about-hero-logo .logo-rect { width: 150px; height: 50px; }
}
@media (max-width: 768px) {
  .logo-rect { width: 110px; height: 38px; }
  .site-footer .footer-brand-row .logo-rect { width: 120px; height: 40px; }
  .about-hero .about-hero-logo .logo-rect { width: 140px; height: 46px; }
}
@media (max-width: 480px) {
  .logo-rect { width: 95px; height: 32px; }
  .site-footer .footer-brand-row .logo-rect { width: 110px; height: 36px; }
  .about-hero .about-hero-logo .logo-rect { width: 130px; height: 42px; }
}
