.app-navbar {
    background: #1E2540;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.app-navbar .nav-link {
    color: #E5E7EB;
}

.app-navbar .nav-link:hover {
    color: #ffffff;
}

.notification-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
}

/* LOGO */
.app-logo {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: #FFC843;
    padding: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}


.hero-section {
    background: linear-gradient(135deg, #1E2540, #2A3160);
    color: #fff;
    padding: 100px 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-title span {
    color: #A5B4FC;
}

.hero-subtitle {
    max-width: 750px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.modules-section {
    padding: 80px 20px;
    background: #9CA3AF;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}


.module-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: transform .2s ease;
}

.module-card:hover {
    transform: translateY(-6px);
}

.module-card i {
    font-size: 2rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

.cta-section {
    background: #4F46E5;
    color: #fff;
    padding: 80px 20px;
}
