/* =============================================
   Custom Styles for Fizyopathy Plus
   ============================================= */

/* Info Box Styles */
.info-box {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.info-box-title {
  color: #007bff;
  margin-bottom: 1rem;
}

.info-box-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.info-box-list li {
  margin-bottom: 0.5rem;
}

/* Process Steps Container */
.process-container {
  background: #e8f5e8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.process-title {
  color: #2e7d32;
  margin-bottom: 1.5rem;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  line-height: 34px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
}

.process-step-icon i {
  color: #2e7d32;
}

/* Technology Cards */
.tech-card {
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-card h5 {
  margin-bottom: 0.75rem;
}

.tech-card .text-primary {
  color: #007bff !important;
  margin-right: 0.5rem;
}

/* Testimonial Box */
.testimonial-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-content {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  opacity: 0.8;
  margin-bottom: 0;
}

/* Success Icons */
.success-icon {
  color: #28a745;
  margin-right: 0.5rem;
}

/* Utility Classes */
.text-primary-custom {
  color: #007bff !important;
}

.text-success-custom {
  color: #28a745 !important;
}

.text-green-custom {
  color: #2e7d32 !important;
}

.border-rounded {
  border-radius: 8px;
}

.border-rounded-lg {
  border-radius: 12px;
}

/* Animation Enhancements */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-container {
    padding: 1rem;
  }

  .info-box {
    padding: 1rem;
  }

  .testimonial-box {
    padding: 1rem;
  }

  .process-step-icon {
    width: 50px;
    height: 50px;
    line-height: 28px;
  }
}

/* Service Page Specific Enhancements */
.service-content-enhanced {
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-section-title {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #28a745);
  border-radius: 2px;
}
