*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #e0e7ef;
}
html,body{
    width: 100%;
    height: 100%;
    background-color: #030712
    ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

/* Modern Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8585, #6ce0d7);
}
/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b #1a1a1a;
}

#main{
    width: 100%;
    height: 100%;
}

#page1{
    width: 100%;
    height: 100vh;
    /* background: #000; */
}

#nav{
    width: 100%;
    height: 10%;
    /* background-color: #fff; */
    display: flex;
    align-items: center;
    justify-content:center;
}

#nav-content{
    width: 75%;
    height: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav-elements{
    width: 100%;
    height: 100%;
    /* background-color: #3e39d1; */
    display: flex;

}

#nav-elements ul{
    font-size: 0.8vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 2vw;
    list-style: none;
    /* color: rgb(0, 0, 0); */
}

#nav-content i{
    font-size: 2vw;
    font-weight: 500;
    
}

#pg1-hero{
    width: 100%;
    height: 90%;
    /* background-color: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

#pg1-hr-card{
    width: 80%;
    height: 100%;
    display: flex;
    
}

#pg1-hr-left{
    width: 15%;
    /* min-height: 100%; */
    /* background: #000; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
    /* padding: 20px; */
/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
-ms-overflow-style: none;  /* IE and Edge */
scrollbar-width: none;  /* Firefox */

/* Make the scrolling div fixed */
position: fixed;
top: 5%; /* Adjust as needed based on your layout */
left: 0%; /* Adjust as needed based on your layout */
/* width: 15%; */
height: 100vh;
overflow-y: auto;
}




label{
    font-size: 1.2vw;
    font-weight: 700;
    padding: 1 2vw;
    margin-bottom: 7px;
    /* border-bottom: 2px solid whitesmoke; */
}

ul{
    margin-top: 2vw;
    width: 95%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: safe;
    gap: 0.5vw;

  
    /* background-color: #fff; */
}

li{

    font-size: 0.8vw;
    /* background-color: #302e2e; */
    text-align: center;
    padding: 0.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

li a {
    /* color: #fff; */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}


#pg1-hr-center{
    width: 80%;
    min-height: 100%;
    
    /* background: #a21a1a; */
    
}

#pg1-hr-right{
    width: 10%;
    min-height: 100%;
    /* position: fixed; */

    background: #ff0000;
    
}

#navbar{
    width: 100%;
    height: 100vh;
    background-color: #4ecdc4;
}

#Cards{
    width: 100%;
    height: 100vh;
    background-color: #524ecd;
}

#Buttons{
    width: 100%;
    height: 100vh;
    background-color: #1f5d2f;
}
#scrollbar{
    width: 100%;
    height: 100vh;
    background-color: #1f295d;
}

#sidebar{
    width: 100%;
    height: 100vh;
    background-color: #adec00;
}

#footer{
    width: 100%;
    height: 100vh;
    background-color: #eca900;
}










