*{
    margin: 0;
    padding: 0;
}


body { font-family: Arial, sans-serif; }
.carousel-container {
    width: 80%;
    height: 400px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}
.carousel-item {
    min-width: 100%;
    height: 100%;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.prev { left: 10px; }
.next { right: 10px; }