:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #0b1530;
  --surface-dark-2: #101d3e;
  --text: #10213f;
  --text-soft: #55637d;
  --line: rgba(13, 29, 67, 0.1);
  --primary: #123a74;
  --primary-strong: #0d2852;
  --accent: #16b3a8;
  --accent-soft: rgba(22, 179, 168, 0.14);
  --gold: #d6b15f;
  --shadow: 0 24px 70px rgba(11, 21, 48, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 179, 168, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(18, 58, 116, 0.12), transparent 32%),
    var(--bg);
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(11, 21, 48, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.28);
  background: rgba(11, 21, 48, 0.92);
}

.topbar {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #58d9d1);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(22, 179, 168, 0.28);
}

.brand-mark-logo {
  width: clamp(118px, 12vw, 170px);
  height: clamp(46px, 4.8vw, 62px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(104, 211, 210, 0.2));
}

.brand:hover .brand-mark-logo {
  filter: drop-shadow(0 10px 18px rgba(103, 202, 211, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
  color: #fff;
}

.brand-copy strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.topbar-right,
.contact-strip,
.social-links,
.main-nav {
  display: flex;
  align-items: center;
}

.topbar-right {
  gap: 18px;
  justify-self: end;
}

.contact-strip {
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.contact-strip a:hover,
.main-nav > a:hover,
.dropdown-menu a:hover {
  color: #fff;
}

.social-links {
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.social-links svg,
.icon-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0a8d9f);
  box-shadow: 0 20px 35px rgba(22, 179, 168, 0.25);
}

.button-primary:hover {
  box-shadow: 0 24px 42px rgba(22, 179, 168, 0.32);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-sm {
  min-height: 44px;
  padding: 0 18px;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  justify-self: end;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav {
  gap: 28px;
  padding: 22px 0 18px;
}

.main-nav > a,
.nav-link-with-caret {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.main-nav > a.nav-active {
  color: #fff;
}

.mobile-only-nav {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-link-with-caret {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-dropdown.open .caret {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 20px 50px rgba(13, 24, 43, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.topbar-login .dropdown-menu {
  min-width: 190px;
}

.nav-link-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 130px;
  min-height: 46px;
  padding: 12px 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 34px rgba(22, 179, 168, 0.22);
}

.nav-link-login .caret {
  border-color: currentColor;
  flex: 0 0 auto;
  margin-top: -2px;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: rgba(18, 58, 116, 0.06);
  color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 26, 0.86) 0%, rgba(5, 12, 26, 0.58) 45%, rgba(5, 12, 26, 0.74) 100%),
    linear-gradient(180deg, rgba(11, 21, 48, 0.25), rgba(11, 21, 48, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 84px 0 96px;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.hero h1,
.intro h2,
.section-heading h2,
.feature-copy h3,
.inline-cta h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-quote {
  margin: 22px 0 0;
  color: #d7ebea;
  font-style: italic;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.intro-card {
  padding: 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-card h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.intro-card p:last-child {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.85;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.compact-heading {
  margin-bottom: 22px;
}

.center-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid,
.skilling-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

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

.stat-card,
.mini-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 63, 0.07);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 27, 58, 0.08);
}

.stat-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.stat-card span,
.mini-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 42px;
}

.feature-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

.feature-media {
  position: relative;
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(18, 58, 116, 0.06));
  border-radius: 32px;
  z-index: 0;
}

.feature-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-copy {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(15, 27, 58, 0.07);
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.12), rgba(22, 179, 168, 0.15));
  border-radius: 16px;
  margin-bottom: 20px;
}

.feature-copy h3,
.inline-cta h3,
.mini-card h3,
.footer-column h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.feature-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.feature-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 600;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 6px rgba(22, 179, 168, 0.1);
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  margin: 24px 0 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
  color: #fff;
  box-shadow: 0 24px 56px rgba(8, 14, 34, 0.18);
}

.inline-cta .eyebrow {
  color: #7ae7de;
}

.inline-cta h3 {
  max-width: 700px;
}

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

.mini-card h3 {
  font-size: 1.35rem;
}

.site-footer {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at top left, rgba(22, 179, 168, 0.16), transparent 26%),
    linear-gradient(180deg, #0c1732 0%, #091124 100%);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  padding: 72px 0 42px;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social {
  margin-top: 18px;
}

.contact-list li + li,
.footer-column ul li + li {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subpage-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
}

.subpage-hero-media,
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
}

.company-profile-media {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}

.company-profile-hero {
  min-height: 80vh;
  align-items: center;
  overflow: hidden;
  background: #081225;
}

.company-profile-hero .company-profile-media {
  filter: blur(1.5px) brightness(0.72) saturate(1.06);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.company-profile-hero .subpage-hero-overlay {
  background:
    radial-gradient(circle at 50% 46%, rgba(28, 198, 184, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(6, 13, 30, 0.48), rgba(6, 13, 30, 0.9)),
    linear-gradient(90deg, rgba(8, 18, 42, 0.82), rgba(8, 18, 42, 0.42), rgba(8, 18, 42, 0.82));
}

.company-profile-hero .subpage-hero-content {
  padding: 112px 0;
  text-align: center;
}

.company-profile-hero .eyebrow {
  color: rgba(117, 226, 213, 0.9);
}

.company-profile-hero .subpage-hero-text {
  color: rgba(255, 255, 255, 0.88);
}

.subpage-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 14, 31, 0.38), rgba(8, 14, 31, 0.82)),
    linear-gradient(90deg, rgba(12, 22, 47, 0.68), rgba(12, 22, 47, 0.26));
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 120px 0 96px;
  text-align: center;
}

.subpage-hero-content h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
}

.subpage-hero-text {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.8;
}

.profile-layout {
  background: linear-gradient(180deg, rgba(8, 19, 42, 0.98), rgba(10, 18, 38, 1));
  color: #fff;
}

.profile-intro-card {
  margin-top: -96px;
  position: relative;
  z-index: 2;
  padding: 38px 40px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(36, 52, 91, 0.96), rgba(22, 35, 69, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.profile-intro-card h2 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.profile-intro-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  margin-top: 34px;
}

.accordion-panel,
.profile-side-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.accordion-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(225deg);
}

.accordion-content {
  display: none;
  padding: 0 20px 18px;
}

.accordion-item.is-open .accordion-content {
  display: block;
}

.accordion-content p,
.profile-side-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.profile-side-card h3 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.profile-side-card .feature-points li {
  color: #fff;
}

.principles-section {
  background:
    radial-gradient(circle at top center, rgba(214, 177, 95, 0.08), transparent 20%),
    #f5f7fb;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.principle-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 18px 40px rgba(15, 27, 58, 0.08);
}

.principle-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 179, 168, 0.14), rgba(214, 177, 95, 0.24));
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
}

.principle-card h3 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
}

.principle-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.leadership-hero-media {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.leadership-overview {
  padding-top: 0;
  margin-top: -72px;
  position: relative;
  z-index: 2;
}

.leadership-summary-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 28px 70px rgba(12, 23, 46, 0.12);
}

.leadership-summary-card h2 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.leadership-summary-card p:not(.eyebrow) {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.leadership-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-stat {
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 21, 47, 0.98), rgba(16, 29, 62, 0.96));
  color: #fff;
  box-shadow: 0 18px 32px rgba(8, 14, 34, 0.18);
}

.mini-stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 0.95rem;
}

