@import url('https://fonts.googleapis.com/css2?family=Arvo&family=Roboto:wght@300&display=swap');
/* common css  */

html,
body{
    margin: 0;
    padding: 0;
    font-family: 'Arvo', serif;
}

/* header  */
.navbar-brand{
    font-size: 1.5rem;
}

.nav-link{
    font-size: 1.2rem;
}

/* home  */
#home{
    width:100%;
    min-height: 100vh;
}
#particles-js{
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0; left: 0;
    background: #28282B;
}

#name{
    margin-top: 18rem;
    font-size: 3rem;
    color: #fff;
    text-align: center;
}
#tagline{
    margin-top: .2rem;
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

#learn-more{
    padding: .4rem 1rem;
    max-width: 9rem;
    color: #fff;
    margin: 0 auto;
    display: block;
    border: 2px solid #fff;
    border-radius: 1rem;
    text-decoration: none;
    text-align: center;
}
#learn-more:hover{
    text-decoration: none;
}

.circular-image {
    width: 160px; /* Adjust the size as needed */
    height: 160px; /* Should be equal to width for a perfect circle */
    border-radius: 50%; /* Makes the image circular */
    border: 2px solid #fff; /* Optional: add a border around the image */
    float: right;
    margin-top: 18.2rem; /* Adjust margin-top as needed to align with text */
    margin-right: 1.5rem; /* Adjust the margin as needed */
}

/* resume  */
#resume{
    width: 100%;
    height: auto;
    padding: 5rem 0 0;
}
#resume .card{
    margin-left: auto;
    margin-right: auto;
 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow */
    border-radius: 10px; /* Add rounded corners */
    /* You can adjust the values as needed */
     
}

#resume .card img{
    height: 250px;
   width: 270px;
}
#about_me{
    color: #28282B;
}

/* portfolio  */
#portfolio{
    padding-top: 4rem;
}
#projects{  
    color: #28282B;  
}
#portfolio{
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#portfolio img{
    height: 270px;
    width: 100px;
} 

/* project 1 */
#portfolio .project-1{
    border-radius: 30px; /* Adjust the value to change the level of rounding */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Adjust values for shadow effect */
    padding: 20px 40px; /* Adjust padding as needed */
    display: inline-block;
    width: auto; /* Allow the container to adjust its width based on the content */
    box-sizing: border-box;
    margin-left: 5.5rem;
    margin-right: 5.5rem;
}
#mlrecog {
margin-bottom: 20px; /* Add margin at the bottom of the h3 */
color: #579dec;  
}

#tag_mlrecog {
margin-bottom: 40px; /* Add margin at the bottom of the paragraph */
}
/* Reduce the gap between columns */
.row.justify-content-center > div[class^="col-"] {
    padding-right: 4px; /* Adjust the padding to reduce the gap */
    padding-left: 4px; /* Adjust the padding to reduce the gap */
}
#portfolio .logo-container {
    display: flex;
    justify-content: start; /* Adjust to your desired spacing between logos */
    align-items: center; /* Align logos vertically in the center */
    margin-bottom: 30px;
}
  
#portfolio .logo-container img{
    width: 40px; /* Adjust the size of the logos */
    height: 40px;
    margin: 0 5px; /* Adjust the horizontal margin between logos */
}

/* contact  */
#contact{
    width: 100%;
    height: auto;
    padding: 4rem 0;
}
#contactxt{
    color: #28282B;
}
#contact form{
    width: 100%;
}
#contact form .submit-message{
    margin-left: 15px;
    margin-right: 15px;
    background: #579dec;
    color: #fff;
}



/* footer  */
footer{
    width: 100%;
    height: auto;
    padding: 2rem 0 0;
    background: #343434;
}

#email{
    list-style: none;
    padding-left: 0;
    color: #fff;
}

#back{
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;    
    text-decoration: none;
}
#back:hover{
    color: #579dec;    
    text-decoration: none;
}
footer ul.social{
    list-style: none;
    padding-left: 0;
    text-align: right;
}
footer ul.social li{
    display: inline-block;
    margin-left: 1rem;
}
footer ul.social li a{
    color: #fff;    
    text-decoration: none;
    font-size: 2rem;
}
footer ul.social li a:hover{
    color: #579dec;    
    text-decoration: none;
}
footer p{
    color:#fff;
    text-align: center;
    padding: 2rem 0;
}