/* Educourse Pro - Main Stylesheet */

:root {
    --primary-color: #4e73df;
    --secondary-color: #2e59d9;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    padding-top: 56px; /* Space for fixed navbar */
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.nav-link {
    font-weight: 500;
    color: var(--dark-color);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #224abe 100%);
    min-height: 500px;
    padding: 60px 0;
    margin-bottom: 0;
}

/* Feature Boxes */
.feature-box {
    transition: transform 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-10px);
}

/* Course Cards */
.course-card {
    transition: all 0.3s ease;
    overflow: hidden;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.course-thumb {
    height: 180px;
    object-fit: cover;
}