.executive-grid-section {
  padding-top: 44px;
}

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

.executive-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 254, 0.9));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
}

.executive-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.executive-avatar {
  width: 78px;
  height: 78px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.12), rgba(22, 179, 168, 0.18));
  box-shadow: 0 14px 28px rgba(15, 27, 58, 0.12);
}

.executive-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.executive-header h3 {
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  line-height: 1.15;
}

.executive-role,
.executive-credentials {
  margin: 0;
}

.executive-role {
  color: var(--accent);
  font-weight: 800;
}

.executive-credentials {
  margin-top: 4px;
  color: var(--text-soft);
}

.executive-sections {
  display: grid;
  gap: 22px;
}

.executive-sections section {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 63, 0.07);
}

.executive-sections h4 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.executive-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  line-height: 1.75;
}

.executive-list-strong {
  color: var(--text);
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.08), rgba(22, 179, 168, 0.12));
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.leadership-highlights {
  background:
    radial-gradient(circle at top left, rgba(18, 58, 116, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.highlight-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 18px 40px rgba(15, 27, 58, 0.06);
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
}

.highlight-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.vision-hero-media {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.vision-overview {
  padding-top: 0;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.vision-intro-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 28px 70px rgba(12, 23, 46, 0.12);
}

.vision-intro-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.vision-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vision-pillars-section {
  padding-top: 46px;
}

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

.vision-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 254, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
}

.vision-card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.vision-card-header h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.18;
}

.value-grid-section {
  background:
    radial-gradient(circle at top left, rgba(18, 58, 116, 0.08), transparent 22%),
    linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.services-hero-media {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.services-overview {
  padding-top: 0;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.services-intro-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 28px 70px rgba(12, 23, 46, 0.12);
}

.services-intro-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.services-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-category-section {
  padding-top: 44px;
}

.staffing-section {
  background:
    radial-gradient(circle at top left, rgba(18, 58, 116, 0.08), transparent 22%),
    linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card-grid-centered {
  grid-template-columns: repeat(2, minmax(280px, 344px));
  justify-content: center;
}

.service-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 254, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(15, 27, 58, 0.14);
  border-color: rgba(22, 179, 168, 0.22);
}

.service-card-top {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}

.service-card-top h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.18;
}

.case-studies-hero-media {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.case-studies-overview {
  padding-top: 0;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.case-studies-intro-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 28px 70px rgba(12, 23, 46, 0.12);
}

.case-studies-intro-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.case-studies-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-study-grid-section {
  padding-top: 46px;
}

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

.case-study-card {
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 254, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(15, 27, 58, 0.14);
  border-color: rgba(22, 179, 168, 0.22);
}

.case-study-header {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.case-study-header h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.18;
}

.case-study-sections {
  display: grid;
  gap: 16px;
}

.case-study-sections section {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 63, 0.07);
}

.case-study-sections h4 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}

.case-study-sections p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metrics-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.08), rgba(22, 179, 168, 0.12));
  color: var(--primary);
  font-weight: 800;
  font-size: 0.93rem;
}

.partnerships-hero-media {
  background-image: url("https://images.unsplash.com/photo-1523580494863-6f3031224c94?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.partnerships-overview {
  padding-top: 0;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.partnerships-intro-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 28px 70px rgba(12, 23, 46, 0.12);
}

.partnerships-intro-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.partnerships-stats,
.program-grid,
.impact-grid {
  display: grid;
  gap: 20px;
}

.partnerships-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.partner-institutions-section {
  background:
    radial-gradient(circle at top left, rgba(18, 58, 116, 0.08), transparent 22%),
    linear-gradient(180deg, #f6f8fc 0%, #eef3fa 100%);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 254, 0.92));
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(15, 27, 58, 0.14);
  border-color: rgba(22, 179, 168, 0.22);
}

.partner-logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(22, 179, 168, 0.18);
}

.partner-card .tag-row {
  margin-bottom: 22px;
}

.partner-card h3 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.18;
}

.partner-card .executive-list {
  margin-bottom: 0;
}

.partner-card-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.partner-button {
  width: auto;
  color: var(--primary);
  background: rgba(18, 58, 116, 0.06);
  border-color: rgba(18, 58, 116, 0.12);
}

.partner-button:hover {
  background: rgba(22, 179, 168, 0.12);
}

.partner-button.is-disabled {
  opacity: 0.58;
  pointer-events: none;
  cursor: default;
}

.partner-mou-empty {
  display: inline-flex;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.mou-modal-open {
  overflow: hidden;
}

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

.mou-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.mou-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 31, 0.68);
  backdrop-filter: blur(10px);
}

.mou-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 96vw);
  height: min(860px, 90vh);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(247, 250, 255, 0.98);
  box-shadow: 0 34px 90px rgba(5, 11, 26, 0.38);
}

.mou-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(16, 33, 63, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.mou-modal-header h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  color: var(--text);
}

.mou-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mou-modal-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 58, 116, 0.12);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(18, 58, 116, 0.06);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.mou-modal-close:hover,
.mou-modal-close:focus-visible {
  background: rgba(22, 179, 168, 0.12);
  outline: none;
}

.mou-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.gallery-hero-media {
  background-image:
    linear-gradient(180deg, rgba(8, 16, 34, 0.08), rgba(8, 16, 34, 0.24)),
    url("images/Gallery images/1.jpg.jpeg");
  background-position: center;
}

.gallery-section {
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fa 100%);
}

.gallery-status {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 63, 0.08);
  border-radius: 26px;
  padding: 0;
  background: #fff;
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
  cursor: pointer;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 179, 168, 0.22);
  box-shadow: 0 32px 60px rgba(15, 27, 58, 0.14);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card span {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  color: #fff;
  background: rgba(8, 16, 34, 0.72);
  backdrop-filter: blur(14px);
}

.gallery-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}

.gallery-card small {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.gallery-empty-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 33, 63, 0.08);
  color: var(--text-soft);
}

.gallery-empty-card strong {
  color: var(--text);
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 26px;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 14, 31, 0.78);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 96vw);
  max-height: 92vh;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(247, 250, 255, 0.98);
  box-shadow: 0 34px 90px rgba(5, 11, 26, 0.42);
}

.gallery-lightbox-panel img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  background: #071024;
}

.gallery-lightbox-panel figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 22px;
}

.gallery-lightbox-panel figcaption strong {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
}

.gallery-lightbox-panel figcaption span {
  color: var(--text-soft);
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 16, 34, 0.68);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.admin-gallery-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-dashboard-gallery-panel {
  margin-top: 24px;
  scroll-margin-top: 120px;
}

.admin-dashboard-gallery-panel .admin-gallery-layout {
  margin-top: 18px;
}

.admin-dashboard-gallery-panel .admin-side-card {
  gap: 12px;
}

.gallery-upload-form,
.gallery-upload-form label {
  display: grid;
  gap: 10px;
}

.gallery-upload-form {
  gap: 18px;
}

.gallery-upload-form label span,
.admin-gallery-card label span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-upload-form input,
.gallery-upload-form textarea,
.admin-gallery-card input,
.admin-gallery-card textarea {
  width: 100%;
  border: 1px solid rgba(99, 113, 140, 0.18);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(247, 250, 255, 0.95);
  font: inherit;
}

.gallery-upload-form input[type="file"] {
  padding: 11px;
}

