.abouttext {
    position: relative;
    overflow: hidden;
/*    background: rgba(255, 255, 255, 0.8);*/
    padding: 0px 20px 00px 20px;
    border-radius: 10px;
}

.bubble {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    animation: rise infinite ease-in-out;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Glow effect */
    
    /* Bubble color with shine effect */
    background: radial-gradient(circle at 30% 30%,  
        rgba(255, 255, 255, 0.9) 10%, /* Bright white center */
        rgba(212, 183, 115, 0.7) 60%, /* Your specified color */
        rgba(212, 183, 115, 0.8) 100% /* Fading effect */
    );
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}