.service-card:hover .extra-info {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
  margin-top: 12px;
}


.service-card h3 {
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ffe27a;
}


.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #ffdd55;
  box-shadow: 0px 0px 25px #ffc10788;
}


.service-card .service-icon {
  font-size: 48px;
  color: #ffc107;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.25) rotate(-5deg);
  filter: drop-shadow(0 0 10px #ffc107aa);
}


.service-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 0, 0.3);
  transition: 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.6);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.5);
}
.service-card {
  background-color: #111;
  border: 1px solid #ffc107;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #ffc10755;
}

.service-card:hover .extra-info {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}


.service-card {
  background: #111;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}


.extra-info {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #ddd;
}


.extra-info {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    max-height 0.45s ease,
    transform 0.4s ease;
  color: #e0e0e0;
  font-size: 0.9rem;
}
