.projectSection {
    width: 85%;
    max-width: 85%;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
}

.projectSection > div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 10px;
    overflow: visible;
    overflow-x: auto;
    align-items: center;
    justify-content: flex-start;
}

.projectSection h3 {
    margin: 20px auto;
}

.projectSection div div img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.projectSection div div:hover img {
    transform: scale(1.2);
}

.projectSection div div {
    box-shadow: 0 0 15px rgba(0, 0, 0,0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(1.5px) saturate(180%);
        -webkit-backdrop-filter: blur(1.5px) saturate(180%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.projectSection div div main {
    padding: 5px;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    width: 90%;
    margin-bottom: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.projectSection div div main h5 {
    font-size: 13px;
    color: #333;
}

.projectSection div div main p {
    color: #444;
    font-size: 12px;
}

@media (max-width: 900px) {
    .projectSection {
        width: 95%;
        max-width: 95%;
    }

    .projectSection div div {
        min-width: 240px;
    }
}