/* Hover Effects for Key Benefits Cards */
.hover-lift:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Gradient backgrounds for consistency */
.bg-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* Icon box animations */
.icon-box {
  transition: transform 0.3s ease;
}

.hover-lift:hover .icon-box {
  transform: scale(1.1);
}

/* Card content improvements */
.card-title {
  color: #2c3e50;
  font-weight: 700;
}

.card-text {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Professional spacing */
.lead {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Professional Comparison Table Styles */
.table tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05) !important;
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.table thead th {
  position: relative;
  overflow: hidden;
}

.table thead th::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.table:hover thead th::before {
  left: 100%;
}

/* Icon animations */
.table tbody td i {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.table tbody tr:hover td i.fa-check-circle {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.3));
}

.table tbody tr:hover td i.fa-times-circle {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(220, 53, 69, 0.3));
}

/* Card shadow enhancement */
.card {
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}