.gallery-upload-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 63, 0.08);
  border-radius: 20px;
  background: rgba(247, 250, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.gallery-upload-preview[hidden] {
  display: none;
}

.gallery-upload-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.gallery-upload-preview figcaption {
  padding: 10px 12px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.admin-gallery-card,
.admin-gallery-empty {
  overflow: hidden;
  border: 1px solid rgba(16, 33, 63, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 27, 58, 0.08);
}

.admin-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.admin-gallery-card-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.admin-gallery-card label {
  display: grid;
  gap: 8px;
}

.admin-gallery-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--text-soft);
}

.admin-gallery-empty strong {
  color: var(--text);
}

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

.dashboard-hero {
  padding: 84px 0 130px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(22, 179, 168, 0.32), transparent 28%),
    linear-gradient(135deg, #091124 0%, #123a74 54%, #16b3a8 140%);
}

.dashboard-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
}

.dashboard-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.dashboard-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.dashboard-sync-card {
  justify-self: end;
  width: min(100%, 360px);
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.dashboard-sync-card span,
.dashboard-sync-card small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-sync-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
}

.dashboard-section {
  margin-top: -86px;
  position: relative;
  z-index: 2;
}

.dashboard-stat-grid,
.dashboard-chart-grid {
  display: grid;
  gap: 20px;
}

.dashboard-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-stat-card,
.dashboard-panel,
.dashboard-controls {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
}

.dashboard-stat-card {
  padding: 24px;
  border-radius: 26px;
}

.dashboard-stat-card span,
.dashboard-stat-card small {
  color: var(--text-soft);
}

.dashboard-stat-card strong {
  display: block;
  margin: 10px 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.dashboard-controls {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0;
  padding: 20px;
  border-radius: 26px;
}

.dashboard-controls label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-controls input,
.dashboard-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 33, 63, 0.12);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.dashboard-chart-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 22px;
}

.dashboard-panel {
  padding: 24px;
  border-radius: 28px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.panel-heading h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
}

.result-count {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(18, 58, 116, 0.08);
  font-weight: 800;
}

.bar-chart {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 12px;
  align-items: center;
}

.bar-row span,
.bar-row strong {
  font-size: 0.9rem;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 58, 116, 0.08);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.empty-chart {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.donut-wrap {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.donut-chart {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
}

.donut-chart::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #fff;
}

.donut-chart span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.donut-chart small {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.donut-legend {
  display: grid;
  gap: 8px;
  width: 100%;
}

.donut-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

.donut-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.table-shell {
  overflow-x: auto;
}

.placement-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.placement-table th {
  text-align: left;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--surface-dark);
}

.placement-table th:first-child {
  border-top-left-radius: 18px;
}

.placement-table th:last-child {
  border-top-right-radius: 18px;
}

.placement-table th button {
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 800;
  cursor: pointer;
}

.placement-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(16, 33, 63, 0.08);
  color: var(--text);
}

.placement-table td strong,
.placement-table td small {
  display: block;
}

.placement-table td small {
  margin-top: 4px;
  color: var(--text-soft);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
}

.status-badge.placed {
  color: #067a70;
  background: rgba(22, 179, 168, 0.14);
}

.status-badge.interviewing {
  color: #8a6414;
  background: rgba(214, 177, 95, 0.22);
}

.status-badge.offer-pending {
  color: #123a74;
  background: rgba(18, 58, 116, 0.12);
}

.status-badge.rejected {
  color: #b42318;
  background: rgba(220, 38, 38, 0.12);
}

.contact-hero {
  padding: 92px 0 128px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(22, 179, 168, 0.28), transparent 30%),
    linear-gradient(135deg, #091124 0%, #123a74 58%, #16b3a8 145%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: end;
}

.contact-hero h1 {
  margin: 0;
  max-width: 860px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-trust-grid article,
.contact-info-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.contact-trust-grid strong,
.contact-trust-grid span,
.contact-info-card span,
.contact-info-card a,
.contact-info-card p {
  display: block;
}

.contact-trust-grid strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
}

.contact-trust-grid span,
.contact-info-card span,
.contact-info-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.contact-info-card {
  justify-self: end;
  width: min(100%, 390px);
}

.contact-info-card a {
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
}

.contact-section {
  margin-top: -86px;
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
/* Center login form for single layout */
.contact-layout-single {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.contact-map-card,
.contact-form {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 22px 52px rgba(12, 23, 46, 0.1);
  width: 100%;
  margin: 0 auto;
}

.contact-map-card {
  max-width: 420px;
}

.contact-form {
  max-width: 760px;
  justify-self: stretch;
}

.map-visual {
  min-height: 340px;
  display: block;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #eef4f7;
}

.map-embed-card{
    position: relative;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.contact-map-frame{
    width:100%;
    height:100%;
    border:0;

    /* lock interaction */
    pointer-events:none;
    user-select:none;
}

.contact-map-open{
    position:absolute;
    top:18px;
    left:18px;
    z-index:5;

    background:white;
    color:#4462b0;
    padding:16px 28px;
    border-radius:22px;
    font-weight:800;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.contact-map-open::after{
    content:" ↗";
}

.contact-map-place{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-70%);
    z-index:4;
    pointer-events:none;
}

.contact-map-place-pin{
    width:42px;
    height:42px;
    background:#EA4335;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);
    box-shadow:0 10px 20px rgba(234,67,53,.35);
    position:relative;
}

.contact-map-place-pin-core{
    position:absolute;
    width:14px;
    height:14px;
    background:#b42318;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) rotate(45deg);
}

.contact-map-meta{
    margin-top:28px;
}

.contact-map-meta p{
    font-size:20px;
    line-height:1.7;
    color:#5f6b86;
    margin-bottom:24px;
}

.contact-map-directions{
    width:100%;
    height:72px;
    border-radius:999px;
    font-size:22px;
    font-weight:800;
    background:linear-gradient(90deg,#6fcdbb,#5a93c9);
    color:white;
    border:none;
}
.contact-map-directions:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(76, 147, 182, 0.28);
}

/* Contact map refinements */
.map-embed-card {
  border-radius: 22px;
  background: #dfe7f2;
}

.contact-map-frame {
  display: block;
  filter: saturate(0.92) contrast(1.02) brightness(1.01);
  transition: transform 0.28s ease;
}

.map-embed-card:hover .contact-map-frame {
  transform: scale(1.01);
}

.map-embed-card.is-interactive .contact-map-frame {
  pointer-events: auto;
}

.contact-map-place {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.contact-map-place-pin {
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, #ea4335, #d93025);
  box-shadow: 0 18px 32px rgba(217, 48, 37, 0.24), 0 0 0 6px rgba(255, 255, 255, 0.42);
}

.contact-map-place-pin-core {
  display: none;
}

.contact-map-activate {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: transparent;
  font-size: 0;
}

.contact-map-activate::after {
  content: "Tap to interact";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 33, 68, 0.82);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(20, 33, 68, 0.18);
}

.map-embed-card.is-interactive .contact-map-activate {
  display: none;
}

.contact-map-meta {
  margin-top: 24px;
}

.contact-map-meta p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-map-directions,
.contact-map-larger {
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
}

.contact-map-directions {
  flex: 1 1 100%;
  box-shadow: 0 22px 40px rgba(109, 202, 205, 0.28);
}

.contact-map-directions:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 28px 48px rgba(109, 202, 205, 0.38);
}

.contact-mini-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-mini-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(18, 58, 116, 0.05);
}

.contact-mini-grid strong,
.contact-mini-grid span {
  display: block;
}

.contact-mini-grid span {
  margin-top: 6px;
  color: var(--text-soft);
  line-height: 1.7;
}

.form-heading h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.form-heading p:not(.eyebrow) {
  margin: 10px 0 26px;
  color: var(--text-soft);
}

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

.contact-form > label {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 33, 63, 0.12);
  border-radius: 16px;
  padding: 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(22, 179, 168, 0.55);
  box-shadow: 0 0 0 4px rgba(22, 179, 168, 0.12);
}

