:root {
  --bg: #f6f8fc;
  --panel: rgba(11, 18, 32, 0.04);
  --text: rgba(11, 18, 32, 0.92);
  --muted: rgba(11, 18, 32, 0.68);
  --brand: #2563eb;
  --brand-2: #ef4444;
  --ring: rgba(37, 99, 235, 0.38);
  --shadow: 0 22px 60px rgba(11, 18, 32, 0.18);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-scale {
  transform: translateY(14px) scale(0.98);
}
.reveal.reveal-scale.is-revealed {
  transform: translateY(0) scale(1);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(
      1200px 700px at 20% -20%,
      rgba(37, 99, 235, 0.14),
      transparent 58%
    ),
    radial-gradient(
      900px 500px at 85% 10%,
      rgba(239, 68, 68, 0.1),
      transparent 55%
    ),
    var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.55;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
body::before {
  left: -220px;
  top: 18vh;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.35), transparent 60%);
}
body::after {
  right: -240px;
  bottom: 10vh;
  background: radial-gradient(circle at 30% 30%, rgba(234, 66, 66, 0.3), transparent 62%);
}

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

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

.container {
  width: min(1120px, calc(100% - clamp(24px, 5vw, 40px)));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 18, 32, 0.18);
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform 140ms ease;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: saturate(150%) blur(12px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(11, 18, 32, 0.1);
  transition: box-shadow 180ms ease, background 180ms ease;
}
@supports not ((backdrop-filter: blur(12px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
}
.site-header[data-scrolled="true"] {
  box-shadow: 0 14px 35px rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.site-header .container {
  width: 100%;
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-height: 84px;
  padding: 22px clamp(20px, 4vw, 40px);
  gap: 16px;
}

.header-nav-wrap {
  display: contents;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(8px, 1.4vw, 18px);
  margin-left: auto;
  margin-right: 14px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.86);
}

@media (min-width: 761px) {
  .site-nav[data-open="true"] {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(20px, 4vw, 40px);
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    min-width: min(280px, calc(100vw - 32px));
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 18, 32, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow);
    gap: 4px;
  }
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 12px;
}
.site-nav .admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f4d35e);
  color: #3b2a00;
  font-weight: 800;
  border: 1px solid rgba(130, 97, 16, 0.35);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.28);
}
.site-nav a:hover {
  color: #0959e4;
}
.site-nav a.active {
  color: #0959e4;
  background: transparent;
  box-shadow: none;
}
.site-nav .admin-btn:hover,
.site-nav .admin-btn.active {
  color: #3b2a00;
  background: linear-gradient(135deg, #cfa321, #efcb4a);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.34);
}
.site-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.floating-lang {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1000;
}
.floating-lang-trigger {
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #4f46e5);
  color: white;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.3);
}
.floating-lang-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), 0 12px 26px rgba(37, 99, 235, 0.3);
}
.floating-lang-menu {
  position: absolute;
  left: 0;
  bottom: 56px;
  display: none;
  min-width: 150px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 18, 32, 0.14);
  box-shadow: 0 14px 32px rgba(11, 18, 32, 0.18);
}
.floating-lang[data-open="true"] .floating-lang-menu {
  display: grid;
  gap: 8px;
}
.floating-lang label {
  display: block;
  gap: 0;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(11, 18, 32, 0.84);
}
.floating-lang select {
  border: 1px solid rgba(11, 18, 32, 0.16);
  border-radius: 10px;
  padding: 6px 8px;
  font: inherit;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.9);
  background: white;
}
.floating-lang select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

