* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f3f3;
}

.carousel {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
}

.list {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.item img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease; /* Zoom effect */
}

.item img:hover {
    transform: scale(1.1); /* Zoom in on hover */
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.indicators {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(0, 0, 0, 0.9);
}

.dot:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.footer {
    margin-top: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 14px;
    background-color: #f3f3f3;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.footer p {
    margin: 0;
}

.footer strong {
    color: #007bff;
    font-weight: bold;
}