.contact-form input:user-invalid,
.contact-form select:user-invalid,
.contact-form textarea:user-invalid {
  border-color: rgba(220, 38, 38, 0.48);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.contact-submit {
  width: 100%;
}

.contact-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-form-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  max-width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  background: linear-gradient(135deg, rgba(23, 162, 148, 0.96), rgba(41, 112, 132, 0.96));
  box-shadow: 0 24px 54px rgba(12, 23, 46, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form-toast[data-state="error"] {
  background: linear-gradient(135deg, rgba(180, 35, 24, 0.96), rgba(122, 29, 29, 0.96));
}

.contact-form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-login-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
}

.admin-login-form .form-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-login-form .form-heading p {
  max-width: 42rem;
}

.admin-login-form .form-heading {
  margin-bottom: 28px;
}

.admin-login-form .form-heading p:not(.eyebrow) {
  margin-bottom: 0;
}

.admin-login-form > label {
  margin-top: 0;
}

.admin-login-form > label + label,
.admin-login-form .contact-submit,
.admin-login-form .form-status {
  margin-top: 28px;
}

.admin-login-form input {
  min-height: 54px;
}

.admin-login-form .contact-submit {
  min-height: 54px;
  margin-bottom: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-weight: 700;
  text-align: center;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.form-status[data-state="success"] {
  color: #087f5b;
}

.admin-login-main {
  background: #0b2345;
}

.admin-login-hero {
  position: relative;
  min-height: calc(100vh - 154px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(36px, 4vw, 64px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 76% 48%, rgba(0, 198, 184, 0.2), transparent 21%),
    radial-gradient(circle at 18% 18%, rgba(76, 171, 255, 0.2), transparent 25%),
    radial-gradient(circle at 50% 115%, rgba(0, 198, 184, 0.13), transparent 30%),
    linear-gradient(135deg, #0b2345 0%, #0f3868 48%, #144d87 100%);
}

.admin-login-hero::before,
.admin-login-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.admin-login-hero::before {
  z-index: -3;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(213, 228, 245, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 228, 245, 0.14) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 58% 45%, #000 0%, transparent 70%);
}

.admin-login-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(3, 11, 24, 0.1) 52%, rgba(2, 8, 20, 0.48) 100%),
    linear-gradient(115deg, rgba(5, 15, 36, 0.18), transparent 46%, rgba(4, 18, 38, 0.22));
}

.admin-login-orb,
.admin-login-network {
  position: absolute;
  pointer-events: none;
}

.admin-login-orb {
  z-index: -2;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.32;
  animation: adminGlowPulse 8s ease-in-out infinite;
}

.admin-login-orb-one {
  right: 9%;
  top: 17%;
  background: rgba(0, 198, 184, 0.58);
}

.admin-login-orb-two {
  left: -5%;
  bottom: 4%;
  width: 300px;
  height: 300px;
  background: rgba(55, 139, 226, 0.46);
  animation-delay: -3s;
}

.admin-login-network {
  z-index: -1;
  right: min(8vw, 120px);
  top: 20%;
  width: min(38vw, 520px);
  height: min(42vw, 500px);
  opacity: 0.34;
  background:
    linear-gradient(28deg, transparent 18%, rgba(213, 228, 245, 0.28) 18.2%, transparent 18.8%),
    linear-gradient(135deg, transparent 30%, rgba(0, 198, 184, 0.28) 30.2%, transparent 30.8%),
    linear-gradient(78deg, transparent 58%, rgba(213, 228, 245, 0.18) 58.2%, transparent 58.8%);
}

.admin-login-network span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(213, 228, 245, 0.7);
  box-shadow: 0 0 24px rgba(0, 198, 184, 0.42);
}

.admin-login-network span:nth-child(1) {
  top: 16%;
  left: 34%;
}

.admin-login-network span:nth-child(2) {
  top: 52%;
  right: 20%;
}

.admin-login-network span:nth-child(3) {
  left: 12%;
  bottom: 20%;
}

.admin-login-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.admin-login-copy {
  max-width: 640px;
  animation: adminFadeInLeft 0.8s ease both;
}

.admin-login-copy .eyebrow,
.admin-login-card .eyebrow {
  color: #00c6b8;
  letter-spacing: 0.22em;
}

.admin-login-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3.1rem, 4.6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.admin-login-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0 0;
  color: #d5e4f5;
  font-size: 1.125rem;
  line-height: 1.75;
}

.admin-login-card {
  position: relative;
  max-width: 450px;
  min-height: 0;
  margin: 0;
  justify-self: center;
  padding: 36px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 34px 90px rgba(2, 8, 23, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(22px);
  animation: adminCardRise 0.85s 0.12s ease both;
}

.admin-login-card-glow {
  position: absolute;
  inset: auto -24% -30% 18%;
  height: 180px;
  border-radius: 999px;
  background: rgba(0, 198, 184, 0.18);
  filter: blur(34px);
  pointer-events: none;
}

.admin-login-lock-mark {
  position: absolute;
  right: -34px;
  top: -32px;
  width: 144px;
  height: 144px;
  color: rgba(14, 141, 184, 0.08);
}

.admin-login-shield {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #0e8db8;
  background: linear-gradient(145deg, rgba(0, 198, 184, 0.12), rgba(14, 141, 184, 0.08));
  box-shadow: 0 16px 32px rgba(14, 141, 184, 0.12);
}

.admin-login-lock-mark svg,
.admin-login-shield svg,
.admin-input-wrap svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.admin-login-card .form-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  padding-right: 58px;
}

.admin-login-card .form-heading h2 {
  margin-top: 8px;
  color: #10213f;
  font-size: 2rem;
  letter-spacing: 0;
}

