/* ===========================================
PORTFOLIO DETAILS PAGE
============================================== */
.work-detail-page-banner h1,
.work-detail-page-banner p {
    text-align: left;
}
.work-detail-page-banner .breadcrumb {
    justify-content: left;
}
.work-detail-page-banner .banner-content {
    max-width: 830px;
    /*margin: auto;*/
}
.work-detail-page-banner p {
    font-family: var(--jdg-extra-font-family);
}
.work-detail-page-banner h1 {
    letter-spacing: -1px;
}
.project-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.project-details-info {
    display: flex;
    gap: 4rem;
}
.project-details-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.project-details-label {
    font-family: var(--jdg-extra-font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #999999;
}
.project-details-value {
    font-family: var(--jdg-heading-font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--jdg-white);
}
.project-details-hero {
    margin-bottom: 4rem;
}
.project-details-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.project-details-overview {
    margin-bottom: 4rem;
}
.project-details-title {
    font-family: var(--jdg-heading-font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 28px;
    color: var(--jdg-white);
}
.project-details-text {
    font-family: var(--jdg-extra-font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #c2c2c2;
}
.project-details-challenges {
    margin-bottom: 4rem;
}
.project-details-list {
    padding-left: 18px;
}
.project-details-list li {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    color: var(--jdg-gray);
    line-height: 36px;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    position: relative;
}
.project-details-results {
    margin-bottom: 4rem;
}
.project-details-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}
.project-details-stat-item {
    text-align: left;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.project-details-stat-item:last-child {
    border-right: none;
}
.project-details-stat-number {
    font-family: var(--jdg-heading-font-family);
    font-weight: 300;
    font-size: 100px;
    line-height: 100%;
    color: #ffffffcc;
}
.project-details-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}
.project-details-gallery {
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.project-gallery-slider {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-gallery-slide {
    position: absolute;
    width: 70%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
.project-gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}
.project-gallery-slide.pgs-active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 3;
    pointer-events: auto;
}
.project-gallery-slide.pgs-left {
    opacity: 0.4;
    transform: scale(0.85) translateX(-85%);
    z-index: 1;
    pointer-events: auto;
}
.project-gallery-slide.pgs-right {
    opacity: 0.4;
    transform: scale(0.85) translateX(85%);
    z-index: 1;
    pointer-events: auto;
}
.project-gallery-slide.pgs-hidden {
    opacity: 0;
    transform: scale(0.7);
    z-index: 0;
}
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.project-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-gallery-dot.pgs-dot-active {
    background: var(--jdg-btn-gradient);
    width: 24px;
    border-radius: 5px;
}
.project-details-testimonial {
    background: #111112;
    border: 1px solid #29292a;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 4rem;
}
.project-details-stars {
    color: #ff8000;
    display: grid;
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.project-details-testimonial-text {
    font-family: var(--jdg-heading-font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    color: var(--jdg-white);
    margin-bottom: 25px;
}
.project-details-author {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}
.project-details-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
}
.project-details-nav-link {
    font-family: Funnel Display;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--jdg-white);
    text-decoration: none;
}
.project-details-nav-link:hover {
    color: #ffffff;
}
.project-details-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 8px);
    grid-template-rows: repeat(3, 8px);
    gap: 6px;
}
.project-details-nav-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-details-nav-dot:hover {
    background: var(--jdg-btn-gradient);
}