.home_page_title_section {
    font-size: 22px;
    font-weight: 600;
    color: #404040;
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 20px 0 25px;
}

.tabs-container {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
    margin-bottom: 16px;
}

.tabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
}

.tab-button {
    background-color: #fff;
    border: none;
    /* border-radius: 4px; */
    padding: 10px 20px;
    margin: 4px;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
}

.tab-button.active {
    border-bottom: 5px solid #8604b1;
    color: black;
    font-weight: 600;
}

.toggler {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background-color: #007bff;
    color: white;
    padding: 10px;
    cursor: pointer;

}


.course-slider {
    display: flex;
    overflow-x: auto;
    height: auto;
    gap: 10px;

    /* Space between cards */
    scroll-snap-type: x mandatory;

}

.course-slider::-webkit-scrollbar {
    display: none;
}

.course-slider .card {
    flex: 0 0 auto;
    /* Prevent cards from shrinking or growing */
    width: 30%;
    height: 280px;
    /* Adjust width as needed */
    margin: 10px;
    scroll-snap-align: start;
    background: #fff;
    /* Background color for cards */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional shadow for cards */

}

.course-slider .card .coursemain {
    display: flex;
    align-items: center;
    height: 108px;
    width: 100%;
    /* overflow: hidden; */
    padding: 20px 10px;
    position: relative;
}

.course-slider .card .cr_title {
    display: inline-block;
    /* width: 100%; */
    font-size: 16px;
    color: #ffffff;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.course-slider .card .coursedetails {
    display: inline-block;
    width: 100%;
    padding: 21px 20px 26px;
}

.course-slider .card .coursedetails .desc {
    display: flex;
    align-items: center;
    color: #4a4a4a;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0px 9px 0px;
    line-height: 24px;
    height: 100px;

}

.course-slider .card h3 {
    margin-top: 0;

}

.course-slider .card .additional-info {
    display: none;
    margin-top: 10px;
    color: white;
    list-style: none;
    padding: 0;
}

.course-slider .card:hover {
    transform: scale(1.05);
    box-shadow: inset 0 4px 8px rgb(0, 0, 0);

}

.course-slider .card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.87);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.course-slider .card:hover .overlay {
    opacity: 1;
}

.course-slider .card:hover .additional-info {
    display: block;
}

.star-rating {
    display: flex;
    align-items: center;
}

.star {
    font-size: 1.2em;
    color: #f0ad4e;
    /* Star color */
}

.star.empty {
    color: #ccc;
    /* Empty star color */
}

.carousel-controls {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}


.carousel-button {


    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 75px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    height: 50px;
    width: 50px;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-button.prev {
    left: -4rem;
    font-size: 20px;
}

.carousel-button.next {
    right: -4rem;
    font-size: 20px;
}

.carousel-button i {
    font-size: 1.5rem;
}

.nextbatch {
    /* display: inline-flex; */
    width: 100%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.batchtxt {

    font-size: 10px;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    display: inline-block;
    width: 100%;
    margin-bottom: 4px;
    margin-top: 10px;
    text-decoration: underline;

}

.learnlist {
    font-size: 10px;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    display: inline-block;
    width: 100%;
}

.course_intro {
    width: 100%;
    padding: 5px 0 0 0px;
    list-style-position: inside;
    list-style-type: disc;
    margin-bottom: 10px;
}

.course_intro li {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 5px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.seemorebtn {
    border: solid 1px #ffffff;
    display: flex;
    justify-content: center;
    width: 80%;
    text-align: center;
    padding: 9px 40px;
    text-decoration: none;
    cursor: pointer;
    outline: 0;
    background: transparent;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .toggler {
        display: block;
    }

    .carousel-button.prev {
        left: -1rem;
        font-size: 20px;
    }

    .carousel-button.next {
        right: -1rem;
        font-size: 20px;
    }
}

.slick-track .slick-slide .slick-active {
    width: 270px;
}

.slick-slide {
    margin: 10px 10px 10px 10px;
}