h6{
    color: #007bff;
}

body{
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

html{
    scroll-behavior:smooth;
}


h1,h2,h3{
    font-weight: 900;
}

h4,h5,h6{
    font-weight: 700;
}

/* Heading */


.section-heading{
    text-align: center;
}

.section-heading::first-letter{
    color: #007bff;

}

.call-to-action-heading::first-letter{
    color: #007bff;

}

h1{
    color: #007bff;
}


/* Buttons and texts */

.bg-primary{
    background-color: black !important;
}

.text-primary{
    color: black !important; 
}

.btn-primary{
    background-color: #007bff !important;
    border-color: #007bff !important;
    color: white !important;
}

.btn-primary:hover{
    background-color: transparent !important;
    color: #007bff !important;
}


/*Navigation*/

.navbar{
    background-color: white;
  
}
.navbar-brand{
    font-size: 2rem;
}

.nav-link,
.navbar-brand{
    color: black;
}


/*About us*/

.about .section-heading{
    text-align: right ;
}


/*Pricing*/

.pricing{
    background-color: #007bff;
}

.pricing .section-heading,
.pricing .section-heading::first-letter{
    color: white;
}

.pricing .card{
    border-radius: 0;
    border-top: none;
}

.promote{
    transform: scale(1.07);
    z-index: 1;
}

.list-unstyled{
    border-bottom: 1px solid #007bff;
}

.list-unstyled>li{
    padding: 6px 6px ;
}

/*Services*/

.single-service{
    position: relative;
    text-align: center;
    margin-bottom:50px ;
    transition: 0.3s;
    padding: 30px 20px;

    background-color: white;
}

.single-service:before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    transition: 0.3s;
    width: 0;
    height: 0;
    background-color: #007bff;
}

.single-service:after{
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    transition: 0.3s;
    width: 0;
    height: 0;
    background-color: #007bff;
}


.single-service:hover:after,
.single-service:hover:before{
    width: 50%;
    height: 2px;
}

.single-service i{
    font-size: 1.2rem;
    width: 60px;
    height: 60px;
    border: 1px solid #007bff;
    line-height: 60px;
    margin-bottom: 30px;
    border-radius: 50%;
}

.single-service:hover i{
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.single-service h4{
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.single-service p{
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Team */

.team .card-img-top{
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

.team .card{
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team .card-body{
    position: absolute;
    bottom: -100%;
    width: 100%;
    background-color: #007bff;
    transition: 0.5s;
    color: white;
}

.team .card:hover>.card-body{
    bottom: 0%;
}

.team .card-title{
    font-size: 2rem;
}


/* Call To Action */

.call-to-action{
    background-color: black;
    color: white;
}

textarea,
.uneditable-input{
    border-color: white !important;
    border-radius: 0 !important;
    padding: 20px !important;
}



/*Footer*/

footer{
    background: #007bff;
    color: white;
    text-align: center;
    padding: 16px;
}

.social-icons{
    margin: 16px;
    font-size: 32px;
  
   
 
}

.social-icons a{
    color:white;
}

footer i {
    transition: all .4s;
}

footer .fa-facebook:hover{
    color: #3c5a99;
}

footer .fa-twitter:hover{
    color: #00acee;
}

footer .fa-instagram:hover{
    color: #e1306c;
}

footer .fa-youtube:hover{
    color: #FF0000;
}

footer .fa-google:hover{
    color: #3cba54;
}

footer .fa-github:hover{
    color: black;
}


@media(max-width: 900px){
    .navbar .nav-item{
        display: block;
        width: 100%;
        padding: 10px 0px;
        text-align: center;
    }
    body{
        text-align: center !important;
    }
    .about .section-heading{
        text-align: center;
        margin-top: 20px;
    }
}

