.project-filters {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333; /* Adjust based on your theme */
}

.filter-button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: transparent;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-button.active,
.filter-button:hover {
    background-color: #333;
    color: #fff;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-item {
    width: calc(33.333% - 20px);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-item img {
    width: 100%;
    border-radius: 5px;
	object-fit:cover;
    height: 280px;
}

.project-item h3 {
    margin: 10px 0 0;
	font-size:24px;
}

.project-item:hover {
    transform: scale(1.05);
}

.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.gallery-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    text-align: center;
}

.gallery-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.gallery-images a {
    display: inline-block;
    margin: 5px;
}

.gallery-images img {
    max-width: 150px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-images img:hover {
    transform: scale(1.1);
}
.project-category {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-transform: capitalize;
}
.filter-wrap{
    display: flex;
    padding: 40px 0;
    gap:20px;
    align-items: center;
}
@media only screen and (max-width: 600px) {
	.filter-wrap{
		flex-direction: column;
	}
	.project-item {
		width: 100%;
	}
}
.project-image-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.project-image-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 102, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
	border-radius:5px;
}

.project-item:hover .hover-overlay {
    opacity: 1;
}
