.service-detail-card {
  background-color: #f3f9fd;
  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #dce6f4;
  margin-bottom: 20px;
  cursor: pointer;
}
.service-detail-card:hover {
  background-color: var(--fixpro-white);
  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1); 
  border-radius: 10px;  
  border: 2px solid #FF6B00; 
}

.service-card:hover {
    border: 2px solid #FF6B00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2);
}

.service-card.selected {
    border-color: #FF6B00;
    background: #FFF8ED;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2);
}

.service-icon.blue {
  background: #EBF4FF;
}
.issue-card .service-icon, .service-detail-card .service-icon {
  font-size: 2rem;  display: block;
  padding-top: 5px;
  border: 1px solid #ccc;
  margin-bottom: 0.75rem;
}
.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;       
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
    margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s;
}
.issue-card h3, .service-detail-card h3 {
  font-size: 1rem; font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.25rem; letter-spacing: 1px;
  line-height: 1.3;
}
.issue-card p, .service-detail-card p {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}



