/* Container & Typography */
.reports-cards {
  padding: 60px 20px;
  background-color: #fcfcfd; /* Very light grey/white background */
  font-family: 'Inter', -apple-system, sans-serif;
}

.reports-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* The Card: Minimalist Glass Style */
.report-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Left-aligned looks more professional */
  padding: 40px;
  text-decoration: none;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ececf1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

/* Subtle Color Accents at the top of each card */
.report-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
}
.aishe::before { background: #4361ee; }
.institutional::before { background: #2ec4b6; }
.nep::before { background: #ff9f1c; }

/* Icons: Colored background circles */
.report-icon {
  font-size: 2rem;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.aishe .report-icon { background: #eef2ff; color: #4361ee; }
.institutional .report-icon { background: #eafffa; color: #2ec4b6; }
.nep .report-icon { background: #fff8ee; color: #ff9f1c; }

/* Text Styling */
.report-card span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3436;
}

/* Hover States */
.report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.report-card:hover .report-icon {
  transform: scale(1.1);
  background: #2d3436; /* Icon bg turns dark on hover */
  color: #fff;
}