.serviceBoxHead{
    /* padding: 35px 20px 10px; */
    border: 1px solid #f4f4f4;
    text-align: center;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBoxHead:hover{ border-color: #1E90FF ; }

.serviceBox{
    padding: 35px 20px 10px;
    border: 1px solid #f4f4f4;
    text-align: center;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover{ border-color: #1E90FF ; }
.serviceBox:before{
    content: "";
    border-top: 20px solid #f7f7f7;
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 7px;
    right: 7px;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover:before{ border-top-color: #1E90FF ; }
.serviceBox .service-icon{
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 30px;
    color: #064774;
    margin-bottom: 35px;
    z-index: 1;
    position: relative;
    transition:all 0.3s ease 0s;
}
.serviceBox:hover .service-icon{ color: #fff; }
.serviceBox .service-icon:before{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 3px;
    border: 1px solid #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(45deg);
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon:before{
    border-color: #1E90FF ;
    background: #1E90FF ;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: 700;
    color: #064774;
    text-transform: capitalize;
    margin: 0 0 15px 0;
}
.serviceBox:hover .title{
    color: #1E90FF;    
    
}
.serviceBox .description{
    font-size: 15px;
    color: #999;
    line-height: 27px;
    margin: 0;
    text-align: justify;
}
.serviceBox:hover .description{
    color: #3d3d3d;    
    font-weight: 500;    
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}

.read-more-btn {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color:  white;
}