figure {
    display: block;
    position: relative;
    max-height: 600px;
    overflow: hidden;
}
figcaption {
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    color: #FFFFFF;
    background: #000000;
    background: rgba(0,0,0,.5);
}
.section-box {
    padding: 80px 0;
    background: #f8f9fa;
}
.service-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.service-card p {
    color: #6c757d;
    font-size: 15px;
}
.btn-service {
    margin-top: 15px;
}
