/* Procurement Partner Section Frontend
   Fixed bullets, contained center circle, and reload animations for all images.
   Background stays transparent so your page/Elementor background remains unchanged.
*/

.pps-wrap,
.pps-wrap * {
    box-sizing: border-box;
}

.pps-wrap {
    width: 100vw;
    max-width: 100vw;
    min-height: 943px;
    height: 943px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: transparent;
    color: var(--pps-text, #ffffff);
    font-family: inherit;
}

.pps-container {
    width: 100%;
    max-width: 1770px;
    height: 943px;
    margin: 0 auto;
    padding: 0 68px 0 80px;
    display: grid;
    grid-template-columns: minmax(520px, 44%) minmax(860px, 56%);
    align-items: center;
    column-gap: 40px;
}

.pps-copy {
    max-width: 720px;
    padding-left: 55px;
    transform: translateY(8px);
}

.pps-eyebrow {
    margin: 0 0 18px !important;
    color: var(--pps-text, #ffffff) !important;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.pps-title {
    margin: 0 0 28px !important;
    color: var(--pps-text, #ffffff) !important;
    font-size: 52px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.035em;
    max-width: 690px;
}

/* Strong custom bullets so theme CSS cannot hide them */
.pps-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pps-list li {
    position: relative;
    color: var(--pps-text, #ffffff) !important;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 16px !important;
    padding: 0 0 0 42px !important;
    list-style: none !important;
}

.pps-list li::marker {
    content: '' !important;
    font-size: 0 !important;
}

.pps-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pps-text, #ffffff);
    transform: translateY(-50%);
}

.pps-collage {
    position: relative;
    width: 886px;
    height: 725px;
    margin-left: auto;
    margin-right: 0;
    flex: 0 0 auto;
    overflow: visible;
}

.pps-grid {
    position: absolute;
    inset: 0;
}

.pps-img {
    position: absolute;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: ppsImageReload 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}

.pps-img img,
.pps-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pps-img-top-left {
    left: 0;
    top: 0;
    width: 502px;
    height: 348px;
    border-radius: 36px;
    animation-delay: 0.06s;
}

.pps-img-top-right {
    right: 0;
    top: 0;
    width: 354px;
    height: 348px;
    border-radius: 36px;
    animation-delay: 0.16s;
}

.pps-img-bottom-left {
    left: 0;
    bottom: 0;
    width: 502px;
    height: 348px;
    border-radius: 26px;
    animation-delay: 0.26s;
}

.pps-img-bottom-right {
    right: 0;
    bottom: 0;
    width: 354px;
    height: 348px;
    border-radius: 26px;
    animation-delay: 0.36s;
}

.pps-circle {
    position: absolute;
    left: 378px;
    top: 188px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid var(--pps-accent, #0b18b8);
    background: rgba(255, 255, 255, 0.08);
    z-index: 5;
    opacity: 0;
    animation: ppsCircleReload 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
    will-change: transform, opacity;
}

@keyframes ppsImageReload {
    0% {
        opacity: 0;
        transform: translateY(36px) scale(0.92);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes ppsCircleReload {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.82);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pps-img,
    .pps-circle {
        opacity: 1;
        animation: none;
        filter: none;
    }
}

@media (max-width: 1600px) {
    .pps-wrap {
        min-height: 860px;
        height: 860px;
    }

    .pps-container {
        max-width: 1460px;
        height: 860px;
        padding: 0 30px;
        grid-template-columns: minmax(400px, 39%) minmax(800px, 61%);
        column-gap: 30px;
    }

    .pps-copy {
        padding-left: 20px;
    }

    .pps-eyebrow {
        font-size: 23px;
    }

    .pps-title {
        font-size: 44px;
        max-width: 560px;
    }

    .pps-list li {
        font-size: 28px;
        margin-bottom: 14px !important;
        padding-left: 35px !important;
    }

    .pps-list li::before {
        width: 9px;
        height: 9px;
    }

    .pps-collage {
        width: 820px;
        height: 671px;
    }

    .pps-img-top-left,
    .pps-img-bottom-left {
        width: 465px;
        height: 322px;
    }

    .pps-img-top-right,
    .pps-img-bottom-right {
        width: 328px;
        height: 322px;
    }

    .pps-circle {
        left: 350px;
        top: 174px;
        width: 333px;
        height: 333px;
        border-width: 11px;
    }
}

@media (max-width: 1280px) {
    .pps-wrap {
        min-height: 820px;
        height: 820px;
    }

    .pps-container {
        max-width: 1280px;
        height: 820px;
        padding: 0 24px;
        grid-template-columns: minmax(360px, 36%) minmax(760px, 64%);
        column-gap: 24px;
    }

    .pps-copy {
        padding-left: 10px;
    }

    .pps-eyebrow {
        font-size: 21px;
        margin-bottom: 14px !important;
    }

    .pps-title {
        font-size: 40px;
        margin-bottom: 22px !important;
    }

    .pps-list li {
        font-size: 25px;
        margin-bottom: 12px !important;
        padding-left: 32px !important;
    }

    .pps-collage {
        width: 780px;
        height: 638px;
    }

    .pps-img-top-left,
    .pps-img-bottom-left {
        width: 442px;
        height: 306px;
    }

    .pps-img-top-right,
    .pps-img-bottom-right {
        width: 312px;
        height: 306px;
    }

    .pps-circle {
        left: 333px;
        top: 165px;
        width: 316px;
        height: 316px;
        border-width: 10px;
    }
}

@media (max-width: 1100px) {
    .pps-wrap {
        width: 100%;
        max-width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        height: auto;
        min-height: auto;
        padding: 80px 0;
        overflow: hidden;
    }

    .pps-container {
        height: auto;
        grid-template-columns: 1fr;
        row-gap: 55px;
        padding: 0 28px;
    }

    .pps-copy {
        padding-left: 0;
        transform: none;
        max-width: 100%;
    }

    .pps-collage {
        width: min(886px, 100%);
        height: auto;
        aspect-ratio: 886 / 725;
        margin: 0 auto;
    }

    .pps-img-top-left,
    .pps-img-bottom-left {
        width: 56.65%;
        height: 48%;
    }

    .pps-img-top-right,
    .pps-img-bottom-right {
        width: 39.95%;
        height: 48%;
    }

    .pps-circle {
        left: 42.7%;
        top: 25.9%;
        width: 40.6%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-width: 10px;
    }
}

@media (max-width: 767px) {
    .pps-wrap {
        padding: 55px 0;
    }

    .pps-container {
        padding: 0 18px;
        row-gap: 34px;
    }

    .pps-eyebrow {
        font-size: 17px;
        margin-bottom: 12px !important;
    }

    .pps-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 18px !important;
    }

    .pps-list li {
        font-size: 21px;
        margin-bottom: 11px !important;
        padding-left: 28px !important;
    }

    .pps-list li::before {
        width: 8px;
        height: 8px;
    }

    .pps-img-top-left,
    .pps-img-top-right {
        border-radius: 18px;
    }

    .pps-img-bottom-left,
    .pps-img-bottom-right {
        border-radius: 16px;
    }

    .pps-circle {
        border-width: 7px;
    }
}
