/* =========================================================
   ABC Manpower Pvt. Ltd. — Global Stylesheet
   Author : Webhouse Nepal
   Stack  : HTML5 + Bootstrap 5 + CSS3 + jQuery
   ---------------------------------------------------------
   1.  Design tokens
   2.  Base & typography
   3.  Buttons & badges
   4.  Utilities / section furniture
   5.  Topbar & header
   6.  Hero
   7.  Job search bar
   8.  Cards (service / job / country / blog / notice / team)
   9.  Sections (about, why us, process, partners, testimonial)
   10. Page header & breadcrumb
   11. Forms
   12. Footer
   13. Back to top & helpers
   14. Responsive
   ========================================================= */

/* ============ 1. DESIGN TOKENS ============ */
:root{
  --navy-900:#061a33;
  --navy-800:#0a2547;
  --navy-700:#0f3059;
  --navy-600:#164073;
  --navy-500:#1d5390;
  --teal-600:#0c8f8f;
  --teal-500:#12a6a6;
  --teal-400:#2bbdbd;
  --teal-50:#e9f7f7;

  --ink:#1b2733;
  --ink-soft:#5a6a7a;
  --ink-mute:#8494a5;

  --line:#e4eaf1;
  --line-soft:#eef2f7;
  --bg:#ffffff;
  --bg-alt:#f5f8fc;
  --bg-navy-soft:#eef3fa;

  --amber:#f0a500;
  --green:#1a9e5f;
  --red:#d64545;

  --radius-sm:8px;
  --radius:12px;
  --radius-lg:18px;
  --radius-xl:26px;

  --shadow-xs:0 1px 2px rgba(11,37,71,.05);
  --shadow-sm:0 2px 10px rgba(11,37,71,.06);
  --shadow-md:0 10px 30px rgba(11,37,71,.09);
  --shadow-lg:0 24px 60px rgba(11,37,71,.14);

  --ff-head:'Plus Jakarta Sans','Segoe UI',system-ui,-apple-system,sans-serif;
  --ff-body:'Inter','Segoe UI',system-ui,-apple-system,sans-serif;

  --header-h:78px;
  --ease:cubic-bezier(.4,0,.2,1);
}

