.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.project-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f7c146;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #0B4E3D;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.project-card-share {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}
.project-card-share:hover {
    background: #0B4E3D;
    color: #fff;
}
.project-card-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.project-card-title-wrap h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-family: 'DM Serif Text', serif;
    line-height: 1.3;
}
.project-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.project-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}
.project-card-details {
    margin-bottom: 0px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #0c5f82;
    margin-bottom: 8px;
    font-weight: bold;
}
.project-card-details i {
    color: #198754 !important;
}
.detail-item i {
    color: #999;
    width: 16px;
}
.detail-item.contributor {
    color: #0c5f82;
    font-weight: bold;
}
.detail-item.contributor i {
    color: #00897B;
}
.project-card-progress {
    margin-bottom: 20px;
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #444;
}
.progress-percent {
    color: #00897B;
}
.progress-bar-container {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: #00897B;
    border-radius: 4px;
}
.project-card-footer {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.project-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}
.view-details {
    color: #0B4E3D;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.view-details i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.view-details:hover i {
    transform: translateX(5px);
}
. p r o j e c t - c a r d - s h a r e   {   c u r s o r :   p o i n t e r ;   } 
 
 