
.jbh-subdropdown {
  max-height: 60vh; /* Set maximum height */
  overflow-y: auto; /* Enable vertical scrolling */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color:rgb(223, 231, 230) rgba(57, 207, 202, 0.1); /* Firefox */
}
    /* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    h1 {
      text-align: center;
     margin: 10vw 0 0 0;
      color: #333;
      font-size: 32px;
    }

    .subtitle {
      text-align: center;
      margin-bottom: 40px;
      color: #666;
      font-size: 18px;
    }

    /* Navigation Menu */
    .tab-navigation {
      display: flex;
      justify-content: center;
      background-color: #e6f2ff;
      border-radius: 10px;
      padding: 10px 20px;
      margin-bottom: 30px;
      gap: 50px;
    }

    .tab-button {
      padding: 10px 20px;
      border: none;
      background-color: transparent;
      color: #39cfca;
      font-weight: 500;
      cursor: pointer;
      border-radius: 5px;
      font-size: 16px;
    }

    .tab-button.active {
      background-color: #39cfca;
      color: white;
    }

    /* Course Cards Container */
    .courses-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      margin-bottom: 4vw;
    }

    /* Course Card */
    .course-card {
      width: 350px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    /* Card Content */
    .card-image {
      height: 245px;
      background-color: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
      /* padding: 20px; */
    }
    
    .card-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .card-content {
      padding: 20px;
    }

    .card-level {
      display: inline-block;
      padding: 5px 15px;
      border-radius: 15px;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .level-all {
      background-color: #e6fff5;
      color: #39cfca;
    }

    .level-beginner {
      background-color: #fff0e6;
      color: #ff9d5c;
    }

    .level-intermediate {
      background-color: #e6f0ff;
      color: #5c9aff;
    }

    .card-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
      line-height: 1.3;
    }

    .card-description {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
      line-height: 1.5;
    }

    .card-details {
      margin-bottom: 15px;
    }

    .card-details ul {
      list-style: none;
      padding-left: 5px;
    }

    .card-details li {
      font-size: 14px;
      color: #666;
      margin-bottom: 5px;
      position: relative;
      padding-left: 15px;
    }

    .card-details li:before {
      content: "•";
      color: #39cfca;
      position: absolute;
      left: 0;
    }

    /* Course Button */
    .course-details-btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #39cfca;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .course-details-btn:hover {
      background-color: #2fb6b0;
    }

    /* Responsive Design */
    @media (max-width: 1100px) {
      .courses-container {
          
        padding: 0 20px;
      }
              h1 {
      text-align: center;
     margin: 20vw 0 0 0;
    }

    }

    @media (max-width: 768px) {
      .course-card {
        width: 100%;
        max-width: 450px;
      }
      
      .tab-navigation {
        flex-wrap: wrap;
        gap: 20px;
      }
              h1 {
      text-align: center;
     margin: 20vw 0 0 0;
    }

    }
  