.service-card {
  background: linear-gradient(180deg, #141b2d, #0f1627);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0f172a;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  color: white;
}

.contact-form button {
  background: var(--accent-cyan);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  align-self: center;
  justify-self: center;
}

.service-card {
  background: linear-gradient(180deg, #141b2d, #0f1627);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);

  /* NEW */
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}

.service-card:hover .icon {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}

.service-card h3 {
  position: relative;
  padding-left: 14px;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  border-radius: 2px;
  background: var(--accent-blue);
}

.service-card h3::before {
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.service-card:hover h3::before {
  height: 90%;
  opacity: 1;
}

.service-card .icon.blue ~ h3::before {
  background: var(--accent-blue);
}

.service-card .icon.cyan ~ h3::before {
  background: var(--accent-cyan);
}

.service-card .icon.green ~ h3::before {
  background: var(--accent-green);
}



.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 1rem;

  background: rgba(255,255,255,0.05);
}

.icon svg {
  width: 22px;
  height: 22px;
}

/* Accent colors */
.icon.blue { color: var(--accent-blue); }
.icon.cyan { color: var(--accent-cyan); }
.icon.green { color: var(--accent-green); }
