:root {
  --navy: #052b63;
  --navy-dark: #031d43;
  --gold: #f5a400;
  --gold-dark: #d88d00;
  --sky: #eaf5ff;
  --sky-2: #f6fbff;
  --white: #ffffff;
  --ink: #07152f;
  --text: #26364d;
  --muted: #64748b;
  --line: #dbeafe;
  --shadow: 0 18px 46px rgba(5, 43, 99, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 5vw, 70px);
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

.topbar-group,
.socials,
.nav {
  display: flex;
  align-items: center;
}

.topbar-group {
  flex-wrap: wrap;
  gap: 18px;
}

.socials {
  gap: 8px;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #0f5fb8;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(5, 43, 99, 0.08);
  backdrop-filter: blur(14px);
}

.site-header > .btn {
  justify-self: end;
  white-space: nowrap;
}

.brand img {
  width: clamp(210px, 22vw, 320px);
}

.nav {
  justify-content: center;
  gap: clamp(16px, 2.8vw, 34px);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a.active,
.nav a:hover {
  color: var(--gold-dark);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn.gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(245, 164, 0, 0.28);
}

.btn.gold:hover {
  background: var(--gold-dark);
}

.btn.navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(5, 43, 99, 0.22);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: 620px;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 70px) 92px;
  background:
    radial-gradient(circle at 92% 16%, rgba(245, 164, 0, 0.22), transparent 18%),
    linear-gradient(110deg, #f7fbff 0%, #e7f4ff 50%, #d8edff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 43, 99, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 43, 99, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid #b9d9fb;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(2.65rem, 5.8vw, 5.5rem);
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--gold-dark);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #1f3659;
  font-size: 1.08rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: inset 0 0 0 3px var(--gold);
}

.hero-visual {
  align-self: stretch;
  display: grid;
  align-items: end;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 80px 80px;
  box-shadow: var(--shadow);
}

.floating-route {
  position: absolute;
  top: 34px;
  right: 4%;
  color: var(--navy);
  font-weight: 800;
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -62px auto 0;
  overflow: hidden;
  border: 2px solid #6fb4ff;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.stats-band div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
}

.stat-icon,
.category-icon,
.job-icon {
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.stats-band strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.stats-band span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 96px) 0;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-title p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
}

.section-title.left p {
  margin-left: 0;
}

.categories {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

.category-card {
  display: grid;
  min-height: 112px;
  place-items: center;
  gap: 10px;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 43, 99, 0.11);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.category-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 16px;
  color: var(--navy);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.category-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card:nth-child(2n) .category-icon,
.category-card:nth-child(5n) .category-icon {
  color: var(--gold-dark);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-8px);
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  box-shadow: 0 22px 48px rgba(5, 43, 99, 0.2);
}

.category-card:hover .category-icon,
.category-card:focus-visible .category-icon {
  transform: translateY(-4px) scale(1.06);
  background: var(--navy);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.why-panel,
.recent-jobs,
.card,
.form-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(5, 43, 99, 0.1);
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 1fr);
  gap: 24px;
  padding: 28px;
  overflow: hidden;
}

.why-panel ul,
.footer-list,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.why-panel li,
.check-list li {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  color: var(--text);
  font-size: 0.92rem;
}

.why-panel li::before,
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff2cc;
}

.why-panel-frame {
  align-self: stretch;
  min-height: 320px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 18px 36px rgba(5, 43, 99, 0.12);
}

.why-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background: #edf6ff;
}

.why-panel-photo {
  aspect-ratio: 4 / 3;
  max-height: 420px;
}

