/* Course Slider Container */
.slider-container {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    /* border: 4px solid blue; */
}

.course-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.course-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.course-container {
    display: flex;
    gap: 20px;
    padding: 10px;
}

.course-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 200px;
}

.course-card:hover {
    transform: scale(1.05);
}

.course-card img {
    width: auto;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

/* Updated Button Styling */
.course-card button {
    margin-top: 10px;
    background:#007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    text-align: center;
    min-height: 55px;
}

.course-card button:hover {
    background: #090d78;
}

/* Slider Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Placed Students Section */
.students-container {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
}

.student-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.student-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.student-info {
    text-align: left;
    color: black;
}

.student-info h4 {
    margin: 0;
    font-size: 16px;
    color: black;
}

.student-info p {
    margin: 2px 0;
    font-size: 14px;
    color: #555;
}
