.client-project-container {
    margin-top: 64px;
    margin-bottom: 32px;
}

.client-project-title,
.certificate-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 54px;
    line-height: 115%;
    color: var(--color-text-text-950);
    margin-bottom: 32px;
}

.certificate-container {
    margin-top: 64px;
}

.client-project-card-container .client-project-card,
.client-certificate-card-container .client-certificate-card {
    border: 1px solid var(--color-neutral-neutral-300);
    border-radius: 12px;
    margin-bottom: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-project-card-container .client-project-card:hover,
.client-certificate-card-container .client-certificate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary-primary-500);
}

.client-project-card-container .client-project-card .card-header,
.client-certificate-card-container .client-certificate-card .card-header {
    display: flex;
    flex-direction: column;
    padding: 24px 30px;
    width: 100%;
}

.client-project-card-container .client-project-card .card-footer,
.client-certificate-card-container .client-certificate-card .card-footer {
    display: flex;
    flex-direction: row;
    padding: 22.5px 30px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.client-project-card-container .client-project-card .card-header .category,
.client-certificate-card-container
    .client-certificate-card
    .card-header
    .category {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-primary-primary-500);
}

.client-project-card-container .client-project-card .card-header .title,
.client-certificate-card-container
    .client-certificate-card
    .card-header
    .title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 22px;
    line-height: 125%;
    color: var(--color-text-text-950);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #333;
    font-size: 18px;
    font-weight: 600;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    z-index: 10002;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95) translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-more {
    cursor: pointer;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: var(--color-primary-primary-500);
}

.footer .banner-footer-services {
    background: var(--color-neutral-neutral-950);
    height: 394px;
    width: 100%;
    position: relative;
}

.footer .banner-footer-services .img-w-vector-dark {
    position: absolute;
    bottom: 50%;
    right: 30%;
    transform: translate(50%, 50%);
}

.footer .banner-footer-services .banner-text-container p {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 72px;
    line-height: 115%;
    color: var(--color-text-text-50);
}

.footer .banner-footer-services .banner-text-services {
    gap: 48px;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.footer
    .banner-footer-services
    .banner-text-container
    .banner-text-services
    button
    i {
    rotate: 320deg;
    margin-left: 10px;
}

@media (max-width: 768px) and (min-width: 425px) {
    .client-project-title,
    .certificate-title {
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 32px;
        line-height: 120%;
        color: var(--color-text-text-950);
    }

    .certificate-title {
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 32px;
        line-height: 120%;
        color: var(--color-text-text-950);
    }

    .lightbox-content {
        max-width: 98%;
        max-height: 98%;
    }

    .lightbox-image-container {
        max-height: 75vh;
    }

    .lightbox-image {
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }

    .lightbox-navigation {
        padding: 0 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .lightbox-counter {
        bottom: -40px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .footer .banner-footer-services {
        height: 300px;
    }

    .footer .banner-footer-services .banner-text-services p {
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 32px;
        line-height: 110%;
        color: var(--color-text-text-50);
    }

    .footer .banner-footer-services .img-w-vector-dark {
        right: 50%;
        width: 200px;
        height: auto;
    }
}

@media (max-width: 424px) {
    .lightbox-image-container {
        max-height: 70vh;
    }

    .lightbox-image {
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .lightbox-counter {
        bottom: -35px;
        font-size: 11px;
        padding: 4px 10px;
    }

    .client-project-title,
    .certificate-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .client-project-container {
        margin-top: 32px;
        margin-bottom: 20px;
    }

    .client-project-card-container .client-project-card .card-header .category,
    .client-certificate-card-container
        .client-certificate-card
        .card-header
        .category {
        font-size: 14px;
    }

    .client-project-card-container .client-project-card .card-header .title,
    .client-certificate-card-container
        .client-certificate-card
        .card-header
        .title {
        font-size: 18px;
    }

    .client-project-card-container .client-project-card .card-footer .view-more,
    .client-certificate-card-container
        .client-certificate-card
        .card-footer
        .view-more {
        font-size: 14px;
    }

    .certificate-container {
        margin-top: 32px;
    }

    .footer .banner-footer-services .banner-text-container p {
        font-size: 24px;
    }

    .footer .banner-footer-services .banner-text-services {
        gap: 20px;
    }

    .footer .banner-footer-services .banner-text-container button {
        font-size: 14px;
    }

    .footer .banner-footer-services {
        height: 180px;
    }

    .footer .banner-footer-services .img-w-vector-dark {
        position: absolute;
        bottom: 41%;
        right: 30%;
        transform: translate(50%, 50%);
        width: 200px;
        height: auto;
    }
}

@media (max-width: 321px) {
    .footer .banner-footer-services .img-w-vector-dark{
        right: 32%;
    }
}