.project__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0 15px;
}

.project__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.project__item__pic {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project__item__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project__item:hover .project__item__pic img {
    transform: scale(1.1);
}

.project__item__pic__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project__item:hover .project__item__pic__overlay {
    opacity: 1;
}

.project__item__pic__overlay a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    transition: background 0.3s ease;
}

.project__item__pic__overlay a:hover {
    background: var(--gold);
    color: #fff;
}

.project__item__text {
    padding: 25px;
}

.project__category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.project__item__text h5 {
    margin: 10px 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.project__item__text h5 a {
    color: #333;
    transition: color 0.3s ease;
}

.project__item__text h5 a:hover {
    color: var(--gold);
}

.project__meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.project__meta span {
    margin-right: 15px;
}

.project__meta i {
    margin-right: 5px;
    color: var(--gold);
}

.project__item__text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project__kpis {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.kpi__badge {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid var(--gold);
}

.kpi__value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.kpi__label {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.projects__slider.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 20px;
    color: #333 !important;
    transition: all 0.3s ease;
}

.projects__slider.owl-carousel .owl-nav button:hover {
    background: var(--gold) !important;
    color: #fff !important;
}

.projects__slider.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.projects__slider.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}