/* eduzone.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --edu-primary: #1F38FA;
    --edu-secondary: #FF6A00;
    --edu-bg: #F8F9FE;
    --edu-text: #212529;
    --edu-text-muted: #6C757D;
    --edu-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--edu-bg) !important;
    color: var(--edu-text);
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    border-bottom: none;
    backdrop-filter: none;
}
.navbar-brand {
    color: var(--edu-text) !important;
    font-weight: 800;
}
.nav-link {
    color: var(--edu-text) !important;
    font-weight: 500;
}
.nav-link:hover {
    color: var(--edu-primary) !important;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.png') center/cover no-repeat;
    position: relative;
    color: white;
    padding: 160px 0 120px 0;
    border-radius: 0;
    margin-bottom: 0;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, rgba(31, 56, 250, 0.9) 0%, rgba(31, 56, 250, 0.7) 100%);
    z-index: -1;
}
.hero h1 {
    font-weight: 800;
}

/* Buttons */
.btn-report {
    background: var(--edu-secondary);
    color: #fff !important;
    padding: 15px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}
.btn-report:hover {
    background: #E55F00;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 106, 0, 0.4);
}

/* Feature Cards */
.card-feature {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--edu-shadow);
    backdrop-filter: none;
}
.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}

/* Stat Cards */
.stat-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 35px 20px;
    margin-bottom: 20px;
    box-shadow: var(--edu-shadow);
    backdrop-filter: none;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--edu-primary);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1A1E29 !important;
    border-radius: 0;
    margin-top: 60px;
}
