

.schedule-section {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  background: #1f2882;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 20px;
}

.batch-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.batch-card {
  width: 357px;
  background: #fff;
  border: 2px solid #0a3047;
  /*border-radius: 8px;*/
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.center-header {
  background-color: #f8b314;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: -25px;
}

.batch-type {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  font-family: serif;
}

.batch-type.blue {
  color: #2e58cc;
}

.batch-type.purple {
  color: #aa1b90;
}

.batch-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .batch-card {
    width: 90%;
  }
}




.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-btn {
  background: #0a3047;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.section-btn a {
    color: #ffffff;
}



.section-btn:hover {
  background: #2e58cc;
}

@media (max-width: 600px) {
  .section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }
}



.center-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.section-btn {
  background: #0a3047;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 160px;
}

.section-btn:hover {
  background: #2e58cc;
}

@media (max-width: 600px) {
  .center-btn-row {
    flex-direction: column;
    gap: 16px;
  }
  .section-btn {
    width: 100%;
    min-width: unset;
  }
}

.mu-latest-course-single-content {
    text-align: center;
    margin-top: 16px;
}





.course-section {
  font-family: Arial, sans-serif;
  padding: 10px;
  text-align: center;
}

.course-title {
  font-weight: bold;
  font-size: 18px;
  /*display: flex;
  align-items: center;
  gap: 5px;*/
  text-align : center;
}

.arrow-down {
  font-size: 20px;
  color: #4682b4; /* Steel blue */
}

.course-list {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.course-list li::before {
  content: "➤";
  color: black;
  margin-right: 8px;
}

.course-list li {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  list-style: none;
}

/* Responsive Design */
@media (max-width: 600px) {
  .course-title {
    font-size: 16px;
  }

  .arrow-down {
    font-size: 18px;
  }

  .course-list li {
    font-size: 14px;
  }
}

