@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Exo 2", sans-serif;
}

.portfolio-container
{
    height: 100vh;
    width: 100%;
    display: flex;

}

.navlist
{
    display: flex;
    gap: 4em;
    height: 15vh;
    width: 100%;
    justify-content: center; /*Horizontally center*/
    align-items: center; /*Vertically Center*/
    position: fixed;

}

.navlist li
{
    list-style: none;
}

.navlist li a
{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    color: #fff;
    position: relative;
}

.left-container
{
    background: #262525;
    width: 70%;
    height: 100vh;
    padding-left: 3rem;
    display: flex;
    align-items: center;
}

.right-container
{
    background: linear-gradient(-45deg,#3877ff,#262525 70%);
    width: 30%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.icons .fa-brands
{
    color: #bbb; /*To Change the color of icon*/
    font-size: 1.7rem;
}

.icons
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.content
{
    margin-left: 4rem;
}

.content .intro
{
    font-size: 1.5rem;
    color: #fff;
}

.content .intro span
{
    color: #5db9ee;
}

.content h1
{
    font-size: 4rem;
    color: #5db9ee;
}

.content .detail
{
    font-size: 1.1rem;
    color: #fff;
    max-width: 38rem;
    margin: 1.1rem 0 3rem 0;
    line-height: 1.8rem;
}

.btn-container button
{
    border: 0.1rem solid #5db9ee;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.4s ease;
}

button:nth-child(1)
{
    background: #5db9ee;
    color: #262525;
}

button:nth-child(2)
{
    background: transparent;
    color: #5db9ee;
    margin-left: 2rem;
}

button:nth-child(1):hover
{
    background: transparent;
    color: #5db9ee;
}

button:nth-child(2):hover
{
    background: #5db9ee;
    color: #262525;
}

.icons .fa-brands:hover
{
    cursor: pointer;
    background: linear-gradient(#fff, #3877ff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.design .circle
{
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 70%;
    transform: translate(-50%,-50%);
}

.circle:nth-child(1)
{
    background: linear-gradient(90deg, transparent 50%,#262525 50%);
    width: 38rem;
}

.circle:nth-child(2)
{
    background: white;
    width: 30rem;
    background-image: url("GOLU KUMAR IMAGE.jpeg");
    background-size: 100%;
    background-repeat: no-repeat;
    border: 1rem solid white;
    box-shadow: 0 0 1rem #fff,
    inset 0 0 1rem #fff,
    0 0 2rem #3877ff,
    inset 0 0 2rem #3877ff,
    0 0 4rem #3877ff,
    inset 0 0 4rem #3877ff;
}

.navlist li a::after, .navlist .active::after
{
    content: "";
    position: absolute;
    background-color: white;
    width: 100%;
    height: 0.1rem;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s;
}

.navlist li a:hover::after, .navlist .active::after
{
    transform: scaleX(1);
    transform-origin: bottom left;
}
