.circle-card {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    width: 225px;
    height: 225px;
    margin: 15px auto;
    background: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .circle-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
} */

.circle-card .featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
    border: none !important;
}

.circle-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.circle-card .featured-title h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin: 5px 0;
    line-height: 1.2;
    text-align: center;
}

.circle-card .featured-desc p {
    font-size: 15px;
    color: #555;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
}

/* @media (max-width: 768px) {
    .circle-card {
        width: 150px;
        height: 150px;
    }

    .circle-card img {
        width: 50px;
        height: 50px;
    }

    .circle-card .featured-title h3 {
        font-size: 10px;
    }

    .circle-card .featured-desc p {
        font-size: 8px;
    }
} */
.circle-card .featured-desc p {
    max-height: unset;
}
/* .col-xl-3.col-lg-12.circle-card{
    padding-left: 18px;
padding-right: 16px;
} */