.floating-career {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ea4242;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 12px 26px rgba(234, 66, 66, 0.32);
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  max-width: min(92vw, 320px);
}
.floating-career:hover {
  background: #d73737;
}
.floating-career:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), 0 12px 26px rgba(234, 66, 66, 0.32);
}
.floating-career-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.career-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  background: rgba(11, 18, 32, 0.45);
}
.career-popup-overlay[data-open="true"] {
  display: flex;
}
.career-popup {
  width: min(520px, 100%);
  max-height: min(84vh, 760px);
  overflow: auto;
  border-radius: 18px;
  background: #ea4242;
  color: #fff;
  padding: 20px;
  box-shadow: 0 28px 58px rgba(11, 18, 32, 0.35);
  position: relative;
}
.career-popup h3,
.career-popup h4 {
  margin: 0 0 10px;
}
.career-popup p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.96);
}
.career-popup ul {
  margin: 0 0 14px;
  padding-left: 18px;
}
.career-popup li {
  margin: 6px 0;
}
.career-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  color: #ea4242;
  background: #fff;
}
.career-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #ea4242;
  font-weight: 800;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
  outline: 2px solid #0959e4;
  outline-offset: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(11, 18, 32, 0.85);
}

.hero {
  padding: 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(320px, 56vh, 680px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.hero-image.is-active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-dot:hover {
  transform: scale(1.08);
}

.hero-dot.is-active {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.98);
}

.hero-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.38);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border 120ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #4f46e5);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}
.btn.primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.btn.secondary {
  color: white;
  background: linear-gradient(135deg, var(--brand-2), #f97316);
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.2);
}
.btn.secondary:hover {
  background: linear-gradient(135deg, #dc2626, #ea580c);
}

.btn.ghost {
  color: rgba(11, 18, 32, 0.9);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(11, 18, 32, 0.14);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.88);
}

.btn.link {
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(11, 18, 32, 0.84);
}
.btn.link:hover {
  text-decoration: underline;
}
.btn.link.on-light {
  color: rgba(11, 18, 32, 0.84);
}


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

.section {
  padding: 72px 0;
}

.section.alt {
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 0.03),
    transparent 60%
  );
  border-top: 1px solid rgba(11, 18, 32, 0.06);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 56px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0959e4, #ea4242);
  opacity: 0.9;
}
.section-head p {
  margin: 0;
  max-width: 70ch;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.service-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0959e4, #ea4242);
}
.service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 89, 228, 0.35);
  box-shadow: 0 18px 44px rgba(9, 89, 228, 0.16);
}
.service-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #0b3b8f;
}
.service-item p {
  margin: 0;
  color: rgba(11, 18, 32, 0.74);
}
.services-closing {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(9, 89, 228, 0.2);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.16),
    rgba(239, 68, 68, 0.12)
  );
  font-weight: 700;
}

.workforce-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.workforce-group {
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.workforce-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.14);
}
.workforce-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}
.workforce-group h3 {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(11, 18, 32, 0.95);
}
.workforce-group p {
  margin: 0 0 10px;
}
.workforce-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.workforce-count {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.9);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}
.workforce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.workforce-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.88);
  padding: 6px 10px;
  font-weight: 650;
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.86);
}
.workforce-group:nth-child(2) {
  background: #f8fffb;
  border-color: rgba(22, 163, 74, 0.18);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.08);
}
.workforce-group:nth-child(2)::before {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.workforce-group:nth-child(3) {
  background: #fffaf5;
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.08);
}
.workforce-group:nth-child(3)::before {
  background: linear-gradient(90deg, #f97316, #fb923c);
}
.workforce-group:nth-child(4) {
  background: #f9f7ff;
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.08);
}
.workforce-group:nth-child(4)::before {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.workforce-closing {
  margin: 16px 0 0;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}
.about-copy {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 255, 0.9));
  border: 1px solid rgba(9, 89, 228, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
  position: relative;
  overflow: hidden;
}
.about-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0959e4, #ea4242);
}
.about-copy h2 {
  margin: 0 0 10px;
  color: #0b3b8f;
}
.about-copy .muted {
  color: rgba(11, 18, 32, 0.78);
}
.about-media img {
  border-radius: var(--radius);
  border: 1px solid rgba(9, 89, 228, 0.22);
  box-shadow: 0 18px 42px rgba(9, 89, 228, 0.2);
  object-fit: cover;
  width: 100%;
  height: min(380px, 46vh);
}

