<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header .navbar-tech {
    background: rgba(10,10,18,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    color: #FFFFFF;
}
.header .navbar-brand-tech img {
    height: 40px;
    filter: drop-shadow(0 0 3px #0ff0fc);
    background: rgba(0, 0, 0, 0.2);
}
.header .nav-link-tech {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.header .nav-link-tech:hover {
    color: #0ff0fc !important;
}
.header .nav-link-tech:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: #0ff0fc;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.header .nav-link-tech:hover:before {
    transform: scaleX(1);
}
.header .navbar-toggler {
    padding: 0.25rem;
    position: relative;
}
.header .navbar-toggler-icon{
    text-align: center;
}
.header .navbar-toggler-icon:before{
    content: "";
    width: 20px;
    height: 2px;
    background: #999999;
    display: block;
    margin: 5px 0;
    box-shadow: 0 15px 0 #999999;
}
.header .navbar-toggler-icon:after{
    content: "";
    width: 20px;
    height: 2px;
    background: #999999;
    display: block;
    margin-left: 5px;
    margin-top: 2px;
    transition: margin 0.3s ease;
}
.header .navbar-toggler:hover .navbar-toggler-icon:before{
    background: #0ff0fc;
    box-shadow: 0 15px 0 #0ff0fc;
}
.header .navbar-toggler:hover .navbar-toggler-icon:after{
    background: #0ff0fc;
    margin-left: 0;
}
.header .search-box{
    position: relative;
}
.header .search-box .search-btn{
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    padding: 0;
    line-height: 36px;
    border-radius: 50%;
}
.header .search-tech {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 30px;
    padding: 5px 40px 5px 10px;
    height: 38px;
}
.header .search-tech:focus {
    background: rgba(255,255,255,0.15);
    border-color: #0ff0fc;
    box-shadow: 0 0 10px rgba(15,240,252,0.3);
    color: white;
}
.header .btn-tech {
    background: transparent;
    border: 1px solid #0ff0fc;
    color: #0ff0fc;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.header .btn-tech:hover {
    background: #0ff0fc;
    color: #0a0a12;
    box-shadow: 0 0 15px rgba(15,240,252,0.5);
}
.text-tech {
    color: rgba(255,255,255,0.7);
}
.header .nav-icon-tech {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-left: 1.5rem;
    transition: all 0.3s;
}
.header .nav-icon-tech:hover {
    color: #0ff0fc;
    transform: translateY(-2px);
}
.header .uc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .uc-nav .nav-icon-tech .text-tech {
    display: none;
}
@media screen and (max-width: 991px)  {
    .header .uc-nav {
       padding: 0 15px;
       flex-wrap: wrap;
    }
    .header .search-box {
        margin: 10px 0;
        width: 100%;
        flex: 0 0 auto;
    }
    .header .uc-nav .nav-icon-tech  {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header .uc-nav .search-box + .nav-icon-tech {
        margin-left: 0;
    }
    .header .uc-nav .nav-icon-tech .text-tech {
        display: block;
        padding-left: 5px;
        margin: 5px 0;
    }
    .header .uc-nav .nav-icon-tech:hover .text-tech {
        color: #0ff0fc;
    }

}</pre></body></html>