.course-carousel-section {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.course-card {
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.4s ease;
    min-height: 450px;
}

.course-card.active {
    transform: scale(1);
    opacity: 1;
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: calc(100% - 200px); /* image height */
}

.card-content h4 {
    margin-bottom: 5px;
    min-height: 48px; /* forces equal height */
    line-height: 1;
}

.pricee {
    font-weight: bold;
    margin: 5px 0;
    font-size: 20px;
}

.apply-btn {
    padding: 7px 22px;
    background: #ff3b2f;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    /* border: 2px solid green; */
    width: 90%;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.nav-arrow.left {
    left: 0;
}

.nav-arrow.right {
    right: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .course-card {
        min-width: 260px;
    }
}

.pricee {
    display: none !important;
}
