
        #video-bg {
            position: fixed;
            top: 0;
            left: 0;
            min-width: 100%;
            max-height: 600px;
            z-index: -1;
            object-fit: cover;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,123,255,0.4), rgba(255,0,150,0.4));
            z-index: 0;
            pointer-events: none;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo svg {
            height: 40px;
            margin-right: 10px;
        }
        .banner {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            z-index: 1;
        }
        .banner h1 {
            font-size: 3rem;
            font-weight: bold;
            background: -webkit-linear-gradient(#fff, #00e0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* Feature */
        .feature-icon {
          font-size: 40px;
          color: #0057e7;
        }
        /* Pricing */
        .pricing-card {
          border: 1px solid #ddd;
          border-radius: 10px;
          padding: 20px;
          transition: transform 0.3s, box-shadow 0.3s;
          background: white;
        }
        .pricing-card:hover {
          transform: scale(1.05);
          box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .service-card {
            border-radius: 15px;
            padding: 20px;
            color: white;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            transition: transform 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
        }
        footer {
            background: #111;
            color: white;
            padding: 20px 0;
            text-align: center;
        }