.gallery {
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 30px;
}

.gallery-track {
    display: inline-flex;
}

.gallery-item {
    margin-right: 20px;
    text-align: center;
    width: 300px;
    height: 300px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    text-align: center;
    font-size: 0.8em;
    color: #333;
    padding: 5px;
    margin: 0;
    word-wrap: break-word;
    box-sizing: border-box;
    white-space: normal;
    overflow: hidden;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .gallery {
        overflow-x: hidden;
    }

    .gallery-track {
        display: block; /* Stack items vertically */
    }

    .gallery-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        height: auto;
        display: block; /* Ensure items stack correctly */
    }

    .gallery-item img {
        height: auto;
    }

    .gallery-item p {
        position: relative;
        width: 90%;
        left: 5%;
        margin-top: 5px;
        bottom: auto;
    }
}