.why-choose {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.9));
  border: 1px solid rgba(9, 89, 228, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.08);
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0959e4, #ea4242);
}
#why-choose-us .section-head {
  justify-items: center;
  text-align: center;
}
#why-choose-us .section-head h2 {
  color: #0b3b8f;
}
#why-choose-us .why-choose {
  text-align: left;
}
#why-choose-us .why-choose .muted {
  margin: 0 0 12px;
  color: rgba(11, 18, 32, 0.8);
}
#why-choose-us .why-choose .muted:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.9));
  border: 1px solid rgba(9, 89, 228, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.12);
  position: relative;
  overflow: hidden;
}
.form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0959e4, #ea4242);
}

#contact {
  padding: 40px 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.58),
      rgba(255, 255, 255, 0.64)
    ),
    url("For Web/contact us.jpg") center / cover no-repeat;
}
#contact .section-head .muted {
  color: rgba(11, 18, 32, 0.82);
}
#contact .section-head {
  justify-items: center;
  text-align: center;
}
#contact .section-head h2 {
  color: #0b3b8f;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.8);
}

input,
textarea,
.apply-form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(9, 89, 228, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(11, 18, 32, 0.92);
  font: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
textarea:focus,
.apply-form select:focus {
  outline: none;
  border-color: rgba(234, 66, 66, 0.6);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(234, 66, 66, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.form-feedback {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
}
.form-feedback[hidden] {
  display: none !important;
}
.form-feedback--success {
  color: #14532d;
  background: #ecfdf5;
  border: 1px solid #86efac;
}
.form-feedback--error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.apply-page .section {
  min-height: calc(100vh - 160px);
  display: grid;
  align-items: center;
}

.apply-page .section-head {
  justify-items: center;
  text-align: center;
}

.apply-form {
  max-width: 860px;
  margin: 0 auto;
}

.admin-page .admin-login-wrap {
  max-width: 1100px;
}

.admin-dashboard-shell {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(16px, 4vw, 48px) 48px;
}

.admin-dashboard-shell[hidden] {
  display: none !important;
}

.admin-dashboard-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.admin-dashboard-shell .admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.admin-dashboard-shell #adminPasswordCard {
  max-width: 720px;
  width: 100%;
  justify-self: center;
}

.admin-dashboard-shell #employeeApplicationsCard,
.admin-dashboard-shell #contactSubmissionsCard {
  width: 100%;
  min-width: 0;
}

.admin-head {
  justify-items: center;
  text-align: center;
}

.admin-login-form {
  max-width: 760px;
  margin: 0 auto 20px;
}

.admin-login-fields {
  display: grid;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.admin-login-fields label {
  text-align: center;
}

.admin-login-fields input {
  text-align: center;
}

.admin-captcha {
  max-width: 460px;
  margin: 12px auto 0;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.9);
}

.admin-captcha-label {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.admin-captcha-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.admin-captcha-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
}

.admin-captcha-refresh {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.admin-captcha-input-label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  text-align: center;
}

.admin-captcha-input-label input {
  width: 100%;
  text-align: center;
}

.admin-login-form .form-actions {
  justify-content: center;
}

.admin-hint {
  margin: 8px 0 0;
  text-align: center;
}

.admin-login-feedback {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.admin-leave-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 18, 32, 0.45);
}

.admin-leave-modal[hidden] {
  display: none;
}

.admin-leave-modal__dialog {
  width: min(440px, 100%);
  padding: 22px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-leave-modal__dialog h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.admin-leave-modal__text {
  margin: 0 0 18px;
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.5;
}

.admin-leave-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

body.admin-leave-modal-open {
  overflow: hidden;
}

.toast-root {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 1200;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 24px));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.18);
  transform: translateY(-4px);
  opacity: 1;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast--hide {
  opacity: 0;
  transform: translateY(-10px);
}

.toast__message {
  font-weight: 750;
  color: rgba(11, 18, 32, 0.88);
  line-height: 1.35;
}

