#particles-js {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url(images/Background\ websiter.webp);
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.websiter-portfolio {
  margin-top: -140px;
  margin-bottom: 90px;
    font-family: sans-serif;
    color: #ffffff;
    text-align: center; /* Ensure text inside is centered */
}

.websiter-portfolio h1 {
  z-index: 10;
  position: relative;
    font-size: 42px;
    margin: 0;
}

.breadcrumb {
  z-index: 10;
  position: relative;
    font-size: 16px;
    color: #dddddd;
    margin-top: 10px;
}
/* Portfolio header section end */

 /*-----portfolio------*/
 .container_projects {
    margin-top: -20px;
    margin-bottom: 40px;
    padding: 0px 10%;
    position: relative;
   
}
#Portfolio{
    padding: 0px 0;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    padding:0;
}
.work-list-graphics{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    padding:0;}
    
.work-list-logos{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    grid-gap: 30px;
    padding:0;}

.work{
    box-shadow: 0 0 15px rgba(76, 76, 76, 0.7); /* Glowing effect */
    color: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6), #3263f3);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 18px;
    transition: height 0.5s;
}

.layer a{
    margin-top: 20px;
    color: #2E58D8;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius:50%;
    text-align: center;
}
.work:hover img{
transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
.btn-projects{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #3263f3;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    transition:background 0.5s;
}
.btn-projects:hover{
    background:#2E58D8;
}



.filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 5px 10px;
    border: 2px solid #3C5EFB;
    background: white;
    color: #3C5EFB;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #3C5EFB;
    color: white;
}

.filter-btn:hover {
    background: #3C5EFB;
    color: white;
}

/* Hide non-matching items */
.work {
    display: none;
}

.work.active {
    display: block;
}

@media only screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

.websites{
    margin-top:16px;
    margin-bottom:16px;
}
.graphics{
    margin-top:16px;
    margin-bottom:16px;
}
.logos{
    margin-top:16px;
    margin-bottom:16px;
}