@import './IndexStyle.css';

.project-steps-container{
    width: 100%;
    max-width: 2600px;
    position: relative;
    overflow: hidden;
}

#mobileStepsHeader{
    display: none;
}

#desktopStepsHeader{
    display: block;
}

.project-steps-header{
    margin: 0 auto;
    width: min(1100px, 80%) !important;
    margin-bottom: 3%;
    opacity: 0;
    transform: translateX(-100%);
    transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
}

.project-steps-header h2{
    width: fit-content;
	font-weight: 600 !important;
    transform: translateY(0px);
    transition: transform 0.3s ease;
}

.project-steps-header h2::after{
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    width: 0;
    left: 0;
    bottom: -7px;
    transition: width 0.8s ease;
}

.project-steps-header.in-view{
    opacity: 1;
    transform: translateX(0%);
}

.project-steps-header.in-view h2{
    transform: translateY(-8px);
}

.project-steps-header.in-view h2::after{
    transition-delay: 0.5s;
    width: 100%;
}


.project-steps-items{
    width: min(1100px, 80%);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.project-steps-content-wrapper{
    display: flex;
    justify-content: space-between;
    min-height: 600px;
}


.project-steps-indicator-container{
    z-index: 2;
    min-height: 600px;
    width: 130px;
    background-color: #444444;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    transform: translateX(-150%);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.project-steps-indicator-container.in-view{
    transition-delay: 0.5s;
    transform: translateX(0%);
}

.project-steps-indicator{
    cursor: pointer;
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1;

    transform: translateY(800%);

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 
    box-shadow 0.3s ease-out, 
    background-color 0.3s ease-in-out, 
    border 0.1s ease,
    transform 0.5s ease;
}
.project-steps-indicator:hover{
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.project-steps-indicator.in-view{
    transform: translateY(0%);
}

.project-steps-indicator.active{
    container-type: inline-size;
    border: solid 4px transparent;

    background-color: var(--secondary-color);
    box-shadow: 
    inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
    inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
    0 0px 50px 40px var(--secondary-color-dark-20);
}
.project-steps-indicator.active:hover{
    border: solid 3px transparent;

    background-color: var(--secondary-color);
    box-shadow: 
    inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
    inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
    0 0px 0px 5px var(--secondary-color-dark-20);
}

.project-steps-indicator img {
    height: 50px;
    width: 50px;
    user-select: none;
}

.project-steps-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1); 
    border-radius: 50%;
    z-index: 2; 
    transition: background-color 0.3s ease; 
}
.project-steps-indicator:hover::before {
    background-color: rgba(0, 0, 0, 0.3); 
}
.project-steps-indicator.active::before {
    background-color: rgba(0, 0, 0, 0); 
}
.project-steps-indicator.active:hover::before {
    background-color: rgba(0, 0, 0, 0); 
}


.project-steps-content-container {
    z-index: 1; 
}

.project-steps-content {
    position: absolute; /* Change from absolute to relative to allow the container to grow */
    top: 0;
    height: 100%; /* Let the height adjust based on content */
    right: 0;
    width: 80%; /* Keep the width as required */
    background-color: #444444;
    border-radius: 20px;
    padding-bottom: 10%;
    opacity: 0;
    transform: translateX(-150%);
    overflow: hidden;
    transition: transform 0.8s ease, opacity 0.5s ease;
}


.project-steps-content.incoming {
    transform: translateX(0); 
    opacity: 1;
}



.project-steps-content-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.project-steps-content-header span{
    font-family: var(--main-font);
    color: whitesmoke;
    font-weight: bold;
    font-size: var(--margin-xxl);
    font-style: italic;
}

.project-steps-content-header h3{
    font-family: var(--main-font);
    font-size: calc(var(--margin-xxl) + 0.1rem);
    letter-spacing: 2px;
    color: whitesmoke;
    padding: 0 40px;
}

.project-steps-content-header img{
    width: 100px;
    height: 100px;
    background-color: var(--primary-color-dark-10);
    padding: 10px 15px;
    border-radius: 0 0 0 20px;
}

.project-steps-content-text{
    padding: 0 40px;
    margin-right: 6rem;
    margin-top: 1rem;
}

.project-steps-content-text p{
    font-family: var(--main-font);
    font-size: calc(var(--margin-xl) - 0.1rem);
    color: white;
    line-height: 1.8;
}

.project-steps-content-arrows{
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.project-steps-content-arrow-container{
    cursor: pointer;
    user-select: none;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--secondary-color-dark-10);
    box-shadow: 
    inset 0 0 4px 4px hsl(25 91% 30% / 1);

    transition: transform 0.1s ease;
}

.project-steps-content-arrow{
    user-select: none;
    width: 2px;
    height: 2px;
    background-color: transparent;
    border: solid whitesmoke;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 6px;
    transition: transform 0.3s ease, top 0.3s ease;
}