/* ============ 2. BASE & TYPOGRAPHY ============ */
*{ -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; scroll-padding-top:100px; }
body{
  font-family:var(--ff-body);
  font-size:15.5px;
  line-height:1.75;
  color:var(--ink-soft);
  background:var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{
  font-family:var(--ff-head);
  color:var(--navy-800);
  font-weight:700;
  line-height:1.24;
  letter-spacing:-.02em;
}
h1,.h1{ font-size:clamp(2rem,4.4vw,3.35rem); font-weight:800; }
h2,.h2{ font-size:clamp(1.6rem,3vw,2.4rem); }
h3,.h3{ font-size:clamp(1.25rem,2vw,1.6rem); }
h4,.h4{ font-size:1.16rem; }
h5,.h5{ font-size:1.02rem; }
p{ margin-bottom:1rem; }
a{ color:var(--navy-600); text-decoration:none; transition:color .25s var(--ease); }
a:hover{ color:var(--teal-600); }
img{ max-width:100%; height:auto; }
ul{ padding-left:1.1rem; }
::selection{ background:var(--navy-700); color:#fff; }

.lead-sm{ font-size:1.03rem; color:var(--ink-soft); }
.text-navy{ color:var(--navy-800)!important; }
.text-teal{ color:var(--teal-600)!important; }
.text-soft{ color:var(--ink-soft)!important; }
.text-mute2{ color:var(--ink-mute)!important; }
.fw-800{ font-weight:800!important; }

/* ============ 3. BUTTONS & BADGES ============ */
.btn{
  font-family:var(--ff-head);
  font-weight:600;
  font-size:.94rem;
  letter-spacing:.01em;
  border-radius:var(--radius-sm);
  padding:.72rem 1.5rem;
  border:1px solid transparent;
  transition:all .28s var(--ease);
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
}
.btn:focus{ box-shadow:0 0 0 .2rem rgba(18,166,166,.25); }
.btn i{ font-size:1rem; }

.btn-primary{ background:var(--navy-700); border-color:var(--navy-700); color:#fff; }
.btn-primary:hover,.btn-primary:focus{ background:var(--navy-900); border-color:var(--navy-900); color:#fff; transform:translateY(-2px); box-shadow:var(--shadow-md); }

.btn-accent{ background:var(--teal-500); border-color:var(--teal-500); color:#fff; }
.btn-accent:hover,.btn-accent:focus{ background:var(--teal-600); border-color:var(--teal-600); color:#fff; transform:translateY(-2px); box-shadow:0 10px 26px rgba(12,143,143,.32); }

.btn-outline-navy{ background:transparent; border-color:#c9d6e6; color:var(--navy-700); }
.btn-outline-navy:hover{ background:var(--navy-700); border-color:var(--navy-700); color:#fff; }

.btn-light-soft{ background:#fff; border-color:#fff; color:var(--navy-800); }
.btn-light-soft:hover{ background:var(--teal-500); border-color:var(--teal-500); color:#fff; transform:translateY(-2px); }

.btn-ghost-white{ background:transparent; border-color:rgba(255,255,255,.45); color:#fff; }
.btn-ghost-white:hover{ background:#fff; border-color:#fff; color:var(--navy-800); }

.btn-lg{ padding:.92rem 1.9rem; font-size:1rem; }
.btn-sm{ padding:.48rem 1rem; font-size:.85rem; }
.btn-pill{ border-radius:60px; }

.link-arrow{
  font-family:var(--ff-head); font-weight:600; font-size:.9rem;
  color:var(--navy-700); display:inline-flex; align-items:center; gap:.42rem;
}
.link-arrow i{ transition:transform .28s var(--ease); }
.link-arrow:hover{ color:var(--teal-600); }
.link-arrow:hover i{ transform:translateX(4px); }

.chip{
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.76rem; font-weight:600; font-family:var(--ff-head);
  padding:.28rem .68rem; border-radius:60px; line-height:1.5;
}
.chip-teal{ background:var(--teal-50); color:var(--teal-600); }
.chip-navy{ background:var(--bg-navy-soft); color:var(--navy-600); }
.chip-amber{ background:#fdf3dd; color:#96660a; }
.chip-green{ background:#e6f6ee; color:#137a49; }
.chip-red{ background:#fdeaea; color:#b32d2d; }
.chip-line{ background:#fff; border:1px solid var(--line); color:var(--ink-soft); }

/* ============ 4. UTILITIES / SECTION FURNITURE ============ */
.section{ padding:88px 0; }
.section-sm{ padding:62px 0; }
.section-alt{ background:var(--bg-alt); }
.section-navy{ background:var(--navy-800); color:rgba(255,255,255,.78); }
.section-navy h1,.section-navy h2,.section-navy h3,.section-navy h4{ color:#fff; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:var(--ff-head); font-weight:700; font-size:.76rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--teal-600);
  margin-bottom:.85rem;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--teal-500); border-radius:2px; }
.eyebrow-center{ justify-content:center; }
.eyebrow-center::after{ content:""; width:26px; height:2px; background:var(--teal-500); border-radius:2px; }
.section-navy .eyebrow{ color:var(--teal-400); }
.section-navy .eyebrow::before,.section-navy .eyebrow::after{ background:var(--teal-400); }

.section-head{ max-width:660px; margin-bottom:52px; }
.section-head.text-center{ margin-left:auto; margin-right:auto; }
.section-head p{ margin-bottom:0; }

.divider-line{ height:1px; background:var(--line); border:0; opacity:1; }

.img-cover{ width:100%; height:100%; object-fit:cover; display:block; }
.ratio-photo{ position:relative; overflow:hidden; border-radius:var(--radius); }

.shape-blob{
  position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; z-index:0; pointer-events:none;
}

/* scroll reveal */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease),transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ============ 5. TOPBAR & HEADER ============ */
.topbar{
  background:var(--navy-900); color:rgba(255,255,255,.72);
  font-size:.82rem; padding:.5rem 0;
}
.topbar a{ color:rgba(255,255,255,.72); }
.topbar a:hover{ color:#fff; }
.topbar .tb-item{ display:inline-flex; align-items:center; gap:.42rem; }
.topbar .tb-item i{ color:var(--teal-400); font-size:.95rem; }
.topbar .tb-sep{ width:1px; height:14px; background:rgba(255,255,255,.18); display:inline-block; }
.topbar-social a{
  width:26px; height:26px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); transition:all .25s var(--ease);
}
.topbar-social a:hover{ background:var(--teal-500); color:#fff; transform:translateY(-2px); }

.site-header{
  background:#fff; border-bottom:1px solid var(--line-soft);
  position:sticky; top:0; z-index:1030;
  transition:box-shadow .3s var(--ease),padding .3s var(--ease);
}
.site-header.is-stuck{ box-shadow:0 6px 26px rgba(11,37,71,.09); }
.navbar{ padding:0; min-height:var(--header-h); }
.navbar-brand img{ height:46px; width:auto; }
.navbar .nav-link{
  font-family:var(--ff-head); font-weight:600; font-size:.92rem;
  color:var(--navy-800); padding:.6rem .78rem!important;
  position:relative; letter-spacing:-.005em;
}
.navbar .nav-link::after{
  content:""; position:absolute; left:.78rem; right:.78rem; bottom:.28rem;
  height:2px; background:var(--teal-500); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease);
}
.navbar .nav-link:hover,.navbar .nav-item.active > .nav-link{ color:var(--teal-600); }
.navbar .nav-item.active > .nav-link::after,.navbar .nav-link:hover::after{ transform:scaleX(1); }
.navbar .dropdown-toggle::after{ display:none; }
.navbar .nav-caret{
  font-size:.66rem; margin-left:.1rem; vertical-align:.06em; opacity:.65;
  display:inline-block; transition:transform .28s var(--ease),opacity .28s var(--ease);
}
.navbar .nav-link:hover .nav-caret,
.navbar .dropdown.show > .nav-link .nav-caret,
.navbar .nav-item.active > .nav-link .nav-caret{ opacity:1; }
.navbar .dropdown.show > .nav-link .nav-caret{ transform:rotate(180deg); }
.navbar .dropdown-item{ position:relative; }
.navbar .dropdown-menu{
  border:1px solid var(--line-soft); border-radius:var(--radius);
  box-shadow:var(--shadow-md); padding:.5rem; margin-top:.35rem; min-width:236px;
}
/* invisible bridge across the gap between the nav item and its menu, so moving
   the pointer down to the menu does not count as leaving the dropdown */
.navbar .dropdown-menu::before{
  content:""; position:absolute; left:0; right:0; top:-.6rem; height:.6rem;
}
.navbar .dropdown-item{
  font-size:.9rem; font-weight:500; border-radius:var(--radius-sm);
  padding:.5rem .75rem; color:var(--ink-soft);
}
.navbar .dropdown-item:hover,.navbar .dropdown-item:focus{ background:var(--bg-alt); color:var(--navy-700); }
.navbar-toggler{ border:1px solid var(--line); border-radius:var(--radius-sm); padding:.4rem .6rem; }
.navbar-toggler:focus{ box-shadow:none; }
.navbar-toggler i{ font-size:1.35rem; color:var(--navy-800); vertical-align:middle; }

.header-cta{ display:flex; align-items:center; gap:.6rem; }
.header-phone{ display:flex; align-items:center; gap:.6rem; }
.header-phone .hp-ico{
  width:40px; height:40px; border-radius:50%; background:var(--teal-50);
  color:var(--teal-600); display:flex; align-items:center; justify-content:center; font-size:1.05rem;
}
.header-phone small{ display:block; font-size:.7rem; color:var(--ink-mute); letter-spacing:.06em; text-transform:uppercase; line-height:1.4; }
.header-phone strong{ font-family:var(--ff-head); font-size:.95rem; color:var(--navy-800); white-space:nowrap; }
.header-cta .btn{ white-space:nowrap; }

/* ============ 6. HERO ============ */
.hero{
  position:relative; background:var(--navy-900); overflow:hidden;
  padding:120px 0 128px; display:flex; align-items:center; min-height:640px;
}

/* --- full-bleed auto-playing background slider --- */
.hero-slider{ position:absolute; inset:0; z-index:0; }
.hero-slider .carousel-inner,
.hero-slider .carousel-item{ height:100%; }
.hero-slider .carousel-item img{
  width:100%; height:100%; object-fit:cover; object-position:center 40%;
}
/* slow zoom-out (Ken Burns) on whichever slide is showing.
   Duration is tuned to the 6s carousel interval + the 1.1s fade, so each
   slide finishes settling just as the next one takes over. */
.hero-slider .carousel-item.active img{
  animation:heroZoomOut 7s ease-out both;
}
@keyframes heroZoomOut{
  from{ transform:scale(1.16); }
  to  { transform:scale(1); }
}
.hero-slider .carousel-item{ transition:opacity 1.1s ease-in-out; }

/* dark on the left for the copy, clear on the right so the photo reads */
.hero::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(90deg,
    rgba(4,20,40,.95) 0%,
    rgba(5,23,45,.91) 26%,
    rgba(6,26,51,.74) 44%,
    rgba(6,26,51,.34) 64%,
    rgba(6,26,51,.06) 100%);
}
/* a soft vertical wash so the top nav and bottom edge stay grounded */
.hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(to bottom,
    rgba(4,20,40,.5) 0%, rgba(4,20,40,0) 28%,
    rgba(4,20,40,0) 68%, rgba(4,20,40,.45) 100%);
}
.hero > .container{ position:relative; z-index:2; }

/* slider dots */
.hero-dots{ z-index:3; left:0; right:0; bottom:0; margin:0 0 30px; justify-content:center; }
.hero-dots button{
  width:30px; height:4px; border-radius:4px; border:0; opacity:.45;
  background:#fff; transition:all .3s var(--ease);
  box-shadow:0 1px 6px rgba(2,12,26,.55);
}
.hero-dots button:hover{ opacity:.8; }
.hero-dots button.active{ opacity:1; background:var(--teal-400); width:46px; }

.hero-badge{
  display:inline-flex; align-items:center; gap:.55rem;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  color:#fff; font-size:.8rem; font-weight:600; font-family:var(--ff-head);
  padding:.42rem 1rem; border-radius:60px; margin-bottom:1.4rem;
  backdrop-filter:blur(6px);
}
.hero-badge i{ color:var(--teal-400); }
.hero h1{ color:#fff; margin-bottom:1.1rem; text-shadow:0 2px 24px rgba(2,12,26,.45); }
.hero h1 .accent{ color:var(--teal-400); position:relative; white-space:nowrap; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:2rem; margin-bottom:2.6rem; }
.hero-stats{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.5rem 2rem; max-width:480px;
}
.hero-stats .hs-num{
  font-family:var(--ff-head); font-size:1.9rem; font-weight:800; color:#fff; line-height:1.1;
}
.hero-stats .hs-num span{ color:var(--teal-400); }
.hero-stats .hs-lbl{ font-size:.82rem; color:rgba(255,255,255,.72); letter-spacing:.03em; }

@media (prefers-reduced-motion:reduce){
  .hero-slider .carousel-item.active img{ animation:none; }
  .hero-slider .carousel-item{ transition:none; }
}

/* trust strip */
.trust-strip{ background:#fff; border-bottom:1px solid var(--line-soft); }
.trust-item{ display:flex; align-items:center; gap:.85rem; padding:22px 0; }
.trust-item i{ font-size:1.55rem; color:var(--teal-500); }
.trust-item strong{ display:block; font-family:var(--ff-head); font-size:.97rem; color:var(--navy-800); line-height:1.35; }
.trust-item small{ font-size:.8rem; color:var(--ink-mute); }

/* ============ 7. JOB SEARCH BAR ============ */
.searchbar-wrap{ position:relative; z-index:5; margin-top:-58px; }
.searchbar{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:26px 26px 22px; border:1px solid var(--line-soft);
}
.searchbar h5{ margin-bottom:1.1rem; font-size:1.06rem; }
.searchbar .form-label{
  font-family:var(--ff-head); font-size:.78rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--ink-mute); margin-bottom:.35rem;
}
.search-tags{ margin-top:1rem; font-size:.84rem; color:var(--ink-mute); }
.search-tags a{
  display:inline-block; background:var(--bg-alt); border:1px solid var(--line-soft);
  padding:.2rem .7rem; border-radius:60px; font-size:.8rem; margin:.2rem .18rem 0 0; color:var(--ink-soft);
}
.search-tags a:hover{ background:var(--navy-700); border-color:var(--navy-700); color:#fff; }

/* ============ 8. CARDS ============ */
.card-plain{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  transition:transform .32s var(--ease),box-shadow .32s var(--ease),border-color .32s var(--ease);
  height:100%;
}
.card-plain:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:#d5e1ee; }

/* service */
.service-card{ padding:32px 28px; position:relative; overflow:hidden; }
.service-card .sc-ico{
  width:58px; height:58px; border-radius:15px; background:var(--bg-navy-soft); color:var(--navy-600);
  display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin-bottom:1.25rem;
  transition:all .32s var(--ease);
}
.service-card:hover .sc-ico{ background:var(--navy-700); color:#fff; transform:rotate(-6deg); }
.service-card h4{ margin-bottom:.6rem; }
.service-card h4 a{ color:var(--navy-800); }
.service-card h4 a:hover{ color:var(--teal-600); }
.service-card p{ font-size:.93rem; margin-bottom:1rem; }
.service-card .sc-num{
  position:absolute; right:16px; top:6px; font-family:var(--ff-head); font-weight:800;
  font-size:3.6rem; color:var(--line-soft); line-height:1; z-index:0; user-select:none;
}
.service-card > *{ position:relative; z-index:1; }

/* job card */
.job-card{ padding:24px; display:flex; flex-direction:column; gap:1rem; }
.job-card .jc-top{ display:flex; gap:1rem; align-items:flex-start; }
.job-card .jc-logo{
  width:56px; height:56px; border-radius:13px; flex:0 0 auto; background:var(--bg-alt);
  border:1px solid var(--line-soft); display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-head); font-weight:800; color:var(--navy-600); font-size:1.1rem;
}
.job-card h4{ font-size:1.08rem; margin-bottom:.28rem; }
.job-card h4 a{ color:var(--navy-800); }
.job-card h4 a:hover{ color:var(--teal-600); }
.job-card .jc-emp{ font-size:.86rem; color:var(--ink-mute); display:flex; align-items:center; gap:.4rem; }
.job-meta{ display:flex; flex-wrap:wrap; gap:.5rem .95rem; font-size:.85rem; color:var(--ink-soft); }
.job-meta span{ display:inline-flex; align-items:center; gap:.36rem; }
.job-meta i{ color:var(--teal-500); font-size:.95rem; }
.job-card .jc-foot{
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  border-top:1px dashed var(--line); padding-top:.95rem; margin-top:auto;
}
.job-card .jc-salary{ font-family:var(--ff-head); font-weight:700; color:var(--navy-800); font-size:.98rem; }
.job-card .jc-salary small{ font-weight:500; color:var(--ink-mute); font-size:.76rem; }
.job-card.is-urgent{ border-color:#f6d9d9; }

/* country card */
.country-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; display:block;
  aspect-ratio:3/3.5; box-shadow:var(--shadow-sm);
}
.country-card img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.country-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(6,26,51,.92) 8%,rgba(6,26,51,.45) 45%,rgba(6,26,51,.05) 100%);
}
.country-card:hover img{ transform:scale(1.08); }
.cc-body{ position:absolute; left:0; right:0; bottom:0; padding:22px 20px; z-index:2; color:#fff; }
.cc-body h4{ color:#fff; font-size:1.14rem; margin-bottom:.2rem; }
.cc-body .cc-jobs{ font-size:.85rem; color:rgba(255,255,255,.75); }
.cc-body .cc-link{
  margin-top:.85rem; font-size:.84rem; font-weight:600; font-family:var(--ff-head); color:var(--teal-400);
  display:inline-flex; align-items:center; gap:.35rem; opacity:0; transform:translateY(8px);
  transition:all .35s var(--ease);
}
.country-card:hover .cc-link{ opacity:1; transform:none; }
.cc-flag{
  position:absolute; top:16px; left:16px; z-index:2; background:rgba(255,255,255,.94);
  border-radius:8px; padding:.22rem .6rem; font-size:.74rem; font-weight:700;
  font-family:var(--ff-head); color:var(--navy-800); letter-spacing:.04em;
}

/* blog card */
.blog-card{ overflow:hidden; display:flex; flex-direction:column; }
.blog-card .bc-img{ aspect-ratio:16/10; overflow:hidden; }
.blog-card .bc-img img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.blog-card:hover .bc-img img{ transform:scale(1.07); }
.blog-card .bc-body{ padding:22px; display:flex; flex-direction:column; flex:1; }
.blog-card .bc-meta{ font-size:.79rem; color:var(--ink-mute); display:flex; gap:.85rem; margin-bottom:.6rem; }
.blog-card h4{ font-size:1.04rem; margin-bottom:.5rem; }
.blog-card h4 a{ color:var(--navy-800); }
.blog-card h4 a:hover{ color:var(--teal-600); }
.blog-card p{ font-size:.9rem; margin-bottom:1rem; }
.blog-card .bc-body .link-arrow{ margin-top:auto; }

/* notice */
.notice-item{
  display:flex; gap:1.1rem; padding:18px 20px; background:#fff;
  border:1px solid var(--line); border-radius:var(--radius); margin-bottom:.85rem;
  transition:all .3s var(--ease);
}
.notice-item:hover{ border-color:#cddcec; box-shadow:var(--shadow-sm); transform:translateX(4px); }
.notice-date{
  flex:0 0 62px; text-align:center; background:var(--navy-800); color:#fff;
  border-radius:10px; padding:.5rem .2rem; height:fit-content;
}
.notice-date .nd-day{ font-family:var(--ff-head); font-size:1.3rem; font-weight:800; line-height:1; display:block; }
.notice-date .nd-mon{ font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; opacity:.75; }
.notice-item h5{ font-size:1rem; margin-bottom:.3rem; }
.notice-item h5 a{ color:var(--navy-800); }
.notice-item h5 a:hover{ color:var(--teal-600); }
.notice-item p{ font-size:.87rem; margin-bottom:.5rem; }

/* team */
.team-card{ overflow:hidden; text-align:center; }
.team-card .tc-img{ aspect-ratio:1/1.05; overflow:hidden; position:relative; }
.team-card .tc-img img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.team-card:hover .tc-img img{ transform:scale(1.06); }
.tc-social{
  position:absolute; left:0; right:0; bottom:14px; display:flex; justify-content:center; gap:.4rem;
  opacity:0; transform:translateY(12px); transition:all .35s var(--ease);
}
.team-card:hover .tc-social{ opacity:1; transform:none; }
.tc-social a{
  width:32px; height:32px; border-radius:50%; background:#fff; color:var(--navy-700);
  display:flex; align-items:center; justify-content:center; font-size:.9rem; box-shadow:var(--shadow-sm);
}
.tc-social a:hover{ background:var(--teal-500); color:#fff; }
.team-card .tc-body{ padding:18px 16px 22px; }
.team-card h5{ margin-bottom:.15rem; font-size:1.02rem; }
.team-card .tc-role{ font-size:.84rem; color:var(--teal-600); font-weight:600; font-family:var(--ff-head); }
.team-card p{ font-size:.86rem; margin:.6rem 0 0; }

/* document card */
.doc-card{ display:flex; align-items:center; gap:1rem; padding:20px; }
.doc-card .dc-ico{
  width:48px; height:48px; border-radius:11px; display:flex; align-items:center; justify-content:center;
  font-size:1.35rem; background:#fdeaea; color:#c23b3b; flex:0 0 auto;
}
.doc-card .dc-ico.is-doc{ background:var(--bg-navy-soft); color:var(--navy-600); }
.doc-card h5{ font-size:.98rem; margin-bottom:.15rem; }
.doc-card small{ font-size:.79rem; color:var(--ink-mute); }

/* ============ 9. SECTIONS ============ */
/* about visual */
.about-visual{ position:relative; padding-bottom:36px; padding-right:36px; }
.about-visual .av-main{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:4/3.4; }
.about-visual .av-main img{ width:100%; height:100%; object-fit:cover; }
.about-visual .av-sub{
  position:absolute; right:0; bottom:0; width:46%; border-radius:var(--radius);
  overflow:hidden; border:6px solid #fff; box-shadow:var(--shadow-md); aspect-ratio:4/3;
}
.about-visual .av-sub img{ width:100%; height:100%; object-fit:cover; }
.exp-badge{
  position:absolute; left:-14px; top:26px; background:var(--teal-500); color:#fff;
  border-radius:var(--radius); padding:1rem 1.2rem; box-shadow:var(--shadow-md); text-align:center;
}
.exp-badge .eb-num{ font-family:var(--ff-head); font-size:2rem; font-weight:800; line-height:1; }
.exp-badge .eb-lbl{ font-size:.76rem; letter-spacing:.06em; text-transform:uppercase; opacity:.9; }

.check-list{ list-style:none; padding:0; margin:0; }
.check-list li{ position:relative; padding-left:1.9rem; margin-bottom:.7rem; font-size:.95rem; }
.check-list li::before{
  content:"\F26E"; font-family:"bootstrap-icons"; position:absolute; left:0; top:0;
  color:var(--teal-500); font-size:1.05rem; line-height:1.7;
}
.check-list.is-light li{ color:rgba(255,255,255,.78); }

/* stat band */
.stat-band{ background:var(--navy-800); position:relative; overflow:hidden; }
.stat-band::before{
  content:""; position:absolute; left:-100px; bottom:-160px; width:420px; height:420px;
  background:radial-gradient(circle,rgba(18,166,166,.3),transparent 65%);
}
.stat-item{ text-align:center; padding:36px 12px; position:relative; z-index:1; }
.stat-item i{ font-size:1.8rem; color:var(--teal-400); margin-bottom:.6rem; display:block; }
.stat-item .st-num{ font-family:var(--ff-head); font-size:2.5rem; font-weight:800; color:#fff; line-height:1.1; }
.stat-item .st-lbl{ font-size:.87rem; color:rgba(255,255,255,.62); letter-spacing:.03em; }

/* why us */
.why-item{ display:flex; gap:1rem; padding:20px; border-radius:var(--radius); transition:all .3s var(--ease); height:100%; }
.why-item:hover{ background:#fff; box-shadow:var(--shadow-sm); }
.why-item .wi-ico{
  width:46px; height:46px; border-radius:12px; flex:0 0 auto; background:var(--teal-50);
  color:var(--teal-600); display:flex; align-items:center; justify-content:center; font-size:1.22rem;
}
.why-item h5{ font-size:1rem; margin-bottom:.3rem; }
.why-item p{ font-size:.89rem; margin-bottom:0; }

/* process */
.process-wrap{ position:relative; }
.process-wrap::before{
  content:""; position:absolute; top:38px; left:12%; right:12%; height:2px;
  background:repeating-linear-gradient(90deg,var(--line) 0 10px,transparent 10px 20px);
}
.process-step{ text-align:center; position:relative; z-index:1; padding:0 12px; }
.process-step .ps-ico{
  width:76px; height:76px; margin:0 auto 1.2rem; border-radius:50%; background:#fff;
  border:2px solid var(--line); color:var(--navy-700); display:flex; align-items:center; justify-content:center;
  font-size:1.75rem; position:relative; transition:all .35s var(--ease);
}
.process-step .ps-num{
  position:absolute; right:-2px; top:-2px; width:26px; height:26px; border-radius:50%;
  background:var(--teal-500); color:#fff; font-family:var(--ff-head); font-size:.78rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; border:2px solid #fff;
}
.process-step:hover .ps-ico{ background:var(--navy-700); border-color:var(--navy-700); color:#fff; transform:translateY(-4px); }
.process-step h5{ font-size:1.02rem; margin-bottom:.4rem; }
.process-step p{ font-size:.88rem; margin-bottom:0; }

/* partners */
.partner-logo{
  height:88px; overflow-wrap:anywhere; word-break:break-word; display:flex; align-items:center; justify-content:center; padding:1rem 1.2rem;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  font-family:var(--ff-head); font-weight:700; color:var(--ink-mute); font-size:1rem;
  letter-spacing:.02em; transition:all .3s var(--ease); text-align:center; line-height:1.3;
}
.partner-logo:hover{ color:var(--navy-700); border-color:#cddcec; box-shadow:var(--shadow-sm); transform:translateY(-3px); }

/* testimonials */
.testi-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:32px 28px; height:100%; position:relative;
}
.testi-card .tq{ font-size:2.4rem; color:var(--teal-50); position:absolute; right:22px; top:14px; line-height:1; }
.testi-stars{ color:var(--amber); font-size:.9rem; margin-bottom:.9rem; letter-spacing:.08em; }
.testi-card p{ font-size:.95rem; color:var(--ink-soft); position:relative; z-index:1; }
.testi-user{ display:flex; align-items:center; gap:.85rem; margin-top:1.4rem; padding-top:1.1rem; border-top:1px solid var(--line-soft); }
.testi-user img{ width:50px; height:50px; border-radius:50%; object-fit:cover; }
.testi-user strong{ display:block; font-family:var(--ff-head); font-size:.96rem; color:var(--navy-800); }
.testi-user small{ font-size:.8rem; color:var(--ink-mute); }

/* cta band */
.cta-band{ position:relative; overflow:hidden; background:var(--navy-800); border-radius:var(--radius-xl); padding:56px 48px; }
.cta-band::before{
  content:""; position:absolute; right:-80px; top:-80px; width:360px; height:360px;
  background:radial-gradient(circle,rgba(18,166,166,.38),transparent 66%);
}
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; }
.cta-band p{ color:rgba(255,255,255,.72); margin-bottom:0; }

/* accordion */
.accordion-item{ border:1px solid var(--line); border-radius:var(--radius)!important; margin-bottom:.75rem; overflow:hidden; }
.accordion-button{
  font-family:var(--ff-head); font-weight:600; font-size:1rem; color:var(--navy-800);
  padding:1.05rem 1.25rem; background:#fff;
}
.accordion-button:not(.collapsed){ background:var(--bg-alt); color:var(--navy-700); box-shadow:none; }
.accordion-button:focus{ box-shadow:none; border-color:var(--line); }
.accordion-button::after{ background-size:1rem; width:1rem; height:1rem; }
.accordion-body{ padding:0 1.25rem 1.25rem; font-size:.94rem; }

/* ============ 10. PAGE HEADER & BREADCRUMB ============ */
.page-header{ position:relative; background:var(--navy-800); padding:74px 0 68px; overflow:hidden; }
.page-header .ph-bg{ position:absolute; inset:0; }
.page-header .ph-bg img{ width:100%; height:100%; object-fit:cover; opacity:.38; }
.page-header::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg,rgba(6,26,51,.9),rgba(15,48,89,.66));
}
.page-header > .container{ position:relative; z-index:2; }
.page-header h1{ color:#fff; margin-bottom:.55rem; font-size:clamp(1.8rem,3.6vw,2.7rem); }
.page-header p{ color:rgba(255,255,255,.68); max-width:620px; margin-bottom:0; }
.breadcrumb{ margin:0; font-size:.86rem; }
.breadcrumb-item a{ color:rgba(255,255,255,.66); }
.breadcrumb-item a:hover{ color:#fff; }
.breadcrumb-item.active{ color:var(--teal-400); }
.breadcrumb-item + .breadcrumb-item::before{ color:rgba(255,255,255,.35); content:"\203A"; }

/* ============ 11. FORMS ============ */
.form-label{
  font-family:var(--ff-head); font-weight:600; font-size:.86rem; color:var(--navy-800); margin-bottom:.4rem;
}
.form-label .req{ color:var(--red); }
.form-control,.form-select{
  border:1px solid var(--line); border-radius:var(--radius-sm); padding:.72rem .95rem;
  font-size:.93rem; color:var(--ink); background-color:#fff; transition:all .25s var(--ease);
}
.form-control::placeholder{ color:#a9b6c4; }
.form-control:focus,.form-select:focus{
  border-color:var(--teal-400); box-shadow:0 0 0 .18rem rgba(18,166,166,.14); background:#fff;
}
.form-control.is-invalid,.form-select.is-invalid{ border-color:var(--red); background-image:none; }
.form-control.is-valid,.form-select.is-valid{ border-color:var(--green); background-image:none; }
.invalid-feedback{ font-size:.79rem; }
textarea.form-control{ min-height:130px; resize:vertical; }
.form-check-input:checked{ background-color:var(--teal-500); border-color:var(--teal-500); }
.form-check-label{ font-size:.9rem; }
.input-icon{ position:relative; }
.input-icon i{ position:absolute; left:.95rem; top:50%; transform:translateY(-50%); color:var(--ink-mute); font-size:1rem; }
.input-icon .form-control,.input-icon .form-select{ padding-left:2.6rem; }

.form-section{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px; margin-bottom:1.5rem;
}
.form-section-head{ display:flex; align-items:center; gap:.85rem; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:1px solid var(--line-soft); }
.form-section-head .fs-num{
  width:34px; height:34px; border-radius:9px; background:var(--navy-700); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--ff-head); font-weight:700; font-size:.9rem;
}
.form-section-head h4{ margin:0; font-size:1.06rem; }
.form-section-head small{ display:block; font-size:.8rem; color:var(--ink-mute); font-weight:400; }

.file-drop{
  display:block; width:100%;
  border:2px dashed #cdd9e6; border-radius:var(--radius); padding:1.5rem; text-align:center;
  background:var(--bg-alt); cursor:pointer; transition:all .28s var(--ease);
}
.file-drop:hover{ border-color:var(--teal-400); background:var(--teal-50); }
.file-drop i{ font-size:1.6rem; color:var(--teal-500); display:block; margin-bottom:.4rem; }
.file-drop span{ font-size:.87rem; color:var(--ink-soft); display:block; }
.file-drop small{ font-size:.76rem; color:var(--ink-mute); }
.file-drop input[type=file]{ display:none; }
.file-name{ font-size:.83rem; color:var(--green); margin-top:.4rem; font-weight:600; }

/* compact single-line variant, for sitting beside a normal input */
.file-drop.is-compact{
  display:flex; align-items:center; gap:.8rem; text-align:left;
  padding:.62rem .95rem; border-width:1px;
}
.file-drop.is-compact i{ display:inline-block; margin-bottom:0; font-size:1.3rem; flex:0 0 auto; }
.file-drop.is-compact span{ font-weight:600; color:var(--navy-800); font-size:.9rem; line-height:1.35; }
.file-drop.is-compact small{ font-size:.75rem; line-height:1.3; }
.file-drop.is-compact .file-name{ margin-top:.15rem; }

.form-note{ font-size:.83rem; color:var(--ink-mute); }
.alert-soft-success{ background:#e8f7ef; border:1px solid #bfe6d1; color:#12724a; border-radius:var(--radius); }

/* contact info card */
.contact-info-card{ display:flex; gap:1rem; padding:24px; height:100%; }
.contact-info-card .ci-ico{
  width:48px; height:48px; border-radius:12px; background:var(--bg-navy-soft); color:var(--navy-600);
  display:flex; align-items:center; justify-content:center; font-size:1.28rem; flex:0 0 auto;
}
.contact-info-card h5{ font-size:1rem; margin-bottom:.3rem; }
.contact-info-card p,.contact-info-card a{ font-size:.9rem; margin-bottom:.1rem; display:block; color:var(--ink-soft); }
.contact-info-card a:hover{ color:var(--teal-600); }
.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); line-height:0; }
.map-wrap iframe{ width:100%; height:420px; border:0; }

/* filter sidebar */
.filter-box{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px; }
.filter-box .fb-head{
  display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem;
  padding-bottom:.9rem; border-bottom:1px solid var(--line-soft);
}
.filter-box h5{ margin:0; font-size:1.04rem; }
.filter-group{ margin-bottom:1.4rem; }
.filter-group > label.fg-title{
  font-family:var(--ff-head); font-weight:700; font-size:.8rem; text-transform:uppercase;
  letter-spacing:.08em; color:var(--ink-mute); display:block; margin-bottom:.6rem;
}
.filter-check{ display:flex; align-items:center; justify-content:space-between; margin-bottom:.45rem; }
.filter-check .form-check-label{ font-size:.89rem; color:var(--ink-soft); cursor:pointer; }
.filter-check .fc-count{ font-size:.76rem; color:var(--ink-mute); background:var(--bg-alt); border-radius:20px; padding:.05rem .5rem; }
.result-bar{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:.8rem;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:.85rem 1.15rem; margin-bottom:1.25rem;
}
.result-bar .rb-count{ font-size:.9rem; color:var(--ink-soft); }
.result-bar .rb-count strong{ color:var(--navy-800); font-family:var(--ff-head); }
.no-results{ text-align:center; padding:64px 20px; background:#fff; border:1px dashed var(--line); border-radius:var(--radius-lg); }
.no-results i{ font-size:2.6rem; color:#c3d0de; display:block; margin-bottom:.8rem; }

.pagination .page-link{
  border:1px solid var(--line); color:var(--navy-700); font-family:var(--ff-head); font-weight:600;
  font-size:.9rem; margin:0 .18rem; border-radius:var(--radius-sm)!important; padding:.5rem .85rem;
}
.pagination .page-item.active .page-link{ background:var(--navy-700); border-color:var(--navy-700); color:#fff; }
.pagination .page-link:hover{ background:var(--bg-alt); color:var(--navy-800); }

/* job details */
.job-hero-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; }
.job-detail-body h4{ font-size:1.14rem; margin:1.9rem 0 .8rem; }
.job-detail-body h4:first-child{ margin-top:0; }
.job-detail-body ul{ padding-left:0; list-style:none; }
.job-detail-body ul li{ position:relative; padding-left:1.65rem; margin-bottom:.55rem; font-size:.94rem; }
.job-detail-body ul li::before{
  content:"\F270"; font-family:"bootstrap-icons"; position:absolute; left:0; top:0;
  color:var(--teal-500); font-size:.95rem;
}
.spec-table{ width:100%; }
.spec-table tr{ border-bottom:1px solid var(--line-soft); }
.spec-table tr:last-child{ border-bottom:0; }
.spec-table td{ padding:.72rem 0; font-size:.92rem; vertical-align:top; }
.spec-table td:first-child{ color:var(--ink-mute); width:44%; }
.spec-table td:last-child{ color:var(--navy-800); font-weight:600; font-family:var(--ff-head); }
.sticky-side{ position:sticky; top:calc(var(--header-h) + 20px); }

/* ============ 12. FOOTER ============ */
.site-footer{ background:var(--navy-900); color:rgba(255,255,255,.62); padding-top:72px; position:relative; overflow:hidden; }
.site-footer::before{
  content:""; position:absolute; left:-140px; top:-100px; width:420px; height:420px;
  background:radial-gradient(circle,rgba(18,166,166,.18),transparent 65%);
}
.site-footer > .container{ position:relative; z-index:1; }
.footer-logo{ height:52px; margin-bottom:1.15rem; }
.site-footer p{ font-size:.92rem; }
.footer-title{
  font-family:var(--ff-head); color:#fff; font-size:1rem; font-weight:700; margin-bottom:1.25rem;
  position:relative; padding-bottom:.65rem;
}
.footer-title::after{ content:""; position:absolute; left:0; bottom:0; width:30px; height:2px; background:var(--teal-500); border-radius:2px; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:.55rem; }
.footer-links a{ color:rgba(255,255,255,.62); font-size:.91rem; display:inline-flex; align-items:center; gap:.45rem; }
.footer-links a::before{ content:"\F285"; font-family:"bootstrap-icons"; font-size:.72rem; color:var(--teal-500); opacity:.7; }
.footer-links a:hover{ color:#fff; transform:translateX(3px); }
.footer-contact{ list-style:none; padding:0; margin:0; }
.footer-contact li{ display:flex; gap:.75rem; margin-bottom:.9rem; font-size:.91rem; overflow-wrap:break-word; }
.footer-contact li > span{ min-width:0; }
.footer-links a{ overflow-wrap:anywhere; }
.footer-contact i{ color:var(--teal-500); font-size:1.02rem; margin-top:.18rem; }
.footer-contact a{ color:rgba(255,255,255,.62); }
.footer-contact a:hover{ color:#fff; }
.footer-social{ display:flex; gap:.5rem; margin-top:1.3rem; }
.footer-social a{
  width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.72); font-size:1rem;
  transition:all .28s var(--ease);
}
.footer-social a:hover{ background:var(--teal-500); color:#fff; transform:translateY(-3px); }
.footer-badge{
  display:inline-flex; align-items:center; gap:.6rem; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-sm); padding:.6rem .9rem;
  font-size:.82rem; margin-top:1.1rem;
}
.footer-badge i{ color:var(--teal-400); font-size:1.1rem; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.09); margin-top:56px; padding:20px 0;
  font-size:.86rem; color:rgba(255,255,255,.5);
}
.footer-bottom a{ color:rgba(255,255,255,.62); }
.footer-bottom a:hover{ color:#fff; }
.footer-bottom .fb-links{ display:flex; gap:1.2rem; justify-content:flex-end; flex-wrap:wrap; }

/* newsletter */
.newsletter-strip{
  background:var(--navy-700); border-radius:var(--radius-lg); padding:30px 34px;
  margin-bottom:-40px; position:relative; z-index:2; box-shadow:var(--shadow-lg);
}
.newsletter-strip h4{ color:#fff; margin-bottom:.2rem; }
.newsletter-strip p{ color:rgba(255,255,255,.66); margin:0; font-size:.9rem; }
.newsletter-strip .form-control{ border:0; padding:.8rem 1rem; }

/* ============ 13. BACK TO TOP & HELPERS ============ */
#backToTop{
  position:fixed; right:22px; bottom:22px; width:44px; height:44px; border-radius:12px;
  background:var(--navy-700); color:#fff; border:0; display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; opacity:0; visibility:hidden; transform:translateY(12px);
  transition:all .32s var(--ease); z-index:1040; box-shadow:var(--shadow-md);
}
#backToTop.show{ opacity:1; visibility:visible; transform:none; }
#backToTop:hover{ background:var(--teal-500); }

.float-apply{ display:none; }

.carousel-nav{ display:flex; gap:.5rem; }
.carousel-nav button{
  width:42px; height:42px; border-radius:11px; border:1px solid var(--line); background:#fff;
  color:var(--navy-700); font-size:1.1rem; transition:all .28s var(--ease);
}
.carousel-nav button:hover{ background:var(--navy-700); border-color:var(--navy-700); color:#fff; }

/* ============ 14. RESPONSIVE ============ */
@media (min-width:1200px) and (max-width:1499.98px){
  .navbar .nav-link{ padding:.6rem .6rem!important; font-size:.88rem; }
  .navbar .nav-link::after{ left:.6rem; right:.6rem; }
  .header-phone{ display:none!important; }
}
@media (max-width:1199.98px){
  .navbar .nav-link{ padding:.6rem .58rem!important; font-size:.88rem; }
  .navbar .nav-link::after{ left:.58rem; right:.58rem; }
}
@media (max-width:991.98px){
  .section{ padding:64px 0; }
  .section-sm{ padding:46px 0; }
  .navbar-collapse{
    background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius);
    margin:.5rem 0 1rem; padding:.75rem; box-shadow:var(--shadow-md); max-height:72vh; overflow-y:auto;
  }
  .navbar .nav-link{ padding:.65rem .75rem!important; font-size:.95rem; border-radius:var(--radius-sm); }
  .navbar .nav-link::after{ display:none; }
  .navbar .nav-item.active > .nav-link{ background:var(--bg-alt); }
  .navbar .dropdown-menu{ box-shadow:none; border:0; border-left:2px solid var(--line); border-radius:0; margin-left:.6rem; }
  .header-cta .btn{ width:100%; }
  .hero{ padding:76px 0 84px; min-height:auto; }
  .hero-slider .carousel-item img{ object-position:center 45%; }
  /* on narrow screens the copy sits over the middle of the photo, so even it out */
  .hero::before{
    background:linear-gradient(180deg,
      rgba(4,20,40,.9) 0%, rgba(5,23,45,.86) 45%, rgba(6,26,51,.72) 100%);
  }
  .hero-dots{ margin-bottom:16px; }
  .process-wrap::before{ display:none; }
  .cta-band{ padding:40px 28px; text-align:center; }
  .about-visual{ margin-bottom:2rem; }
  .footer-bottom .fb-links{ justify-content:flex-start; margin-top:.5rem; }
  .sticky-side{ position:static; }
}
@media (max-width:767.98px){
  body{ font-size:15px; }
  /* keep wide gutters from pushing rows past the container on small screens */
  .row.g-5,.row.gx-5{ --bs-gutter-x:1.5rem; }
  .section{ padding:52px 0; }
  .section-head{ margin-bottom:34px; }
  .searchbar-wrap{ margin-top:-34px; }
  .searchbar{ padding:20px 18px 18px; }
  .hero-stats{ gap:1.1rem 1.4rem; max-width:100%; }
  .hero-stats .hs-num{ font-size:1.55rem; }
  .exp-badge{ left:0; padding:.75rem .9rem; }
  .exp-badge .eb-num{ font-size:1.5rem; }
  .newsletter-strip{ padding:24px 20px; text-align:center; }
  .stat-item{ padding:24px 8px; }
  .stat-item .st-num{ font-size:1.9rem; }
  .job-card .jc-foot{ flex-direction:column; align-items:stretch; gap:.7rem; }
  .job-card .jc-foot .btn{ width:100%; }
  .page-header{ padding:52px 0 46px; }
  .form-section{ padding:20px 18px; }
  .site-footer{ padding-top:56px; }
  .partner-logo{ height:76px; font-size:.86rem; padding:.75rem .5rem; }
  .float-apply{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:1035;
    background:#fff; border-top:1px solid var(--line); padding:.6rem .8rem; gap:.6rem;
    box-shadow:0 -4px 20px rgba(11,37,71,.1);
  }
  .float-apply .btn{ flex:1; }
  body.has-float-bar{ padding-bottom:70px; }
  #backToTop{ bottom:78px; }
}
@media (max-width:575.98px){
  .hero h1{ font-size:1.95rem; }
  .cta-band{ padding:32px 20px; }
  .testi-card{ padding:24px 20px; }
}

/* print */
@media print{
  .topbar,.site-header,.site-footer,#backToTop,.float-apply,.newsletter-strip{ display:none!important; }
  body{ color:#000; }
}
