/* Updated Tutorial Cards Styling */
.owl-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.owl-carousel .owl-stage {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.owl-carousel .owl-item {
    flex: 0 0 auto;
    margin-right: 20px; /* Adjust the spacing between cards as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.owl-carousel .owl-item img {
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.owl-carousel .owl-item .course-inner-text {
    padding: 20px;
    text-align: center;
}

.owl-carousel .owl-item h3 {
    font-size: 1.5rem; /* Adjust the font size for the card title */
    margin-bottom: 10px;
}

.owl-carousel .owl-item p {
    font-size: 1rem; /* Adjust the font size for the card description */
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .owl-carousel .owl-item {
        margin-right: 0; /* Remove spacing between cards on smaller screens */
    }

    .owl-carousel .owl-item img {
        height: 250px; /* Adjust the height for smaller screens */
    }
}