.admin-login-card .form-heading p:not(.eyebrow) {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.admin-login-card > label {
  position: relative;
  z-index: 1;
  gap: 9px;
  color: #52627a;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.admin-login-card > label + label,
.admin-login-card .contact-submit,
.admin-login-card .form-status {
  margin-top: 16px;
}

.admin-input-wrap {
  position: relative;
  display: block;
}

.admin-input-wrap svg {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 19px;
  height: 19px;
  color: #7890aa;
  transform: translateY(-50%);
  transition: color 0.2s ease;
}

.admin-login-card input {
  min-height: 48px;
  border-radius: 10px;
  padding: 0 14px 0 46px;
  border-color: rgba(15, 35, 66, 0.15);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(15, 35, 66, 0.02);
}

.admin-input-wrap:focus-within svg {
  color: #0e8db8;
}

.admin-login-card input:focus {
  border-color: rgba(14, 141, 184, 0.72);
  box-shadow:
    0 0 0 4px rgba(14, 141, 184, 0.14),
    0 10px 24px rgba(14, 141, 184, 0.08);
}

.admin-login-card .contact-submit {
  position: relative;
  z-index: 1;
  min-height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16c6b8, #0e8db8);
  box-shadow: 0 18px 34px rgba(14, 141, 184, 0.25);
}

.admin-login-card .contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(0, 198, 184, 0.34);
}

.admin-login-card .form-status {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.92rem;
}

@keyframes adminGlowPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  50% {
    opacity: 0.36;
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

@keyframes adminFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes adminCardRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(22, 179, 168, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(18, 58, 116, 0.1), transparent 28%),
    #f4f7fb;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(11, 21, 48, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-header-row,
.admin-actions,
.admin-nav {
  display: flex;
  align-items: center;
}

.admin-header-row {
  min-height: 88px;
  justify-content: space-between;
  gap: 24px;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.admin-brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(104, 211, 210, 0.18));
}

.admin-brand:hover .brand-mark-logo {
  filter: drop-shadow(0 10px 18px rgba(103, 202, 211, 0.16));
}

.admin-brand .brand-mark-logo {
  width: clamp(126px, 11vw, 176px);
  height: clamp(48px, 4.9vw, 64px);
  padding: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-logo {
  width: clamp(132px, 13vw, 188px);
  height: clamp(50px, 5vw, 68px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-brand-text {
  display: grid;
  gap: 2px;
}

.footer-brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-brand-text small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.admin-nav {
  gap: 22px;
}

.admin-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  transition: color 0.2s ease;
}

.admin-nav a:hover {
  color: #fff;
}

.admin-actions {
  gap: 14px;
}

.admin-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(122, 231, 222, 0.2);
  background: rgba(122, 231, 222, 0.1);
  color: #d9fffb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-login-toast {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  max-width: min(92vw, 360px);
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(20, 29, 61, 0.94);
  border: 1px solid rgba(129, 228, 218, 0.22);
  box-shadow: 0 22px 46px rgba(8, 14, 34, 0.28);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px) translateX(10px);
  transition: opacity 0.28s ease, transform 0.34s ease;
  backdrop-filter: blur(16px);
}

.admin-login-toast.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.admin-login-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(129, 228, 218, 0.28), rgba(67, 182, 236, 0.2));
  color: #b6fff6;
  font-weight: 800;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.admin-login-toast-copy {
  display: grid;
  gap: 3px;
}

.admin-login-toast-copy strong {
  color: #fff;
  font-size: 0.98rem;
}

.admin-login-toast-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.4;
}

.admin-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 50px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(22, 179, 168, 0.24), transparent 25%),
    radial-gradient(circle at 80% 28%, rgba(92, 106, 196, 0.24), transparent 26%),
    linear-gradient(135deg, #091124 0%, #123a74 54%, #5c6ac4 100%);
}

.admin-hero::before,
.admin-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.admin-hero::before {
  z-index: -2;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1.5px);
  background-position: 0 0, 0 0, 24px 18px;
  background-size: 58px 58px, 58px 58px, 112px 112px;
  mask-image: radial-gradient(circle at 50% 38%, #000 0%, transparent 72%);
}

.admin-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 74% 58%, rgba(22, 179, 168, 0.12), transparent 20%),
    radial-gradient(circle at center, transparent 0%, rgba(4, 14, 35, 0.08) 52%, rgba(4, 10, 24, 0.36) 100%);
}

.admin-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.admin-hero .eyebrow {
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.admin-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 4.2vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.admin-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
}

.admin-hero-card {
  justify-self: start;
  width: min(100%, 300px);
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 54px rgba(2, 8, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.admin-hero-card span,
.admin-hero-card strong,
.admin-hero-card small {
  display: block;
}

.admin-hero-card span,
.admin-hero-card small {
  color: rgba(255, 255, 255, 0.68);
}

.admin-hero-card strong {
  margin: 8px 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.admin-dashboard-section {
  margin-top: -35px;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.admin-stats-grid,
.admin-module-grid {
  display: grid;
  gap: 20px;
}

.admin-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-metric-card,
.admin-panel,
.admin-module-card,
.admin-side-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
}

.admin-metric-card {
  padding: 24px;
  border-radius: 26px;
}

.admin-metric-card span,
.admin-metric-card small {
  color: var(--text-soft);
}

.admin-metric-card strong {
  display: block;
  margin: 10px 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.admin-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 22px;
}

.admin-panel {
  padding: 26px;
  border-radius: 30px;
}

.admin-edit-focus {
  border-color: rgba(0, 198, 184, 0.44) !important;
  box-shadow: 0 0 0 4px rgba(0, 198, 184, 0.13), 0 28px 72px rgba(14, 141, 184, 0.2) !important;
  animation: adminEditFocusPulse 1.4s ease 2;
}

@keyframes adminEditFocusPulse {
  0% {
    transform: translateY(0);
  }

  35% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

.admin-intro-text {
  margin: 0 0 24px;
  color: var(--text-soft);
  line-height: 1.8;
}

.admin-module-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.admin-module-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.admin-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 62px rgba(15, 27, 58, 0.12);
  border-color: rgba(22, 179, 168, 0.22);
}

.admin-module-card h3 {
  margin: 14px 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.12;
}

.admin-module-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  flex-grow: 1;
  line-height: 1.75;
}

.admin-module-card .button {
  margin-top: auto;
  width: 100%;
}

.admin-module-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.14), rgba(22, 179, 168, 0.18));
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.admin-module-card-empty {
  grid-column: 1 / -1;
}

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

.admin-side-card {
  padding: 20px;
  border-radius: 22px;
}

.admin-side-card strong,
.admin-side-card span {
  display: block;
}

.admin-side-card span {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.75;
}

.placement-management-section {
  padding-bottom: 112px;
}

.admin-module-hero .admin-hero-card strong {
  font-size: 1.25rem;
}

.trainee-management-section {
  padding-bottom: 112px;
}

.placement-admin-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 22px;
}

.trainee-admin-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 22px;
}

.placement-form-panel,
.placement-summary-panel,
.placement-table-panel {
  position: relative;
}

.trainee-form-panel,
.trainee-summary-panel,
.trainee-table-panel {
  position: relative;
}

.placement-admin-form {
  display: grid;
  gap: 22px;
}

.trainee-admin-form {
  display: grid;
  gap: 22px;
}

.admin-form-accordion {
  display: grid;
  gap: 14px;
}

.admin-form-accordion .accordion-item {
  border: 1px solid rgba(99, 113, 140, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.95));
  box-shadow: 0 10px 24px rgba(15, 27, 58, 0.04);
}

.admin-form-accordion .accordion-trigger {
  color: var(--text);
  padding: 18px 20px;
}

.admin-form-accordion .accordion-trigger > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.admin-form-accordion .accordion-content {
  padding: 0 20px 20px;
}

.accordion-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.12), rgba(22, 179, 168, 0.18));
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.placement-form-grid,
.placement-toolbar {
  display: grid;
  gap: 16px;
}

