/*
Custom Css
*/
.who-card {
background: #fff;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.who-card:hover {
transform: translateY(-8px) scale(1.05);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.who-card img {
transition: transform 0.3s ease;
}
.who-card:hover img {
transform: rotate(-5deg) scale(1.1);
}

.solution-card, .who-card, .workshop-card, .testimonial-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .solution-card:hover, .who-card:hover, .workshop-card:hover, .testimonial-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .solution-card img, .who-card img, .workshop-card img, .testimonial-card img {
    transition: transform 0.3s ease;
  }
  .solution-card:hover img, .who-card:hover img, .workshop-card:hover img, .testimonial-card:hover img {
    transform: rotate(-5deg) scale(1.1);
  }

  /* Who section background */
  .who-section {
    background: #ffffff !important;
  }


  

