﻿.courses-area {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.single-courses-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .single-courses-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

.courses-image {
    position: relative;
    overflow: hidden;
}

    .courses-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.single-courses-box:hover .courses-image img {
    transform: scale(1.05);
}

.courses-content {
    padding: 20px;
}

    .courses-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

        .courses-content h3 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .courses-content h3 a:hover {
                color: #007bff;
            }

    .courses-content p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.courses-box-footer {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #888;
}

.price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
}

    .price.shadow {
        background: #28a745;
    }

.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}
