:root {
  --blue: #0643a8;
  --deep: #012f88;
  --sky: #dff5ff;
  --line: #9cdcf8;
  --yellow: #ffe500;
  --red: #e10518;
  --ink: #081326;
  --muted: #49606f;
  --shadow: 0 14px 32px rgba(0, 74, 150, .14);
  --lift: 0 18px 42px rgba(0, 70, 170, .2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 170, 230, .18), transparent 24%),
    radial-gradient(circle at 82% 58%, rgba(255, 229, 0, .12), transparent 20%),
    linear-gradient(115deg, #f6fcff 0%, #e1f7ff 55%, #f8fdff 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 22px rgba(4, 52, 145, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(6, 67, 168, 0.08);
}

.site-header.compact {
  position: relative;
}

.mobile-menu-toggle {
  display: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 2px 8px rgba(0, 163, 224, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  color: #1e293b;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
  color: #0643a8;
  background: rgba(6, 67, 168, 0.07);
  transform: translateY(-1px);
}

.nav a.active {
  color: #04358e;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(6, 67, 168, 0.10), rgba(0, 163, 224, 0.14));
  box-shadow: inset 0 0 0 1px rgba(6, 67, 168, 0.18);
}

.nav a:after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2.5px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, #0643a8, #00a3e0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a.active:after,
.nav a:hover:after {
  transform: scaleX(1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.language {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #f0f7ff;
  border-radius: 20px;
  border: 1px solid #d0e7fc;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.language button {
  padding: 2px 6px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.language button:hover {
  background: rgba(6, 67, 168, 0.1);
}

.header-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #074bb7, #043491);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  cursor: pointer;
}

.header-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: var(--lift);
}

.hero {
  position: relative;
  max-width: 1024px;
  height: 558px;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 10%, rgba(0, 181, 238, .35), transparent 24%),
    linear-gradient(115deg, #c7efff 0%, #f9fdff 45%, #d6f5ff 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 8%, rgba(42, 186, 242, .26) 8% 20%, transparent 20% 32%, rgba(37, 177, 229, .2) 32% 56%, transparent 56%),
    repeating-linear-gradient(75deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 7px);
}

.shape {
  position: absolute;
  border-radius: 50%;
  border: 68px solid rgba(255, 255, 255, .2);
}

.shape-a {
  width: 540px;
  height: 540px;
  left: -210px;
  top: 92px;
}

.shape-b {
  width: 620px;
  height: 620px;
  right: -245px;
  top: -45px;
}

.leader-strip {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 760px;
  height: 154px;
  object-fit: contain;
  object-position: top left;
  z-index: 2;
  mix-blend-mode: multiply;
}

.main-person {
  position: absolute;
  left: 360px;
  top: -160px;
  width: 365px;
  z-index: 4;
}

.people-standing {
  position: absolute;
  left: 20px;
  top: 172px;
  width: 250px;
  height: auto;
  z-index: 3;
  opacity: 0.95;
  filter: drop-shadow(0 6px 14px rgba(0, 30, 80, 0.15));
  pointer-events: none;
}

.employee-side {
  display: none;
}

.title-badge {
  position: absolute;
  left: 300px;
  top: 152px;
  z-index: 5;
  width: 440px;
  padding: 8px 16px 10px;
  text-align: center;
  border-radius: 70px;
  background: linear-gradient(180deg, #0874aa, #034779);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 69, 130, .2), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.title-badge p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.title-badge h1 {
  margin: 2px 0;
  color: var(--yellow);
  font-size: 36px;
  line-height: 1;
  white-space: nowrap;
}

.headline {
  position: absolute;
  left: 280px;
  top: 292px;
  z-index: 5;
  width: 480px;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
}

.headline strong {
  display: block;
  color: #3c319d;
  font-size: 44px;
  line-height: 1.1;
}

.headline span {
  display: block;
  color: var(--red);
  font-size: 38px;
  line-height: 1.1;
  margin-top: 2px;
}

.qr-box {
  position: absolute;
  left: 54px;
  top: 365px;
  z-index: 6;
  width: 130px;
  text-align: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
}

.qr-box b {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
  font-size: 11.5px;
}

.qr-box img,
.temp-qr {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 2px solid #2e42a7;
  background: #fff;
}

.temp-qr {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 1px;
  background:
    linear-gradient(90deg, rgba(6, 67, 168, .08) 1px, transparent 1px),
    linear-gradient(rgba(6, 67, 168, .08) 1px, transparent 1px),
    #fff;
  background-size: 12px 12px;
}

.temp-qr.mini {
  width: 62px;
  height: 62px;
  min-width: 62px;
  font-size: 11px;
  border-radius: 6px;
}

.event-meta {
  position: absolute;
  left: 200px;
  right: 360px;
  bottom: 12px;
  z-index: 6;
  display: grid;
  grid-template-columns: 120px 115px 1fr;
  align-items: center;
  gap: 8px;
}

.event-meta div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 6px;
  align-items: center;
  border-left: 1px solid #5c98d6;
  padding-left: 8px;
}

.event-meta .icon {
  grid-row: 1 / span 2;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.event-meta b {
  font-size: 11.5px;
  line-height: 1.25;
  color: #062b6e;
}

.event-meta small {
  font-size: 11px;
  color: #3b5984;
}

.opportunity {
  position: relative;
  max-width: 958px;
  min-height: 95px;
  margin: 0 auto 18px;
  padding: 16px 270px 16px 30px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(90deg, #04308e, #0653c4);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.opportunity:before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  pointer-events: none;
}

.opportunity p {
  margin: 0;
  line-height: 1.35;
  font-size: 15px;
}

.opportunity strong {
  color: var(--yellow);
  font-size: 17px;
  display: block;
  margin-top: 3px;
}

.count {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  min-height: 66px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  color: var(--blue);
  border-radius: 10px;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(5, 74, 169, .1), 0 12px 24px rgba(0, 41, 120, .18);
}

.count span {
  grid-row: 1 / span 2;
  color: #16a9e8;
  font-size: 32px;
}

.count b {
  font-size: 22px;
  line-height: 1;
}

.count small {
  font-size: 14px;
  font-weight: 800;
  display: block;
}

.section-kicker {
  width: max-content;
  margin: 0 auto 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #dbeeff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .3px;
}

.about-fair {
  max-width: 1140px;
  margin: 36px auto 44px;
  padding: 0 16px;
  text-align: center;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.about-kicker-pill {
  background: linear-gradient(135deg, #dcf2fe, #bae6fd);
  color: #034779;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(6, 67, 168, 0.18);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 70, 170, 0.08);
}

.about-main-heading {
  margin: 10px 0 6px;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-sub-heading {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

/* Hero Banner Box */
.about-hero-box {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 24px;
  text-align: left;
  padding: 32px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 248, 255, 0.95)),
    radial-gradient(circle at 0% 0%, rgba(255, 229, 0, 0.2), transparent 45%);
  border: 1.5px solid rgba(6, 67, 168, 0.18);
  border-top: 5px solid var(--blue);
  box-shadow: 0 16px 36px rgba(0, 50, 140, 0.12);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.about-hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #1a324b;
  margin: 0 0 20px;
  font-weight: 500;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  background: rgba(6, 67, 168, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(6, 67, 168, 0.15);
  transition: all 0.2s ease;
}

.tag-pill:hover {
  background: var(--blue);
  color: #fff;
}

.about-hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.organizer-badge-box {
  background: linear-gradient(145deg, #073a96, #042468);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 24px rgba(4, 36, 104, 0.3);
}

.organizer-badge-box .badge-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

.organizer-badge-box .badge-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9cdcf8;
  font-weight: 800;
  margin-bottom: 6px;
}

.organizer-badge-box strong {
  font-size: 15px;
  color: var(--yellow);
  line-height: 1.4;
}

/* Statistics Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.about-stat-card {
  background: #ffffff;
  border: 1.5px solid rgba(6, 67, 168, 0.14);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 40, 110, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(0, 67, 168, 0.16);
}

.about-stat-card.highlight {
  background: linear-gradient(135deg, #eef9ff, #d7f1ff);
  border-color: rgba(6, 67, 168, 0.3);
  border-left: 4px solid var(--blue);
}

.stat-icon-wrapper {
  font-size: 28px;
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #e4f4fe, #c4e9ff);
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(6, 67, 168, 0.12);
}

.stat-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: #052c6e;
  line-height: 1.2;
}

.stat-info p {
  margin: 0;
  font-size: 13px;
  color: #4a637a;
  font-weight: 600;
  line-height: 1.3;
}

/* Core Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.about-pillar-box {
  background: #ffffff;
  border: 1.5px solid rgba(6, 67, 168, 0.14);
  border-top: 4px solid var(--blue);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 50, 130, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-pillar-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 50, 130, 0.14);
}

.about-pillar-box.accent {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-top-color: #0284c7;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pillar-icon {
  font-size: 24px;
  width: 42px;
  height: 42px;
  background: #e0f2fe;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.pillar-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}

.about-pillar-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2c4257;
}

/* Steps Box Section */
.about-steps-wrapper {
  background: linear-gradient(135deg, #f0f9ff 0%, #e1f4ff 100%);
  border: 1.5px solid rgba(6, 67, 168, 0.16);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: inset 0 1px 0 #fff, 0 10px 24px rgba(0, 60, 150, 0.08);
}

.steps-section-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  text-align: center;
}

.about-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-step-card {
  background: #ffffff;
  border: 1.5px solid rgba(6, 67, 168, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 40, 100, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0643a8, #032b6e);
  color: var(--yellow);
  font-weight: 900;
  font-size: 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(6, 67, 168, 0.3);
  border: 2px solid #fff;
}

.about-step-card h4 {
  margin: 10px 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: #062b6e;
}

.about-step-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: #4a637a;
}

.about-cta-container {
  margin-top: 10px;
  text-align: center;
}

.about-register-cta {
  background: linear-gradient(180deg, #074bb7, #032e82);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 38px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 22px rgba(4, 52, 145, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-register-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(4, 52, 145, 0.38);
}

/* Responsive adjustments for About section */
@media (max-width: 992px) {
  .about-hero-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-steps-grid {
    grid-template-columns: 1fr;
  }
  .about-main-heading {
    font-size: 26px;
  }
  .about-hero-box {
    padding: 20px;
  }
}

.categories {
  max-width: 1140px;
  margin: 40px auto 44px;
  padding: 0 16px;
  text-align: center;
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.category-main-title {
  margin: 10px 0 6px;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.category-main-title:before,
.category-main-title:after {
  content: "";
  width: 60px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.category-subtitle {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.5;
}

.job-opportunities-home {
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.category-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 10px;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86)),
    radial-gradient(circle at 50% 0%, rgba(19, 154, 226, .16), transparent 60%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 88, 180, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 88, 180, .22);
  box-shadow: var(--lift);
}

.category-card span {
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.category-card b {
  font-size: 13px;
}

.category-card small {
  font-size: 12px;
  line-height: 1.35;
}

.category-grid.detailed {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-grid.detailed .category-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 26px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(6, 67, 168, 0.08), transparent 50%);
  border: 1.5px solid rgba(6, 67, 168, 0.14);
  border-top: 4px solid var(--blue);
  box-shadow: 0 10px 28px rgba(0, 45, 120, 0.08);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-grid.detailed .category-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  border-top-color: #0088ff;
  box-shadow: 0 20px 42px rgba(6, 67, 168, 0.18);
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  width: 100%;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #e4f4fe, #bae6fd);
  font-size: 26px;
  box-shadow: inset 0 0 0 1px rgba(6, 67, 168, 0.15), 0 4px 12px rgba(0, 70, 160, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.category-card:hover .card-icon-box {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, #0643a8, #032b6e);
  color: #fff;
}

.card-badge {
  background: rgba(6, 67, 168, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(6, 67, 168, 0.14);
}

.category-grid.detailed .category-card b {
  color: #052f87;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
}

.category-card ul {
  margin: 6px 0 16px;
  padding: 0;
  list-style: none;
  color: #243e5a;
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
}

.category-card li {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.category-card li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0643a8, #0099ff);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-card:hover li:hover {
  color: var(--blue);
  font-weight: 700;
  transform: translateX(4px);
}

.category-card:hover li:hover:before {
  transform: scale(1.4);
  background: #0088ff;
}

.card-arrow-link {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.category-card:hover .card-arrow-link {
  color: #0066ff;
  transform: translateX(4px);
}

.category-cta-wrapper {
  margin-top: 32px;
}

.explore-cta {
  background: linear-gradient(180deg, #074bb7, #032e82);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 38px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 22px rgba(4, 52, 145, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.explore-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(4, 52, 145, 0.38);
}

.info-panels {
  max-width: 1140px;
  margin: 40px auto 44px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 248, 255, 0.94) 100%),
    radial-gradient(circle at 100% 0%, rgba(6, 67, 168, 0.08), transparent 45%);
  border: 1.5px solid rgba(6, 67, 168, 0.16);
  border-top: 5px solid var(--blue);
  box-shadow: 0 12px 32px rgba(0, 45, 120, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 50, 140, 0.14);
}

.panel.hr-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 253, 245, 0.94) 100%),
    radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.08), transparent 45%);
  border-color: rgba(15, 118, 110, 0.2);
  border-top-color: #0f766e;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(6, 67, 168, 0.1);
}

.panel-badge-icon.hr {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

.panel h2 {
  margin: 0;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.panel.hr-panel h2 {
  color: #0f766e;
}

.panel-intro {
  margin: 0 0 18px;
  color: #264763;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}

.panel-cols {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  margin-bottom: 20px;
}

.panel-col h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #06317d;
  border-bottom: 2px solid rgba(6, 67, 168, 0.1);
  padding-bottom: 4px;
  display: inline-block;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #17385c;
  font-size: 14px;
  line-height: 1.8;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0643a8, #0088ff);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(6, 67, 168, 0.25);
}

.hr-check-list li:before {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.25);
}

.check-list li:hover {
  transform: translateX(3px);
  color: var(--blue);
  font-weight: 700;
}

/* Documents to Carry Card */
.documents-box {
  background: #ffffff;
  border: 1.5px solid rgba(6, 67, 168, 0.15);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0, 40, 110, 0.05);
}

.documents-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.docs-icon {
  font-size: 18px;
}

.documents-header b {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  font-size: 13.5px;
  color: #1e3a5f;
  font-weight: 600;
}

.docs-grid span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Action Panel & LARGER QR CODE Container */
.panel-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1.5px dashed rgba(6, 67, 168, 0.16);
}

.action-btn-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.candidate-reg-btn {
  background: linear-gradient(180deg, #074bb7, #032e82);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(4, 52, 145, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.candidate-reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 52, 145, 0.35);
}

.hr-reg-btn {
  background: linear-gradient(180deg, #0f766e, #094e49);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hr-reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
}

.view-companies-btn {
  background: #ffffff;
  color: #0f766e;
  border: 1.5px solid #0f766e;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.view-companies-btn:hover {
  background: #0f766e;
  color: #ffffff;
}

/* BIG ENHANCED QR CODE STYLES */
.qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qr-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.hr-qr-label {
  color: #0f766e;
}

.qr-img-box {
  padding: 8px;
  background: #ffffff;
  border: 3.5px solid var(--blue);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 67, 168, 0.18);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-img-box:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(0, 67, 168, 0.28);
}

.qr-img-box.hr-qr-box {
  border-color: #0f766e;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
}

.qr-img-box.hr-qr-box:hover {
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.28);
}

/* Increased QR code image dimensions from 62px to 110px x 110px! */
.mini-qr {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;
  min-height: 110px !important;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Responsive adjustments for info-panels */
@media (max-width: 992px) {
  .info-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .panel-cols {
    grid-template-columns: 1fr;
  }
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .panel-action-card {
    flex-direction: column;
    text-align: center;
  }
  .mini-qr {
    width: 120px !important;
    height: 120px !important;
  }
}

.venue {
  max-width: 1120px;
  margin: 40px auto 48px;
}

.venue-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.venue-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venue-badge-pill .badge-dot {
  width: 7px;
  height: 7px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 8px #2563eb;
  animation: venuePulse 2s infinite ease-in-out;
}

@keyframes venuePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.venue-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.venue-header h2 {
  margin: 0;
  color: #0b3880;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}

.venue-line {
  height: 3px;
  width: 70px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  border-radius: 999px;
}

.venue-card-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 50%, #eef6ff 100%);
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 32px -8px rgba(11, 56, 128, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 3.8fr 4.8fr 3.4fr;
  gap: 22px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.venue-card-wrapper:hover {
  box-shadow: 0 18px 40px -10px rgba(11, 56, 128, 0.14), 0 6px 16px rgba(0, 0, 0, 0.04);
  border-color: #93c5fd;
}

/* Left: Photo box */
.venue-photo-box {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(11, 56, 128, 0.12);
  background: #0b3880;
}

.venue-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-photo-box:hover img {
  transform: scale(1.06);
}

.venue-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 26, 68, 0.9) 0%, rgba(7, 26, 68, 0.4) 60%, transparent 100%);
  padding: 16px 14px 12px;
}

.venue-campus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(253, 224, 71, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 224, 71, 0.4);
  color: #fde047;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.venue-campus-tag .pulse-dot {
  width: 6px;
  height: 6px;
  background: #fde047;
  border-radius: 50%;
  box-shadow: 0 0 6px #fde047;
}

/* Middle: Info Box */
.venue-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 0;
}

.venue-address-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.venue-pin-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #0b3880 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.venue-address-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.venue-landmark-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #dbeafe;
  color: #1e40af;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.venue-address-text h3 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.venue-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v-tag {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.venue-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0b3880 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.28);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  cursor: pointer;
}

.venue-btn:hover {
  background: linear-gradient(135deg, #082b60 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.38);
}

.venue-btn .icon {
  font-size: 16px;
}

.venue-btn .ext-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.venue-btn:hover .ext-arrow {
  transform: translateX(4px);
}

/* Right: Map Box */
.venue-map-iframe-box {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #ffffff;
  background: #e2e8f0;
  box-shadow: 0 8px 20px rgba(11, 56, 128, 0.08);
  display: flex;
  flex-direction: column;
}

.venue-map-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  z-index: 2;
}

.map-label {
  font-size: 11px;
  font-weight: 800;
  color: #0b3880;
}

.map-open-link {
  font-size: 11px;
  font-weight: 800;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.map-open-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

.venue-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  flex: 1;
}

@media (max-width: 992px) {
  .venue-card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .venue-photo-box,
  .venue-map-iframe-box {
    height: 220px;
  }
}


.footer {
  max-width: 100%;
  background: #020617;
  color: #cbd5e1;
  padding: 64px 24px 32px;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr 2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-desc {
  margin: 0 0 16px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

.organizer-box {
  margin: 16px 0;
}

.organizer-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.organizer-name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0f172a;
  color: #cbd5e1;
  font-weight: 900;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.social a:hover {
  background: var(--blue);
  color: #fff;
}

.footer-heading {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.footer-nav a {
  color: #cbd5e1;
  transition: color .2s ease;
}

.footer-nav a:hover {
  color: #fbbf24;
}

.event-details-list,
.contact-details-list {
  display: grid;
  gap: 12px;
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.event-detail-item,
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.event-detail-item .icon,
.contact-detail-item .icon {
  color: #fbbf24;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-detail-item a {
  color: #cbd5e1;
  transition: color .2s ease;
}

.contact-detail-item a:hover {
  color: #fbbf24;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #64748b;
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal-links a {
  color: #64748b;
  transition: color .2s ease;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


.page-shell {
  max-width: 1060px;
  margin: 26px auto 60px;
  padding: 0 24px;
}

.page-title {
  margin-bottom: 22px;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(120deg, #eaf8ff, #fff);
  box-shadow: var(--shadow);
}

.page-title h1 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 34px;
}

.page-title p {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

input,
select {
  min-height: 44px;
  width: 100%;
  border: 1px solid #b8d7ef;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
}

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

.job-card,
.company-card,
.detail-card,
.form-card,
.admin-board article,
.admin-login {
  padding: 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f6fcff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 88, 180, .08);
}

.job-card,
.company-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.job-card:hover,
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift);
}

.job-card h2,
.company-card h2,
.detail-card h1 {
  color: var(--blue);
  margin: 0 0 8px;
}

.logo-mark {
  height: 38px;
  width: auto;
  max-width: 160px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #d0e8fc;
  box-shadow: 0 2px 8px rgba(6, 67, 168, 0.06);
}

.logo-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.detail-grid div {
  padding: 14px;
  border-radius: 8px;
  background: #eef8ff;
}

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

.form-card button,
.form-card p {
  grid-column: 1 / -1;
}

.admin-login {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
}

.admin-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #d8ecfa;
}

.admin-row button {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  background: #e8f6ff;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.status-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f7eb;
  color: #107c41;
  font-size: 12px;
  font-weight: 800;
}

.qr-image {
  width: 122px;
  height: 120px;
  object-fit: contain;
  border: 2px solid #2e42a7;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 74, 160, 0.15);
}

.mini-qr {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--blue);
  background: #fff;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}

.secondary-btn:hover {
  background: #eef8ff;
  transform: translateY(-2px);
}

.action-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.company-jobs-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  gap: 10px;
}

.job-link-item {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f0f9ff;
  border: 1px solid #cbe7ff;
  color: var(--blue);
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.job-link-item:hover {
  background: #dff2ff;
  transform: translateX(4px);
}

.guidance-card {
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f6fcff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 88, 180, .08);
}

.guidance-card h2 {
  color: var(--blue);
  margin-top: 0;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.guidance-block {
  padding: 20px;
  border-radius: 10px;
  background: #f4fafe;
  border: 1px solid #d4ebfc;
}

.guidance-block h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 18px;
}

.guidance-block ul {
  margin: 0;
  padding-left: 20px;
  color: #223c56;
  line-height: 1.7;
}

.guidance-docs {
  margin: 24px 0;
  padding: 20px;
}

.registration-cta-box {
  text-align: center;
  padding: 28px;
  margin-top: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #074bb7, #043491);
  color: #fff;
}

.registration-cta-box h3 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 24px;
}

.registration-cta-box p {
  margin: 0 0 18px;
  color: #eaf5ff;
}

.registration-main-btn {
  background: linear-gradient(180deg, #ffe500, #ffd000);
  color: #032b78;
  font-size: 16px;
  padding: 14px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.registration-main-btn:hover {
  filter: brightness(1.08);
}
/* ==================================================
   RESPONSIVE MOBILE STYLES (@media max-width: 768px)
   ================================================== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    background: #eef8ff;
  }

  /* 1. Header & Top Bar */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 40, 100, 0.06) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .brand img {
    height: 36px !important;
    width: auto !important;
    max-width: 170px !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 28px !important;
    height: 20px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 101 !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background: var(--blue) !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
  }

  /* 1. Ultra-Attractive Mobile Header & Navigation Grid */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 10px 14px 12px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 4px 20px rgba(0, 40, 100, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-bottom: 1.5px solid rgba(6, 67, 168, 0.14) !important;
  }

  /* Hide Hamburger Toggle Button */
  .mobile-menu-toggle {
    display: none !important;
  }

  /* Brand Logo Header Line */
  .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 8px !important;
  }

  .brand img {
    height: 38px !important;
    width: auto !important;
    max-width: 170px !important;
  }

  /* Nav Container Column Flow */
  .nav-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    gap: 10px !important;
  }

  /* STEP 1: LANGUAGE & REGISTER CTA BAR (ORDER: 1) */
  .header-right {
    order: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Language Selector Pill Bar */
  .language {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    padding: 4px 6px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #0643a8 !important;
    background: linear-gradient(135deg, #e4f4fe, #bae6fd) !important;
    border: 1.5px solid rgba(6, 67, 168, 0.2) !important;
    border-radius: 50px !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 3px 10px rgba(6, 67, 168, 0.08) !important;
    box-sizing: border-box !important;
  }

  .language button {
    background: transparent !important;
    border: none !important;
    color: #0643a8 !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .language button[style*="font-weight: 900"],
  .language button[style*="underline"] {
    background: #ffffff !important;
    color: #0643a8 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(0, 50, 130, 0.16) !important;
  }

  .language span {
    display: none !important;
  }

  .header-cta {
    flex: 0 0 auto !important;
    min-height: 36px !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    background: linear-gradient(180deg, #074bb7, #032e82) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(4, 52, 145, 0.3) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  }

  /* STEP 2: BALANCED 2-COLUMN NAVIGATION OPTIONS GRID (ORDER: 2) */
  .nav {
    order: 2 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 4px 0 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
  }

  .nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #062b6e !important;
    background: #ffffff !important;
    border: 1.5px solid rgba(6, 67, 168, 0.15) !important;
    border-radius: 12px !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 10px rgba(0, 40, 100, 0.05) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .nav a[href="#contact"] {
    grid-column: 1 / -1 !important;
  }

  .nav a:hover,
  .nav a:active {
    background: #eef7ff !important;
    border-color: #0643a8 !important;
    transform: translateY(-1px) !important;
  }

  .nav a.active {
    background: linear-gradient(135deg, #0643a8, #032b70) !important;
    color: #ffffff !important;
    border-color: #0643a8 !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 14px rgba(6, 67, 168, 0.28) !important;
  }

  /* Scrolled State in Mobile View: Hide Navigation Options Grid, Keep Logo + Language + Register CTA Sticky */
  .site-header.header-scrolled {
    padding: 8px 14px 10px !important;
    box-shadow: 0 6px 24px rgba(0, 40, 100, 0.12) !important;
  }

  .site-header.header-scrolled .brand {
    margin-bottom: 4px !important;
  }

  .site-header.header-scrolled .brand img {
    height: 32px !important;
  }

  .site-header.header-scrolled .nav {
    display: none !important;
  }

  /* 2. Hero Section Flow Reset */
  .hero {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 10px 14px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #cdeeff 0%, #edf8ff 55%, #e1f4ff 100%) !important;
  }

  .shape-a,
  .shape-b {
    display: none !important;
  }

  /* Top Leader Strip Image */
  .leader-strip {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 0 2px !important;
    display: block !important;
    mix-blend-mode: multiply !important;
  }

  /* Mayor Title Banner Container & Photo Overlay */
  .title-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px 0 !important;
    padding: 12px 115px 12px 16px !important;
    text-align: left !important;
    border-radius: 40px !important;
    background: linear-gradient(180deg, #054f88, #033663) !important;
    box-shadow: 0 8px 20px rgba(3, 54, 99, 0.25) !important;
    box-sizing: border-box !important;
    min-height: 84px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: visible !important;
    z-index: 2 !important;
  }

  .title-badge-content {
    width: 100% !important;
  }

  .title-badge p {
    margin: 0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
  }

  .title-badge h1 {
    margin: 2px 0 !important;
    font-size: clamp(16px, 4.8vw, 21px) !important;
    font-weight: 900 !important;
    color: #ffe500 !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  .main-person {
    position: absolute !important;
    top: -16px !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    height: calc(100% + 22px) !important;
    max-height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: bottom right !important;
    z-index: 10 !important;
    pointer-events: none !important;
  }

  /* Headline */
  .headline {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    text-align: center !important;
    margin: 8px 0 4px !important;
    line-height: 1.1 !important;
    z-index: 3 !important;
  }

  .headline strong {
    font-size: clamp(28px, 8vw, 36px) !important;
    font-weight: 900 !important;
    color: #2b2b80 !important;
    line-height: 1.1 !important;
    display: block !important;
  }

  .headline span {
    font-size: clamp(24px, 7vw, 32px) !important;
    font-weight: 900 !important;
    color: #e10518 !important;
    line-height: 1.1 !important;
    display: block !important;
    margin-top: 2px !important;
  }

  /* Event Meta Cards Grid */
  .event-meta {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 6px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    z-index: 3 !important;
  }

  .event-meta div {
    width: 100% !important;
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #edf7fe !important;
    border: 1.5px solid #000000 !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    box-sizing: border-box !important;
  }

  .event-meta div:nth-child(1) b::before {
    content: "Date\A";
    white-space: pre;
    font-size: 11px;
    font-weight: 600;
    color: #49606f;
  }

  .event-meta div:nth-child(2) b::before {
    content: "Time\A";
    white-space: pre;
    font-size: 11px;
    font-weight: 600;
    color: #49606f;
  }

  .event-meta div:nth-child(3) {
    grid-column: 1 / -1 !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 12px 14px !important;
    gap: 4px !important;
    background: #ffffff !important;
    border: 1.5px solid #000000 !important;
  }

  .event-meta div:nth-child(3)::before {
    content: "Venue";
    font-size: 11.5px;
    font-weight: 600;
    color: #49606f;
    display: block;
  }

  .event-meta .icon {
    font-size: 20px !important;
    color: #0643a8 !important;
    flex-shrink: 0 !important;
  }

  .event-meta div:nth-child(3) .icon {
    display: none !important;
  }

  .event-meta b {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #062b6e !important;
    display: block !important;
  }

  .event-meta small {
    font-size: 11px !important;
    color: #49606f !important;
    display: block !important;
  }

  /* Business People / Employee Silhouettes & Centered QR Box Wrapper */
  .qr-silhouette-wrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 12px auto 0 !important;
    padding: 0 !important;
    min-height: 120px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .desktop-only-people {
    display: none !important;
  }

  .employee-side {
    display: flex !important;
    align-items: flex-end !important;
    width: calc(50% - 66px) !important;
    height: 105px !important;
    overflow: hidden !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }

  .employee-side img {
    height: 100% !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
    pointer-events: none !important;
  }

  .employee-side.left {
    justify-content: flex-end !important;
    padding-right: 2px !important;
  }

  .employee-side.left img {
    object-fit: contain !important;
    object-position: left bottom !important;
  }

  .employee-side.right {
    justify-content: flex-start !important;
    padding-left: 2px !important;
  }

  .employee-side.right img {
    object-fit: contain !important;
    object-position: right bottom !important;
  }

  .qr-box {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 5 !important;
    width: 125px !important;
    margin: 0 4px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 7px 9px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1.5px solid #0643a8 !important;
    box-shadow: 0 4px 16px rgba(0, 60, 140, 0.12) !important;
  }

  .qr-box img,
  .temp-qr {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain !important;
  }

  .qr-box b {
    font-size: 11px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #0643a8 !important;
    font-weight: 800 !important;
  }

  /* 3. Opportunity Candidate Banner */
  .opportunity {
    position: relative !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 12px 0 6px !important;
    min-height: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .opportunity p,
  .opportunity strong {
    display: none !important;
  }

  .count {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    background: #ffffff !important;
    border: 1.5px solid #0643a8 !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 10px rgba(0, 50, 120, 0.06) !important;
    box-sizing: border-box !important;
  }

  .target-icon-circle {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 3px solid #00a0e3 !important;
    background: radial-gradient(circle, #00a0e3 40%, #ffffff 45%) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
  }

  .count-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .count-text b {
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    color: #04235c !important;
  }

  .count-text small {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #04235c !important;
    display: block !important;
  }

  /* Bottom CTA & About Buttons */
  .explore-cta {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    min-height: 40px !important;
    padding: 8px 16px !important;
    background: linear-gradient(180deg, #074bb7, #043491) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 8px auto 14px !important;
    box-shadow: 0 3px 10px rgba(4, 52, 145, 0.2) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  .about-kicker-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 16px auto !important;
    text-align: center !important;
  }

  .about-kicker-pill {
    background: #dcf2fe !important;
    color: #05508a !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    padding: 8px 24px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    text-align: center !important;
  }

  .about-read-more-btn {
    background: #043491 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(4, 52, 145, 0.2) !important;
  }

  /* 4. Page Shell & Content Sections */
  .page-shell,
  .about-fair,
  .info-panels,
  .venue {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .category-grid,
  .category-grid.detailed,
  .about-card,
  .info-panels,
  .venue-grid,
  .footer-grid,
  .filters,
  .job-list,
  .company-list,
  .admin-board,
  .guidance-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 !important;
  }

  .panel-cols,
  .form-card,
  .detail-grid,
  .meta-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

/* Fine-tuned Mobile Small Screens (@media max-width: 480px) */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 14px !important;
  }

  .brand img {
    height: 34px !important;
    max-width: 150px !important;
  }
}