@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300&display=swap');
@import url("https://vaspacx-components.netlify.app/style.css");


.header-container{
    width:98vw;
    height:100vh;
    display:flex;
    position: relative;
}
.nav{
    font-family: 'Roboto', sans-serif;
    display: flex;
    position: absolute;
    justify-content: space-between;
    width: 80%;
    gap: 80px;
    margin-left: 20.5%;
    padding: 19px 40px;
    border-bottom: 1px solid rgb(81 82 83);
    height: 92px;
    background-color: rgb(0, 0, 0);
}

/* SCROLL BAR */
::-webkit-scrollbar{
    width:0;
}

#scrollPath
{
    position: fixed;
    top:0;
    right:0;
    width:10px;
    height:100%;
    background:rgba(255,255,255,0.05);
}

#progressbar{
    position:fixed;
    top:0;
    right:0;
    width:10px;
    background:linear-gradient(to top,#008aff,#00ffe7);
    animation:animate 5s linear infinite;
}

@keyframes animate
{
    0%,100%
    {
        filter:hue-rotate(0deg);
    }
    50%
    {
        filter:hue-rotate(360deg);
    }

}

#progressbar:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,#008aff,#00ffe7);
    filter: blur(30px);
}
#progressbar:after
{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,#008aff,#00ffe7);
    filter: blur(30px);
}
 ul{
    list-style:none;
}

.nav ul li{
     display: inline-block;
     margin:0px 18px 18px 0px;
}
/* sidebar  */
.vaspacx{
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    padding-bottom: 23px;
    border-bottom: 1px solid rgb(77 83 86 / 95%);
    background: -webkit-linear-gradient(
349deg
,white 25%, #3a7ce3 29%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar{
    font-family: 'Roboto', sans-serif;
    display: flex;
    padding: 20px 5px 0px 30px;
    width: 20%;
    height:100vh;
    position: fixed;
    background-image:url("./assets/sidebar.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 100vh;
    justify-content: column;
    flex-direction: column;
    border-right: 1px solid #594d4d;
}

/* sub-headings */
.margin-10px{
    margin:4px;
    padding:5px;
    width:3.5rem;
    border-radius:6px;
    transition:all 0.2s ease-in-out;
}

.margin-10px:hover{
    color: #3a7ce3;
    border-radius:6px;
}



.details{
    background-color: gold;
    width:200px;
    height:400px;
}

/* social icons in nav */

.social-icons{
    margin-right: -6px;
}
.social-icons li a i{
    padding:10px;
    border-radius:50%;
    color:white;
    transition:all 0.5s ease-in-out;
}
.social-icons li a i:hover{
    box-shadow:0px 0px 10px 4px #124490;
    color:#124490;
}

/* detail section */

.detail{
    width: 98vw;
    height: 100vh;
    margin-left:22.7%;
    padding:20px 20px;
    margin-top: 94px;
}

.heading-detail{
    letter-spacing:1px;
    line-height: 36px;
    word-spacing: 12px;
}

.heading-detail::before{
      content:'V';
      font-size:50px;
      
}

.para-heading{
    letter-spacing: 3px;
    word-spacing: 4px;
    line-height: 23px;
}

/* colors-font */





.para i{
    color:var(--grey-color);
}

a{
text-decoration:none;
color:var(--font-color);
}
.primary-btn{
    color: var(--font-color);
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 10px 10px;
    border: none;
}

.mg-btn{
    margin: 40px 5px 5px;
}

/* SECTION STARTED */



section{
    margin-left: 20%;
    padding: 10px 48px 65px 48px;
    border-bottom: 1px solid var(--grey-color);
}


/* flex row */

.flex-row{
    display:flex;
    flex-direction:row;
    flex-wrap: wrap;
    gap:60px;
    width:600px;
    height:150px;
}

.card-flex-section{
    display: flex;
    justify-content: center;
    gap: 14%;
    margin-bottom: 35px;
}

.next-btn{
    margin: auto;
    margin-top: 60px;
    margin-bottom: 40px;
   transition:all 0.5s ease-in-out;
}

.two-btn-cont{
    display: flex;
    justify-content:space-between;
}
.next-btn:hover{
    cursor: pointer;
    justify-content: center;
    gap:4px;
    color:white;
    background: linear-gradient( 
        150deg
         , #3a7ce3 65%, white 66%);
}

.two-btn-cont .primay-btn:hover{
    cursor: pointer;
    justify-content: center;
    gap:4px;
    color:white;
    background: linear-gradient( 
        150deg
         , #3a7ce3 65%, white 66%);
}

.cont-txtbox{
    width:400px;
    display:flex;
    gap:10px;
    height:200px;
    margin:20px;
}



.modal-container{
    position: relative;
    margin: 5px;
    width: 100%;
    height: 390px;
    border: 1px solid var(--secbg-color);
    padding: 20px;
}