@charset "utf-8";
/* CSS Document */
     

        .video-banner-container {
            position: relative;
            width: 100%;
            height: 120vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
			            box-sizing: border-box;

        }

        .video-banner {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .content-overlay {
            position: relative;
            z-index: 2;
            width: 90%;
            max-width: 1200px;
            padding: 40px;
            border-radius: 12px;
            margin-top: 20px;
        }

        .content-overlay h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffffff;text-align: right;direction: rtl
        }

        .content-overlay p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ffffff;text-align: right;direction: rtl
        }

       
        /* Mobile styles */
        @media (max-width: 768px) {
            .video-banner-container {
                height: 450px;
            }
            
            .content-overlay {
                padding: 25px;
                margin-top: -70px;
            }
            
            .content-overlay h1 {
                font-size: 2rem;
            }
            
            .content-overlay p {
                font-size: 1rem;
            }
        }

        /* Demo content styles */
        .demo-content {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-content h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature h3 {
            color: #3498db;
            margin-bottom: 15px;
        }
