.course-select{

    padding: 6px 25px 6px 25px;
    border: 1.7px solid #fff;
    color:#fff;
    border-radius: 30px;
    outline: none;
    background-color: transparent;
    margin-bottom: 20px;
}

/* Media Query for Mobile View */
@media (max-width: 767px) {

    .course-filter {

        overflow-x: scroll;
    }


  }

  .custom-card {
    border: 1px solid #ddd;
    border-radius: 0px !important;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .custom-card:hover {
    transform: translateY(-5px);
  }

  .custom-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2b56ff;
    margin-bottom: 0.5rem;
  }

  .card-subtitle {
    color: #4caf50;
    margin-bottom: 1rem;
  }

  .custom-card .rating {
    display: flex;
    align-items: center;
    color: #f2c94c;
  }

  .custom-card .rating span {
    margin-left: 5px;
    color: #000;
  }

  .custom-card .btn-view {
    border: 1px solid #2b56ff;
    color: #2b56ff;
    transition: all 0.3s ease;
  }

  .custom-card .btn-view:hover {
    background-color: #2b56ff;
    color: #fff;
  }

  .custom-card .btn-apply {
    background-color: #4caf50;
    color: #fff;
    transition: all 0.3s ease;
  }

  .custom-card .btn-apply:hover {
    background-color: #43a047;
  }