    /* Enhanced Interactive About Section with Slider */
    .about-interactive {
        padding: 5rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
    }

    .about-interactive::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    }

    .about-slider {
        position: relative;
        height: 450px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-slider:hover {
        transform: translateY(-5px);
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.9);
    }

    .about-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        transform: translateX(100%) scale(0.95);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 24px;
    }

    .about-slide.active {
        opacity: 1;
        transform: translateX(0) scale(1);
        z-index: 2;
    }

    .about-slide.prev {
        transform: translateX(-100%) scale(0.95);
        opacity: 0.3;
        z-index: 1;
    }

    .about-slide.next {
        transform: translateX(100%) scale(0.95);
        opacity: 0.3;
        z-index: 1;
    }

    .about-slide h3 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 2rem;
        position: relative;
        display: block;
        text-align: center;
        width: 100%;
        padding: 0 2rem;
    }

    .about-slide h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }

    /* This will work for both LTR and RTL languages */
    html[lang="ar"] .about-slide h3,
    html[lang="en"] .about-slide h3 {
        text-align: center;
    }

    html[lang="ar"] .about-slide h3::after,
    html[lang="en"] .about-slide h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-slide p {
        font-size: 1.2rem;
        line-height: 1.7;
        color: #475569;
        max-width: 90%;
    }

    .about-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
    }

    .about-nav-btn {
        width: 60px;
        height: 60px;
        border: none;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .about-nav-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    .about-nav-btn:active {
        transform: scale(0.95);
    }

    .about-dots {
        display: flex;
        gap: 1rem;
    }

    .about-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .about-dot::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        background: transparent;
        transition: all 0.3s ease;
    }

    .about-dot:hover::after {
        background: rgba(59, 130, 246, 0.1);
    }

    .about-dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    /* Progress bar for autoplay */
    .about-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        width: 100%;
        transform-origin: left;
        animation: progressBar 5s linear infinite;
    }

    @keyframes progressBar {
        0% {
            transform: scaleX(0);
        }

        100% {
            transform: scaleX(1);
        }
    }

    /* Enhanced responsive design */
    @media (max-width: 992px) {
        .about-interactive {
            padding: 4rem 0;
        }

        .about-slider {
            height: 400px;
            border-radius: 20px;
        }

        .about-slide {
            padding: 3rem;
        }

        .about-slide h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .about-slide p {
            font-size: 1.1rem;
            max-width: 100%;
        }

        .about-nav-btn {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
    }

    @media (max-width: 768px) {
        .about-slider {
            height: 450px;
        }

        .about-slide {
            padding: 2.5rem;
        }

        .about-navigation {
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .about-interactive {
            padding: 3rem 0;
        }

        .about-slider {
            height: 500px;
            border-radius: 16px;
        }

        .about-slide {
            padding: 2rem 1.5rem;
        }

        .about-slide h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .about-slide p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .about-navigation {
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-nav-btn {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .about-dots {
            gap: 0.8rem;
        }

        .about-dot {
            width: 10px;
            height: 10px;
        }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .about-slide {
            transition: opacity 0.3s ease;
        }

        .about-nav-btn,
        .about-dot {
            transition: none;
        }

        .about-progress {
            animation: none;
        }
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .about-slider {
            border: 2px solid #000;
        }

        .about-slide h3::after {
            background: #000;
        }

        .about-dot.active {
            border: 2px solid #000;
        }
    }