:where([class^="ri-"])::before { 
    content: "\f3c2"; 
  }
  
  .testimonial-slider {
    transition: transform 0.3s ease-in-out;
  }
  
  .hero-bg {
    background: linear-gradient(135deg, #06402B 0%, #4A90E2 100%);
  }
  
  .service-card {
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .fade-in {
    animation: fadeIn 0.6s ease-in;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .page-header {
    background: linear-gradient(135deg, #06402B 0%, #4A90E2 100%);
    padding: 100px 0 80px;
  }
  
  .success-metric {
    position: relative;
    overflow: hidden;
  }
  
  .success-metric::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;
  }
  
  .success-metric:hover::before {
    left: 100%;
  }
  
  .team-member {
    transition: all 0.3s ease;
  }
  
  .team-member:hover {
    transform: scale(1.05);
  }
  
  .process-step {
    position: relative;
  }
  
  .process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #06402B;
    transform: translateY(-50%);
  }
  
  .process-step:last-child::after {
    display: none;
  }
  
  @media (max-width: 768px) {
    .process-step::after {
      display: none;
    }
  }