.project-detail-hero {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 76px;
    position: relative;
}

.project-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.project-detail-hero h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
    margin-bottom: 20px;
}

.project-meta-hero {
    display: flex;
    gap: 30px;
    font-size: 16px;
    opacity: 0.9;
    flex-wrap: wrap;
}

.project-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.project-content-section {
    padding: 80px 0;
    background: white;
}

.project-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.project-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2e7d32;
    margin: 40px 0 20px 0;
}

.project-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2e7d32;
    margin: 30px 0 15px 0;
}

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

.btn-back {
    background: #4caf50;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.btn-back:hover {
    background: #2e7d32;
    transform: translateY(-2px);
    color: white;
}

.widget {
    margin-bottom: 30px;
}

.widget .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.widget .card-title {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-member-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.team-member-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #4caf50;
}

.team-member-info h6 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.team-member-info small {
    color: #666;
}

.info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #4caf50;
}

.info-label {
    font-weight: 600;
    color: #2e7d32;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    color: #333;
    font-weight: 500;
}

.gallery-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-projects-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 40px;
    text-align: center;
}

.related-project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-project-card .card-body {
    padding: 25px;
}

.related-project-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.status-badge-hero {
    background: rgba(76, 175, 80, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .project-detail-hero {
        height: 350px;
    }
    
    .project-detail-hero h1 {
        font-size: 32px;
    }
    
    .project-meta-hero {
        flex-direction: column;
        gap: 15px;
    }
}