

.album-container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.project-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.project-card {
    width: calc(33% - 20px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.project-card .details {
    padding: 15px;
}

.project-card .details h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.project-card .details p {
    font-size: 15px;
	
	
   
}

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

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination-btn {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    margin: 5px;
	font-weight: bold;
}

.page-numbers {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
	font-weight: bold;
}

.page-numbers li {
    cursor: pointer;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.dots {
    font-weight: bold;
    cursor: default;
    padding: 0 9px;
}

.page-numbers .active {
    background-color: green;
    color: white;
}
 @media (max-width: 768px) {
    .project-card {
        width: 100%;
    }
}

@media (max-width: 1080px) {
    .project-card {
        width: 100%;  
    }
}
@media (min-width: 769px) and (max-width: 992px) {
  .project-card {
    width: calc(50% - 20px);
  }
}


@media (min-width: 1920px) {
  .album-container {
    max-width: 1600px;
  }
}

