/* 
---------------------------------------------
income circles
--------------------------------------------- */
.income-circle {
    padding: 20px;
}

.circle-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.circle-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 5px solid #ffd700;
}

.circle-image h4 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1a6692;
}

.income-circle:hover .circle-image img {
    transform: scale(1.05);
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .circle-image {
        width: 150px;
        height: 150px;
    }
}