/* Bubble canvas styling */
    #bubble-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    /* Features Section Styling */
    .features-section {
        padding: 20px 40px 100px 40px;
        background-color: transparent;
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        position: relative; /* for bubbles */
        z-index: 1;
    }

    .section-title {
        text-align: center;
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 70px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.9s ease;
    }

    .swiper {
        width: 100%;
        padding-bottom: 30px;
    }

    .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        padding: 30px;
        border: 2px solid #b142a6;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: auto;
    }
       /* Correct CSS syntax for swiper navigation size */
    :root { --swiper-navigation-size: 25px; }
    .swiper-slide:hover {
        transform: scale(0.99);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        border-radius: 50px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .swiper-slide h3,
    .swiper-slide p {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #b52dac;
        width: 50px;
    }

    .swiper-pagination-bullet {
        background: #b52dac;
    }

    @media (max-width: 480px) {
        .swiper-slide { padding: 20px; }
        .feature-icon { width: 100px; height: 100px; }
        .swiper-slide h3, .swiper-slide p { font-size: 14px; }
    }

    /* Active class for animation */
    .animate-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    h1, h2, h3 {
    margin: 0;
    padding: 0;
    color: #9C27B0;
    direction: rtl;
    }
    p {
    padding: 0;
    margin: 0;
    color: #3f103f;
    direction: rtl;
    }