

.bubble-carousel {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 25px 0;
    display: flex;
    align-items: center;
	overflow:hidden;
    justify-content: center;
}

.carousel-container {
    flex: 1;
    max-width: calc(100vw - 120px);
    overflow: visible;
    position: relative;
    padding: 12px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    padding: 0 20px;
}

.carousel-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.carousel-item:hover {
    transform: translateY(-10px);
}

.bubble {
    position: relative;
    width: 100px;
    height: 100px;

    overflow: hidden;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),


}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bubble-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;

    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.carousel-item:hover .bubble {
    transform: scale(1.1);

}

.carousel-item:hover .bubble-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

.carousel-item:hover .bubble img {
    transform: scale(1.05);
}

.carousel-item.active .bubble {
    border-color: #ffd700;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.carousel-item.active .bubble-glow {
    opacity: 0.8;
    animation: pulse 1.5s infinite;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    transition: transform 0.2s ease;
}

.carousel-arrow:hover svg {
    transform: scale(1.2);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.content {
    margin-top: 145px;
    padding: 40px 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.show-content {
    display: none;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.show-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.show-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.show-content p {
    font-size: 1.2em;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-6px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg); 
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-container {
        max-width: calc(100vw - 100px);
    }
    
    .carousel-track {
        gap: 15px;
        padding: 0 15px;
    }
    
    .bubble {
        width: 60px;
        height: 60px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    
    .content {
        margin-top: 125px;
        padding: 20px 15px;
    }
    
    .show-content h2 {
        font-size: 2em;
    }
    
    .show-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: calc(100vw - 80px);
    }
    
    .carousel-track {
        gap: 12px;
        padding: 0 10px;
    }
    
    .bubble {
        width: 50px;
        height: 50px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    
    .bubble-carousel {
        padding: 20px 0;
    }
    
    .content {
        margin-top: 105px;
    }
}

/* Carousel specific animations for smooth scrolling */
.carousel-track.transitioning {
    pointer-events: none;
}

/* Hide scrollbars */
.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}