@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap";
/* ================= Fonts ================= */
@font-face {
  font-family: sf-pro-display-regular;
  src: url(fonts/sf-pro-display-regular.eot);
  src: url(fonts/sf-pro-display-regular.eot) format("embedded-opentype"), url(fonts/sf-pro-display-regular.woff2) format("woff2"), url(fonts/sf-pro-display-regular.woff) format("woff"), url(fonts/sf-pro-display-regular.otf) format("opentype"), url(fonts/sf-pro-display-regular.ttf) format("truetype");
}
@font-face {
  font-family: sf-pro-display-semibold;
  src: url(fonts/sf-pro-display-semibold.eot);
  src: url(fonts/sf-pro-display-semibold.eot) format("embedded-opentype"), url(fonts/sf-pro-display-semibold.woff2) format("woff2"), url(fonts/sf-pro-display-semibold.woff) format("woff"), url(fonts/sf-pro-display-semibold.otf) format("opentype"), url(fonts/sf-pro-display-semibold.ttf) format("truetype");
}
/* ================= Variables ================= */
/* Semantic colors */
/* ================= VARIABLES ================= */
/* ================= Reset ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ================= Base ================= */
body {
  background: #f0f2f7;
  color: #0d1b3e;
  font-family: Poppins, sf-pro-display-regular, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
a:-webkit-any-link:focus-visible {
  outline: none;
}
.cursor-pointer {
  cursor: pointer;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0d1b3e;
}
/* ================= Typography ================= */
.poppins-font {
  font-family: Poppins, sans-serif;
}
.raleway-font {
  font-family: Raleway, sans-serif;
}
.sf-pro-display-regular {
  font-family: sf-pro-display-regular, sans-serif;
}
.sf-pro-display-semibold {
  font-family: sf-pro-display-semibold, sans-serif;
}
/* ================= Buttons ================= */
.btn-link {
  color: #011c92;
  font-weight: 500;
}
.btn-link:hover {
  color: #011c92;
  text-shadow: 0 2px 4px rgba(1, 28, 146, 0.4);
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 48px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease-in-out;
  font-size: 14px;
  /* ================= Gradient ================= */
}
.btn-primary {
  background: #ff9b00;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 155, 0, 0.3);
}
.btn-primary:hover {
  background: #011c92;
  box-shadow: 0 20px 40px rgba(1, 28, 146, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #011c92;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(1, 28, 146, 0.3);
}
.btn-secondary:hover {
  background: #ff9b00;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 155, 0, 0.4);
}
.btn-tertiary {
  background: #011c92;
  font-size: 12px;
  padding: 0.5rem 1rem;
  color: #ffffff;
}
.btn-tertiary:hover {
  background: #ff9b00;
  color: #ffffff;
}
.btn-success {
  background: #198754;
  font-size: 12px;
  padding: 0.5rem 1rem;
  color: #ffffff;
}
.btn-success:hover {
  background: #198754;
}
.btn-danger {
  background: #dc3545;
  font-size: 12px;
  padding: 0.5rem 1rem;
  color: #ffffff;
}
.btn-danger:hover {
  background: #dc3545;
}
.btn.gradient-bg {
  background: linear-gradient(135deg, #ff9b00, #009c2e);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: none;
}
.btn.gradient-bg:hover {
  background: linear-gradient(135deg, #ff9b00, #009c2e);
  color: #ffffff;
}
.gradient-bg {
  background: linear-gradient(135deg, #ff9b00, #009c2e);
}
/* ================= Forms ================= */
/* Placeholder styles */
::placeholder {
  color: #0d1b3e;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #0d1b3e;
}
::-moz-placeholder {
  color: #0d1b3e;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #0d1b3e;
}
::-ms-input-placeholder {
  color: #0d1b3e;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 155, 0, 0.1);
}
input::placeholder,
textarea::placeholder {
  color: #0d1b3e;
}
/* Form controls */
.form-label {
  font-weight: 500;
}
.form-control {
  font-size: 14px;
  height: 40px;
  padding: 6px 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  color: #0d1b3e;
  border-radius: 8px;
  font-weight: 400;
  background-color: rgba(59, 130, 246, 0.1);
}
.form-control::placeholder {
  color: #0d1b3e;
}
.form-control:focus {
  box-shadow: none;
  color: #0d1b3e;
  border-color: rgba(59, 130, 246, 0.1);
  background-color: rgba(59, 130, 246, 0.1);
}
.form-select {
  font-size: 14px;
  height: 40px;
  padding: 6px 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  color: #0d1b3e;
  border-radius: 8px;
  font-weight: 400;
  background-color: rgba(59, 130, 246, 0.1);
}
.form-select:focus {
  box-shadow: none;
  color: #0d1b3e;
  border-color: rgba(59, 130, 246, 0.1);
  background-color: rgba(59, 130, 246, 0.1);
}
/* Textarea */
textarea.form-control {
  font-size: 14px;
  min-height: 80px;
  border-radius: 0;
  resize: unset;
}
textarea:focus {
  box-shadow: none;
  border-color: rgba(59, 130, 246, 0.1);
}
/* ================= Animations ================= */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-spin {
  animation: spin 2s linear infinite;
}
.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}
body.overlay {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-radius: 0;
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px #0000001a;
  padding: 16px 0;
  height: 80px;
  /* Responsive */
}
header .topbar-left img {
  max-width: 90px;
}
header .menu-icon {
  color: #011c92;
  font-size: 34px;
  cursor: pointer;
  line-height: 32px;
  width: 32px;
  text-align: center;
}
header input[type="checkbox"] {
  display: none;
}
header .header-top-link {
  background-color: #f5f7ff;
  border-radius: 0.5rem;
}
header .header-top-link li label {
  display: none;
}
header .header-top-link a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: #011c92;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
}
header .header-top-link .active a {
  background-color: #011c92;
  color: #ffffff;
}
@media (max-width: 991px) {
  header .topbar-left img {
    max-width: 75px;
  }
  header .btn.gradient-bg {
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 12px;
  }
  header .bi-list {
    display: block;
  }
  header .bi-x-lg {
    display: none;
    font-size: 21px;
  }
  header #show-menu:checked ~ .menu-icon .bi-list {
    display: none;
  }
  header #show-menu:checked ~ .menu-icon .bi-x-lg {
    display: block;
  }
  header .header-top-link {
    display: block;
    position: fixed;
    min-height: calc(100vh - 80px);
    width: 100%;
    top: 100%;
    left: -100%;
    margin-left: 0;
    max-width: 375px;
    transition: all 0.3s ease;
    border-radius: 0;
  }
  header .header-top-link li {
    margin-bottom: 12px;
  }
  header .header-top-link li:last-child {
    margin-bottom: 0;
  }
  header .header-top-link a {
    display: block;
  }
  header:has(#show-menu:checked) .header-top-link {
    left: 0%;
  }
}
header .container,
footer .container {
  max-width: 1300px;
  margin: 0 auto;
}
footer {
  background-color: #162f6a;
  color: #ffffff;
  font-size: 12px;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #ff9b00;
}
.dropdown-item {
  font-size: 12px;
}
.glassmorphism {
  background: #fffc;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px #0000001a;
}
.custom-table thead th {
  background: #011c92;
  border: none;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 16px;
}
.custom-table tbody tr {
  background: rgba(59, 130, 246, 0.1);
  border-bottom: 10px solid #ffffff;
}
.custom-table tbody td {
  border: none;
  padding: 14px 16px;
  background: rgba(59, 130, 246, 0.1);
}
.card {
  background: #fffc;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px #0000001a;
}
.card .card-header {
  background: #011c92;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 1rem 1rem 0 0;
}
.card .card-header h5 {
  color: #ffffff;
}
.card .card-header:first-child {
  border-radius: 1rem 1rem 0 0;
}
.card .card-body {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 0 0 1rem 1rem;
}
/* =========================
   Card
========================= */
.edu-card {
  background: #ffffff;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
/* =========================
Header
========================= */
.edu-header {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.06), rgba(148, 163, 184, 0));
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-height: 50px;
}
.edu-header i {
  font-size: 18px;
  color: #011c92;
  background: rgba(59, 130, 246, 0.1);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
/* =========================
   Match Section
========================= */
.match-row {
  padding: 8px 22px 22px;
}
.match-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.match-title .icon {
  font-size: 18px;
  line-height: 1;
}
.title-green {
  color: #16a34a;
}
.title-orange {
  color: #f59e0b;
}
.title-dark {
  color: #0f172a;
}
/* =========================
   Pills
========================= */
.pill {
  font-weight: 500;
  font-size: 12px;
}
.pill ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.pill ul li {
  padding: 10px 16px;
  border-radius: 1rem;
  display: block;
  margin-bottom: 10px;
}
.pill ul li:last-child {
  margin-bottom: 0;
}
.pill-green ul li {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
}
.pill-orange ul li {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.14);
}
.pill-gray ul li {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
}
/* =========================
   Layout Helpers
========================= */
.pill-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.match-col {
  padding-top: 10px;
  padding-bottom: 10px;
}
.progress-bar-report {
  width: 100%;
  height: 0.5rem;
  background: #e7e8f0;
  border-radius: 0.25rem;
  overflow: hidden;
}
.progress-bar-report .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #011c92, #009c2e);
  border-radius: 0.25rem;
  transition: width 1s ease-in-out;
}
.actions-outer .actions-btn {
  border-radius: 1rem;
  font-size: 12px;
  text-align: center;
  padding: 2px 8px;
  font-weight: 500;
  margin: 4px 0;
}
.actions-outer .excellent {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
}
.actions-outer .good {
  color: #011c92;
  background: rgba(59, 130, 246, 0.1);
}
.actions-outer .average {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.14);
}
/* HEADER */
.header-report {
  background: #0d1b3e;
  padding: 40px 60px 36px;
  position: relative;
  overflow: hidden;
}
.header-report::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.18) 0%, transparent 70%);
}
.header-report::after {
  content: '';
  position: absolute;
  right: 200px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.12) 0%, transparent 70%);
}
.header-report-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00b894, #00cfa4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 700;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}
.report-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.report-title span {
  color: #00cfa4;
}
.meta-row {
  display: flex;
  gap: 28px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.meta-value {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
/* LAYOUT */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #0d1b3e;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, #00b894, #00cfa4);
  border-radius: 2px;
  flex-shrink: 0;
}
.card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f5;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(13, 27, 62, 0.06);
}
/* BEHAVIORAL OVERVIEW */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  margin-bottom: 40px;
}
.radar-card {
  position: relative;
}
.radar-inner {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* BEHAVIORAL SCORE CARDS */
.scores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.score-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f5;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.05);
}
.score-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 27, 62, 0.1);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.score-ring {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  position: relative;
}
.score-ring svg {
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: #f0f2f7;
  stroke-width: 5;
}
.ring-fg {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-num {
  font-family: 'DM Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  color: #0d1b3e;
  line-height: 1;
}
.ring-denom {
  font-size: 9px;
  color: #9aa8c5;
}
.score-info {
  flex: 1;
}
.score-name {
  font-size: 13px;
  font-weight: 600;
  color: #0d1b3e;
  margin-bottom: 6px;
}
.score-bar-track {
  height: 6px;
  background: #f0f2f7;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.score-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}
.tag-excellent {
  background: rgba(0, 184, 148, 0.12);
  color: #00b894;
}
.tag-good {
  background: rgba(61, 155, 233, 0.12);
  color: #3d9be9;
}
.tag-average {
  background: rgba(244, 185, 66, 0.15);
  color: #c9940d;
}
/* CAREER FIELD CHART */
.career-section {
  margin-bottom: 40px;
}
.career-chart-wrap {
  height: 320px;
}
/* CAREER RECOMMENDATIONS */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.edu-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f5;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.04);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.edu-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0d1b3e;
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.rec-group {
  margin-bottom: 14px;
}
.rec-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.label-best {
  color: #00b894;
}
.label-moderate {
  color: #f4b942;
}
.label-careful {
  color: #9aa8c5;
}
.rec-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 3px 3px 0 0;
  line-height: 1.3;
}
.pill-best {
  background: rgba(0, 184, 148, 0.1);
  color: #007a5e;
  border: 1px solid rgba(0, 184, 148, 0.2);
}
.pill-moderate {
  background: rgba(244, 185, 66, 0.1);
  color: #9e740a;
  border: 1px solid rgba(244, 185, 66, 0.25);
}
.pill-careful {
  background: #f0f2f7;
  color: #5a6a8a;
  border: 1px solid #e2e8f5;
}
/* SUMMARY STRIP */
.summary-strip {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f5e 100%);
  border-radius: 16px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.summary-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kpi-item {
  position: relative;
}
.kpi-val {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-val span {
  font-size: 18px;
  color: #00cfa4;
}
.kpi-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.kpi-sub {
  font-size: 11px;
  color: #00cfa4;
  font-weight: 600;
  margin-top: 4px;
}
/* delay animations */
.score-card:nth-child(1) {
  animation-delay: 0.05s;
}
.score-card:nth-child(2) {
  animation-delay: 0.1s;
}
.score-card:nth-child(3) {
  animation-delay: 0.15s;
}
.score-card:nth-child(4) {
  animation-delay: 0.2s;
}
.score-card:nth-child(5) {
  animation-delay: 0.25s;
}
.score-card:nth-child(6) {
  animation-delay: 0.3s;
}
.score-card:nth-child(7) {
  animation-delay: 0.35s;
}
.score-card:nth-child(8) {
  animation-delay: 0.4s;
}
.score-card:nth-child(9) {
  animation-delay: 0.45s;
}
.score-card:nth-child(10) {
  animation-delay: 0.5s;
}
.edu-card:nth-child(1) {
  animation-delay: 0s;
}
.edu-card:nth-child(2) {
  animation-delay: 0.07s;
}
.edu-card:nth-child(3) {
  animation-delay: 0.14s;
}
.edu-card:nth-child(4) {
  animation-delay: 0.21s;
}
.edu-card:nth-child(5) {
  animation-delay: 0.28s;
}
.edu-card:nth-child(6) {
  animation-delay: 0.35s;
}
.edu-card:nth-child(7) {
  animation-delay: 0.42s;
}
.edu-card:nth-child(8) {
  animation-delay: 0.49s;
}
.edu-card:nth-child(9) {
  animation-delay: 0.56s;
}
.edu-card:nth-child(10) {
  animation-delay: 0.63s;
}
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .edu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-report {
    padding: 28px 24px;
  }
}
@media (max-width: 575px) {
  .scores-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
