    
        :root {
            --primary-color: #0d6efd;
            --dark-bg: #0b0f19;
            --accent-green: #25d366;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            background-color: #fafafa;
        }

        /* Full Custom Navbar Style */
        .navbar-brand img {
            max-height: 40px;
        }

        /* Premium Technology Hero Slider Adjustments */
        .hero-slider .carousel-item {
            height: 85vh;
            min-height: 500px;
            background-color: #000;
        }
        .hero-slider img {
            object-fit: cover;
            opacity: 0.55;
            height: 100%;
            width: 100%;
        }
        .carousel-caption {
            bottom: unset;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Infinite Moving Project Gallery (Right to Left) */
        .project-marquee {
            display: flex;
            overflow: hidden;
            user-select: none;
            gap: 25px;
            padding: 30px 0;
            background: #f1f3f5;
        }
        .marquee-content {
            flex-shrink: 0;
            display: flex;
            justify-content: space-around;
            min-width: 100%;
            gap: 25px;
            animation: scrollMarquee 30s linear infinite;
        }
        /* Hover to pause animation for interactive feel */
        .project-marquee:hover .marquee-content {
            animation-play-state: paused;
        }
        @keyframes scrollMarquee {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }
        .project-card {
            width: 320px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            background: #fff;
        }
        .project-card:hover {
            transform: translateY(-8px);
        }
        .project-card img {
            height: 180px;
            object-fit: cover;
            cursor: pointer;
        }

        /* Dynamic NWS Voice AI Chatbot Interface */
        #chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }
        .chat-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: var(--accent-green);
            border: none;
            color: white;
            font-size: 26px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }
        .chat-btn:hover {
            transform: scale(1.08);
        }
        .chat-box {
            width: 360px;
            height: 480px;
            background: #fff;
            position: absolute;
            bottom: 85px;
            right: 0;
            border-radius: 20px;
            box-shadow: 0 12px 36px rgba(0,0,0,0.18);
            display: none;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #eef0f2;
        }
        .chat-header {
            background: var(--dark-bg);
            color: white;
            padding: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-logs {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f8f9fa;
            font-size: 14px;
        }
        .chat-input-area {
            display: flex;
            padding: 12px;
            border-top: 1px solid #eee;
            background: #fff;
        }

        /* Mobile Friendliness Fixes */
        @media (max-width: 768px) {
            .hero-slider .carousel-item { height: 70vh; }
            .display-3 { font-size: 2.5rem; }
            .chat-box { width: 300px; height: 420px; right: -10px; }
        }
        
        /*ai asle icon code*/
        .ai-service-icons{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    padding:20px;
}

.icon-box{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:15px;
    transition:0.4s;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.icon-box:hover{
    transform:translateY(-8px);
    background:#00bcd4;
}


.icon-box i{
    font-size:50px;
    margin-bottom:15px;
    color:#00e5ff;
}

.icon-box h3{
    font-size:20px;
    margin:0;
    font-family:Arial,sans-serif;
}


/* CSS: Mobile Friendly & Responsive Making*/
.seo-video-ad-wrapper {
    max-width: 640px; /* मोबाइल और डेस्कटॉप दोनों के लिए परफेक्ट साइज */
    margin: 20px auto;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.ad-label {
    font-size: 11px;
    font-family: sans-serif;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-align: left;
}
.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (मोबाइल पर वीडियो कटेगा नहीं) */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}
.video-responsive-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 2. Services Section with Background Image --- */
        .services-section {
            position: relative;
            padding: 80px 20px;
            /* फास्ट लोडिंग के लिए CSS Linear Gradient के साथ बैकग्राउंड इमेज */
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), 
                        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
            background-attachment: fixed; /* Parallax Effect for Premium Look */
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
        }

        /* Grid Layout for Mobile & Desktop */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Service Cards */
        .service-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: #38bdf8;
            box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .service-name {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .service-desc {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Price Tag & CTA */
        .price-box {
            margin-top: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .price-text {
            font-size: 1.5rem;
            color: #38bdf8;
            font-weight: 700;
        }

        .price-text span {
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: normal;
        }

        .cta-btn {
            background: #38bdf8;
            color: #0f172a;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.2s ease;
        }

        .cta-btn:hover {
            background: #0ea5e9;
        }

        /* --- Mobile Responsiveness Adjustments --- */
        @media (max-width: 768px) {
            .section-title { font-size: 2rem; }
            .services-section { background-attachment: scroll; } /* Disable parallax on mobile for better performance */
            .services-grid { grid-template-columns: 1fr; }
        }
        
        /* CSS: Ultra Light & Fast (No Page Speed Impact) */

    .simple-service-container {
        max-width: 400px;
        margin: 30px auto;
        padding: 20px;
        background: #1e293b; /* Premium Dark Background */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        font-family: 'Segoe UI', Roboto, sans-serif;
        text-align: center;
    }

    .list-title {
        color: #38bdf8; /* SaaS Blue Color */
        font-size: 1.2rem;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .simple-service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .simple-service-list li {
        margin-bottom: 10px;
    }

    .simple-service-list li:last-child {
        margin-bottom: 0;
    }

    .simple-service-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.05);
        color: #f8fafc;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.2s ease;
        border: 1px solid transparent;
    }

    /* Hover Effect for Mobile & Desktop */
    .simple-service-list a:hover {
        background: rgba(56, 189, 248, 0.1);
        border-color: #38bdf8;
        color: #38bdf8;
        transform: translateX(4px);
    }

    .icon {
        margin-right: 12px;
        font-size: 1.1rem;
    }

    .arrow {
        color: #64748b;
        transition: color 0.2s ease;
    }

    .simple-service-list a:hover .arrow {
        color: #38bdf8;
    }

    /* Centering Adjustment for Mobile */
    @media (max-width: 480px) {
        .simple-service-container {
            margin: 20px 15px;
            padding: 15px;
        }
        .simple-service-list a {
            font-size: 0.95rem;
            padding: 10px 14px;
        }
    }
    