.project-steps-content:nth-of-type(1) .project-steps-content-arrow-container:active{
    transform: translateX(10px);
}

.project-steps-content-arrow-container:nth-of-type(1):active{
    transform: translateX(-10px);
}

.project-steps-content-arrow-container:nth-of-type(2):active{
    transform: translateX(10px);
}

#stepArrowLeft{
    transform: translateX(2px) rotate(135deg);
}
#stepArrowRight{
    transform: translateX(-2px) rotate(-45deg);
}

@media screen and (max-width: 1680px){
    .project-steps-header{
        /* padding: 15px 20px; */
        margin-bottom: 3%;
    }
    
    .project-steps-header.in-view{
        padding: 18px 20px;
    }

        
    .project-steps-content-wrapper{
        min-height: 500px;
    }


    .project-steps-indicator-container{
        min-height: 500px;
        width: 120px;
    }

    .project-steps-indicator{
        width: 75px;
        height: 75px;
    }

    .project-steps-indicator img {
        height: 40px;
        width: 40px;
    }

    .project-steps-content-header span{
        font-size: calc(var(--margin-xl));
    }
    
    .project-steps-content-header h3{
        font-size: calc(var(--margin-xl));
        letter-spacing: 1px;
        padding: 0 40px;
    }

    .project-steps-content-header img{
        width: 80px;
        height: 80px;
        background-color: var(--primary-color-dark-10);
        padding: 10px 15px;
        border-radius: 0 0 0 20px;
    }
    
    .project-steps-content-text{
        padding: 0 40px;
        margin-right: 6rem;
        margin-top: 1rem;
    }

    .project-steps-content-text p{
        font-size: calc(var(--margin-l) + 0.1rem);
    }

    .project-steps-content-arrow-container{
        width: 50px;
        border: solid 2px var(--secondary-color-dark-10);
        box-shadow: 
        inset 0 0 4px 4px hsl(25 91% 30% / 1);
        }
    
    .project-steps-content-arrow{
        width: 2px;
        height: 2px;
        border-width: 0 3px 3px 0;
        padding: 6px;
    }
}

@media screen and (max-width: 1280px){
    
.project-steps-header{
    width: min(1100px, 75%) !important;
    opacity: 0;
    transform: translateX(-100%);
    transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
}

.project-steps-header h2{
    transform: translateY(0px);
    transition: transform 0.3s ease;
}

.project-steps-header h2::after{
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    width: 0;
    left: 0;
    bottom: -6px;
    transition: width 0.8s ease;
}

.project-steps-header.in-view{
    padding: 15px 20px;
    opacity: 1;
    transform: translateX(0%);
}

.project-steps-header.in-view h2{
    transform: translateY(-7px);
}

.project-steps-header.in-view h2::after{
    transition-delay: 0.5s;
    width: 100%;
}


.project-steps-items{
    width: min(1100px, 75%);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.project-steps-content-wrapper{
    display: flex;
    justify-content: space-between;
    min-height: 380px;
}


.project-steps-indicator-container{
    z-index: 2;
    min-height: 380px;
    width: 90px;
    background-color: #444444;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    transform: translateX(-150%);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.project-steps-indicator-container.in-view{
    transition-delay: 0.5s;
    transform: translateX(0%);
}

.project-steps-indicator{
    cursor: pointer;
    position: relative;
    width: 55px;
    height: 55px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1;

    transform: translateY(800%);

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 
    box-shadow 0.3s ease-out, 
    background-color 0.3s ease-in-out, 
    border 0.1s ease,
    transform 0.5s ease;
}
.project-steps-indicator:hover{
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.project-steps-indicator.in-view{
    transform: translateY(0%);
}

.project-steps-indicator.active{
    container-type: inline-size;
    border: solid 3px transparent;

    background-color: var(--secondary-color);
    box-shadow: 
    inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
    inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
    0 0px 50px 25px var(--secondary-color-dark-20);
}
.project-steps-indicator.active:hover{
    border: solid 3px transparent;

    background-color: var(--secondary-color);
    box-shadow: 
    inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
    inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
    0 0px 0px 4px var(--secondary-color-dark-20);
}

.project-steps-indicator img {
    height: auto;
    aspect-ratio: 1/1;
    width: 60%;
    user-select: none;
}

.project-steps-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1); 
    border-radius: 50%;
    z-index: 2; 
    transition: background-color 0.3s ease; 
}
.project-steps-indicator:hover::before {
    background-color: rgba(0, 0, 0, 0.3); 
}
.project-steps-indicator.active::before {
    background-color: rgba(0, 0, 0, 0); 
}
.project-steps-indicator.active:hover::before {
    background-color: rgba(0, 0, 0, 0); 
}


.project-steps-content-container {
    z-index: 1; 
}

.project-steps-content {
    position: absolute; /* Change from absolute to relative to allow the container to grow */
    top: 0;
    height: 100%; /* Let the height adjust based on content */
    right: 0;
    width: 80%; /* Keep the width as required */
    background-color: #444444;
    border-radius: 20px;
    padding-bottom: 10%;
    opacity: 0;
    transform: translateX(-150%);
    overflow: hidden;
    transition: transform 0.8s ease, opacity 0.5s ease;
}


.project-steps-content.incoming {
    transform: translateX(0); 
    opacity: 1;
}



.project-steps-content-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.project-steps-content-header span{
    font-family: var(--main-font);
    color: whitesmoke;
    font-weight: bold;
    font-size: calc(var(--margin-l) + 0.15rem);
    font-style: italic;
}

.project-steps-content-header h3{
    font-family: var(--main-font);
    font-size: calc(var(--margin-l) + 0.15rem);
    letter-spacing: 1px;
    color: whitesmoke;
    padding: 0 3.5%;
}

.project-steps-content-header img{
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--primary-color-dark-10);
    padding: 1.5% 1.25%;
    border-radius: 0 0 0 20px;
}

