/* project-details.css */

/* Padding for content below the fixed header */
body {
    padding-top: 100px; /* Adjust this based on header height */
}

/* Adjust for the larger header */
#project-details {
    padding-top: 100px; /* Add space to account for the new header height */
}

.logo img {
    max-height: 70px; /* Ensure the logo fits within the new header height */
}

.nav-links a {
    font-size: 1rem; /* Keep navigation links readable */
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}



.project-details {
    padding: 4rem 0;
    background-color: var(--white);
}

.project-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-details h2 {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.project-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.project-description h3 {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.project-description p {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-features {
    background-color: var(--gray-50);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
}

.project-features h3 {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.project-features ul {
    list-style: none;
    padding: 0;
}

.project-features li {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.project-features li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.project-gallery h3 {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-testimonials {
    background-color: var(--gray-50);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.project-testimonials h3 {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.project-testimonials blockquote {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
}

.project-testimonials blockquote footer {
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .project-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-features, 
    .project-testimonials {
        padding: 2rem;
    }
}
/* Services Section */
#services {
    padding: 4rem 0;
    background: #f9f9f9;
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

/* Service List */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

/* Service Item */
.service-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}
.project-gallery figure {
    text-align: center;
    margin: 0;
}

.project-gallery figcaption {
    font-style: italic;
    color: #777;
    margin-top: 10px;
}