.image-showcase-section {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.photo-carousel {
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    animation: slideCarousel 20s linear infinite;
}

.carousel-track img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    margin: 0 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

@media (max-width: 768px) {
    .carousel-track img {
        max-width: 250px;
        height: 200px;
        margin: 0 10px;
    }
}

