#sidenavHamel .sb-sidenav-menu .nav-link {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 16px;
    margin: 8px 10px;
    background: rgba(5, 242, 255, 0.1); 
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}


#sidenavHamel .sb-sidenav-menu .nav-link:hover,
#sidenavHamel .sb-sidenav-menu .nav-link:focus {
    background: #60d5ff; /* Bright sky blue */
    color: #0d1117;
    box-shadow: 0 0 16px rgba(96, 213, 255, 0.8);
    transform: scale(1.02);
}

#sidenavHamel .sb-sidenav-menu .nav-link.active {
    background: linear-gradient(to right, #60d5ff, #00bfff);
    font-weight: 700;
    border: 1px solid #87ceeb;
    color: #095ddc;
    box-shadow: 0 0 16px rgba(96, 213, 255, 0.9);
}


#sidenavHamel .sb-nav-link-icon {
    color: #00bfff;
    margin-right: 10px;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

#sidenavHamel .nav-link:hover .sb-nav-link-icon,
#sidenavHamel .nav-link:focus .sb-nav-link-icon {
    transform: rotate(10deg) scale(1.2);
    color: #0d1117;
}

/* ===== RESPONSIVE MOBILE: ACTIVE STATE BRIGHTENED ===== */
@media screen and (max-width: 768px) {
    #sidenavHamel .sb-sidenav-menu .nav-link:active {
        background: #60d5ff;
        box-shadow: 0 0 16px rgba(96, 213, 255, 0.8);
        color: #0d1117;
    }

    #sidenavHamel .sb-sidenav-menu .nav-link:hover,
    #sidenavHamel .sb-sidenav-menu .nav-link:focus {
        background: #60d5ff;
        box-shadow: 0 0 14px rgba(96, 213, 255, 0.7);
        color: #0d1117;
    }
}

.logo-frame-glow {
    display: inline-block;
    padding: 7px;
    border-radius: 16px;
    background: linear-gradient(145deg, #00e5ff, #0077ff);
    position: relative;
    animation: flickerGlow 2s infinite;
    box-shadow:
        0 0 10px #00e5ff,
        0 0 20px #00e5ff,
        0 0 30px #00e5ff,
        0 0 40px #0077ff;
}

.logo-frame-glow img {
    border-radius: 12px;
    max-width: 270px;
    height: auto;
    display: block;
    z-index: 1;
    position: relative;
}

@keyframes flickerGlow {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        box-shadow:
            0 0 10px #00e5ff,
            0 0 20px #00e5ff,
            0 0 30px #00e5ff,
            0 0 40px #0077ff;
        filter: brightness(1.3);
    }

    20%, 24%, 55% {
        box-shadow: none;
        filter: brightness(0.8);
    }
}
