.project-block-one .inner-box .content-box .info-list li:last-child{
    display: none;
}

/* SIDEBAR SPACING */
.sidebar-side {
    padding-left: 20px;
}

/* CTA BOX */
.cta-box {
    position: relative;
    background: center/cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: fadeSlideUp 1s ease;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
}

.cta-logo {
    max-width: 200px;
    margin-bottom: 15px;
}

.cta-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: var(--theme-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--theme-color);
    color: whitesmoke;
    transform: translateY(-2px);
}

/* PHONE */
.cta-phone {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.cta-phone a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* PROJECT INFO BOX */
.project-info-box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    animation: fadeSlideUp 1.2s ease;
}

.project-info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-info-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ANIMATION */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* before and after */
/* BEFORE AFTER BOX */
.before-after-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* WRAPPER */
.before-after-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: ew-resize;
}

/* IMAGES */
.before-after-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* BEFORE IMAGE CONTAINER */
.before-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

/* HANDLE */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #ff5e14;
    z-index: 3;
    transform: translateX(-50%);
    transition: background 0.3s ease;
}

.slider-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-handle span::before {
    content: "↔";
    position: absolute;
    color: #fff;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* HOVER EFFECT */
.before-after-box:hover .slider-handle {
    background: var(--theme-color);
}

/* ANIMATION */
.before-after-box {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* prev and next project navigation */
/* CONTAINER */
.projects-prev-next-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* CARD */
.project-nav-card {
    position: relative;
    flex: 1;
    min-height: 200px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-family: var(--title-font);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.project-nav-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.project-nav-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: background 0.4s ease;
}

/* TEXT */
.nav-label {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.project-nav-overlay h4 {
    font-size: 20px;
    color: white;
    margin: 0;
    font-weight: 600;
}

/* HOVER EFFECT */
.project-nav-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.project-nav-card:hover .nav-label{
    color: var(--theme-color);
}

.project-nav-card:hover img {
    transform: scale(1.08);
}

.project-nav-card:hover .project-nav-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
}

/* LEFT / RIGHT ALIGN FEEL */
.project-nav-card.prev .project-nav-overlay {
    align-items: flex-start;
}

.project-nav-card.next .project-nav-overlay {
    align-items: flex-end;
    text-align: right;
}

/* ACCENT LINE ANIMATION */
.project-nav-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--theme-color);
    transition: width 0.4s ease;
}

.project-nav-card:hover::after {
    width: 100%;
}

/* ENTRY ANIMATION */
.project-nav-card {
    animation: fadeSlideUp 1s ease;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .projects-prev-next-container {
        flex-direction: column;
    }

    .project-nav-card {
        min-height: 180px;
    }
}