.collective-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #b8963e;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .collective-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .collective-circle:hover {
        transform: translateY(-10px) scale(1.05);
        border-color: #d4b06a;
    }
