@charset "UTF-8";
/* Hero */
.bg-gradient-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  min-height: 50vh;
}

/* Stats Cards */
.result-card {
  transition: all 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.result-number {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Toppers */
.topper-card {
  transition: all 0.35s ease;
}

.topper-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.score-badge {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Highlights */
.highlight-list h6 {
  font-size: 1.15rem;
}

/* Section Title */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 2px;
}