/* Single Project Styles */

.single-project-wrapper {
    background-color: #F8F9FA;
    padding: 80px 0 120px;
}

/* Banner area */
.project-banner {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    margin-bottom: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Inner shadow/gradient for better text readability on the banner */
.project-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.project-banner-title {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 500;
    margin: 0;
    padding: 40px 60px;
}

.project-banner-nav {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
    display: flex;
    gap: 16px;
}

.project-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
}

.project-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

/* 2-Column Content Layout */
.project-details-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sidebar */
.project-sidebar {
    padding-top: 10px;
}

.project-details-label {
    font-size: 14px;
    font-weight: 700;
    color: #4A5B69;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content Typography */
.project-intro-text {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.project-intro-text .intro-dark {
    color: #011529;
    font-weight: 500;
}

.project-intro-text .intro-light {
    color: #90A0B0;
    font-weight: 400;
}

.project-standard-content {
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 60px;
}

.project-standard-content p {
    margin-bottom: 24px;
}

/* Services We Did Section */
.project-services-section {
    margin-top: 40px;
}

.services-we-did-label {
    font-size: 14px;
    font-weight: 700;
    color: #4A5B69;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.project-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-services-list li {
    font-size: 15px;
    color: #011529;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid #E4E7EC;
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-services-list li:first-child {
    border-top: 1px solid #E4E7EC;
}

.service-arrow {
    display: flex;
    align-items: center;
    color: #667085;
    /* Grayed out arrow color */
}

/* Responsive */
@media (max-width: 991px) {
    .project-details-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-banner {
        height: 450px;
    }

    .project-intro-text {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .project-banner {
        height: 350px;
        border-radius: 12px;
        margin-bottom: 40px;
    }

    .project-banner-title {
        font-size: 30px;
        padding: 20px 30px;
    }

    .project-banner-nav {
        bottom: 20px;
        right: 30px;
    }

    .project-intro-text {
        font-size: 22px;
    }

    .single-project-wrapper {
        padding: 60px 0;
    }
}