.circle {
    width: 120px;
    height: 120px;
    background-color: var(--theme-dark-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    gap: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .circle {
        width: 100px;
        height: 100px;
    }
}

.circle i {
    font-size: 28px; /* icon size */
}

.circle span {
    font-size: 14px;
}

@keyframes jiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Trigger animation on hover */
.circle:hover img {
    animation: jiggle 0.4s ease-in-out;
}

a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle img {
    width: 38px;
}

.border-container {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}
