/* Custom styles for Professional Certifications page */

/* Certification Cards */
.cert-card {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.cert-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.15) !important;
  transform: translateY(-4px);
}

.cert-card .card-body {
  display: flex;
  flex-direction: column;
}

.cert-card h4 {
  line-height: 1.4;
  min-height: 2.8em;
}

/* Industry Sections */
.industry-section {
  margin-bottom: 4rem;
}

.industry-section h3 {
  color: #1e293b;
  letter-spacing: -0.02em;
}

.industry-section hr {
  border-top: 2px solid #e2e8f0;
  opacity: 1;
}

/* Select dropdown styling */
#industry-select {
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

#industry-select:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* Quick filter buttons */
.quick-filter {
  transition: all 0.2s ease;
}

.quick-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
  background-color: #3B82F6;
  color: white;
  border-color: #3B82F6;
}

.btn-xs {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-13 {
  font-size: 0.8125rem;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Card hover effect */
.card {
  transition: all 0.3s ease;
}

/* Industry section styling */
.industry-section {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search input focus */
#cert-search:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 78, 216, 0.25);
  border-color: #3B82F6;
}

/* Badge styling */
.badge {
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .industry-filter {
    font-size: 0.8rem;
  }
  
  .industry-section {
    margin-bottom: 2rem !important;
  }
}