.toast__close {
  border: 0;
  background: rgba(11, 18, 32, 0.06);
  color: rgba(11, 18, 32, 0.76);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
}
.toast__close:hover {
  background: rgba(11, 18, 32, 0.1);
}
.toast__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.toast--error {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(254, 242, 242, 0.95);
}
.toast--error .toast__message {
  color: rgba(153, 27, 27, 0.95);
}

.toast--success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(236, 253, 245, 0.95);
}
.toast--success .toast__message {
  color: rgba(20, 83, 45, 0.95);
}

.toast--info {
  border-color: rgba(37, 99, 235, 0.28);
}

.admin-storage-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-size: 0.92rem;
}

.admin-dashboard {
  margin-top: 16px;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-toolbar h3 {
  margin: 0;
}

.admin-section-switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.admin-section-btn.is-active {
  color: white;
  background: linear-gradient(135deg, var(--brand), #4f46e5);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: var(--radius);
  padding: 14px;
}

.admin-card h4 {
  margin: 0 0 10px;
}

.admin-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: grid;
  place-items: center;
  background: rgba(11, 18, 32, 0.45);
  padding: 16px;
}

.admin-filter-overlay[hidden] {
  display: none !important;
}

.admin-filter-modal {
  width: min(480px, 100%);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 18, 32, 0.14);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 24px 54px rgba(11, 18, 32, 0.22);
}

.admin-filter-modal h4 {
  margin: 0 0 4px;
}

.admin-filter-modal .muted {
  margin: 0 0 12px;
}

.admin-filter-fields {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-password-form {
  display: grid;
  gap: 10px;
}

.admin-item {
  border: 1px solid rgba(9, 89, 228, 0.18);
  border-radius: 12px;
  padding: 10px;
  background: rgba(245, 249, 255, 0.78);
}

.admin-item p {
  margin: 0 0 6px;
}

.admin-item p:last-child {
  margin-bottom: 0;
}


.site-footer {
  padding: 8px 0 4px;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(246, 248, 252, 0.92)
  );
}
.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-brand {
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  height: 34px;
  width: auto;
  margin: 0 0 4px;
}
.footer-brand .muted {
  margin: 0 0 4px;
  color: #0959e4;
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-address {
  white-space: nowrap;
  text-align: center;
}
.footer-contact {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.72rem, 1.9vw, 0.9rem);
  line-height: 1.4;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social-link img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: transform 140ms ease;
}
.footer-social-link:hover img {
  transform: translateY(-1px) scale(1.05);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding: 4px 0 0;
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.admin-panel .site-footer {
  padding: 14px 0 10px;
}

.admin-panel .footer-inner {
  gap: 10px;
}

.admin-panel .footer-logo {
  height: 36px;
  margin-bottom: 5px;
}

.admin-panel .footer-brand .muted {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.admin-panel .footer-bottom {
  margin-top: 8px;
  padding-top: 6px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .section {
    padding: 56px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .workforce-groups {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
    padding: 18px 16px;
  }
  .brand-logo {
    height: 42px;
  }

  .site-nav {
    display: none;
    margin: 0;
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    z-index: 1001;
    min-width: min(280px, calc(100vw - 32px));
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 18, 32, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 12px 12px;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .floating-lang {
    left: max(10px, env(safe-area-inset-left));
    bottom: max(10px, env(safe-area-inset-bottom));
  }
  .floating-career {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 9px 12px;
    font-size: 0.9rem;
  }
  .career-popup-overlay {
    padding: 12px;
    align-items: flex-end;
    justify-content: center;
  }
  .career-popup {
    max-height: 76vh;
    padding: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .floating-career {
    max-width: 72vw;
  }

  .floating-career span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Avoid overflow on very small screens while keeping center alignment. */
  .footer-address {
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .footer-contact {
    white-space: nowrap;
    font-size: clamp(0.66rem, 2.8vw, 0.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
  .site-header {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

