/* حاوية الفقاعات */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* حتى لا تتداخل مع تفاعل المستخدم */
    z-index: -1; /* خلف المحتوى */
}

/* شكل الفقاعة */
.bubble {
    position: absolute;
    bottom: -50px; /* تبدأ من أسفل الشاشة */
    width: 30px;
    height: 30px;
    background-color: rgba(7, 207, 207, 1.0);
    border-radius: 50%;
    animation: rise infinite linear;
    opacity: 0.8;
}

/* حركة الفقاعة للأعلى */
@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh); /* تتحرك للأعلى */
        opacity: 0;
    }
}

/* تنسيق عام للصور 
.o_card_img {
    transition: transform 0.3s ease-in-out; 
    width: 100%;  
    height: auto;  
    border-radius: 10px; 
}*/

/* تأثير التكبير عند التحويم */
.o_card_imgo:hover {
    transform: scale(1.1) !important; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important; 
}
.s_banner {
    width: 1500px;  
    height: 500px;  
    object-fit: cover; 
    margin: 0 auto;  
    display: block;
}