.project-thumbnail img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.carousel-wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}
.carousel-slide {
    flex: none;
    scroll-snap-align: start;
}
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.funding-progress-container {
    margin-top: 20px;
}
.funding-progress {
    width: 100%;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.funding-progress-bar {
    height: 20px;
    background: #4CAF50;
    width: 0%;
    transition: width 1s ease-in-out;
}
.countdown {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}
