@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    background: #081b29;
}
.max-width{
    max-width: 1300px;
    padding-inline-start: 0 80px;
    margin: auto;
}

.navbar{
    width: 100%;
    padding: 30px 0;
    transition: all 0.3s ease;
    font-family: 'Poppins',sans-serif;
    background: transparent;
    position: fixed
}
.navbar.sticky{
    padding: 15px 0;
background: transparent;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a span{
    color: #00abf0;
}
.navbar .logo a{
    color: #ededed;
    font-size: 35px;
    font-weight: 600;
}


.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    color: #ededed;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #00abf0;
}
.home{
    display: flex;
    background: url(sarseejmiau.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Poppins',sans-serif;
}
.home .max-width{
    margin: auto 0 auto 40px;
}

.home .home-content .text-1{
    font-size:27px ;
}
.home .home-content .text-2{
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0 40px;
}
.home .home-content .text-3{
    font-size: 20px;
    margin: 5px 0;
}
.home .home-content .text-3 {
    color: #00abf0;
    font-weight: 400;
}
.home-content .buttonbox{
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
    background: transparent;
}
.buttonbox .read-more-button{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0 ;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;

}
.buttonbox .read-more-button:hover{
    color: #00abf0;
}
.buttonbox a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0 ;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.buttonbox a:hover{
    color: #00abf0;
}
.buttonbox a:nth-child(2){
    background: transparent;
    color: #00abf0;
}
.buttonbox a:nth-child(2):hover{
    color: #081b29;
}

.buttonbox a:nth-child(2)::before{
    background: #00abf0;}

.buttonbox a::before{
    content: '' ;
    position: absolute;
 top: 0;
 left: 0;
 width: 0;
 height: 100%;
 background: #081b29;
 z-index: -1;
 transition: .5s;
}
.buttonbox a:hover::before{
    width: 100%;
}
.home-sci{
    position: absolute;
    left: 50px;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
    
}
.home-sci a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 20px;
    color: #00abf0;
    text-decoration: none;
    overflow: hidden;
    transition: .5s;

}
.home-sci a:hover{
     color: #081b29;}
.home-sci a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00abf0;
    z-index: -1;
    transition: .5s;
}
.home-sci a:hover::before{
width: 100%;
}
.dynamic{
    margin-left: 15px;
    height: 60px;
    line-height: 50px;
    overflow: hidden;
}
.dynamic li{
    color: #00abf0;
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    top: 0;
    animation: slide 15s steps(5) infinite;
}
@keyframes slide { 100%{
    top: -250px;
 }
}
.dynamic li h3{
    position: relative;
}
 .dynamic li h3::after{
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: #081b29;
    border-left: 2px solid #00abf0;
    animation: typing 3s steps(10) infinite;

 }
 @keyframes typing { 100%{
    left: 35%;
   
 }

 }
 .home-imghover{
position: absolute;
top: 100px;
right: 0;
width: 45%;
height: 100%;
background: transparent;
transition: 3s;
 }

 .home-imghover:hover{
    background: #081b29;
    opacity: .8;
 }
 .about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background: var(--second-bg-color);
    padding-bottom: 6rem;
 }
 .heading{
    font-family: 'Poppins',sans-serif;
    color: #ededed;
    font-size: 2rem;
    margin-top: 100px;
    margin-bottom: 3rem;
    text-align: center;
 }
 span{
    color: #00abf0;
 }
 .img{
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .img img{
    width: 90%;
    border-radius: 50%;
    border: .2rem solid #00abf0;
 }
 .about-content{
    font-family: 'Poppins',sans-serif;
    color: #ededed;
    text-align: center;
 }
 .img .circle-spin{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem solid #081b29;
    border-bottom: .2rem solid #081b29;
    border-left: .2rem solid #00abf0;
    border-right: .2rem solid #00abf0;
 }
 .buttonbox .buttonz{
    font-family: 'Poppins',sans-serif;
 }
 .education{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 5rem;
    padding-left: 200px;
    font-family: 'Poppins',sans-serif;
    color: #ededed;
 }

 .education .educationrow{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
 }

 .educationrow .educationcolumn{
    flex: 1 1 40rem;
 }

 .educationcolumn .title{
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
 }
 .educationcolumn .education-box{
    border-left: .2rem solid #00abf0;
    padding-left: 2rem;
 }
 .education-box .education-content{
    position: relative;
    padding-left: 2rem;
 }
 .education-box .education-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: -3rem;
    width: 2rem;
    height: 2rem;
    background: #00abf0;
    border-radius: 50%;
 }
 .education-content .content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0f3149;
    z-index: -1;
    transition: 1s;
 }
 .education-content .content:hover:before{
    width: 100%;
 }
 .education-content .content{
    position: relative;
    padding: 1.5rem;
    border: .2rem solid #00abf0;
    margin-right: 200px;
    margin-bottom: 2rem;
    overflow: hidden;
 }
 .education-content .content .year{
    font-size: 1rem;
    color: #00abf0;
    padding-bottom: .5rem;
 }
 .education-content .content .year i{
    padding-right: .5rem;
 }
 .education-content .content h3{
    font-size: 1rem;
 }

 .education-content .content p{
    font-size: 1.1rem;
    padding-top: .5rem;
 }
 .skills{

    min-height: auto;
    padding-bottom: 7rem;
    background: #081b29;
 }
 .skills .skill-row{
    color: #ededed;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap
}
.skill-row .skill-column{
    flex: 1 1 40rem;
}
.skill-column .title{
    font-size: 2.5rem;
    margin: 0 0 1.5 rem;
}
.skill-box .skill-content{
    /* margin-right: 700px;
    margin-left: 200px; */
    width: 100%;
    position: relative;
    border: .2rem solid #00abf0;
    border-radius: .6rem;
    padding: .5rem 1.5rem;
}
.skill-content .progress{
    padding: 1rem 0;
}
.skill-content .progress h3{
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}
.skill-content .progress h3 span{
    color: var(--text-color);
}
.skill-content .progress .bar{
    height: 2.5rem;
    border-radius: 6rem;
    border: .2rem solid #00abf0;
    padding: .5rem;
    margin: 1rem 0;
}
.skill-content .progress .bar span{
    display: block;
    height: 100%;
    border-radius: .3rem;
    background: #00abf0;
}
.skill-column:nth-child(1) .skill-content .progress:nth-child(1) .bar span{
    width: 100%;
}
.skill-column:nth-child(1) .skill-content .progress:nth-child(2) .bar span{
    width: 90%;
}
.skill-column:nth-child(1) .skill-content .progress:nth-child(3) .bar span{
    width: 75%;
}
.skill-column:nth-child(1) .skill-content .progress:nth-child(4) .bar span{
    width: 95%;
}
.contact {
    min-height: auto;
    padding-bottom: 7rem;
}

.contact form{
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}
.contact form .input-box{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact form .input-box .input-field{
    position: relative;
    width: 49%;
    margin: .8rem 0;
}
.contact form .input-box .input-field input,
.contact form .textarea-field textarea{
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #ededed;
    background: transparent;
    border-radius: .6rem;
    border: .2rem solid #00abf0;
}
.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder{
    color: var(--text-color);
}
/* .contact form .focus{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: red;
     border-radius: .6rem;
     z-index: -1;
}
.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus{
    
} */
.contact form .textarea-field{
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
}
.contact form .textarea-field textarea{
    resize: none;
}
.contact form .buttonbox{
    cursor: pointer;
}
.footer{
    font-size: 1.6rem;
    color: #ededed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: #0f3149;
}