*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#navbar{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 3px 3px 15px black;
}
#navbarSupportedContent a{
    margin-top: 10px;
    font-weight: bold;
}
#navbarSupportedContent a:hover{
    color: #3247fa;
}

#home{
    margin-top: 5px;
    margin-bottom: 5px;
}
#home h1,h2,p{
    margin-left: 30px;
}
#home img{
    margin-top: 80px;
    align-items: center;
}
#home h1{
    font-weight: bold;
    text-align: center;
}
#home p{
    text-align: center;
    padding: 20px;
}
#home h1 span{
    color: #3247fa;
}

#home h2{
    text-align: center;
    text-shadow: 2px 2px 15px #3247fa;
    margin-top: 200px;
}

#service h1{
    text-align: center;
    margin-top: 150px;
    margin-bottom: 150px;
    padding: 10px;
    font-weight: bold;
}
#service h1 span{
    color: #3247fa;
}

#service .card{
    border-color: #3247fa;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 30px;
}

#service .card-title{
    padding: 2px;
    margin-left: 5px;
}
#service .card-body img{
    padding: 5px;
}
#service .card-body h6{
    text-align: center;
    margin-bottom: 7px;
}
#service .card-link img{
    padding: 5px;
}
#service .card-link button{
    border-color: black;
    margin-left: 60px;
}
#service .card-link button:hover{
    box-shadow: 1px 1px 10px #3247fa;
}

/*skills section starts*/
#skills {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}
#skills h1{
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 10px;
}
#skills h1 span{
    color: #3247fa;
}
#skills .slide{
    flex: 0 0 5em;
}
#skills .slider{
    display: flex;
    overflow-x: auto;
}
#skills .slider::-webkit-scrollbar{
    display: none;
}
#skills .slide-track{
    display: flex;
    padding: 10px;
    animation: spin 10s infinite linear;
}

@keyframes spin {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-40%);
    }
}

/* aboutus section
starts*/

#about-us{
    display: block;
}
#about-us .banner-image{
    text-align: center;
}
#about-us h3{
    text-align: center;
    margin: 10px;
    padding: 15px;
}
#about-us h3 span{
    color: #3247fa;
    font-weight: bold;
}
#about-us ul,li{
    padding: 10px;
}
#about-us ul{
    padding: -15px;
    margin-left: 5px;
}

#contact-us{
    width: 100%;
    min-height: 80vh;
    border-radius: 10px;
}

#contact-us h3{
    text-align: center;
    font-weight: bold;
    padding: 50px;
}
#contact-us h3 span{
    color: #3247fa;
}

#contact-us .box{
    border: 2px #3247fa;
    box-shadow: 2px 2px 15px black;
    padding: 20px;
    border-radius: 5px;

}

#contact-us .box img{
    width: 5%;
    height: 5%;
    text-align: right;
    padding: -20px;
}
#contact-us .box2{
    text-align: center;
    box-shadow: 2px 2px 15px black;
    padding: 10px;
    border-radius: 5px;
}

#contact-us .text-gettouch{
    border: none;
}
#contact-us .text-gettouch h2{
    text-align: center;
    margin: 10px;
    padding: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 15px #3247fa;
}

#contact-us .img-icons{
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 202%;
    border: 10px black;
}
#contact-us .img-icons a:hover{
    text-shadow: 2px 2px 15px black;
    color: #3247fa;
}

.footer{
    text-align: center;
}

