.containerBox {
    position: relative;
    width: 100vmin;
    height: 100vmin;
    max-width: 600px;
    max-height: 600px;
}
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20%;
    height: 20%;
    background-color: #eae6cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    z-index: 2;
    animation: scaleIn 0.5s ease forwards;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.service-box {
    position: absolute;
    width: 20%;
    height: 20%;
    background-color: white;
    border: 2px solid #eae6cc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%) scale(0);
    animation: scaleIn 0.5s ease forwards;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1vmin;
}
.service-box:hover {
    background-color: #faf8ea;
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.service-box svg {
    width: 4vmin;
    height: 4vmin;
    margin-bottom: 1vmin;
}
.service-box h3 {
    font-size: 1.8vmin;
    margin: 0.5vmin 0;
    font-weight: 600;
}
.service-box p {
    font-size: 1.4vmin;
    margin: 0;
    color: #666;
}
.line {
    position: absolute;
    height: 2px;
    background-color: #eae6cc;
    transform-origin: 0 50%;
    left: 50%;
    top: 50%;
    transform: rotate(var(--angle)) scaleX(0);
    animation: lineAppear 0.5s forwards;
}

@keyframes scaleIn {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

@keyframes lineAppear {
    from { transform: rotate(var(--angle)) scaleX(0); }
    to { transform: rotate(var(--angle)) scaleX(1); }
}

/* @media (max-width: 600px) {
    .containerBox {
        width: 90vmin;
        height: 90vmin;
    }
    .service-box {
        font-size: 2.5vmin;
    }
} */