.project-slider-widget-white {
    padding: 80px 0px;
    color: #111;
    font-family: 'Inter', sans-serif;
}
.project-slider-header-white {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-slider-header-left-white {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.project-slider-dots-white span {
    width: 6px;
    height: 6px;
    background: #BF3131;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.project-slider-controls-white {
    display: flex;
    gap: 20px;
}
.project-slider-controls-white button {
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: transparent;
    border: 0.7px solid #A9A9A9;
    cursor: pointer;
}
.project-slider-controls-white .project-next-white {
    border-color: #BF3131;
}
.project-slider-controls-white button img {
    max-width: 20px;
    max-height: 20px;
}
.project-slider-logos-white {
	display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    justify-content: space-around;
    align-items: center;
}
.project-slider-logo-white {
    width: 130px;
    height: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
	cursor: pointer;
}
.project-slider-logo-white.active {
    border-radius: 8px;
    background: #FFF;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.project-slider-logo-white img {
    height: 40px;
    opacity: 0.5;
    transition: 0.3s;
}
.project-slider-logo-white.active img {
    opacity: 1;
}
.project-slider-track-white {
    position: relative;
}
.project-slide-white {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}
.project-slide-white.active {
    display: flex;
    border-radius: 16px;
    background: #fff;
    padding: 30px;
    gap: 60px;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}
.project-image-white {
    flex: 1;
    border-radius: 25px;
}
.project-image-white img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px!important;
}
.project-content-white {
    flex: 1;
    padding: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-timeline-bar-white {
    height: 2px;
    background: #eee;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.project-timeline-bar-white span {
    display: block;
    height: 2px;
    width: 0;
    background: #BF3131;
    position: absolute;
    top: 0; left: 0;
}
.project-title-white {
    color: #111;
    font-size: 30px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}
.project-subtitle-white {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 12px;
}
.project-description-white {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}
.project-button-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin-top: 24px;
}
.project-button-white img.project-arrow-white {
    width: 22px;
    height: 22px;
}
.project-slider-title-white {
    font-size: 38px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.3px;
    margin-block-start: 0;
    margin-block-end: 0.23em;
}
.project-tags-white {
    margin-top: 20px;
}
.project-tags-white span {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 0px;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}
.project-slider-footer-white {
    margin-top: 40px;
    text-align: center;
}
.project-slider-all-btn-white {
    border: 1px solid #BF3131;
    color: #BF3131;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}
.project-slider-all-btn-white span {
    margin-left: 8px;
    width: 17px;
    height: 17px;
}
img.project-slider-all-btn-arrow-white {
    width: 17px!important;
    height: 17px!important;
    padding-top:2px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .project-slider-widget-white {
        padding: 70px 0px;
    }
    .project-slider-header-white {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .project-slider-controls-white {
        display: none;
    }
    .project-slider-logos-white {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 12px;
        padding-bottom: 10px;
        scroll-behavior: smooth;
    }
    .project-slider-logos-white::-webkit-scrollbar {
        display: none;
    }
    .project-slider-logo-white {
        flex: 0 0 auto;
        width: 130px;
    }
    .project-slide-white.active {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
        box-shadow: none;
    }
    .project-image-white img {
        border-radius: 12px !important;
    }
    .project-button-white {
        margin-top: 20px;
        font-size: 15px;
    }
    .project-slider-footer-white {
        margin-top: 32px;
        text-align: center;
    }
    .project-slider-all-btn-white {
        width: 100%;
        box-sizing: border-box;
        font-size: 15px;
        padding: 12px 20px;
    }
    .project-title-white {
        font-size: 22px;
        line-height: 130%;
    }
    .project-subtitle-white {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .project-description-white {
        font-size: 14px;
        line-height: 1.5;
    }
    .project-tags-white span {
        font-size: 12px;
        padding: 0;
    }
    .project-slider-title-white {
        font-size: 30px;
    }
}
