.project-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    max-width: 360px;
    flex-wrap: wrap;
    align-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 396px;

}

.project-card-header,
.project-card-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
}


.project-tags {
    margin-top: 10px;
}


.project-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 47px;
}

.project-card  .project-tag {
    background-color: #EBF1FF;
    font-family: Inter;
    font-weight: 700;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 14px;
    line-height: 22px;
    color: #0F3EA4;

}

.project-results p {
    margin: 0;
}

.project-percentage {
    color: #3070FA;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

.project-description {
    color: #727881;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}



.project-tag {
    display: inline-block;
    background: #f0f0f5;
    border-radius: 8px;
    padding: 4px 8px;
    margin-right: 5px;
    font-size: 12px;
}

.project-card h3 {
    font-weight: 700;
    margin: 0;
    font-size: 24px;
    line-height: 32px;
    color: rgba(16, 24, 40, 1);
}

.project-slider-wrapper {
    position: relative;
    margin: 40px 0;
}

.project-owl-slider .owl-stage-outer {
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.project-owl-slider .owl-prev,
.project-owl-slider .owl-next {
    box-shadow: 0px 0px 32px 0px #28293D0D;
    background-color: #3070FA !important;
    width: 56px;
    height: 56px;
    gap: 10px;
    border-radius: 12px;

}

.project-owl-slider  .owl-prev-custom,
.project-owl-slider .owl-next-custom {
    display: flex;
    justify-content: center;
}

.project-owl-slider .project-card img {
    max-height: 40px;
    width: auto;
}

.project-owl-slider {
    min-height: 400px;
    overflow: hidden;
}

.custom-prev.disabled button,
.custom-next.disabled button {
    box-shadow: 0px 0px 32px 0px rgba(40, 41, 61, 0.05);
    border: 1px solid rgba(242, 244, 247, 1);
    background-color: #fff !important;
}

.custom-prev.disabled button {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.875 10.1113L3.125 10.1113' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.75 4.48633L3.125 10.1113L8.75 15.7363' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
}

.custom-next.disabled button {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10.111h13.75M11.25 15.736l5.625-5.625-5.625-5.625' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

@media (max-width: 576px) {
    .project-owl-slider .owl-stage-outer {
        width: calc(100vw - 30px);
        padding-left: 0;
    }


    .project-card {
        max-width: 100%;
    }
    .project-owl-slider,
    .project-card {
        min-height: auto;
    }


    .project-owl-slider .owl-item {
        max-width: 100%;
    }
}