.dashboard-mycourse {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .baner {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: fit-content;
			margin-bottom: 15px;
        }

        .baner img:nth-child(2) {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .add-icon {
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .gauge-container {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: space-between;
            width: 90%;
        }

        .gauge {
            width: 30%;
            display: block;
        }
		
		.show-card-1 {
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 139, 0.2);
            transition: transform 0.3s ease-in-out;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
			margin-top: 15px;
			background: #fef1eb;
        }
		.show-card-2 {
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 139, 0.2);
            transition: transform 0.3s ease-in-out;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
			margin-top: 15px;
			margin-bottom: 50px;
			background: #ddf1f2;
        }

.slider-wrapper {
        overflow-x: auto;
        display: flex;
        gap: 1rem;
        padding: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .slider-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar for clean mobile look */
      }

      .slider-card {
        flex: 0 0 auto;
        width: 200px;
        height: 300px;
        border-radius: 1rem;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        scroll-snap-align: start;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: transform 0.2s ease;
      }

      .slider-card:hover {
        transform: scale(1.03);
      }

      .slider-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .slider-title {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        color: white;
        padding: 0.5rem;
        font-size: 1rem;
        text-align: center;
      }

      .slider-container {
        max-width: 100%;
        margin-left: 25px;
        margin-right: 25px;
      }

      .slider-heading {
        font-size: 1.25rem;
        margin: 0 1rem 0.5rem;
        font-weight: 600;
      }