/* Custom Styles for LMS Site */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.course-thumbnail {
    height: 200px;
    object-fit: cover;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #0d6efd;
    /* Bootstrap primary color */
    border-radius: 2px;
}

.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.rating-stars {
    color: #ffc107;
}

/* Navigation Styles */
.navbar-nav .nav-link {
    font-weight: bold;
    color: black !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
    /* Bootstrap primary color */
}

/* Offcanvas Styles */
.offcanvas-lg {
    background-color: white;
}