/*--------------------------------------------------------------
# Work Steps One
--------------------------------------------------------------*/
.process-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: var(--sureways-primary);
    counter-reset: count;
    z-index: 1;
}

.process-one__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.process-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.process-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 15px;
}

.process-one__list li {
    position: relative;
    display: block;
    text-align: center;
    flex: 0 0 20%;
    padding: 0 15px;
    margin-bottom: 21px;
}


.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    background: linear-gradient(135deg, var(--sureways-base), #f7931e);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 500ms ease;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(var(--sureways-base-rgb), 0.3);
}

.process-one__list li:hover .process-one__icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--sureways-base-rgb), 0.4);
}

.process-one__icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, var(--sureways-base), #f7931e);
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: -1;
}

.process-one__list li:hover .process-one__icon:before {
    background: linear-gradient(135deg, var(--sureways-base), #f7931e);
}

.process-one__icon i,
.process-one__icon span[class^="icon-"] {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #ffffff;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: 2;
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--sureways-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: 2;
}

.process-one__list li:hover .process-one__icon i,
.process-one__list li:hover .process-one__icon span[class^="icon-"] {
    transform: scale(1.1);
    color: #ffffff;
}

.process-one__list li:hover .process-one__icon span {
    transform: scale(0.9);
    color: var(--sureways-white);
}

/* Mobile responsive adjustments for process section */
@media (max-width: 768px) {
    .process-one__list {
        flex-direction: column;
        gap: 30px;
        margin: 0;
    }
    
    .process-one__list li {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
        padding: 0;
    }
    
    .process-one__list li:not(:last-child)::after,
    .process-one__list li:not(:last-child)::before {
        display: none;
    }
    
    .process-one__icon {
        height: 80px;
        width: 80px;
    }
    
    .process-one__icon i,
    .process-one__icon span[class^="icon-"] {
        font-size: 36px;
    }
    
    .process-one__title {
        font-size: 16px;
        margin-top: 15px;
    }
    
    .process-one__count {
        font-size: 14px;
    }
}

.process-one__count {
    position: absolute;
    top: -15px;
    right: -5px;
    height: 40px;
    width: 40px;
    z-index: 2;
}

.process-one__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: var(--sureways-white);
    background-color: var(--sureways-black);
    border: 3px solid rgba(var(--sureways-white-rgb), .50);
    border-radius: 50%;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.process-one__inner li:hover .process-one__count:before {
    color: var(--sureways-base);
    background-color: var(--sureways-white);
    border: 3px solid rgba(var(--sureways-black-rgb), .50);
}

.process-one__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 15px;
}

.process-one__title a {
    color: var(--sureways-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.process-one__title a:hover {
    color: var(--sureways-base);
}

.process-one__text {
    font-size: 15px;
    font-weight: 500;
}

.process-one__shpae-1 {
    position: absolute;
    top: 19%;
    left: 50%;
    right: -30%;
    background-color: var(--sureways-base);
    height: 4px;
    transition: all 500ms ease;
}

.process-one__inner li:hover .process-one__shpae-1 {
    background-color: var(--sureways-black);
}

.process-one__shpae-1:before {
    content: "";
    position: absolute;
    top: -8px;
    right: -10px;
    height: 20px;
    width: 20px;
    background-color: var(--sureways-base);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transition: all 500ms ease;
}

.process-one__inner li:hover .process-one__shpae-1:before {
    background-color: var(--sureways-black);
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/