        * {
        padding: 0;
        scroll-behavior: smooth;
        }
        body {
        padding: 0;
        max-width: 2175px;
        margin: 0 auto;
        font-family: 'Roboto', sans-serif;
        background: #000000;
        }
        ::selection {
            color: #304ffe;
            background: #151515;
        }
        ::-moz-selection {
            color: #304ffe;
            background: #151515;
        }
        .header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 21.75px 30.75px;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.375);
            backdrop-filter: blur(9px);
            -webkit-backdrop-filter: blur(9px);
            box-shadow: 0 1.75px 30px rgba(21, 21, 21, 0.745);
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .nav-and-button-container {
            display: flex; 
            align-items: center; 
            height: 100%;
        }
        .nav-menu {
            list-style: none;
            display: flex;
            align-items: center;
        }
        .nav-item {
            position: relative;
            margin-left: 30px;
        }
        .nav-item.mobile-button-item {
            display: none;
        }
        .nav-link {
            text-decoration: none;
            color: #ffffff;
            font-size: 1.21rem;
            font-weight: 400; 
            padding: 5px;
            display: block;
            position: relative;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px; 
            left: 0%;
            width: 0;
            height: 1.75px;
            background-color: #304ffe;
            transition: width 0.21s;
            border-radius: 1px;
        }
        .nav-link:hover,
        .nav-item:hover > .nav-link {
            color: #304ffe;
        }      
        .nav-link:hover::after,
        .nav-item:hover > .nav-link::after {
            width: 100%;
        }
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(21, 21, 21, 0.75);
            backdrop-filter: blur(5.75px);
            -webkit-backdrop-filter: blur(5.75px);
            min-width: 215.75px;
            list-style: none;
            padding: 15px;
            font-size: 1.15em;
            border-radius: 12px;
            box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1000;
        }
        .nav-item:hover > .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-item a {
            padding: 12px 21px;
            display: block;
            color: #eeeeee;
            border-left: 2.45px solid #ffffff;
            text-decoration: none;
            font-weight: 400;
            transition: background-color 0.3s, color 0.3s;
        }
        .dropdown-item a:hover {
            color: #304ffe;
        }
        .desktop-button-container {
            margin-left: 30px;
            height: 70px; 
            display: flex;
            align-items: center;
        }
        .contact-button {
            text-decoration: none;
            color: #000000;
            font-size: 1.12rem;
            font-weight: 500; 
            padding: 12px 21px;
            background-color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 9px;
            display: inline-block;
            font-family: 'Roboto', sans-serif;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }
        .contact-button:hover {
            background-color: transparent;
            color: #ffffff;
        }
        .mobile-button-item .contact-button {
            width: 75%;
            display: block;
            margin: 0 auto;
            text-align: center;
            font-size: 1.21rem;
            padding: 15px 30px;
        }
        .hamburger {
            display: none; 
            cursor: pointer;
            padding: 21px 0;
            z-index: 1000;
            margin-right: 5px;
        }
        .bar {
            display: block;
            width: 30px;
            height: 3px;
            margin: 5px auto;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
            border-radius: 1px;
        }
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        @media (max-width: 900px) {
            .header {
                padding: 5.75px 21px;
            }
            .hamburger {
                display: block;
            }
            .desktop-button-container {
                display: none; 
            }
            .nav-item.mobile-button-item {
                display: list-item; 
                width: 100%;
                margin: 30px 0; 
            }
            .nav-menu {
                position: fixed;
                top: 65.15px;
                left: -100%; 
                width: 100%;
                height: 145vh;
                background-color: #000000; 
                backdrop-filter: blur(21px);
                -webkit-backdrop-filter: blur(21px);
                flex-direction: column;
                justify-content: flex-start;
                padding: 12px 0; 
                transition: left 0.3s ease-in-out;
                overflow-y: auto;
            }
            .nav-menu.active {
                left: 0; 
            }
            .nav-item {
                margin: 0; 
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
            }
            .nav-item:last-child {
                border-bottom: none;
            }
            .nav-link {
                font-size: 1.21rem; 
                padding: 21px 0; 
                font-weight: 400;
            }
            .nav-link::after {
                content: none; 
            }
            .dropdown {
                position: static; 
                background: rgba(0, 0, 0, 0.15); 
                backdrop-filter: none;
                box-shadow: none;
                border-radius: 0;
                padding: 0;
                transform: none;
                opacity: 1; 
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-item.dropdown-parent.active > .dropdown {
                max-height: 475px;
            }
            .dropdown-item a {
                padding: 15.75px;
                font-size: 1.15rem;
                font-weight: 300;
            }
            .dropdown-item a:hover {
                 background-color: #151515;
            }
        }
        .logo {
            display: inline-flex;
            text-decoration: none;
        }
        .logo-img {
            height: 55.55px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        @media (max-width: 345px) {
            .logo-img {
                height: 30.75px;
            }
        }
        @media (max-width: 575px) {
            .logo-img {
                height: 45.75px;
            }
        }
        @media (min-width: 2100px) {
            .logo-img {
                height: 75px;
            }
        }
        .fa {
            margin-right: 15px;
        }
        #welcome-section {
            display: flex;
            padding: 125px 9%;
            flex-direction: column;
            color: #ffffff;
            text-align: left;
            align-items: flex-start;
        }
        #welcome-text {
            font-size: 4.75rem;
            font-weight: 400;
            margin: 15px;
            filter: url(#glow);
            letter-spacing: -2.21px;
        }
        #company {
            color: #304ffe;
            animation: fade 3s infinite alternate;
            text-shadow:0 0px 75px #304ffe;
        }
        #welcome-text h3 {
            letter-spacing: 0.75px;
            text-transform: none;
        }
        @media (max-width: 345px) {
        #welcome-text,
        #company {
            font-size: 2.15rem;
            padding: 13px;
        }
        }
        @media (max-width: 375px) {
        #welcome-text,
        #company {
            font-size: 2.45rem;
            padding: 15px;
        }
        }
        @media (max-width: 415px) {
        #welcome-text,
        #company {
            font-size: 3.15rem;
            padding: 15px;
            text-align: left;
        }
        }
        @media (min-width: 416px) and (max-width: 545px) {
        #welcome-text,
        #company {
            font-size: 3.21rem;
        }
        }
        @keyframes fade {
            0%,
            100% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }
        p {
            font-size: 21px;
            color: #ffffff;
        }
        h1 {
            color: #304ffe;
            text-align: center;
            letter-spacing: 1px;
            font-size: 2.15rem;
            text-transform: uppercase;
            font-weight: 500;
        }
        h5 {
            color: #304ffe;
            text-align: center;
            letter-spacing: 1px;
            font-size: 1.75rem;
            margin: 30px auto;
            font-weight: 500;
            text-transform: uppercase;
        }
        h2 {
            color: #304ffe;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 1px;
            font-size: 1.75rem;
            font-weight: 500;
        }
        .spacer {
            height: 45px;
        }
        .link {
            color: #304ffe;
            text-decoration: none;
            position: relative;
            display: inline-block;
            transition: color 0.3s;
        }
        .link::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: #304ffe;
            visibility: hidden;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out;
        }
        .link:hover {
            color: #304ffe;
        }
        .link:hover::before {
            visibility: visible;
            transform: scaleX(1);
        }
        .footer {
            font-family: 'Roboto';
            background-color: #090909;
            color: #ffffff;
            padding: 45px;
            margin: 0;
            border-top: 1px solid #303030;
        }
        .footer-container {
            margin: 0 auto;
            padding: 30px 0;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr; 
            gap: 30px; 
        }
        .footer-col-fogo {
            display: flex;
            flex-direction: column;
            padding-right: 13px;
        }
        .fogo-img {
            content: url('https://uvnetware.com/raw/logo-branding/UV-Netware-Logo.png');
            max-width: 55%; 
            height: auto;
            margin-left: -9px;
            margin-right: 30px;
            margin-top: 0%;
            margin-bottom: 30px;
            display: block;
            object-fit: contain;
        }
        .footer-col h4 {
            color: #304ffe;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 21px; 
            letter-spacing: 0.1px;
            margin: 0;
            text-align: left;
            padding-bottom: 5.75px; 
            position: relative;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            background: #304ffe; 
            height: 1.75px;
            width: 75px; 
            transition: width 0.3s ease;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 15px; 
        }
        .footer-col ul li a {
            font-size: 1.13em;
            font-weight: 400;
            text-decoration: none;
            color: #ffffff;
            display: inline-block; 
            position: relative;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .footer-col ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2.15px;
            display: block;
            margin-top: 3px;
            left: 0;
            background: #304ffe;
            box-shadow: 0 0 9px #304ffe;
            transition: width 0.3s cubic-bezier(0.21, 0.9, 0.21, 1);
        }
        .footer-col ul li a:hover {
            color: #ffffff;
        }
        .footer-col ul li a:hover::after {
            width: 100%; 
        }
        .contact-info p {
            cursor: pointer;
            font-size: 1.09em; 
            margin-bottom: 15px;
            display: flex;
            font-weight: 400;
            align-items: center;
        }
        .contact-info i {
            color: #304ffe;
            margin-right: 12px;
            font-size: 1em;
        }
        .social-links {
            margin-top: 12px;
            margin-bottom: 0;
        }
        .social-links a {
            display: inline-flex; 
            justify-content: center;
            align-items: center;
            height: 30.75px; 
            width: 30.75px; 
            margin: 0 12px 10px 0;
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            background-color: #304ffe;
            box-shadow: 0 0 15px #304ffe;
            transition: all 0.3s ease;
        }
        .footer .contact-info a:hover,
        .footer .contact-info a:focus,
        .footer .contact-info a:active {
            color: #304ffe !important;
        }
        .social-links a:hover {
            background-color: #304ffe;
            box-shadow: 0 0 15px #304ffe;
            transform: scale(1.09);
        }
        .footer-bottom {
            padding-top: 30px;
            padding-bottom: 30px;
            padding-left: 30px;
            border-top: 1px solid #303030;
            text-align: right;
        }
        .footer-bottom p {
            font-size: 13px; 
            color: #eeeeee;
            font-weight: 300;
        }
        @media(max-width: 900px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr); 
                gap: 30px;
            }
            .footer-col-fogo {
                grid-column: span 2; 
                align-items: flex-start;
                text-align: left;
                padding-right: 0;
                margin-bottom: 12px;
            }
            .contact-info p {
                justify-content: flex-start; 
            }
            .footer-col h4::after {
                left: 0; 
                transform: none;
            }
        }
        @media(max-width: 345px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 5px;
                padding: 15.75px 0;
                text-align: center;
            }
            .footer-col-fogo {
                grid-column: span 1;
                align-items: center;
                text-align: center;
            }
            .contact-info p {
                justify-content: center;
            }
            .footer-col h4 {
                text-align: center;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        .u0 {
            font-size: 9px;
        }
        .u1 {
            font-size: 15px;
        }
        .z {
            color: #EEEEEE;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.75px;
            font-weight: 300;
            font-size: 0.975em;
        }
        .x {
            color: #ffffff;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.75px;
            font-weight: 300;
            font-size: 1.15em;
        }
        .theme-sec {
            border-top: 1px solid #303030;
            height: 75px;
            background-size: 30px 30px;
            background-color: #090909;
            background-image: repeating-linear-gradient(45deg, #454545 0 1px, transparent 1px 50%), repeating-linear-gradient(135deg, #454545 0 1px, transparent 1px 50%);
            background-position: 0 0, 12px 12px;
        }
        .u {
            color: #eeeeee;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.75px;
            font-weight: 300;
            font-size: 0.975em;
            height: 100%;
        }