/* ============================================================
   AR Systems Inc. — custom site styles
   Built on the Solvior theme brand tokens
   Colors: primary #0b4f8e | accent #d3580e
   Fonts: Lato (body) + Libre Franklin (headings)
   ============================================================ */

:root {
  --brand-primary: #0b4f8e;
  --brand-primary-dark: #083b6b;
  --brand-accent: #d3580e;
  --brand-accent-dark: #b4470a;
  --heading: #16233b;
  --body: #4b5563;
  --muted: #7e8590;
  --bg-light: #f5f8fc;
  --bg-tint: #e1e8f0;
  --border: #e2e8f0;
  --white: #ffffff;
  --ff-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-head: 'Libre Franklin', 'Segoe UI', sans-serif;
  --shadow-sm: 0 4px 14px rgba(11, 79, 142, 0.08);
  --shadow-md: 0 12px 34px rgba(11, 79, 142, 0.12);
  --radius: 14px;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: color .25s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brand-accent); color: #fff; }
.btn-primary:hover { background: var(--brand-accent-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: #fff; color: var(--brand-primary); }
.btn-blue { background: var(--brand-primary); color: #fff; }
.btn-blue:hover { background: var(--brand-primary-dark); color: #fff; transform: translateY(-2px); }

.section { padding: 100px 0; }
.section-tint { background: var(--bg-light); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 55px; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--brand-accent);
  margin-bottom: 14px;
}
.section-tag::before { content: "// "; }
.section-title { font-size: 42px; color: var(--heading); }
.section-head p { margin-top: 16px; color: var(--muted); }

/* ---------------- Preloader ---------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.preloader .spinner {
  width: 52px; height: 52px; border-radius: 50%;
  border: 4px solid var(--bg-tint);
  border-top-color: var(--brand-primary);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Top bar ---------------- */
.topbar {
  background: var(--brand-primary-dark);
  color: #cfe0f2;
  font-size: 14px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 44px; }
.topbar a { color: #cfe0f2; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 26px; }
.topbar .tb-left span, .topbar .tb-left a { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-left i, .topbar .tb-socials i { color: var(--brand-accent); }
.topbar .tb-socials { display: flex; gap: 16px; align-items: center; }
.topbar .tb-socials a:hover i { color: #fff; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  box-shadow: 0 2px 18px rgba(16, 35, 59, .07);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.site-header .logo img { max-height: 46px; }

.main-nav > ul { display: flex; align-items: center; gap: 6px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 30px 14px;
  font-family: var(--ff-head);
  font-weight: 600; font-size: 15px;
  color: var(--heading);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--brand-primary); }
.main-nav .has-drop > a::after { content: "\f107"; font-family: "Font Awesome 6 Pro","Font Awesome 6 Free"; font-weight: 900; font-size: 12px; }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 290px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--brand-accent);
  border-radius: 0 0 10px 10px;
  padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .25s ease;
}
.main-nav li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 22px;
  font-size: 14.5px; font-weight: 500; color: var(--body);
  font-family: var(--ff-body);
  border-left: 3px solid transparent;
}
.dropdown li a:hover { color: var(--brand-primary); background: var(--bg-light); border-left-color: var(--brand-accent); padding-left: 26px; }

.header-right { display: flex; align-items: center; gap: 22px; }
.header-phone { display: flex; align-items: center; gap: 12px; font-family: var(--ff-head); }
.header-phone .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-tint); color: var(--brand-primary); display: grid; place-items: center; font-size: 18px; }
.header-phone small { display: block; font-size: 12px; color: var(--muted); font-family: var(--ff-body); }
.header-phone strong { color: var(--heading); font-size: 16px; }
.nav-toggle { display: none; font-size: 26px; color: var(--brand-primary); background: none; border: none; cursor: pointer; }

