.brandcore-circular-info-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 750px;
    overflow: hidden;
}

.brandcore-concentric-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;    
}
body .brandcore-circular-info-wrapper:before {
    content: '';
    position: absolute;
    height: 20%;
    width: 100%;
    top: 0;
    z-index: 99;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.brandcore-concentric-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    /* 1px Gradient Border from Figma */
    border: 1px solid transparent;
    background: linear-gradient(180deg, #2BB667 0%, #2BB673 50%, #0072BC 100%) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.circle-1 { width: 350px; height: 350px; }
.circle-2 { width: 650px; height: 650px; }
.circle-3 { width: 950px; height: 950px; }

.brandcore-circular-center {
    position: relative;
    width: 230px;
    height: 230px;
    background-color: #fff;
    border-radius: 50%;    
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    text-align: center;
    z-index: 10;
}

.brandcore-circular-center-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    /* Figma Gradient Text */
    background: linear-gradient(45.2deg, #2BB667 4.62%, #2BB673 23.07%, #0072BC 84.64%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.brandcore-circular-items-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: visible;
}

.brandcore-circular-item {
    position: absolute;
    width: 0;
    height: 0;
    
    /* Position Variables */
    --total-angle: calc(var(--starting-angle, -90deg) + var(--item-angle) + var(--item-angle-offset, 0deg));
    --current-orbit-offset: 0px;
    --final-radius: calc(var(--orbit-radius, 175px) + var(--current-orbit-offset) + var(--item-radius-offset, 0px));

    /* Circular layout: rotate, translate, and counter-rotate */
    transform: rotate(var(--total-angle)) translate(var(--final-radius)) rotate(calc(-1 * var(--total-angle)));
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.brandcore-circular-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    transition: transform 0.5s ease-out; /* Explicit smooth return transition */
}

.brandcore-circular-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #1a7c64;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 2;
}

.brandcore-circular-item-icon i,
.brandcore-circular-item-icon svg {
    font-size: 30px;
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}

.brandcore-circular-item-content {
    position: absolute;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Right Side: Text to the Right */
.brandcore-circular-item.is-right .brandcore-circular-item-content {
    left: 35px; /* Offset from center point */
    text-align: left;
}

/* Left Side: Text to the Left */
.brandcore-circular-item.is-left .brandcore-circular-item-content {
    right: 35px; /* Offset from center point */
    text-align: right;
}

/* Bottom Center: Text below the icon */
.brandcore-circular-item.is-bottom .brandcore-circular-item-content {
    left: 0;
    right: 0;
    top: 30px;
    text-align: center;
}

/* Top Center: Text above the icon */
.brandcore-circular-item.is-top .brandcore-circular-item-content {
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
}

.brandcore-circular-item-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
}

/* Hover effects */
.brandcore-circular-item:hover {
    z-index: 20;
}

.brandcore-circular-item:hover .brandcore-circular-item-inner,
.brandcore-circular-item:focus .brandcore-circular-item-inner {
    animation: brandcoreSoftBounce 0.6s ease-in-out forwards;
}

@keyframes brandcoreSoftBounce {
    0% { transform: translateY(0); }
    45% { transform: translateY(-9px); }
    75% { transform: translateY(-3px); }
    100% { transform: translateY(-6px); }
}

.brandcore-circular-item:hover .brandcore-circular-item-icon {    
    box-shadow: 0 0px 10px rgba(26, 124, 100, 0.8);
}

.brandcore-circular-info-wrapper:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

@media (max-width: 767px) {
    .circle-1 { width: 350px; height: 350px; }
    .circle-2 { width: 550px; height: 550px; }
    .circle-3 { width: 750px; height: 750px; }
    .brandcore-circular-info-wrapper {
        min-height: 250px;
        padding: 0px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .brandcore-concentric-circles {
        display: flex; /* Keep circles on mobile */
        transform: translate(-50%, -50%) scale(0.42); /* Synchronized scale */
        opacity: 1; /* Ensure container is fully opaque */
    }

    .brandcore-concentric-circle {
        opacity: 0.5; /* Increase visibility of lines on mobile */
    }

    .brandcore-circular-center {
        width: 100px; /* Slightly larger center circle for mobile */
        height: 100px;
        padding: 10px;
    }

    .brandcore-circular-center-title {
        font-size: 9px;
    }

    .brandcore-concentric-circles {        
        width: 210%;
        height: 130%;      
    }
    .brandcore-circular-items-container {
        /* Synchronized scale with background circles */
        transform: translate(-50%, -50%) scale(0.42);
    }

    .brandcore-circular-item-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .brandcore-circular-item-content {
        white-space: normal; /* Allow text to wrap on mobile */
        width: 150px; /* Give text a width to wrap */
    }

    .brandcore-circular-item-title {
        font-size: 15px;
        line-height: 1.2;
    }

    /* Keep the text offset logic for mobile with smaller offsets */
    .brandcore-circular-item.is-right .brandcore-circular-item-content {
        left: 28px;
    }

    .brandcore-circular-item.is-left .brandcore-circular-item-content {
        right: 28px;
    }
    
    .brandcore-circular-item.is-bottom .brandcore-circular-item-content {
        top: 28px;
    }
    
    .brandcore-circular-item.is-top .brandcore-circular-item-content {
        bottom: 28px;
    }
}
