/**
 * Service Solution Widget Styles
 *
 * @package Hello_Elementor_Child
 * @since 1.0.0
 */

.service-solution-section {
  background-color: #f9fafb;
  padding: 96px 16px;
}

.service-solution-container {
  max-width: 1152px;
  margin: 0 auto;
}

/* Header Styles */
.service-solution-header {
  text-align: center;
  margin-bottom: 64px;
}

.service-solution-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #040533;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.service-solution-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Grid Styles */
.service-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .service-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Step Card Styles */
.solution-step-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.solution-step-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.solution-step-card:nth-child(1) {
  animation-delay: 0.1s;
}

.solution-step-card:nth-child(2) {
  animation-delay: 0.2s;
}

.solution-step-card:nth-child(3) {
  animation-delay: 0.3s;
}

.solution-step-card:nth-child(4) {
  animation-delay: 0.4s;
}

.solution-step-card:nth-child(5) {
  animation-delay: 0.5s;
}

.solution-step-card:nth-child(6) {
  animation-delay: 0.6s;
}

.solution-step-content {
  display: flex;
  align-items: flex-start;
}

/* Icon Styles */
.solution-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #14167e 0%, #040533 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  color: #ffffff;
}

.solution-step-icon i,
.solution-step-icon svg {
  width: 24px;
  height: 24px;
}

/* Text Content Styles */
.solution-step-text {
  flex: 1;
}

.solution-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #040533;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.solution-step-description {
  color: #6b7280;
  margin: 0;
  line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 767px) {
  .service-solution-section {
    padding: 64px 16px;
  }

  .service-solution-title {
    font-size: 1.875rem;
  }

  .service-solution-subtitle {
    font-size: 1rem;
  }

  .service-solution-header {
    margin-bottom: 48px;
  }

  .solution-step-card {
    padding: 24px;
  }

  .solution-step-title {
    font-size: 1.125rem;
  }

  .solution-step-description {
    font-size: 0.9375rem;
  }
}
