@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Roboto", sans-serif;
}

nav{
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    box-shadow: 2px 5px 8px grey;
    z-index: 10;
}

.nav-link
{
    color: whitesmoke !important;
}
.navbar-brand
{
    color: white !important;
    font-weight: 600;
}
.nav-link:hover{
    border-bottom: 1px solid white;
}


#home
{
   display: flex;
   flex-direction: row;
   justify-content: space-around;
   align-items: center;
   height: 90vh;
   width: 100%;
   background-color: aliceblue;
}

.home-text
{
    width: 40%;
    font-size: 24px;
   
}
.cicle
{
    width: 400px;
    height: 400px;
   
    background-color: pink;
    border-radius: 50%;

    position: relative;
     transition: 2s;
}

.cicle:hover{
    width: 400px;
    height: 200px;
    border-radius: 5%;
    transition: 2s;
}

.profile-img {
    width: 300px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
 filter: drop-shadow(0 30px 15px grey);
  position: absolute;
  top: -20%;
  left: 40px;
}

.btn1 
{
    display: none !important;
}
.btn0
{
    cursor: pointer;
}

@media screen and (max-width:768px){
    #home
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .home-text
    {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .cicle
{
    width: 200px;
    height: 250px;
   
    background-color: pink;
    border-radius: 50%;

    position: relative;
    margin-bottom: 50px;
}

.cicle:hover{
    width: 150px;
    margin-bottom: 100px;
}
    .profile-img{
    width: 200px;
    height: 250px;
    display: block;
    position: absolute;
    top: 10px;
     left: 30px;
    }
    .btn1{
        display:inline-block !important;
        cursor: pointer;
   
    }
 .btn0 
 {
    display: none !important;
 }
}



/* About */
#about
{
    text-align: center;
    width: 100%;
    height: 70vh;
    background: linear-gradient(to right, #e0f7fa, #ffffff);
    padding: 20px;

}

#about h1{
    text-align: center;
    margin-top: 30px;
}

.about-cicle-effect
{
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
   
}

.about-text
{
    font-size: 20px;
    text-align: center;
    width: 60%;
    background-color: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0px 10px 20px black;
    transition: 2s;

}
.about-text:hover
{
    font-size: 25px;
   color: white;
    background-color: grey;
    border-radius: 40px;
    padding: 30px;
    text-shadow: 0px 2px 2px black;
    transition: 1s;
}


@media screen and (max-width:768px)
{
    .about-text{
        font-size: 15px;
        text-align: center;
        width: 60%;
        background-color: white;
        padding: 10px;
        border-radius: 20px;
    }
    .about-text:hover{
        font-size: 18px;
        color: white;
        background-color: grey;
        background-origin: 10px;
        text-shadow: 0px 2px 5px black;
        
    }
}



/* Skills */


#skills
{
    width: 100%;
    height: 70vh;
    background-color:aliceblue;
}

.heading-skills
{
    font-size: 26px;
}

.progress
{
    height: 100px;
    box-shadow: 0px 5px 25px black;
}


/* Project section */
#projects
{
       background: linear-gradient(to right, #e0f7fa, #ffffff);
}
.project
{
    border: 1px solid black;
    padding: 12px;
    background-color: snow;
}
.website-image
{
    width: 100%;
    height: 300px;
    margin-top: 12px;
}

/* certficates */


#Certificates
{
    width: 100%;
    height: 70vh;
    background-color:aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carousel-img {
  max-width: 600px;   /* or any desired width */
  height: auto;   /* keeps the aspect ratio */
  margin: 0 auto; /* center the image */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;   /* arrow color */
    border-radius: 50%;        /* optional: make them circular */
    width: 40px;               /* optional: change size */
    height: 40px;              /* optional: change size */
    background-size: 100%, 100%;
}


#contact
{
     background: linear-gradient(to right, #e0f7fa, #ffffff);
}

.link-name
{
    font-size: 20px;
    text-decoration: none;
    color: black;

}

.link-name:hover{
    color: blue;
    text-decoration: underline;
}