/* Container styling fix */
.w3l-offered-courses .card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
}

/* Image quality and sharp text fix */
.w3l-offered-courses .card-img-bottom {
    border-radius: 8px 8px 0 0;
    object-fit: contain; /* Isse clear image aayegi */
    max-height: 250px;
    width: 100%;
}

/* Restoring the original, prominent heading style */
.w3l-offered-courses .course-name {
    font-size: 28px; /* Badi heading */
    font-weight: 800; /* Bold */
    color: #333;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

/* Restoring the original professionally-styled blue button */
.w3l-offered-courses .premium-btn {
    display: block;
    width: 220px; /* Wider button */
    margin: 0 auto;
    padding: 12px 20px;
    background: #0d6efd; /* Same blue as Bharat Shiksha logo */
    color: #fff;
    text-align: center;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(13, 110, 253, 0.4); /* soft blue glow */
}

/* Button hover effect */
.w3l-offered-courses .premium-btn:hover {
    background: #004dbb; /* darker blue on hover */
    box-shadow: 0 6px 10px rgba(13, 110, 253, 0.6);
}