/* CSS */

/* project images */

.project-item {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.project-image {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.project-image:hover {
    transform: scale(1.1);
}

.project-item:hover {
    opacity: 1;
}

/* emapanelment and client images */

.empanelment{
    width: auto;
    max-width: 120px;
    max-height: 120px;
    transition: transform 0.3s ease;
    border-radius: 5px;   
    margin-bottom: 8px;
}

.empanelment:hover {
    transform: scale(1.1);
}

.client {
    width: auto;
    max-width: 120px;
    max-height: 120px;
    transition: transform 0.3s ease;
    border-radius: 5px;
    margin-bottom: 8px;
}

.client:hover {
    transform: scale(1.1);
}