.service-card{
    padding:30px;
    border-radius:10px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:all .4s ease;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.portfolio-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
    transition:all .4s ease;
}

.portfolio-box:hover{
    transform:scale(1.05);
}

.counter{
    font-size:50px;
    font-weight:700;
    color:#0d6efd;
}

/* About Page */
.mission-card,
.feature-card,
.team-card,
.process-box{
    opacity:0;
    transform:translateY(60px);
}

.mission-card.show,
.feature-card.show,
.team-card.show,
.process-box.show{
    opacity:1;
    transform:translateY(0);
    transition:.8s;
}