* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: poppins, sans-serif;
}

.navbar-container {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.logo-holder {
    display: flex;
    flex-direction: column;
}

.logo-holder a {
    text-decoration: none;
}

.logo-holder p {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.heading-desc {
    font-size: 0.9rem !important;
    opacity: 0.8;
}

.navigation-holder {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.icon-dash {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.icon-dash::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.icon-dash:hover::after {
    width: 100%;
}

.icon-dash.active {
    color: #ffd700;
    font-weight: 600;
}

.icon-dash.active::after {
    width: 100%;
}

#bars {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

#bars::before,
#bars::after,
#bars .bar-middle {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    left: 0;
}

#bars::before {
    top: 0;
}

#bars .bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

#bars::after {
    bottom: 0;
}

#bars.active::before {
    transform: translateY(11px) rotate(45deg);
}

#bars.active::after {
    transform: translateY(-11px) rotate(-45deg);
}

#bars.active .bar-middle {
    opacity: 0;
}

.sidebar-container {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.sidebar-container.open {
    right: 0;
}

.sidebar-container.close {
    right: 100%;
}

.banner-holder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.sidebar-container.open .banner-holder {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.icon-banner {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a237e, #0d47a1);

}

.icon-banner:hover {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    transform: translateX(10px);
}

.icon-banner.active {
    background: #ffd700;
    color: #000;
}

@media screen and (max-width: 768px) {
    .navbar-container {
        padding: 1rem 2rem;
    }

    .navigation-holder .icon-dash {
        display: none;
    }

    #bars {
        display: block;
    }

    .logo-holder p {
        font-size: 1.5rem;
    }
}