:root {
  --maroon: #b81818;
  --navy: #003366;
  --bg-light: #f7f9fc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}

body {
  background-color: white;
  margin: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 27px 20px;
}

.gallery-intro {
  text-align: center;
  padding: 10px 0 40px;
}

.main-page-title {
  color: var(--maroon);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.year-label {
  background: var(--maroon);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 4px 6px rgba(184, 24, 24, 0.2);
  display: inline-block;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  width: 96%;
}

.company-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 15px;
}

.company-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.student-count {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-view {
  display: inline-block;
  background-color: var(--navy);
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: background 0.3s;
}

.btn-view:hover {
  background-color: var(--maroon);
}

.section-divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 50px 0 20px;
}

.no-records {
  text-align: center;
  padding: 100px;
  color: #999;
}