.placement-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.trainee-form-grid.trainee-identity-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.placement-admin-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trainee-admin-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.placement-admin-form input,
.placement-admin-form select,
.placement-toolbar input,
.placement-toolbar select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(99, 113, 140, 0.18);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trainee-admin-form input,
.trainee-admin-form textarea,
.trainee-admin-form select,
.trainee-toolbar input,
.trainee-toolbar select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(99, 113, 140, 0.18);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.placement-admin-form input:focus,
.placement-admin-form select:focus,
.placement-toolbar input:focus,
.placement-toolbar select:focus {
  border-color: rgba(79, 70, 229, 0.42);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.trainee-admin-form input:focus,
.trainee-admin-form textarea:focus,
.trainee-admin-form select:focus,
.trainee-toolbar input:focus,
.trainee-toolbar select:focus {
  border-color: rgba(79, 70, 229, 0.42);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.placement-admin-form input:user-invalid,
.placement-admin-form select:user-invalid,
.trainee-admin-form input:user-invalid,
.trainee-admin-form textarea:user-invalid,
.trainee-admin-form select:user-invalid {
  border-color: rgba(220, 38, 38, 0.48);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.trainee-admin-form textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

.trainee-conditional-field {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.24s ease;
}

.trainee-conditional-field.is-visible {
  max-height: 130px;
  opacity: 1;
  transform: translateY(0);
}

.trainee-upload-field {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trainee-upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.trainee-upload-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px dashed rgba(99, 113, 140, 0.28);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.08), transparent 30%),
    rgba(247, 250, 255, 0.92);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.trainee-upload-card:hover,
.trainee-upload-card:focus,
.trainee-upload-card.is-drag-over {
  border-color: rgba(22, 179, 168, 0.5);
  box-shadow: 0 0 0 4px rgba(22, 179, 168, 0.1);
  transform: translateY(-1px);
}

.trainee-upload-preview {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(99, 113, 140, 0.14);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.trainee-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainee-upload-card strong,
.trainee-upload-card small {
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

.trainee-upload-card strong {
  color: var(--text);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.trainee-upload-card small {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.trainee-upload-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 24px;
}

.trainee-upload-field.is-invalid .trainee-upload-card {
  border-color: rgba(220, 38, 38, 0.48);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.placement-selected-card {
  min-height: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  border: 1px solid rgba(99, 113, 140, 0.12);
}

.placement-selected-card strong,
.placement-selected-card span {
  display: block;
}

.placement-full-span {
  grid-column: 1 / -1;
}

.placement-selected-card strong {
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
}

.placement-selected-card span {
  color: var(--text-soft);
  line-height: 1.65;
}

.trainee-highlight-card {
  min-height: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(22, 179, 168, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  border: 1px solid rgba(99, 113, 140, 0.12);
}

.trainee-highlight-card strong,
.trainee-highlight-card span {
  display: block;
}

.trainee-highlight-card strong {
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
}

.trainee-highlight-card span {
  color: var(--text-soft);
  line-height: 1.65;
}

.salary-repeater {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.salary-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.salary-tracking-panel {
  display: grid;
  gap: 14px;
}

.salary-tracking-help {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.salary-table-shell {
  overflow-x: auto;
  border: 1px solid rgba(16, 33, 63, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.salary-tracking-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.salary-tracking-table th,
.salary-tracking-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(16, 33, 63, 0.08);
}

.salary-tracking-table th {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(239, 246, 252, 0.9);
}

.salary-tracking-table td:first-child {
  width: 84px;
  color: var(--text);
  font-weight: 800;
}

.salary-tracking-table tr:last-child td {
  border-bottom: 0;
}

.salary-tracking-table input {
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
}

.salary-month-readonly {
  color: var(--text);
  background: rgba(239, 246, 252, 0.9);
  cursor: default;
}

.salary-table-empty {
  color: var(--text-soft);
  text-align: center;
}

.placement-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.placement-form-actions .button {
  width: auto;
}

.placement-toolbar {
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 22px;
}

.trainee-toolbar {
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 22px;
}

.placement-toolbar label,
.search-field {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trainee-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.placement-admin-table td:last-child {
  min-width: 170px;
}

.trainee-table td:nth-child(2),
.trainee-table td:nth-child(3),
.trainee-table td:nth-child(5) {
  white-space: nowrap;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.table-pagination span {
  color: var(--text-soft);
  font-weight: 700;
}

.pagination-summary {
  color: var(--text-soft);
  font-weight: 800;
}

.pagination-actions,
.pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(20, 77, 135, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 35, 69, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.pagination-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(0, 198, 184, 0.45);
  box-shadow: 0 16px 34px rgba(0, 150, 160, 0.16);
}

.pagination-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #16c6b8, #0e8db8);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(14, 141, 184, 0.28);
}

.pagination-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.pagination-ellipsis,
.pagination-mobile-meta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-weight: 900;
}

.pagination-mobile-meta {
  display: none;
}

.table-skeleton-row td {
  padding: 18px 20px;
}

.table-skeleton-line {
  display: block;
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.72), rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.72));
  background-size: 220% 100%;
  animation: tableSkeletonPulse 1.1s ease-in-out infinite;
}

@keyframes tableSkeletonPulse {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.table-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 70, 229, 0.14);
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.84rem;
  text-decoration: none;
  cursor: pointer;
}

.table-action-link:hover {
  background: rgba(79, 70, 229, 0.14);
}

.inline-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 8px 8px 0;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.table-action-danger {
  border: 1px solid rgba(220, 38, 38, 0.14);
  background: rgba(220, 38, 38, 0.08);
  color: #b42318;
}

.table-action-danger:hover {
  background: rgba(220, 38, 38, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .dropdown-menu,
  .button,
  .social-links a,
  .site-header {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .contact-strip {
    display: none;
  }

  .stats-grid,
  .skilling-grid,
  .footer-grid,
  .principles-grid,
  .highlights-grid,
  .value-grid,
  .service-card-grid,
  .case-study-grid,
  .program-grid,
  .gallery-grid,
  .partner-grid,
  .impact-grid,
  .dashboard-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-row,
  .feature-row.reverse,
  .profile-grid,
  .executive-grid,
  .leadership-summary-card,
  .vision-intro-card,
  .vision-pillars-grid,
  .services-intro-card,
  .case-studies-intro-card,
  .partnerships-intro-card {
    grid-template-columns: 1fr;
  }

  .dashboard-hero-content,
  .dashboard-chart-grid,
  .dashboard-controls,
  .admin-hero-grid,
  .admin-layout,
  .admin-gallery-layout,
  .placement-admin-grid,
  .trainee-admin-grid,
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .leadership-stats,
  .vision-intro-stats,
  .services-intro-stats,
  .case-studies-stats,
  .partnerships-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-copy {
    order: initial;
  }

  .admin-hero {
    min-height: 310px;
    padding: 44px 0;
  }

  .admin-hero-grid {
    gap: 28px;
  }

  .admin-hero h1 {
    max-width: 760px;
    font-size: clamp(2.65rem, 5vw, 3.25rem);
  }

  .admin-hero p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1rem;
  }

  .admin-dashboard-section {
    margin-top: -34px;
    padding-top: 0;
  }

  .admin-login-hero {
    min-height: calc(100vh - 132px);
    padding: 72px 0;
  }

  .admin-login-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .admin-login-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .admin-login-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .admin-login-card {
    width: min(100%, 460px);
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 78px;
    padding-bottom: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark-logo {
    width: 132px;
    height: 50px;
    padding: 0;
  }

  .topbar-right {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 14px 0 18px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .mobile-only-nav {
    display: block;
  }

  .main-nav > a,
  .nav-link-with-caret {
    min-height: 48px;
    justify-content: space-between;
    padding: 0 4px;
  }

  .nav-link-login {
    justify-content: center;
    padding: 12px 24px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.94);
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .hero {
    min-height: 78vh;
  }

  .subpage-hero {
    min-height: 60vh;
  }

  .company-profile-hero {
    min-height: 76vh;
  }

  .hero-content {
    padding: 72px 0 84px;
  }

  .subpage-hero-content {
    padding: 110px 0 78px;
  }

  .company-profile-hero .subpage-hero-content {
    padding: 96px 0;
  }

  .intro-card,
  .feature-copy,
  .inline-cta,
  .stat-card,
  .mini-card,
  .profile-intro-card,
  .accordion-panel,
  .profile-side-card,
  .principle-card,
  .leadership-summary-card,
  .executive-card,
  .highlight-card,
  .vision-intro-card,
  .vision-card,
  .services-intro-card,
  .service-card,
  .case-studies-intro-card,
  .case-study-card,
  .partnerships-intro-card,
  .partner-card {
    padding: 24px;
  }

  .contact-info-card {
    justify-self: stretch;
  }

  .admin-hero {
    min-height: 280px;
    padding: 38px 0;
  }

  .admin-hero-grid {
    align-items: start;
  }

  .admin-hero .eyebrow {
    margin-bottom: 10px;
  }

  .admin-hero h1 {
    font-size: clamp(2.35rem, 7vw, 3rem);
  }

  .admin-hero p:not(.eyebrow) {
    margin-top: 12px;
    line-height: 1.58;
  }

  .admin-hero-card {
    justify-self: stretch;
    width: min(100%, 320px);
    padding: 20px;
    border-radius: 18px;
  }

  .placement-toolbar {
    grid-template-columns: 1fr;
  }

  .trainee-toolbar {
    grid-template-columns: 1fr;
  }

  .salary-row {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-login-hero {
    min-height: calc(100vh - 78px);
    padding: 54px 0 66px;
  }

  .admin-login-network {
    inset: auto -8% 4% auto;
    width: 340px;
    height: 340px;
    opacity: 0.2;
  }

  .admin-login-copy h1 {
    font-size: clamp(2.7rem, 11vw, 3.6rem);
  }

  .admin-login-copy p:not(.eyebrow) {
    font-size: 1.03rem;
  }
}

@media (max-width: 640px) {
  .mou-modal {
    padding: 12px;
  }

  .mou-modal-panel {
    width: 100%;
    height: 92vh;
    border-radius: 18px;
  }

  .mou-modal-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .mou-modal-actions {
    width: 100%;
  }

  .mou-modal-actions .button {
    flex: 1;
  }

  .mou-modal-close {
    flex: 0 0 42px;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-mark-logo,
  .admin-brand .brand-mark-logo {
    width: 112px;
    height: 42px;
    padding: 0;
    border-radius: 0;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand-logo {
    width: 136px;
    height: 50px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-grid,
  .skilling-grid,
  .footer-grid,
  .principles-grid,
  .highlights-grid,
  .leadership-stats,
  .vision-intro-stats,
  .value-grid,
  .services-intro-stats,
  .service-card-grid,
  .case-studies-stats,
  .case-study-grid,
  .partnerships-stats,
  .program-grid,
  .partner-grid,
  .impact-grid,
  .dashboard-stat-grid,
  .admin-stats-grid,
  .admin-module-grid,
  .admin-gallery-grid,
  .gallery-grid,
  .placement-form-grid,
  .trainee-form-grid {
    grid-template-columns: 1fr;
  }

  .service-card-grid-centered {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-media img {
    min-height: 280px;
  }

  .profile-intro-card {
    margin-top: -72px;
  }

  .leadership-overview {
    margin-top: -52px;
  }

  .vision-overview {
    margin-top: -52px;
  }

  .services-overview {
    margin-top: -52px;
  }

  .case-studies-overview {
    margin-top: -52px;
  }

  .partnerships-overview {
    margin-top: -52px;
  }

  .dashboard-section {
    margin-top: -58px;
  }

  .admin-hero {
    min-height: 250px;
    padding: 18px 0 24px;
  }

  .admin-hero-grid {
    gap: 12px;
  }

  .admin-hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .admin-hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.2rem);
    line-height: 1.06;
  }

  .admin-hero p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.42;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .admin-hero-card {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .admin-hero-card strong {
    margin: 5px 0 0;
    font-size: 1.02rem;
  }

  .admin-hero-card span,
  .admin-hero-card small {
    font-size: 0.82rem;
  }

  .admin-hero-card small {
    display: none;
  }

  .admin-dashboard-section {
    margin-top: -28px;
    padding-top: 0;
  }

  .dashboard-sync-card {
    justify-self: stretch;
  }

  .admin-nav {
    display: none;
  }

  .admin-header-row {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .admin-actions {
    width: 100%;
    justify-content: space-between;
  }

  .admin-login-toast {
    top: 78px;
    right: 16px;
    left: 16px;
    max-width: none;
    min-width: 0;
  }

  .contact-section {
    margin-top: -58px;
  }

  .contact-trust-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-actions .button {
    width: 100%;
  }

  .contact-map-card,
  .contact-form {
    padding: 20px;
    border-radius: 26px;
  }

  .map-embed-card,
  .contact-map-frame {
    min-height: 300px;
  }

  .contact-map-place {
    left: 50%;
    top: 50%;
  }

  .contact-map-place-pin {
    width: 30px;
    height: 30px;
  }

  .contact-map-place-pin-core {
    width: 11px;
    height: 11px;
  }

  .contact-map-activate::after {
    right: 14px;
    bottom: 14px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .contact-map-meta {
    margin-top: 18px;
  }

  .contact-map-meta p {
    font-size: 0.98rem;
  }

  .contact-map-directions {
    min-height: 54px;
  }

  .admin-login-hero {
    padding: 36px 0 52px;
  }

  .admin-login-hero-grid {
    gap: 24px;
  }

  .admin-login-copy {
    text-align: center;
  }

  .admin-login-copy .eyebrow,
  .admin-login-card .eyebrow {
    letter-spacing: 0.18em;
  }

  .admin-login-copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  .admin-login-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .admin-login-card {
    width: 100%;
    padding: 26px;
    border-radius: 18px;
  }

  .admin-login-card .form-heading {
    padding-right: 48px;
  }

  .admin-login-card .form-heading h2 {
    font-size: 1.75rem;
  }

  .admin-login-shield {
    right: 22px;
    top: 24px;
    width: 38px;
    height: 38px;
  }

  .bar-row {
    grid-template-columns: 1fr;
  }

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

  .table-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .pagination-summary {
    text-align: center;
  }

  .pagination-actions {
    justify-content: center;
  }

  .pagination-pages,
  .pagination-boundary,
  .pagination-ellipsis {
    display: none;
  }

  .pagination-mobile-meta {
    display: inline-flex;
  }

  .executive-header {
    grid-template-columns: 1fr;
  }

  .vision-card-header {
    grid-template-columns: 1fr;
  }
}

.reports-page {
  min-height: calc(100vh - 88px);
}

.reports-meta {
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.68) !important;
}

.reports-admin-grid {
  align-items: start;
}

.reports-filter-panel,
.reports-visuals-panel,
.reports-table-panel {
  min-height: 0;
}

.reports-filter-panel,
.reports-visuals-panel {
  align-self: start;
}

.reports-filter-panel,
.reports-visuals-panel,
.reports-table-panel,
.reports-table-panel .table-shell {
  position: relative;
}

.reports-filter-panel,
.reports-visuals-panel,
.reports-table-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow:
    0 26px 58px rgba(15, 27, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
}

.reports-panel-copy {
  margin: 10px 0 0;
  max-width: 42rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.reports-filter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reports-filter-grid {
  width: 100%;
  align-items: end;
  gap: 16px 18px;
}

.reports-filter-full {
  grid-column: 1 / -1;
}

.reports-filter-actions {
  align-items: flex-start;
  margin-top: 0;
  padding-top: 2px;
}

.reports-overview-card {
  display: grid;
  gap: 0;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 36px rgba(15, 27, 58, 0.06);
}

.reports-overview-section {
  min-width: 0;
  padding: 18px 18px 16px;
}

.reports-overview-section + .reports-overview-section {
  border-top: 1px solid rgba(16, 33, 63, 0.08);
}

.reports-overview-section > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.reports-donut-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
}

.donut-chart {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--donut, #dbe4f2 0deg 360deg));
  display: grid;
  place-items: center;
}

.donut-chart::after {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.donut-chart > div {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 4px;
  text-align: center;
}

.donut-chart strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.9rem;
  color: var(--text);
}

.donut-chart span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.donut-legend {
  display: grid;
  gap: 10px;
}

.reports-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.reports-legend-item > span:nth-child(2) {
  flex: 1;
}

.reports-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.reports-legend-item strong {
  color: var(--text);
}

.reports-bar-chart {
  display: grid;
  gap: 12px;
  align-content: start;
}

.reports-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.reports-bar-label {
  color: var(--text-soft);
  font-size: 0.95rem;
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.reports-bar-track {
  min-width: 120px;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 33, 63, 0.08);
  overflow: hidden;
}

.reports-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.reports-bar-row strong {
  color: var(--text);
  justify-self: end;
  white-space: nowrap;
}

.reports-visuals-panel .panel-heading {
  margin-bottom: 16px;
}

.reports-table-shell {
  overflow-x: auto;
}

.reports-table {
  min-width: 980px;
}

.reports-table th,
.reports-table td {
  white-space: nowrap;
}

.reports-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(84, 214, 196, 0.12);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.reports-table-empty,
.reports-empty-text {
  color: var(--text-soft);
}

.reports-table-empty {
  text-align: center;
}

.reports-export-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reports-download-menu {
  position: relative;
}

.reports-download-trigger {
  min-height: 48px;
  padding: 0 18px;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16c6b8, #0e8db8);
  box-shadow: 0 16px 34px rgba(14, 141, 184, 0.22);
}

.reports-download-trigger-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.reports-download-trigger-icon::before {
  content: "";
  width: 2px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateY(-2px);
}

.reports-download-trigger-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(2px) rotate(45deg);
}

.reports-download-caret {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  transition: transform 180ms ease;
}

.reports-download-caret::before {
  content: "";
  position: absolute;
  inset: 1px 0 0 0;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
}

.reports-download-menu.is-open .reports-download-caret {
  transform: rotate(180deg);
}

.reports-download-options {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 278px;
  padding: 10px;
  border: 1px solid rgba(14, 141, 184, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(11, 35, 69, 0.2);
  backdrop-filter: blur(18px);
}

.reports-download-options::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 34px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(14, 141, 184, 0.16);
  border-top: 1px solid rgba(14, 141, 184, 0.16);
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
}

.reports-download-options[hidden] {
  display: none;
}

.reports-download-options button {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 62px;
  padding: 10px 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.reports-download-options button strong,
.reports-download-options button small {
  display: block;
}

.reports-download-options button strong {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
}

.reports-download-options button small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.reports-download-options button:hover,
.reports-download-options button:focus {
  outline: none;
  background: linear-gradient(135deg, rgba(22, 198, 184, 0.14), rgba(14, 141, 184, 0.08));
  color: var(--navy);
  transform: translateX(2px);
  box-shadow: inset 0 0 0 1px rgba(14, 141, 184, 0.12);
}

.reports-download-options button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.reports-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 198, 184, 0.2), rgba(14, 141, 184, 0.14));
  color: #0f6d80;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.admin-report-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(11, 35, 69, 0.96);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 24px 54px rgba(11, 35, 69, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.admin-report-toast[data-state="error"] {
  background: rgba(180, 35, 24, 0.96);
}

.admin-report-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reports-table-panel .table-heading {
  margin-bottom: 18px;
}

.reports-pagination {
  margin-top: 18px;
}

.reports-pagination-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reports-page-button {
  min-width: 52px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(99, 113, 140, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.reports-page-button:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 70, 229, 0.24);
  box-shadow: 0 12px 26px rgba(15, 27, 58, 0.08);
}

.reports-page-button.is-active {
  background: linear-gradient(135deg, rgba(84, 214, 196, 0.16), rgba(92, 106, 196, 0.12));
  border-color: rgba(79, 70, 229, 0.24);
}

.reports-page-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .reports-overview-card {
    padding: 10px;
  }
}

@media (max-width: 760px) {
  .reports-bar-row {
    grid-template-columns: 1fr;
  }

  .reports-overview-section {
    padding: 16px 14px 14px;
  }

  .reports-export-actions,
  .reports-pagination-actions {
    width: 100%;
    justify-content: stretch;
  }

  .reports-export-actions .button,
  .reports-page-button {
    width: 100%;
  }

  .reports-download-menu,
  .reports-download-trigger {
    width: 100%;
  }

  .reports-download-options {
    left: 0;
    right: 0;
  }
}

.data-hero-media {
  background-image:
    linear-gradient(180deg, rgba(8, 16, 34, 0.08), rgba(8, 16, 34, 0.24)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
}

.data-dashboard-section {
  margin-top: -72px;
  position: relative;
  z-index: 2;
}

.data-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.data-stat-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 33, 63, 0.08);
  box-shadow: 0 24px 54px rgba(15, 27, 58, 0.08);
}

.data-stat-card span,
.data-stat-card small {
  color: var(--text-soft);
}

.data-stat-card strong {
  display: block;
  margin: 12px 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
  color: var(--text);
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  margin-bottom: 24px;
}

.data-filter-panel,
.data-chart-panel,
.data-table-panel {
  background: rgba(255, 255, 255, 0.96);
}

.data-filter-form {
  display: grid;
  gap: 20px;
}

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

.data-filter-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-filter-form input,
.data-filter-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(99, 113, 140, 0.18);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(247, 250, 255, 0.95);
}

.data-filter-form input:focus,
.data-filter-form select:focus {
  border-color: rgba(79, 70, 229, 0.42);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.data-filter-form input:user-invalid,
.data-filter-form select:user-invalid {
  border-color: rgba(220, 38, 38, 0.48);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.data-filter-actions {
  display: flex;
  align-items: flex-start;
}

.data-meta {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.data-insights-stack {
  display: grid;
  gap: 18px;
}

.data-chart-panel {
  min-height: 100%;
}

.data-donut-wrap {
  align-items: center;
}

.data-bar-chart {
  display: grid;
  gap: 14px;
}

.data-table-panel {
  overflow: hidden;
}

.data-table-shell {
  overflow-x: auto;
}

.data-table {
  min-width: 980px;
}

.data-pagination {
  margin-top: 18px;
}

.data-pagination-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .data-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .data-stats-grid,
  .data-filter-grid {
    grid-template-columns: 1fr;
  }

  .data-pagination-actions,
  .data-filter-actions {
    width: 100%;
  }

  .data-pagination-actions .reports-page-button,
  .data-filter-actions .button {
    width: 100%;
  }
}