.project-steps-content-text{
    padding: 0 3.5%;
    margin-right: 6%;
    margin-top: 0rem;
}

.project-steps-content-text p{
    font-family: var(--main-font);
    font-size: calc(var(--margin-xm) + 0.05rem);
    color: white;
    line-height: 1.8;
}

.project-steps-content-arrows{
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.project-steps-content-arrow-container{
    cursor: pointer;
    user-select: none;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--secondary-color-dark-10);
    box-shadow: 
    inset 0 0 4px 4px hsl(25 91% 30% / 1);

    transition: transform 0.1s ease;
}

.project-steps-content-arrow{
    user-select: none;
    width: 3px;
    height: 3px;
    background-color: transparent;
    border: solid whitesmoke;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transition: transform 0.3s ease, top 0.3s ease;
}

.project-steps-content:nth-of-type(1) .project-steps-content-arrow-container:active{
    transform: translateX(10px);
}

.project-steps-content-arrow-container:nth-of-type(1):active{
    transform: translateX(-10px);
}

.project-steps-content-arrow-container:nth-of-type(2):active{
    transform: translateX(10px);
}

#stepArrowLeft{
    transform: translateX(2px) rotate(135deg);
}
#stepArrowRight{
    transform: translateX(-2px) rotate(-45deg);
}

}
/*
@media screen and (max-width: 1024px){   
    .project-steps-indicator-container{
        z-index: 2;
        min-height: 750px;
        width: 130px;
        background-color: #444444;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        position: relative;
        transform: translateX(-150%);
        overflow: hidden;
        transition: transform 0.5s ease;
    }

    
.project-steps-content-arrows{
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.project-steps-content-arrow-container{
    cursor: pointer;
    user-select: none;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--secondary-color-dark-10);
    box-shadow: 
    inset 0 0 4px 4px hsl(25 91% 30% / 1);

    transition: transform 0.1s ease;
}

.project-steps-content-arrow{
    user-select: none;
    width: 2px;
    height: 2px;
    background-color: transparent;
    border: solid whitesmoke;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transition: transform 0.3s ease, top 0.3s ease;
}
}


@media screen and (max-width: 1920px){

#mobileStepsHeader{
    display: none;
}
.project-steps-header{
    margin: 0 auto;
    width: 50%;
    background-color: #444444;
    border-radius: 15px;
    padding: 25px 25px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(-100%);
    transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
}

.project-steps-header h2{
    position: relative;
    font-family: var(--main-font);
    color: whitesmoke;
    font-size: calc(var(--margin-xl) + 0.2rem);
    width: fit-content;
    transform: translateY(0px);
    transition: transform 0.3s ease;
}

.project-steps-header h2::after{
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    width: 0;
    left: 0;
    height: 3px;
    bottom: -7px;
    transition: width 0.8s ease;
}

.project-steps-header.in-view{
    padding: 25px 25px;
    opacity: 1;
    transform: translateX(0%);
}

.project-steps-header.in-view h2{
    transform: translateY(-7px);
}

.project-steps-header.in-view h2::after{
    transition-delay: 0.5s;
    width: 100%;
}


.project-steps-items{
    width: 50%;
}

.project-steps-indicator-container{
    min-height: 550px;
    width: 125px;
    border-radius: 20px;
}

.project-steps-indicator{
    width: 80px;
    height: 80px;
}
.project-steps-indicator:hover{
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.project-steps-indicator.active{
    container-type: inline-size;
    border: solid 4px transparent;

    background-color: var(--secondary-color);
    box-shadow: 
    inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
    inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
    0 0px 50px 40px var(--secondary-color-dark-20);
}
.project-steps-indicator.active:hover{
    border: solid 3px transparent;

    background-color: var(--secondary-color);
    box-shadow: 
    inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
    inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
    0 0px 0px 5px var(--secondary-color-dark-20);
}

.project-steps-indicator img {
    height: 45px;
    width: 45px;
    user-select: none;
}



.project-steps-content-container {
    z-index: 1; 
    min-height: 550px;
    width: 95%;
    position: absolute; 
    right: 0; 
    top: 0; 
    overflow: hidden;
}

.project-steps-content {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100%;
    width: 85%;
    background-color: #444444;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-150%); 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.project-steps-content.incoming {
    transform: translateX(0); 
    opacity: 1;
}

.project-steps-content-header span{
    font-family: var(--main-font);
    color: whitesmoke;
    font-weight: bold;
    font-size: var(--margin-xxl);
    font-style: italic;
}

.project-steps-content-header h3{
    font-family: var(--main-font);
    font-size: calc(var(--margin-xxl));
    letter-spacing: 2px;
    color: whitesmoke;
    padding: 0 40px;
}

.project-steps-content-header img{
    width: 80px;
    height: 80px;
    background-color: var(--primary-color-dark-10);
    padding: 10px 15px;
    border-radius: 0 0 0 20px;
}

.project-steps-content-text{
    padding: 0 40px;
    margin-right: 6rem;
    margin-top: 1rem;
}

.project-steps-content-text p{
    font-family: var(--main-font);
    font-size: calc(var(--margin-l) + 0.2rem);
    color: white;
    line-height: 1.8;
}


.project-steps-content-arrows{
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.project-steps-content-arrow-container{
    cursor: pointer;
    user-select: none;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--secondary-color-dark-10);
    box-shadow: 
    inset 0 0 4px 4px hsl(25 91% 30% / 1);

    transition: transform 0.1s ease;
}

.project-steps-content-arrow{
    user-select: none;
    width: 2px;
    height: 2px;
    background-color: transparent;
    border: solid whitesmoke;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 6px;
    transition: transform 0.3s ease, top 0.3s ease;
}

}

@media screen and (max-width: 1680px){
    
    #mobileStepsHeader{
        display: none;
    }
    .project-steps-header{
        margin: 0 auto;
        width: 50%;
        background-color: #444444;
        border-radius: 15px;
        padding: 25px 25px;
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateX(-100%);
        transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
    }
    
    .project-steps-header h2{
        position: relative;
        font-family: var(--main-font);
        color: whitesmoke;
        font-size: calc(var(--margin-xl));
        width: fit-content;
        transform: translateY(0px);
        transition: transform 0.3s ease;
    }
    
    .project-steps-header h2::after{
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 0;
        left: 0;
        height: 3px;
        bottom: -7px;
        transition: width 0.8s ease;
    }
    
    .project-steps-header.in-view{
        padding: 25px 25px;
        opacity: 1;
        transform: translateX(0%);
    }
    
    .project-steps-header.in-view h2{
        transform: translateY(-7px);
    }
    
    .project-steps-header.in-view h2::after{
        transition-delay: 0.5s;
        width: 100%;
    }
    
    
    .project-steps-items{
        width: 50%;
    }
    
    .project-steps-indicator-container{
        min-height: 500px;
        width: 115px;
        border-radius: 20px;
    }
    
    .project-steps-indicator{
        width: 75px;
        height: 75px;
    
        transition: 
        box-shadow 0.3s ease-out, 
        background-color 0.3s ease-in-out, 
        border 0.1s ease,
        transform 0.6s ease;
    }
    .project-steps-indicator:hover{
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .project-steps-indicator.active{
        container-type: inline-size;
        border: solid 4px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
        0 0px 50px 40px var(--secondary-color-dark-20);
    }
    .project-steps-indicator.active:hover{
        border: solid 3px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
        0 0px 0px 5px var(--secondary-color-dark-20);
    }
    
    .project-steps-indicator img {
        height: 42px;
        width: 42px;
        user-select: none;
    }
    
    
    .project-steps-content-container {
        z-index: 1; 
        min-height: 500px;
        width: 95%;
        position: absolute; 
        right: 0; 
        top: 0; 
        overflow: hidden;
    }
    
    .project-steps-content {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 100%;
        width: 85%;
        background-color: #444444;
        border-radius: 20px;
        overflow: hidden;
        opacity: 0;
        transform: translateX(-150%); 
        transition: transform 0.7s ease, opacity 0.5s ease; 
    }
    
    .project-steps-content.incoming {
        transform: translateX(0); 
        opacity: 1;
    }

    
    .project-steps-content-header span{
        font-family: var(--main-font);
        color: whitesmoke;
        font-weight: bold;
        font-size: calc(var(--margin-xl) + 0.2rem);
        font-style: italic;
    }
    
    .project-steps-content-header h3{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xl) + 0.2rem);
        letter-spacing: 1px;
        color: whitesmoke;
        padding: 0 40px;
    }
    
    .project-steps-content-header img{
        width: 70px;
        height: 70px;
        background-color: var(--primary-color-dark-10);
        padding: 9px 14px;
        border-radius: 0 0 0 20px;
    }
    
    .project-steps-content-text{
        padding: 0 40px;
        margin-right: 6rem;
        margin-top: 1rem;
    }
    
    .project-steps-content-text p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-l) + 0.05rem);
        color: white;
        line-height: 1.8;
    }
    
    
    .project-steps-content-arrows{
        position: absolute;
        right: 2rem;
        bottom: 2rem;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
    
    .project-steps-content-arrow-container{
        cursor: pointer;
        user-select: none;
        background-color: var(--secondary-color);
        border-radius: 50%;
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px var(--secondary-color-dark-10);
        box-shadow: 
        inset 0 0 4px 4px hsl(25 91% 30% / 1);
    
        transition: transform 0.1s ease;
    }
    
    .project-steps-content-arrow{
        user-select: none;
        width: 2px;
        height: 2px;
        background-color: transparent;
        border: solid whitesmoke;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 5px;
        transition: transform 0.3s ease, top 0.3s ease;
    }
}

@media screen and (max-width: 1440px){   
    #mobileStepsHeader{
        display: none;
    }
    .project-steps-header{
        margin: 0 auto;
        width: 55%;
        background-color: #444444;
        border-radius: 15px;
        padding: 25px 25px;
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateX(-100%);
        transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
    }
    
    .project-steps-header h2{
        position: relative;
        font-family: var(--main-font);
        color: whitesmoke;
        font-size: calc(var(--margin-l) + 0.1rem);
        width: fit-content;
        transform: translateY(0px);
        transition: transform 0.3s ease;
    }
    
    .project-steps-header h2::after{
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 0;
        left: 0;
        height: 2px;
        bottom: -5px;
        transition: width 0.8s ease;
    }
    
    .project-steps-header.in-view{
        padding: 20px 20px;
        opacity: 1;
        transform: translateX(0%);
    }
    
    .project-steps-header.in-view h2{
        transform: translateY(-5px);
    }
    
    .project-steps-header.in-view h2::after{
        transition-delay: 0.5s;
        width: 100%;
    }
    
    
    .project-steps-items{
        width: 55%;
    }
    
    .project-steps-indicator-container{
        min-height: 420px;
        width: 95px;
        border-radius: 15px;
    }
    
    .project-steps-indicator{
        width: 60px;
        height: 60px;
    
        transition: 
        box-shadow 0.3s ease-out, 
        background-color 0.3s ease-in-out, 
        border 0.1s ease,
        transform 0.6s ease;
    }
    .project-steps-indicator:hover{
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .project-steps-indicator.active{
        container-type: inline-size;
        border: solid 4px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
        0 0px 50px 40px var(--secondary-color-dark-20);
    }
    .project-steps-indicator.active:hover{
        border: solid 3px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
        0 0px 0px 5px var(--secondary-color-dark-20);
    }
    
    .project-steps-indicator img {
        height: 32px;
        width: 32px;
        user-select: none;
    }
    
    
    
    .project-steps-content-container {
        z-index: 1; 
        min-height: 420px;
        width: 95%;
        position: absolute; 
        right: 0; 
        top: 0; 
        overflow: hidden;
    }
    
    .project-steps-content {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 100%;
        width: 85%;
        background-color: #444444;
        border-radius: 15px;
        overflow: hidden;
        opacity: 0;
        transform: translateX(-150%); 
        transition: transform 0.7s ease, opacity 0.5s ease; 
    }
    
    .project-steps-content.incoming {
        transform: translateX(0); 
        opacity: 1;
    }
    
    .project-steps-content-header span{
        font-family: var(--main-font);
        color: whitesmoke;
        font-weight: bold;
        font-size: calc(var(--margin-xl));
        font-style: italic;
    }
    
    .project-steps-content-header h3{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xl));
        letter-spacing: 1px;
        color: whitesmoke;
        padding: 0 30px;
    }
    
    .project-steps-content-header img{
        width: 60px;
        height: 60px;
        background-color: var(--primary-color-dark-10);
        padding: 9px 14px;
        border-radius: 0 0 0 20px;
    }
    
    .project-steps-content-text{
        padding: 0 30px;
        margin-right: 6rem;
        margin-top: 1rem;
    }
    
    .project-steps-content-text p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xm) + 0.05rem);
        color: white;
        line-height: 1.8;
    }
    
    
    .project-steps-content-arrows{
        position: absolute;
        right: 2rem;
        bottom: 2rem;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
    
    .project-steps-content-arrow-container{
        cursor: pointer;
        user-select: none;
        background-color: var(--secondary-color);
        border-radius: 50%;
        width: 45px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px var(--secondary-color-dark-10);
        box-shadow: 
        inset 0 0 4px 4px hsl(25 91% 30% / 1);
    
        transition: transform 0.1s ease;
    }
    
    .project-steps-content-arrow{
        user-select: none;
        width: 2px;
        height: 2px;
        background-color: transparent;
        border: solid whitesmoke;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 4px;
        transition: transform 0.3s ease, top 0.3s ease;
    }
}

@media screen and (max-width: 1280px){  
    #mobileStepsHeader{
        display: none;
    }
    .project-steps-header{
        margin: 0 auto;
        width: 55%;
        background-color: #444444;
        border-radius: 12px;
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateX(-100%);
        transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
    }
    
    .project-steps-header h2{
        position: relative;
        font-family: var(--main-font);
        color: whitesmoke;
        font-size: calc(var(--margin-l));
        width: fit-content;
        transform: translateY(0px);
        transition: transform 0.3s ease;
    }
    
    .project-steps-header h2::after{
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 0;
        left: 0;
        height: 2px;
        bottom: -5px;
        transition: width 0.8s ease;
    }
    
    .project-steps-header.in-view{
        padding: 18px 18px;
        opacity: 1;
        transform: translateX(0%);
    }
    
    .project-steps-header.in-view h2{
        transform: translateY(-5px);
    }
    
    .project-steps-header.in-view h2::after{
        transition-delay: 0.5s;
        width: 100%;
    }
    
    
    .project-steps-items{
        width: 55%;
    }
    
    .project-steps-indicator-container{
        min-height: 420px;
        width: 90px;
        border-radius: 12px;
    }
    
    .project-steps-indicator{
        width: 55px;
        height: 55px;
    
        transition: 
        box-shadow 0.3s ease-out, 
        background-color 0.3s ease-in-out, 
        border 0.1s ease,
        transform 0.6s ease;
    }
    .project-steps-indicator:hover{
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .project-steps-indicator.active{
        container-type: inline-size;
        border: solid 4px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
        0 0px 40px 30px var(--secondary-color-dark-20);
    }
    .project-steps-indicator.active:hover{
        border: solid 3px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
        0 0px 0px 5px var(--secondary-color-dark-20);
    }
    
    .project-steps-indicator img {
        height: 30px;
        width: 30px;
        user-select: none;
    }
    
    
    
    .project-steps-content-container {
        z-index: 1; 
        min-height: 420px;
        width: 95%;
        position: absolute; 
        right: 0; 
        top: 0; 
        overflow: hidden;
    }
    
    .project-steps-content {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 100%;
        width: 85%;
        background-color: #444444;
        border-radius: 12px;
        overflow: hidden;
        opacity: 0;
        transform: translateX(-150%); 
        transition: transform 0.7s ease, opacity 0.5s ease; 
    }
    
    .project-steps-content.incoming {
        transform: translateX(0); 
        opacity: 1;
    }
    
    .project-steps-content-header span{
        font-family: var(--main-font);
        color: whitesmoke;
        font-weight: bold;
        font-size: calc(var(--margin-xl) - 0.15rem);
        font-style: italic;
    }
    
    .project-steps-content-header h3{
        font-family: var(--main-font);
        font-size: calc(var(--margin-xl) - 0.15rem);
        letter-spacing: 1px;
        color: whitesmoke;
        padding: 0 30px;
    }
    
    .project-steps-content-header img{
        width: 60px;
        height: 60px;
        background-color: var(--primary-color-dark-10);
        padding: 5px 12px;
        border-radius: 0 0 0 20px;
    }
    
    .project-steps-content-text{
        padding: 0 30px;
        margin-right: 6rem;
        margin-top: 1rem;
    }
    
    .project-steps-content-text p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-m) + 0.05rem);
        color: white;
        line-height: 1.8;
    }
    
    
    .project-steps-content-arrows{
        position: absolute;
        right: 2rem;
        bottom: 2rem;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .project-steps-content-arrow-container{
        cursor: pointer;
        user-select: none;
        background-color: var(--secondary-color);
        border-radius: 50%;
        width: 38px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px var(--secondary-color-dark-10);
        box-shadow: 
        inset 0 0 4px 4px hsl(25 91% 30% / 1);
    
        transition: transform 0.1s ease;
    }
    
    .project-steps-content-arrow{
        user-select: none;
        width: 2px;
        height: 2px;
        background-color: transparent;
        border: solid whitesmoke;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        transition: transform 0.3s ease, top 0.3s ease;
    }
}

@media screen and (max-width: 1024px){
    
    #mobileStepsHeader{
        display: none;
    }
    .project-steps-header{
        margin: 0 auto;
        width: 55%;
        background-color: #444444;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateX(-100%);
        transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
    }
    
    .project-steps-header h2{
        position: relative;
        font-family: var(--main-font);
        color: whitesmoke;
        font-size: calc(var(--margin-m));
        width: fit-content;
        transform: translateY(0px);
        transition: transform 0.3s ease;
    }
    
    .project-steps-header h2::after{
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 0;
        left: 0;
        height: 1px;
        bottom: -3px;
        transition: width 0.8s ease;
    }
    
    .project-steps-header.in-view{
        padding: 12px 15px;
        opacity: 1;
        transform: translateX(0%);
    }
    
    .project-steps-header.in-view h2{
        transform: translateY(-3px);
    }
    
    .project-steps-header.in-view h2::after{
        transition-delay: 0.5s;
        width: 100%;
    }
    
    
    .project-steps-items{
        width: 55%;
    }
    
    .project-steps-indicator-container{
        min-height: 330px;
        width: 75px;
        border-radius: 10px;
    }
    
    .project-steps-indicator{
        width: 50px;
        height: 50px;
    
        transition: 
        box-shadow 0.3s ease-out, 
        background-color 0.3s ease-in-out, 
        border 0.1s ease,
        transform 0.6s ease;
    }
    .project-steps-indicator:hover{
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .project-steps-indicator.active{
        container-type: inline-size;
        border: solid 3px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
        0 0px 40px 20px var(--secondary-color-dark-20);
    }
    .project-steps-indicator.active:hover{
        border: solid 2px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
        0 0px 0px 3px var(--secondary-color-dark-20);
    }
    
    .project-steps-indicator img {
        height: 25px;
        width: 25px;
        user-select: none;
    }
    
    
    .project-steps-content-container {
        z-index: 1; 
        min-height: 330px;
        width: 95%;
        position: absolute; 
        right: 0; 
        top: 0; 
        overflow: hidden;
    }
    
    .project-steps-content {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 100%;
        width: 85%;
        background-color: #444444;
        border-radius: 10px;
        overflow: hidden;
        opacity: 0;
        transform: translateX(-150%); 
        transition: transform 0.7s ease, opacity 0.5s ease; 
    }
    
    .project-steps-content.incoming {
        transform: translateX(0); 
        opacity: 1;
    }
    
    .project-steps-content-header span{
        font-family: var(--main-font);
        color: whitesmoke;
        font-weight: bold;
        font-size: calc(var(--margin-l) - 0.1rem);
        font-style: italic;
    }
    
    .project-steps-content-header h3{
        font-family: var(--main-font);
        font-size: calc(var(--margin-l) - 0.1rem);
        letter-spacing: 1px;
        color: whitesmoke;
        padding: 0 20px;
    }
    
    .project-steps-content-header img{
        width: 45px;
        height: 45px;
        background-color: var(--primary-color-dark-10);
        padding: 4px 10px;
        border-radius: 0 0 0 12px;
    }
    
    .project-steps-content-text{
        padding: 0 20px;
        margin-right: 6rem;
        margin-top: 0.25rem;
    }
    
    .project-steps-content-text p{
        font-family: var(--main-font);
        font-size: calc(var(--margin-sm) - 0.05rem);
        color: white;
        line-height: 1.8;
    }
    
    
    .project-steps-content-arrows{
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .project-steps-content-arrow-container{
        cursor: pointer;
        user-select: none;
        background-color: var(--secondary-color);
        border-radius: 50%;
        width: 30px;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px var(--secondary-color-dark-10);
        box-shadow: 
        inset 0 0 4px 4px hsl(25 91% 30% / 1);
    
        transition: transform 0.1s ease;
    }
    
    .project-steps-content-arrow{
        user-select: none;
        width: 2px;
        height: 2px;
        background-color: transparent;
        border: solid whitesmoke;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transition: transform 0.3s ease, top 0.3s ease;
    }
}
*/


