.course-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}


.course-title {
  font-size: 32px;
  font-weight: bold;
}

.degree-name, .credit-info {
  font-size: 18px;
}


.tuition-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.year-block {
  background-color: #F1EFEF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);


}

.year-header {
  font-size: 22px;
  font-weight: bold;
  color: #2B3467;
  margin-bottom: 20px;
  text-align: center;
}

.semester-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.semester-box {
  background-color: #fff;
  color: #001253;
  padding: 5px;
  margin: 10px;
  border-radius: 6px;
  border: 2px solid #001253;

  
  text-align: center;
}

.semester-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.semester-fee {
  font-size: 18px;
  color: #FF577F;
  font-weight: bold;
}
.tuition-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
}


.tuition-table th {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-weight: meduim;
}

.tuition-table td {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  font-weight: meduim;
}

.tuition-table th {
  background-color: #2B3467;
  color: #fff;
}

@media (max-width: 768px) {
  .tuition-table-wrapper {
    overflow-x: auto;
  }
}

#searchInput, #facultyFilter {
  padding: 10px 14px;
  font-size: 16px;
  border: 2px solid #2B3467;
  border-radius: 6px;
  width: 50%;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
  width: 100%;
}

#searchInput, #facultyFilter {
  padding: 10px 14px;
  font-size: 16px;
  border: 2px solid #2B3467;
  border-radius: 6px;
  width: 50%;
}
.accordion-header {
  border-radius: 20px;
  border: 2px solid #d1d1df;
  color: #fff;
  padding: 10px 10px;
  font-size: 18px;
  font-weight: normal;
  width: auto;
  text-align: left;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 15px;
}
.accordion-body {
  display: block;
  padding: 10px 0;
}

.accordion-item.active .accordion-body {
  display: block;
}


