.whyus-process-container {
    padding: var(--container-padding);
    /* background-color: rgb(from var(--dark-blue-bg) r g b / 0.9); */
    color: var(--light-white);
    position: relative;
}

.whyus-process-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../images/img/trust-bg.webp);
    background-size: cover;
    background-position: center;

    z-index: -2;
    /* Ensure it stays behind the content */
}

.process-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.point-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.whyus-process-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 10, 20, 0.92) 0%, rgba(4, 10, 20, 0.82) 30%, rgba(4, 10, 20, 0.60) 55%, rgba(4, 10, 20, 0.50) 100%), linear-gradient(180deg, rgba(11, 31, 58, 0.40), rgba(0, 0, 0, 0.50));
    z-index: -1;
}

.process-heading h2 {
    color: var(--dark-white);
}

.process-heading h1 {
    color: var(--light-white);
}

.process-heading div {
    /* filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(120%) hue-rotate(180deg) brightness(96%) contrast(92%); */
    /* filter: brightness(0) saturate(100%) invert(39%) sepia(98%) saturate(2214%) hue-rotate(213deg) brightness(98%) contrast(91%); */
    /* display:none; */
}

.whyus-process-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: var(--space-lg);
    /* align-items: start; */
}

.point-icon {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: var(--medium-white);
    padding: 6px;
    /* reduced padding so SVGs render larger */
    border-radius: 50%;
    outline: 1px solid var(--light-white);
    outline-offset: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

}

.point-icon img {
    width: 78%;
    /* increase image scale */
    height: 78%;
    object-fit: contain;
}

.process-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.process-point h1 {
    color: var(--medium-white);
    font-size: var(--big-para);
    text-transform: capitalize;
    font-weight: 600;
}

.process-point p {
    color: var(--dark-white);
    font-size: var(--mini-text);
}

.whyus-process-content {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

/* responsive */
/* 768px */
@media (max-width: 1200px) {
    .whyus-process-points {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

/* 480px */
@media (max-width: 568px) {
    .whyus-process-points {
        grid-template-columns: 1fr;

    }

    .process-point {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: var(--space-lg);
    }

    .whyus-process-points {
        gap: var(--space-xl);
    }
}

/* smaller icons on tablet and mobile */
@media (max-width: 1024px) {
    .point-icon {
        width: 64px;
        height: 64px;
        padding: 5px;
    }

    .point-icon img {
        width: 72%;
        height: 72%;
    }
}

@media (max-width: 640px) {
    .point-icon {
        width: 56px;
        height: 56px;
        padding: 4px;
    }


}