html, body {
    overflow-x: hidden;
  }
.service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-6px);
}
