.carousel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 50px auto;
}
@media (max-width: 399px) { 
    .carousel-container {

        width: 350px;
        height: 350px;
       
    }
 }
.carousel-item-all {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
}

.item-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.item-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.icon-circle {
    background-color: #ffb536;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.15);
    }
}

.icon-circle.active {
    background-color: #ffb536;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
    animation: bounce 2s infinite ease-in-out;
}

.icon-circle.active {
    background-color: #ffb536;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.center-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
}
@media (max-width: 399px) { 
    .center-ring {

        width: 270px;
        height: 270px;
       
    }
 }
/* Update your CSS for center-content and fade animation */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* Ensure base opacity is 1 */
}

.fade {
    animation: fadeEffect 0.5s ease-in-out;
}

@keyframes fadeEffect {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.symbol {
    font-size: 24px;
    margin-bottom: 10px;
}

.title {
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    color: #666;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade:not(.show) {
    opacity: 1;
}