.edu_slide_tabs_img_cont_box h5 a {
    font-size: 14px;
    color: #fff !important;
}

/* Estilos para el carrusel de cursos */
.curso-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff7f3b, #ff5900);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-title a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.card-title a:hover {
    color:#ff7327;
}

.btn-primary {
    background: linear-gradient(45deg, #ff7f3b, #ff5900);
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff5900, #ff7f3b);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #da4c00;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .curso-card {
        margin-bottom: 1rem;
    }
}

/* Animación de entrada para las cards */
.carousel-item.active .curso-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
