  
.static-column {
    width: 50%;
    background-color: rgb(17, 23, 41);
    position: sticky;
    /* top: 0; */
    height: 100vh;
    overflow-y: auto; 
    padding: 90px 0px 100px 0px;
    
}
.intro-items {
    margin: 15px 0px;
}

/* Resume Section */
.resume-container-static {
    /* padding-top: 50px; */
    color: rgb(151, 162, 182);
    letter-spacing: 1px;
}
.resume-container-static:hover {
    color: rgb(227, 232, 239);
}
.arrow-icon {
    padding-left: 7px;
    font-size: 20px;
}
.resume-container-static:hover > .arrow-icon {
    transform: translateX(100%);
    transition: 0.6s;
}




.nav-bar {
    margin: 80px 00px 00px 00px;
    color: rgb(100, 108, 123); /* Use the parent element's color (or set your desired color) */
}
.nav-item {
    margin: 15px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
}
.nav-link:hover {
    color: white;
}
.nav-link {
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding-left: 55px;
    transition: padding-left 0.3s;
}

.line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px; /* Initial width, you can change this */
    height: 1.5px; /* Line thickness */
    background-color: rgb(100, 108, 123); /* Set the line color */
    transform: translateY(-50%);
    transition: width 0.3s; /* Transition width on hover */
    z-index: -1;
}

.nav-link:hover .line,
.line:hover {
    width: 60px; /* Increase the width to 100% on hover */
    background-color: white;
}

.nav-link:hover {
    padding-left: 80px; /* Increase the padding-left on hover to move the text to the right */
}

.fa.fa-linkedin-square {
    margin: 0 9px;
}
.fa.fa-github {
    margin: 0 9px;
}
.icon-links {
    font-size:30px;
    color:rgb(151, 162, 182);
    position: absolute;
    display: flex;
    bottom: 100px;
}
.intro-content > p {
    line-height: 1.625;
}