.process-section {
    position: relative;
    width: 100%;
    padding: 8rem 0; 
    /*height: 200vh;*/
    color: var(--bi-white);
    overflow: hidden;
}

.process-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.process-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(41,41,41,0.6);
    z-index: 2;
}
.process-section .container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.process-heading {
    text-align: center;
    margin-bottom: 5.625rem;
    color: var(--bi-white, #FFF);
}
.process-quote-icon {
    position: absolute;
    top: 0; right: 0;
    z-index: 999;
}
.process-quote-icon svg{
    fill: #fff;
}
.center-logo {
    position: absolute;
    top: 60%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bi-gray);
}
.process-steps-circle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100%; height: 100%;
    position: relative; z-index: 2;
}

.process-step-item {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; justify-content: center;
    opacity: 0.15; 
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.process-step-item.is-active {
    opacity: 1; 
    transform: scale(1);
}

.process-bg-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.process-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-width: 769px) {
    .process-step-item[data-step="1"] { grid-column: 2 / 3; grid-row: 1 / 2; padding-right: 2rem; }
    .process-step-item[data-step="2"] { grid-column: 3 / 4; grid-row: 1 / 2; padding-left: 2rem; }
    .process-step-item[data-step="3"] { grid-column: 4 / 5; grid-row: 2 / 3; }
    .process-step-item[data-step="4"] { grid-column: 3 / 4; grid-row: 3 / 4; padding-left: 2rem; }
    .process-step-item[data-step="5"] { grid-column: 2 / 3; grid-row: 3 / 4; padding-right: 2rem; }
    .process-step-item[data-step="6"] { grid-column: 1 / 2; grid-row: 2 / 3; }
}

.step-number-wrapper { position: relative; margin-bottom: 0.75rem; }
.step-dot { display: block; width: 0.9375rem; height: 0.9375rem; background-color: var(--bi-white); border-radius: 50%; margin: 0.4rem auto 0; }
.step-title { margin-bottom: 0.5rem; }
.step-desc {color: rgba(255, 255, 255, 0.6); font-family: "Manrope";}

@media (max-width: 768px) {

    .process-quote-icon svg{
        width: 2.8125rem;
        height: 2.75rem;
    }

    .process-quote-icon {
        top: -0.5rem; right: 1rem;
    }

    .step-number{
        font-size: 3rem;
    }

    .step-dot { 
        width: 0.625rem; 
        height: 0.625rem;
    }

    .step-title{
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .process-section {
        height: 100vh;
        padding: 3rem 0;
        display: flex;
        align-items: center;
    }
    
    .process-heading {
        margin-bottom: 2.5rem;
    }

    .process-quote-icon svg {
        width: 2.8125rem;
        height: 2.75rem;
    }
    .process-quote-icon {
        top: -0.5rem; right: 1rem;
    }

    .center-logo {
        display: none;
    }

    .process-mobile-scroll-track {
        width: 100%;
        overflow: visible;
    }

    .process-steps-circle-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 3rem;
        width: max-content;
        padding-right: 4rem;
    }

    .process-step-item {
        width: 18rem;
        flex-shrink: 0;
        opacity: 1;
        transform: none;
    }
}
@media (max-width: 768px) {
    .process-section {
        height: 100vh;
        padding: 3rem 0;
        display: flex;
        align-items: center;
    }
    
    .process-heading {
        margin-bottom: 2.5rem;
    }

    .process-quote-icon svg { width: 2.8125rem; height: 2.75rem; }
    .process-quote-icon { top: -0.5rem; right: 1rem; }
    .center-logo { display: none; }

    .process-mobile-scroll-track {
        width: 100%;
        overflow: visible;
        position: relative;
    }

    .process-steps-circle-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 3rem;
        width: max-content;
        position: relative;
        z-index: 2;
        padding-right: 4rem;
        align-items: flex-start; 
    }

    .process-mobile-line-svg {
        display: block;
        position: absolute;
        top: 29.5%; 
        left: 9rem; 
        width: calc(100% - 18rem - 4rem); 
        
        height: 2px; 
        z-index: 1;
        pointer-events: none;
    }

    .process-mobile-line-svg svg {
        width: 100%;
        height: 100%;
        display: block;
        overflow: visible;
    }

    .process-step-item {
        width: 18rem;
        flex-shrink: 0;
        opacity: 1 !important;
        transform: none !important;
        position: relative;
        z-index: 3;
        justify-content: flex-start !important; 
    }

    .step-number-wrapper { 
        position: relative;
        z-index: 4; 
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem; 
    }
    
    .step-dot {
        position: relative;
        z-index: 5;
        width: 0.625rem; 
        height: 0.625rem;
        background-color: var(--bi-white, #FFF);
        border-radius: 50%;
        margin: 0.5rem auto 0 auto;
    }

    .step-number { 
        font-size: 3rem; 
        line-height: 1;
        display: block;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-title { font-size: 1.5rem; }
    .step-desc { font-size: 0.9375rem; }
}

@media (min-width: 769px) {
    .process-mobile-line-svg {
        display: none;
    }
}
.process-step-item {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; justify-content: center;
    opacity: 0; 
    transform: scale(0.9) translateY(30px);
}

@media (max-width: 768px) {
    .process-step-item {
        width: 18rem;
        flex-shrink: 0;
        opacity: 1 !important;
        transform: none !important;
        position: relative;
        z-index: 3;
        justify-content: flex-start !important; 
    }
}