.courseCardsSwiper .swiper-button-prev,
.courseCardsSwiper .swiper-button-next {
    color: white;
    background-color: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.courseCardsSwiper .swiper-button-prev::after,
.courseCardsSwiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}
.courseCardsSwiper .swiper-button-prev {
    left: 10px;
}
.courseCardsSwiper .swiper-button-next {
    right: 10px;
}


.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: white;
    border: 1px solid #EEE;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.course-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f0f2ff;
    color: #5a67d8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.courses-slider1 .swiper-slide{
    padding: 0px !important;
    margin: 0px !important;
}

.courses-slider1 .swiper-slide .course-card{
    margin-left: 10px;
    margin-right: 10px;
}

.enroll-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card {
        padding: 1.5rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}