.solutions-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('event.jpg') no-repeat center center/cover;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
  }
  
  .solutions-hero h1 {
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .solutions-hero p {
    font-size: 1.2rem;
    color: #eee;
  }
  
  .solutions-overview {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .solutions-overview h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .solutions-overview p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .stat-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
  }
  
  .stat-box i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .stat-box h3 {
    font-size: 1.8rem;
    color: #222;
  }
  
  .stat-box p {
    color: #555;
    font-weight: 500;
  }
  
  .case-studies {
    padding: 60px 20px;
    background: #fff;
  }
  
  .case-studies h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
  }
  
  .case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .case-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .case-item:hover {
    transform: translateY(-5px);
  }
  
  .case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .case-item h3 {
    margin: 15px;
    color: #007bff;
  }
  
  .case-item p {
    margin: 0 15px 20px;
    color: #555;
  }
  