.courses-section {
  width: 90%;
  height: 100%;
  padding: 0 15px;
  margin-top: 150px;
  margin-bottom: 50px;
  /* border: 1px solid red; */
}

.section-title {
width: 100%;
    text-align: center;
    font-size: calc(0.7rem + 1.5vw);
    color: #6518ff;
    margin-bottom: 20px;
    cursor: default;
}

.courses-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.course-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 50px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.course-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.course-card h3 {
  color: #6518ff;
  margin-bottom: 8px;
}

.course-card p {
  font-size: 1.05rem;
  margin: 0;
}

.countdown {
  font-weight: 700;
  color: #d9534f; /* أحمر */
  margin-top: 10px;
}

.course-card button {
  margin-top: auto;
  background-color: #6518ff;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.course-card button:hover {
  background-color: #925bff;
}
