.achievements-section {
  padding: 6rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #555;
}

.achievements-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.achievement-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.achievement-card h3 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.obj-pos-center{
  object-position: center !important;
}