*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
   
    background-color: #1e1e1e;
    font-family: sans-serif;
    color: #a0a0a0;
    line-height: 1.6;
}
.container
{
    
    display: grid;
    max-width: 1200px;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    padding: 40px;
    margin: auto;
}

.sidebar{
    height: 90vh;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
   padding: 50px;
   position: sticky;
   top:40px;
}

.main{
    
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    padding: 20px;
}

.profile img{
    height: 120px;
    width: 120px;
    border-radius: 60px;
    border: 1px solid #3a3a3a;
}

.profile h2{
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    color: #e0e0e0;
}

.profile p{
    background-color: #1e1e1e;
    padding: 5px 15px;
    color: #FFBF00;
    border: 1px solid #3a3a3a;
    font-size: 0.8rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.profile{
    text-align: center;
}



/*conatct*/

.contact
{
    margin-top: 30px;
    border-top: 2px solid #3a3a3a;
    padding: 20px;
}

.em{
    font-weight: 500;
    font-size: 0.8rem;
    color: #a0a0a0;
}
.val{
     color: #e0e0e0;
     text-decoration: none;
}
.email,.phone{
    margin-bottom: 15px;
}

.social{
    
    margin-top: 30px;
    border-top: 2px solid #3a3a3a;
    padding: 20px;
    text-align: center;

}
.social img{
  
     width: 24px;
     height: 24px;
     margin-left: 5px;
    filter: grayscale(1) invert(0.7);
    transition: filter 0.3 ease;
}
.social img:hover{
    filter: grayscale(0) invert(0);
}


/*main*/

#navigation{
    padding: 20px 40px;
    border-bottom: 2px solid #3a3a3a;
    margin-bottom:20px;
    padding-bottom: 10px;
}

nav{
    display: flex;
    justify-content: end;
    gap:20px ;
    
}
 
nav a{
    text-decoration: none;
    color: #a0a0a0;
    font-weight: 500;
    transition:color 0.3 ease ;
}

nav a:hover{
    color: #FFBF00;
}

.active{
    color: #FFBF00;
}


/*about me*/

.heading{
    color: #e0e0e0;
    font-size: 2rem;
    margin-bottom: 10px;
}

.line{
    width: 60px;
    height: 5px;
    background-color: #FFBF00;
    margin-bottom: 10px;
}

.content{
    color: #a0a0a0;
   text-align: justify;
}

#about{
    margin-bottom: 30px;

}

.grid-con{
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr)) ;
    gap: 20px;
}
.item img{
    width: 48px;
    height: 48px;
    filter: invert(75%) sepia(50%) saturate(1000%) hue-rotate(350deg) brightness(110%) contrast(101%);
    margin-top: 15px
}
.item{
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    transition: transform 0.3 ease,box-shadow 0.3 ease;
}   
.item h3{
    font-size: 1rem;
    font-weight: 500

}

.item:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.3);
}

#education{
    margin-top: 20px;
}

.edtech{
  position: relative;

}
.year{
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 5px;
}
.degree{
     color: #e0e0e0;
     font-size: 1.2rem;
     font-weight: 500;
     margin-bottom: 5px;
}
.college{
    font-style: italic;
    color: #a0a0a0;
    margin-bottom: 10px;
}
.edu1,.edu2{
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.goal{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 5px solid #FFBF00;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 5;
    
}
.liner{
    position: absolute;
    width: 2px;
    top: 0px;
    bottom: 0px;
    left: 5px;
    border: 2px solid #1e1e1e;
}

.project{
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 25px;
      
}


.pro img{
      height: 180px;
      width: 100%;
     object-fit: cover;
;
}

.pro{
    background-color: #1e1e1e;
       border-radius: 12px;
       border: 1px solid #3a3a3a;
       overflow: hidden;
       transition: transform 0.5 ease,box-shadow 0.5 ease;
}
.pro:hover{
    transform: translateY(-10px);
    box-shadow: 0px 0px 10px 5px black;
}
.card{
    padding: 20px;
}
.card h3{
    color: #e0e0e0;
    margin-bottom: 10px;
}

.card p{
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card span{
    background-color: rgba(255, 191, 0, 0.1);
    color: #FFBF00;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    margin-right: 5px;
    
}

@media screen and (max-width:700px) {
    .container{
        grid-template-columns: 1fr;
        padding: 20px;
    }

    

    .sidebar{
       position: static;
       height: auto;
    }
}



.exper
{

    position: relative;
    padding-left: 20px;
    text-align: justify;
    margin-bottom: 10px;
    padding-right: 10px;
}
#experience{
    margin-top: 20px;
}


.goals{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 5px solid #FFBF00;
    position: absolute;
    top: 0px;
    left: 0;

    z-index: 5;
}
   
.c{
      color: #a0a0a0;
}