

/* Education Section */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.education-card {
  background-color: #fff;
  padding: 1.5rem;
  border-left: 5px solid #0e0e52;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.education-card h3 {
  font-size: 1.2rem;
  color: #0e0e52;
  margin-bottom: 0.5rem;
}

.education-card p {
  font-size: 1rem;
  color: #555;
}

.education h2 {
  text-align: center;
}
