.feature-icon {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 16px;
}

.feature-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}