* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.my-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.my-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

.my-carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.my-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.my-carousel-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.my-carousel-caption p {
    font-size: 16px;
}

.my-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
}

.my-carousel-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #333;
}

.my-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}