@media screen and (max-width: 800px){
    .project-steps-header{
        width: 90% !important;
        margin-bottom: 4%;
        opacity: 0;
        transform: translateX(-100%);
        transition: padding 0.3s ease, opacity 0.3s, transform 0.5s ease;
    }
    
    .project-steps-header h2{
        transform: translateY(0px);
        transition: transform 0.3s ease-out;
    }
    
    .project-steps-header h2::after{
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 0;
        left: 0;
        bottom: -5px;
        transition: width 0.8s ease;
    }
    
    .project-steps-header.in-view{
        padding: 2.75% 4vw;
        opacity: 1;
        transform: translateX(0%);
    }
    
    .project-steps-header.in-view h2{
        transform: translateY(-5px);
    }
    
    .project-steps-header.in-view h2::after{
        transition-delay: 0.5s;
        width: 100%;
    }
    
    
    .project-steps-items{
        width: min(1100px, 90%);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }
    
    .project-steps-content-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: auto;
        width: 100%;
    }
    
    
    .project-steps-indicator-container{
        min-height: auto;
        width: 100%;
        padding: 3% 0;
        border-radius: 12px;
        flex-direction: row;
        transform: translateX(0%);
        transition: transform 0.5s ease-out;
    }
    
    .project-steps-indicator-container.in-view{
        transition-delay: 0.5s;
        transform: translateX(0%);
    }
    
    .project-steps-indicator{
        cursor: pointer;
        position: relative;
        width: 11%;
        min-width: 45px;
        aspect-ratio: 1/1;
        height: auto;
        margin: 0 auto;
        background-color: transparent;
        border-radius: 50%;
        z-index: 1;
    
        transform: translateY(-200%);
    
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 
        box-shadow 0.3s ease-out, 
        background-color 0.3s ease-in-out, 
        border 0.1s ease,
        transform 0.5s ease-out;
    }
    .project-steps-indicator:hover{
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .project-steps-indicator.in-view{
        transform: translateY(0%);
    }
    
    .project-steps-indicator.active{
        container-type: inline-size;
        border: solid 2px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .75),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .75),
        0 0px 40px 30px var(--secondary-color-dark-20);
    }
    .project-steps-indicator.active:hover{
        border: solid 2px transparent;
    
        background-color: var(--secondary-color);
        box-shadow: 
        inset .5rem .5rem 1rem hsl(25 91% 20% / .5),
        inset -.5rem -.5rem 1rem hsl(25 91% 20% / .5),
        0 0px 0px 3px var(--secondary-color-dark-20);
    }
    
    .project-steps-indicator img {
        height: auto;
        aspect-ratio: 1/1;
        width: 60%;
        user-select: none;
    }
    
    .project-steps-indicator::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.1); 
        border-radius: 50%;
        z-index: 2; 
        transition: background-color 0.3s ease; 
    }
    .project-steps-indicator:hover::before {
        background-color: rgba(0, 0, 0, 0.3); 
    }
    .project-steps-indicator.active::before {
        background-color: rgba(0, 0, 0, 0); 
    }
    .project-steps-indicator.active:hover::before {
        background-color: rgba(0, 0, 0, 0); 
    }
    
    
    .project-steps-content-container {
        position: relative; /* This is necessary to position the children absolutely */
        margin: 4% 0;
        z-index: 1;
        width: 100%;
        height: 500px; /* Adjust height to the tallest content block */
    }
    
    .project-steps-content {
        position: absolute; /* Ensure content overlaps */
        top: 0; 
        left: 0;
        width: 100%; /* Make it occupy the full width */
        background-color: #444444;
        border-radius: 12px;
        padding-bottom: 10%;
        opacity: 0;
        transform: translateX(0%) translateY(-150%);
        opacity: 1;
        transition: transform 0.8s ease-out, opacity 0.5s ease-out;
        z-index: 0; /* Set initial z-index */
    }
    
    .project-steps-content.incoming {
        transform: translateX(0) translateY(0); 
        opacity: 1;
        z-index: 1; /* Bring the active content to the top */
    }
    
    
    
    .project-steps-content-header{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .project-steps-content-header span{
        font-family: var(--main-font);
        color: whitesmoke;
        font-weight: bold;
        font-size: clamp(1.3rem, 3.8vw, 1.7rem);
        font-style: italic;
    }
    
    .project-steps-content-header h3{
        font-family: var(--main-font);
        font-size: clamp(1.3rem, 3.8vw, 1.7rem);
        letter-spacing: 1px;
        color: whitesmoke;
        padding: 2.5% 4vw;
    }
    
    .project-steps-content-header img{
        width: 10%;
        min-width: 40px;
        height: auto;
        aspect-ratio: 1/1;
        background-color: var(--primary-color-dark-10);
        padding: 1.1% 1.25%;
        border-radius: 0 0 0 12px;
    }
    
    .project-steps-content-text{
        padding: 2.5% 4vw;
        margin-right: 6%;
        margin-top: 0rem;
    }
    
    .project-steps-content-text p{
        font-family: var(--main-font);
        font-size: clamp(1rem, 3vw, 1.5rem);
        color: white;
        line-height: 1.8;
    }
    
    .project-steps-content-arrows{
        position: absolute;
        right: 4%;
        bottom: 4%;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
    
    .project-steps-content-arrow-container{
        cursor: pointer;
        user-select: none;
        background-color: var(--secondary-color);
        border-radius: 50%;
        width: clamp(30px, 10vw, 55px);
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px var(--secondary-color-dark-10);
        box-shadow: 
        inset 0 0 4px 4px hsl(25 91% 30% / 1);
    
        transition: transform 0.1s ease;
    }
    
    .project-steps-content-arrow{
        user-select: none;
        width: 30%;
        aspect-ratio: 1/1;
        height: auto;
        background-color: transparent;
        border: solid whitesmoke;
        border-width: 0 0.5vw 0.5vw 0;
        display: inline-block;
        transition: transform 0.3s ease, top 0.3s ease;
    }
    
    .project-steps-content:nth-of-type(1) .project-steps-content-arrow-container:active{
        transform: translateX(10px);
    }
    
    .project-steps-content-arrow-container:nth-of-type(1):active{
        transform: translateX(-10px);
    }
    
    .project-steps-content-arrow-container:nth-of-type(2):active{
        transform: translateX(10px);
    }
    
    #stepArrowLeft{
        transform: translateX(2px) rotate(135deg);
    }
    #stepArrowRight{
        transform: translateX(-2px) rotate(-45deg);
    }
    
}