/* for smooth scrolling */
html{
    scroll-behavior: smooth;
}
*{
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* navbar styling */
.navbar{
    /* background:crimson; */
    position:fixed;
    width: 100%;
    font-family: 'Poppins', sans-serif; 
    padding: 34px;
    /* margin: 23px; */
}
.navbar .logo a{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-decoration: none;
}
.navbar .logo a span{
    color: crimson;
}
.navbar li a {
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    margin-left: 25px;
    padding: 25px;
    transition:color 0.3s ease;
}
.navbar li a:hover{
    color: crimson;
}

/* home section styling */
.home{
    display: flex;
    background: url(./images/background.jpg) no-repeat center center/cover;
    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: 42px;
}
.home .home-content .text-2{
    font-size: 70px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-content .text-3{
    font-size: 45px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color: crimson;
    font-weight: 600;
}

/* About section start  */
section{
    padding: 100px 0;
}
.about{
    font-family: 'Poppins', sans-serif;
}
.about .title{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
}
.mt-2{
    text-align: center;
}
.about .img{
    height: 400px;
    width: 400px;
}
.about .container a{
    font-size: 17px;
    padding: 12px 36px;
    font-weight: 500;
    border-radius: 5px;
    margin: 20px;
    border: 2px solid crimson;
    background: crimson;
    color: #fff;
    transition: all 0.3s ease;
}
.about .container a:hover{
    color: crimson;
    background: none;

}
.about .container{
    font-family: 'Poppins', sans-serif;

}
/* services section styling  */
.services{
    background: black;
}
.services h2{
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
.services .card{
    /* width: calc(33% - 20px); */
    /* display: inline-flex; */
     /* display: inline; */
     background: #222;
     /* border: 2px solid red; */
     margin: 23px;
     color: #fff;
     text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 22px;
}
.services h1{
    color: crimson;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    display: block;
    margin: 5px;
}
.services .card:hover{
    background: crimson;
    color: #fff;
    transition: all 0.6s ease-in-out;

}

/* skills styling */
.skills .title{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    color: black;

}
.skills {
    text-align: left;
    margin-left: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}
.skills .text{
   font-size: 22px;
   font-weight: bold;
   font-family: 'Poppins', sans-serif;

}
.skills .info{
    text-align: left;
    margin: 24px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    /* margin-top: 4px; */
}
.skills .info span{
    font-weight: bold;

}
.line-html{
    height: 5px;
    width: 100%;
    background: lightgray;
    position: relative;
}
.line-html::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 80%;
    top: 0;
    left: 0;
    background: crimson;
}

/* contact section styling */

.contact .title{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    color: black;
}
footer{
    background: black;
    padding: 32px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    /* font-size: 13px; */

}
footer i {
    font-size: 30px;
    margin-right: 5px;
}






