body {
  background: #010038;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}
 p{
color: black;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #25a18e; /* match your theme */
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

.course-grid {
  padding: 40px;
}

.grid-container {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}

.card {
  
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
}
.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4; /* Adjust for readability */
}
.card img {
    width: 100%;
    border-radius: 0%;
}



.label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
}





