.service-challange-icon img{
    background: #1C4D8610;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    padding: 10px;
}

.service-challange-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.service-challange-icon img {
    transition: all 0.3s ease;
}

.service-challenge-card:hover .service-challange-icon {
    background-color: #a8cf45;
}

.service-challenge-card:hover .service-challange-icon img {
    filter: brightness(0) invert(1);
}

.service-challenge-card {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.service-challenge-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #4c885c 0%, #1c4d86 100%);
    transform: translate(-100%, 100%);
    transition: transform 0.6s ease;
    z-index: 0;
    border-radius: 10px;
}

.service-challenge-card:hover::before {
    transform: translate(0, 0);
}

.service-challenge-card > * {
    position: relative;
    z-index: 1;
}

.service-challenge-card p {
    transition: color 0.4s ease;
}

.service-challenge-card:hover p {
    color: #fff !important;
}

.star-divider-grid {
    position: relative;
}

.star-divider-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;

    background:
        linear-gradient(to right, transparent, #A8CF45 40%, #A8CF45 60%, transparent),
        linear-gradient(to bottom, transparent, #A8CF45 40%, #A8CF45 60%, transparent);

    background-size: 100% 1px, 1px 100%;
    background-repeat: no-repeat;
    background-position: center;
}