.specialization-section {
  background-color: black;
  color: white;
  padding: 6rem 1.5rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.section-divider {
  border-top: 2px solid #3b82f6;
  width: 4rem;
  margin: 1rem auto 2.5rem;
}

.section-desc {
  color: #a1a1aa;
  max-width: 768px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
}

.specialization-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .specialization-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.specialization-card {
  position: relative;
  border: 1px solid #3b82f6;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 400px;
  min-height: 280px;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialization-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.6);
}


.specialization-card h3 {
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.specialization-card p {
  color: #d4d4d8;
  font-size: 1rem;
}

.specialization-card img {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 100px;
  opacity: 0.6;
}