.recent-jobs {
  padding: 24px;
  background: linear-gradient(180deg, #f8fbff, #edf6ff);
}

.recent-heading,
.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.recent-heading {
  margin-bottom: 16px;
}

.job-row {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #d4e8ff;
  border-radius: 12px;
  background: var(--white);
}

.job-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.job-icon {
  width: 42px;
  height: 42px;
  background: #e8f1ff;
  color: var(--navy);
}

.job-row h3 {
  font-size: 0.94rem;
}

.job-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.mini-btn {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-btn.danger {
  background: #b91c1c;
}

.form-note,
.admin-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-panel {
  padding-top: 62px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-status {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.admin-editor {
  display: grid;
  gap: 16px;
}

.admin-job-row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky-2);
  box-shadow: 0 12px 28px rgba(5, 43, 99, 0.08);
}

.testimonials-wrap {
  background: linear-gradient(180deg, var(--sky-2), #dcedff);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  padding: 26px;
}

.quote {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.7;
}

.testimonial-card p {
  min-height: 78px;
  margin: 10px 0 18px;
}

.rating {
  color: var(--gold);
  letter-spacing: 3px;
}

.newsletter {
  display: grid;
  grid-template-columns: auto minmax(280px, 420px) auto;
  gap: 18px;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 70px);
  background: var(--navy);
  color: var(--white);
}

.newsletter h2 {
  color: var(--white);
  font-size: 1.35rem;
}

.newsletter p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border-radius: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c8def8;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.newsletter input {
  border: 0;
  border-radius: 0;
}

.newsletter .btn {
  border-radius: 0;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer {
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 30px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-main img {
  width: 220px;
  margin-bottom: 18px;
}

.footer-main p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand-title {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-main h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-list li {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 70px);
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.86rem;
}

.social-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.social-main {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 18px 40px rgba(5, 43, 99, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-main::-webkit-details-marker {
  display: none;
}

.social-main:hover,
.social-main:focus-visible,
.social-float[open] .social-main {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 24px 52px rgba(5, 43, 99, 0.36);
  filter: saturate(1.12);
  outline: none;
}

.social-main-icon {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
}

.social-main-icon span {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.social-main-icon span:nth-child(1) {
  top: 2px;
  left: 3px;
}

.social-main-icon span:nth-child(2) {
  top: 9px;
  right: 2px;
}

.social-main-icon span:nth-child(3) {
  bottom: 2px;
  left: 4px;
}

.social-main-icon::before,
.social-main-icon::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  transform-origin: left center;
}

.social-main-icon::before {
  width: 13px;
  left: 8px;
  top: 8px;
  transform: rotate(24deg);
}

.social-main-icon::after {
  width: 13px;
  left: 8px;
  top: 16px;
  transform: rotate(-25deg);
}

.social-menu {
  position: absolute;
  right: 4px;
  bottom: 68px;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-float[open] .social-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.social-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(5, 43, 99, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 22px 42px rgba(5, 43, 99, 0.34);
  filter: saturate(1.12);
  outline: none;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.facebook {
  background: #1877f2;
  font-size: 1.2rem;
  text-transform: none;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 76%, #515bd4);
}

.social-btn.linkedin {
  background: #0a66c2;
  font-size: 1rem;
  text-transform: none;
}

.page-hero {
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 164, 0, 0.2), transparent 20%),
    linear-gradient(135deg, var(--navy), #0b4c92);
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.cards-grid,
.jobs-grid,
.industries-grid,
.gallery-grid,
.panel-grid {
  display: grid;
  gap: 20px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.form-card {
  padding: 26px;
}

.card > img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.cards-grid .card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cards-grid .card:hover {
  transform: translateY(-7px);
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow: 0 22px 48px rgba(5, 43, 99, 0.17);
}

.cards-grid .card:hover h3 {
  color: var(--gold-dark);
}

.card p {
  color: var(--muted);
}

.about-copy p {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 1.02rem;
}

.commitment-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 14px;
  background: var(--sky-2);
  border: 1px solid var(--line);
}

.commitment-box h2 {
  font-size: 1.45rem;
}

.commitment-box p {
  color: var(--text);
}

.ceo-section {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding-top: 0;
}

.ceo-photo {
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.ceo-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.ceo-message {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 164, 0, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: 0 16px 42px rgba(5, 43, 99, 0.1);
}

.ceo-message h2 {
  margin-top: 16px;
}

.ceo-message p {
  margin: 16px 0 0;
  color: var(--text);
}

.ceo-signature {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.ceo-signature strong,
.ceo-signature span {
  display: block;
}

.ceo-signature strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.ceo-signature span {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 800;
}

.jobs-filter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sky-2);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

textarea {
  resize: vertical;
}

.jobs-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

.clients-section {
  padding-top: 28px;
}

.country-client-section {
  margin-top: 34px;
}

.country-client-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.country-client-heading .eyebrow {
  margin-bottom: 8px;
}

.country-client-heading h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.country-client-heading > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--sky);
  color: var(--navy);
  font-weight: 800;
}

.client-slider {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.client-slider-stack {
  display: grid;
  gap: 16px;
}

.client-slider-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: clientSlide var(--slide-duration, 42s) linear infinite;
}

.client-slider.reverse .client-slider-track {
  animation-direction: reverse;
}

.client-slider:hover .client-slider-track {
  animation-play-state: paused;
}

@keyframes clientSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.client-logo-card {
  display: grid;
  min-height: 160px;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
  box-shadow: 0 14px 34px rgba(5, 43, 99, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-slider .client-logo-card {
  width: 230px;
  min-height: 150px;
  flex: 0 0 auto;
}

.client-logo-card.official-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 164, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f3f9ff);
}

.client-logo-card:hover {
  transform: translateY(-8px);
  border-color: #93c5fd;
  box-shadow: 0 24px 54px rgba(5, 43, 99, 0.18);
}

.client-logo-img,
.client-logo-card span,
.client-logo-fallback {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto;
}

.client-logo-img {
  border-radius: 18px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(5, 43, 99, 0.12);
}

.client-logo-card span,
.client-logo-fallback {
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(5, 43, 99, 0.16);
}

.client-logo-card strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.client-logo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.job-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 43, 99, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
  box-shadow: 0 24px 54px rgba(5, 43, 99, 0.18);
}

.job-card:hover h2 {
  color: var(--gold-dark);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.job-meta span {
  border-radius: 999px;
  padding: 6px 10px;
  background: #eaf5ff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.job-card:hover .job-meta span {
  transform: translateY(-2px);
  background: var(--navy);
  color: var(--white);
}

.job-card .btn {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.job-card:hover .btn {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(5, 43, 99, 0.22);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  align-items: start;
}

.form-card {
  display: grid;
  gap: 16px;
}

.industries-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3f9ff);
  box-shadow: 0 14px 34px rgba(5, 43, 99, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.industry-logo {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(5, 43, 99, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff, #eaf5ff);
  box-shadow: 0 24px 54px rgba(5, 43, 99, 0.19);
}

.industry-card:hover .industry-logo {
  transform: rotate(-3deg) scale(1.08);
  box-shadow: 0 18px 36px rgba(5, 43, 99, 0.22);
}

.industry-card:hover h2 {
  color: var(--gold-dark);
}

.it-logo {
  background: linear-gradient(135deg, #0b5fff, #052b63);
}

.construction-logo {
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

.healthcare-logo {
  background: linear-gradient(135deg, #ef4444, #be123c);
}

.hospitality-logo {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

.retail-logo {
  background: linear-gradient(135deg, #10b981, #047857);
}

.manufacturing-logo {
  background: linear-gradient(135deg, #64748b, #1e293b);
}

.logistics-logo {
  background: linear-gradient(135deg, #06b6d4, #0369a1);
}

.finance-logo {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 43, 99, 0.1);
}

.gallery-grid img,
.gallery-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  object-fit: cover;
  background: #edf6ff;
}

.gallery-grid video {
  height: auto;
}

.gallery-grid figcaption {
  padding: 14px;
  color: var(--ink);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sky-2);
  color: var(--navy);
  font-weight: 800;
}

.branch-list {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.branch-list h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.branch-list p {
  margin: 10px 0 0;
  color: var(--text);
}

iframe {
  width: 100%;
  height: 280px;
  margin-top: 22px;
  border: 0;
  border-radius: var(--radius);
}

.panel-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px 22px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .split,
  .form-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 720px;
    justify-self: center;
  }

  .why-panel {
    grid-template-columns: 1fr;
  }

  .why-panel-frame {
    min-height: auto;
  }

  .stats-band,
  .categories,
  .footer-main,
  .cards-grid,
  .client-logo-grid,
  .industries-grid,
  .gallery-grid,
  .panel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-filter {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-job-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-job-row .mini-btn {
    grid-column: 1 / -1;
  }

  .ceo-section {
    grid-template-columns: minmax(220px, 320px) 1fr;
  }

  .client-slider .client-logo-card {
    width: 210px;
  }

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

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-inline: 16px;
  }

  .topbar-group {
    gap: 8px 14px;
  }

  .topbar .socials {
    flex-wrap: wrap;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .site-header > .btn {
    justify-self: stretch;
  }

  .brand img {
    width: min(230px, 62vw);
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow: visible;
    white-space: normal;
    font-size: 0.82rem;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding: 42px 16px 100px;
  }

  h1 {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .hero-actions,
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-route {
    position: static;
    margin-bottom: 12px;
  }

  .hero-visual img {
    border-radius: 24px;
    max-height: 380px;
  }

  .stats-band,
  .categories,
  .why-panel,
  .ceo-section,
  .admin-job-row,
  .testimonials,
  .footer-main,
  .footer-bottom,
  .cards-grid,
  .client-logo-grid,
  .jobs-filter,
  .jobs-grid,
  .industries-grid,
  .gallery-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    width: calc(100% - 24px);
    margin-top: -68px;
  }

  .stats-band div {
    padding: 18px;
  }

  .why-panel-frame {
    min-height: auto;
  }

  .why-panel img {
    min-height: 220px;
    max-height: none;
    border-radius: 14px;
  }

  .recent-heading,
  .job-row {
    align-items: stretch;
    flex-direction: column;
  }

  .job-info {
    grid-template-columns: 1fr;
  }

  .mini-btn {
    width: 100%;
  }

  .country-client-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-slider {
    mask-image: none;
  }

  .client-slider .client-logo-card {
    width: 180px;
    min-height: 140px;
    padding: 18px;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-grid img,
  .gallery-grid video {
    max-height: none;
  }

  .footer-main img {
    width: min(220px, 72vw);
  }

  .newsletter form {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
  }

  .newsletter input,
  .newsletter .btn {
    border-radius: 10px;
  }

  .footer-bottom {
    display: grid;
  }

  .social-float {
    right: 12px;
    bottom: 12px;
  }

  .social-main {
    width: 48px;
    height: 48px;
    font-size: 0.76rem;
  }

  .social-menu {
    right: 3px;
    bottom: 58px;
    gap: 8px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .section,
  .footer-main,
  .stats-band {
    width: calc(100% - 24px);
  }

  .brand img {
    width: min(210px, 78vw);
  }

  .nav {
    gap: 6px 10px;
    font-size: 0.78rem;
  }

  .nav a {
    padding: 6px 0;
  }

  .hero {
    padding-inline: 12px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 0.98rem;
  }

  .card,
  .form-card,
  .why-panel,
  .recent-jobs,
  .job-card,
  .industry-card,
  .testimonial-card {
    padding: 18px;
  }

  .category-card {
    min-height: 104px;
  }

  .stats-band div {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stat-icon {
    margin: 0 auto;
  }

  .client-slider .client-logo-card {
    width: 160px;
  }

  .contact-list a,
  .contact-list span {
    padding: 12px;
    font-size: 0.86rem;
  }
}
