/* Project-specific overrides loaded after style.css */

/* Services area: normalize icon image sizes so cards align */
.services-area .single-services .features-icon{
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-area .single-services .features-icon img{
  width: 64px;
  height: 64px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 575px){
  .services-area .single-services .features-icon{
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .services-area .single-services .features-icon img{
    width: 52px;
    height: 52px;
  }
}


.professional-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: auto;
}
.professional-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