/* Mobile menu */
.mobile-panel {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: #fff; z-index: 1200; box-shadow: -8px 0 30px rgba(0,0,0,.15);
  padding: 24px; overflow-y: auto; transition: right .35s ease;
}
.mobile-panel.open { right: 0; }
.mobile-panel .close-btn { background: none; border: none; font-size: 26px; color: var(--heading); float: right; cursor: pointer; }
.mobile-panel .logo { clear: both; margin-bottom: 24px; padding-top: 8px; }
.mobile-panel ul li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 600; font-family: var(--ff-head); color: var(--heading); }
.mobile-panel ul ul { padding-left: 16px; }
.mobile-panel ul ul li a { font-weight: 500; font-family: var(--ff-body); font-size: 14px; }
.nav-overlay { position: fixed; inset: 0; background: rgba(16,35,59,.5); z-index: 1100; opacity: 0; visibility: hidden; transition: .3s; }
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ---------------- Hero slider ---------------- */
.hero { position: relative; }
.hero-slide {
  min-height: 660px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  position: relative;
}
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,32,60,.88) 0%, rgba(8,32,60,.65) 45%, rgba(8,32,60,.25) 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-content h1 {
  color: #fff; font-size: 58px; line-height: 1.1; margin-bottom: 26px;
}
.hero-content .lead { color: #dbe6f2; font-size: 19px; margin-bottom: 34px; max-width: 560px; }
.hero-content .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* animate active slide text (visible by default; animation is an enhancement) */
.swiper-slide-active .hero-content > * { animation: heroUp .8s both; }
.swiper-slide-active .hero-content > *:nth-child(1) { animation-delay: .1s; }
.swiper-slide-active .hero-content > *:nth-child(2) { animation-delay: .3s; }
.swiper-slide-active .hero-content > *:nth-child(3) { animation-delay: .5s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero .swiper-button-next, .hero .swiper-button-prev {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4);
  color: #fff; backdrop-filter: blur(4px);
}
.hero .swiper-button-next:hover, .hero .swiper-button-prev:hover { background: var(--brand-accent); border-color: var(--brand-accent); }
.hero .swiper-button-next::after, .hero .swiper-button-prev::after { font-size: 18px; font-weight: 700; }
.hero .swiper-pagination { bottom: 30px; }
.hero .swiper-pagination-bullet { width: 12px; height: 12px; background: #fff; opacity: .5; }
.hero .swiper-pagination-bullet-active { opacity: 1; background: var(--brand-accent); }

/* ---------------- Services ---------------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; transition: all .3s ease; position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0;
  background: var(--brand-accent); transition: width .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-card .num {
  font-family: var(--ff-head); font-weight: 800; font-size: 40px;
  color: var(--bg-tint); line-height: 1; margin-bottom: 16px; transition: color .3s;
}
.service-card:hover .num { color: var(--brand-accent); }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card h3 a:hover { color: var(--brand-primary); }
.service-card p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.service-card .read-more { font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--brand-primary); display: inline-flex; align-items: center; gap: 8px; }
.service-card .read-more i { transition: transform .25s; }
.service-card:hover .read-more i { transform: translateX(5px); }

/* ---------------- About ---------------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; }
.about-content .section-tag { text-align: left; }
.about-content h2 { font-size: 40px; margin-bottom: 20px; }
.about-content p { margin-bottom: 24px; }
.about-features { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-bottom: 30px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--ff-head); color: var(--heading); }
.about-features i { color: var(--brand-accent); font-size: 20px; }

/* ---------------- Careers / cards row ---------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .3s ease;
}
.info-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.info-card .img { height: 210px; overflow: hidden; }
.info-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.info-card:hover .img img { transform: scale(1.07); }
.info-card .body { padding: 26px; }
.info-card h3 { font-size: 21px; margin-bottom: 12px; }
.info-card p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }

/* ---------------- Industries ---------------- */
.industries { background: var(--brand-primary); color: #fff; position: relative; }
.industries .section-title { color: #fff; }
.industries .section-tag { color: #ffb583; }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; }
.ind-item { background: var(--brand-primary); padding: 36px 30px; transition: background .3s; }
.ind-item:hover { background: var(--brand-primary-dark); }
.ind-item .n { font-family: var(--ff-head); font-weight: 800; color: var(--brand-accent); font-size: 22px; margin-bottom: 14px; }
.ind-item h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.ind-item p { color: #c6d6e8; font-size: 14.5px; }
.industries .ind-cta { text-align: center; margin-top: 44px; }

/* ---------------- Footer ---------------- */
.site-footer { background: #0c1a2e; color: #a9b7c9; padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer h4 { color: #fff; font-size: 19px; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; background: var(--brand-accent); }
.footer-about img { max-height: 46px; margin-bottom: 22px; }
.footer-about p { font-size: 15px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer-social a:hover { background: var(--brand-accent); transform: translateY(-3px); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 15px; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Pro","Font Awesome 6 Free"; font-weight: 900; color: var(--brand-accent); font-size: 12px; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; }
.footer-contact i { color: var(--brand-accent); margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 14px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #fff; }

/* ---------------- Floating buttons + back to top ---------------- */
.floats { position: fixed; right: 22px; bottom: 26px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.floats a { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 22px; box-shadow: var(--shadow-md); }
.floats .wa { background: #25d366; }
.floats .call { background: var(--brand-primary); }
.floats a:hover { transform: scale(1.08); }
#backTop {
  position: fixed; right: 22px; bottom: 92px; z-index: 799;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--brand-accent); color: #fff; font-size: 18px;
  opacity: 0; visibility: hidden; transition: all .3s;
}
#backTop.show { opacity: 1; visibility: visible; }

/* ---------------- Inner page banner (used on subpages) ---------------- */
.page-banner {
  background: linear-gradient(rgba(8,32,60,.85), rgba(8,32,60,.85)), var(--brand-primary);
  background-size: cover; background-position: center;
  padding: 90px 0; text-align: center; color: #fff;
}
.page-banner h1 { color: #fff; font-size: 46px; margin-bottom: 14px; }
.page-banner .crumbs { color: #cfe0f2; font-size: 15px; }
.page-banner .crumbs a { color: #fff; }
.page-banner .crumbs span { color: var(--brand-accent); margin: 0 8px; }

/* ================= INNER PAGES ================= */

/* Service detail intro */
.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.svc-intro .img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.svc-intro .img img { width: 100%; height: 100%; object-fit: cover; }
.svc-intro h2 { font-size: 34px; margin-bottom: 20px; }
.svc-intro p { margin-bottom: 16px; color: var(--body); }
.svc-benefits { margin-top: 30px; background: var(--bg-light); border-radius: 14px; padding: 26px 30px; }
.svc-benefits h4 { font-size: 18px; margin-bottom: 16px; color: var(--brand-primary); }
.svc-benefits ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.svc-benefits li { display: flex; gap: 10px; font-weight: 500; align-items: flex-start; }
.svc-benefits i { color: var(--brand-accent); margin-top: 5px; }

/* Why-choose 3 cards */
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; text-align: center; transition: all .3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card .ic { width: 70px; height: 70px; border-radius: 50%; background: var(--bg-tint); color: var(--brand-primary); display: grid; place-items: center; font-size: 28px; margin: 0 auto 20px; transition: all .3s; }
.why-card:hover .ic { background: var(--brand-accent); color: #fff; }
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p { font-size: 15px; color: var(--muted); }

/* CTA band */
.cta-band { background: linear-gradient(100deg, var(--brand-primary), var(--brand-primary-dark)); border-radius: 18px; padding: 50px; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: 32px; margin-bottom: 14px; }
.cta-band p { color: #cfe0f2; max-width: 620px; margin: 0 auto 26px; }

/* About stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin: 10px 0; }
.stat { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 34px 18px; }
.stat .num { font-family: var(--ff-head); font-weight: 800; font-size: 40px; color: var(--brand-primary); line-height: 1; }
.stat .lbl { margin-top: 8px; font-weight: 600; color: var(--muted); font-size: 15px; }

/* About why grid (6) */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-grid .item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: all .3s; }
.why-grid .item:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.why-grid .item .ic { width: 54px; height: 54px; border-radius: 12px; background: var(--bg-tint); color: var(--brand-primary); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.why-grid .item h3 { font-size: 19px; margin-bottom: 10px; }
.why-grid .item p { font-size: 14.5px; color: var(--muted); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 34px 28px; position: relative; }
.step .n { position: absolute; top: 22px; right: 26px; font-family: var(--ff-head); font-weight: 800; font-size: 42px; color: var(--bg-tint); }
.step h3 { font-size: 20px; margin: 8px 0 12px; }
.step p { font-size: 15px; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info-card { background: var(--brand-primary); color: #fff; border-radius: 16px; padding: 40px; }
.contact-info-card h3 { color: #fff; font-size: 24px; margin-bottom: 26px; }
.contact-info-card .ci { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-card .ci .ic { width: 46px; height: 46px; min-width: 46px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; font-size: 18px; color: #fff; }
.contact-info-card .ci h4 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.contact-info-card .ci p, .contact-info-card .ci a { color: #cfe0f2; font-size: 15px; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form .sub { color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 600; font-family: var(--ff-head); font-size: 14px; margin-bottom: 7px; color: var(--heading); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--ff-body); font-size: 15px; color: var(--heading); background: #fbfcfe; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--brand-primary); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-note { margin-top: 14px; font-size: 14px; }
.form-note.ok { color: #15803d; }
.form-note.err { color: #dc2626; }
.map-wrap { margin-top: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Training course columns */
.course-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.course-cols ul li { padding: 11px 0; border-bottom: 1px dashed var(--border); display: flex; gap: 10px; align-items: center; font-weight: 500; }
.course-cols ul li i { color: var(--brand-accent); }
.rich-text p { margin-bottom: 18px; }

/* Resources form cards */
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.res-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px 22px; transition: all .3s; }
.res-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.res-card .n { font-family: var(--ff-head); font-weight: 800; color: var(--brand-accent); font-size: 18px; }
.res-card h3 { font-size: 17px; margin: 10px 0; }
.res-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.res-card a.dl { font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--brand-primary); display: inline-flex; gap: 8px; align-items: center; }
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-list li { background: var(--bg-light); border: 1px solid var(--border); border-radius: 50px; padding: 10px 20px; font-weight: 600; font-family: var(--ff-head); font-size: 14px; color: var(--heading); display: flex; align-items: center; gap: 8px; }
.chip-list li i { color: var(--brand-accent); }

/* Employee jobs */
.job-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px; margin-bottom: 22px; transition: box-shadow .3s; }
.job-card:hover { box-shadow: var(--shadow-md); }
.job-card .tag { display: inline-block; background: var(--bg-tint); color: var(--brand-primary); font-weight: 700; font-family: var(--ff-head); font-size: 12px; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; }
.job-card h3 { font-size: 22px; margin-bottom: 4px; }
.job-card .loc { color: var(--brand-accent); font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.job-card h5 { font-size: 15px; color: var(--heading); margin: 12px 0 6px; }
.job-card p { font-size: 14.5px; color: var(--muted); }
.job-card ul { margin-top: 8px; }
.job-card ul li { display: flex; gap: 9px; font-size: 14.5px; margin-bottom: 6px; }
.job-card ul li i { color: var(--brand-accent); margin-top: 5px; }

/* Two-col rich section */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 70px 0; }
  .section-title { font-size: 33px; }
  .hero-content h1 { font-size: 42px; }
  .about-wrap, .svc-intro, .contact-grid, .two-col { grid-template-columns: 1fr; gap: 36px; }
  .cards-3, .ind-grid, .why-cards, .why-grid, .steps, .course-cols { grid-template-columns: 1fr 1fr; }
  .stats-row, .res-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .topbar .tb-left span:not(.tb-phone) { display: none; }
  .cards-3, .ind-grid, .footer-top, .why-cards, .why-grid, .steps, .course-cols, .stats-row, .res-grid, .form-row, .svc-benefits ul { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 34px; }
  .hero-slide { min-height: 560px; }
  .section-title { font-size: 28px; }
  .footer-top { text-align: left; }
  .cta-band, .contact-info-card, .contact-form { padding: 30px 24px; }
}
