*{
 margin:0px;
 padding:0px;
}
body{
    min-height:100vh;
}
.companyLogo{
    width:60px;
    height:60px;
}
nav{
    padding-top:10px;
    background-color:white;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    height: 80px;
}
nav ul{
    width:100%;
    list-style:none;
    display:flex;
    justify-content:flex-end;
}
nav li{
    height:50px;
     display :flex;
     align-items: center;
}

nav li:hover{
    background-color: #f0f0f0;
}
#companyLogoLi:hover{
    background-color:transparent;
}

nav a{
    padding: 0 30px;
    text-decoration:none;
    display :flex;
    align-item:center;
    color: black;
}


nav li:first-child{
    margin-right:auto;
}
.sidebar{
    position:fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index:999;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display:none;
    flex-direction: column;
    align-items:flex-start;
    justify-content:flex-start;
}
.sidebar li{
    width: 100%;
}
.menu-button{
    display:none;
    margin-right:5px;
}
#servicesLi{
    display: flex;
    margin-top: 5px;
    flex-direction: column;
    align-items: flex-start;
}
#companyLogoDivNav{
    display: flex;
    align-items: center;
    height: auto;
    width: 170px;
    background-color: transparent;
    justify-content: space-between;
}
   #companyNameDiv{
      margin-top: 0px;
   }
   #subServices2Li{
       cursor:pointer;
       width: 135px;
       align-items: flex-start;

   }
   #subServices2{
    display:flex;
    flex-direction:column;
    height:450px;
    font-size:12px;
    align-items: flex-start;
    padding: 0px;
    z-index: 9;
    background-color: white;
    width: 150px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 5px;
   }
   #subServices2Li:hover{
        background-color:transparent;
   }
   #company-name{
      font-weight: bold;
      color: green; /* Initial color */
      background-image: linear-gradient(90deg, green, blue);
      background-clip: text;
      -webkit-background-clip: text; /* For Safari */
      animation: color-slide 3s linear infinite;
   }

@media(max-width: 800px){
    .hideOnMobile{
        display:none;
    }
    nav{
        height: 50px;
    }
    .menu-button{
        display:block;
    }
   .companyLogo{
       width:30px;
       height:30px;
       margin-top: -20px;
   }
   #companyNameDiv{
      margin-top: -18px;
   }
   #companyLogoDivNav{
        width: 125px;
   }
}

@media(max-width: 400px){
    .sidebar{
        width:100%;
    }
    .companyLogo{
        width:30px;
        height:30px;
    }
    #company-name{
         font-size: medium;
     }
}
.top-menu{
    position: sticky;
    top: 0;
    z-index: 999;
}