:root {
            --bg-main: #0a0f1c; 
            --deep-purple: #36013F; 
            --glass-dark: #341539; 
            --text-main: #f1f5f9;
            --text-muted: #cbd5e1;
            --primary: #FFC107; 
            --primary-dark: #FFB300;
            --btn-text: #2D0135; 
            --radius: 20px; 
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Hind Siliguri', sans-serif;
            scroll-behavior: smooth;
            cursor: none !important;
        }

        html, body {
            width: 100%;
            min-height: 100vh;
            background: var(--bg-main);
            color: var(--text-main);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .global-cursor {
            position: fixed;
            top: 0; 
            left: 0;
            width: 25px; 
            height: 25px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            mix-blend-mode: difference;
            transform: translate3d(-50%, -50%, 0);
            transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        background 0.3s ease, border 0.3s ease, opacity 0.3s;
            will-change: transform, width, height, background;
            opacity: 0;
        }

        .global-cursor.active {
            opacity: 1;
        }

        .global-cursor.hovering {
            width: 75px; 
            height: 75px;
            background: rgba(255, 193, 7, 0.1);
            border: 2px solid var(--primary);
            mix-blend-mode: normal;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
        }

        a, button, .btn, .icon-btn, .location-card, .contact-card {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.3s;
            will-change: transform;
        }

        #network-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at top right, #1e293b, #0a0f1c 80%);
            will-change: transform;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 5%;
            background: transparent; 
            border-bottom: none;
            height: 85px;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 15, 28, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            display: inline-block;
        }

        .logo img, .logo video {
            height: 55px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            will-change: transform;
        }

        .logo:hover img, .logo:hover video {
            transform: scale(1.1);
        }

        .nav-center { display: flex; gap: 2.5rem; }
        
        .nav-center a { 
            color: #cbd5e1; 
            text-decoration: none; 
            font-size: 1.05rem; 
            font-weight: 500; 
            position: relative; 
            display: inline-block; 
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s;
            will-change: transform;
        }
        
        .nav-center a:hover { 
            color: var(--primary); 
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.4); 
            transform: scale(1.25); 
        }

        .nav-actions { display: flex; align-items: center; gap: 15px; }
        .icon-btn { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: inline-flex; align-items: center; justify-content: center; color: #94a3b8; border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; }
        .icon-btn:hover { background: rgba(255, 193, 7, 0.15); color: var(--primary); border-color: var(--primary); transform: translateY(-3px) scale(1.15); }

        .btn-glass { padding: 0.6rem 1.2rem; border-radius: 50px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.15); color: #e2e8f0; text-decoration: none; font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
        .btn-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; transform: scale(1.1); }

        .btn-gradient { padding: 0.6rem 1.5rem; border-radius: 50px; background: var(--primary); color: var(--btn-text) !important; text-decoration: none; font-weight: 700; font-size: 0.95rem; border: none; box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3); white-space: nowrap; display: inline-block; }
        .btn-gradient:hover { background: var(--primary-dark); transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5); }

        .btn-Store { padding: 0.6rem 1.2rem; border-radius: 50px; background: rgba(255, 193, 7, 0.08); border: 1px solid var(--primary); color: var(--primary); text-decoration: none; font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
        .btn-Store:hover { background: var(--primary); color: var(--btn-text); box-shadow: 0 0 20px rgba(255, 193, 7, 0.5); transform: translateY(-3px) scale(1.1); }

        .menu-icon { display: none; color: #fff; font-size: 1.8rem; transition: transform 0.3s; }
        .menu-icon:hover { transform: scale(1.1); }

        .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: rgba(10, 15, 28, 0.98); backdrop-filter: blur(20px); display: flex; flex-direction: column; padding-top: 80px; gap: 1.5rem; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5); z-index: 999; border-left: 1px solid rgba(255,255,255,0.1); }
        .nav-links.active { right: 0; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-size: 1.1rem; padding: 10px 30px; }
        .nav-links a:hover { color: var(--primary); background: rgba(255,255,255,0.03); padding-left: 35px; transform: scale(1.02); }

        /* Media Query adjusted to 1400px to ensure mobile Desktop Site view shows full Menu Bar */
        @media (max-width: 850px) { .nav-center, .nav-actions { display: none; } .menu-icon { display: block; z-index: 1000; } }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: transparent;
            touch-action: pan-y;
        }
        
        .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; will-change: transform, opacity; }
        .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; will-change: transform; transform: scale(1.05); }
        .slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 15, 28, 0.9) 0%, rgba(10, 15, 28, 0.4) 50%, rgba(255, 193, 7, 0.1) 100%); z-index: 1; pointer-events: none; }
        .slide-content { position: absolute; top: 50%; left: 8%; transform: translateY(-40%); opacity: 0; z-index: 2; pointer-events: none; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); will-change: transform, opacity; }
        .slide.active .slide-content { opacity: 1; transform: translateY(-50%); transition-delay: 0.4s; }
        
        .slider-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 180px; 
            background: linear-gradient(to bottom, rgba(54, 1, 63, 0) 0%, rgba(54, 1, 63, 0.8) 60%, var(--deep-purple) 100%);
            backdrop-filter: blur(8px); 
            -webkit-backdrop-filter: blur(8px);
            mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
            z-index: 10;
            pointer-events: none;
        }

        .speed-badge { display: inline-block; background: rgba(255, 193, 7, 0.15); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(255, 193, 7, 0.3); text-transform: uppercase; }
        .tech-title { font-size: 4.5rem; color: #ffffff; margin-bottom: 15px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
        .highlight { color: var(--primary); position: relative; display: inline-block; }
        .tech-subtitle { font-size: 1.35rem; color: #cbd5e1; margin-bottom: 40px; max-width: 650px; line-height: 1.6; }
        
        .hero-ctas { pointer-events: auto; display: flex; gap: 1.5rem; flex-wrap: wrap; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; }
        .btn-primary { background: var(--primary); color: var(--btn-text); box-shadow: 0 0 20px rgba(255, 193, 7, 0.4); border: 1px solid transparent; }
        .btn-primary:hover { background: var(--primary-dark); box-shadow: 0 0 35px rgba(255, 193, 7, 0.6); transform: translateY(-5px) scale(1.05); }
        .btn-outline { background: rgba(255,255,255,0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; backdrop-filter: blur(5px); }
        .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-5px) scale(1.05); }

        .announcement-bar {
            background: rgba(0, 0, 0, 0.2); 
            padding: 15px 5%;
            display: flex;
            align-items: center;
            color: #fff;
            position: relative;
            z-index: 20;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .announcement-icon {
            color: var(--primary);
            font-size: 1.3rem;
            margin-right: 15px;
            animation: pulse 2s infinite;
        }
        .announcement-text {
            flex: 1;
            overflow: hidden;
            white-space: nowrap;
        }
        .announcement-text marquee {
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #e2e8f0;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.15); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        .purple-theme-wrapper {
            position: relative;
            z-index: 10;
            background-color: var(--deep-purple);
            background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #f1f5f9;
            padding-bottom: 5rem;
        }
        
        .purple-theme-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(54, 1, 63, 0.92); 
            z-index: -1;
        }

        .section-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.5rem; text-align: center; color: #ffffff; letter-spacing: -1px; }
        .section-subtitle { text-align: center; color: #cbd5e1; margin-bottom: 3.5rem; font-size: 1.2rem; }

        .packages { padding: 6rem 5% 3rem; position: relative; z-index: 10; }
        .pricing-container { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; perspective: 1000px; }
        
        .price-card { 
            width: 350px; 
            background: linear-gradient(145deg, rgba(52, 21, 57, 0.6), rgba(0, 0, 0, 0.8)); 
            backdrop-filter: blur(25px) saturate(180%); 
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 28px; 
            padding: 3rem 2.5rem; 
            position: relative; 
            text-align: left; 
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border-color 0.4s ease;
            will-change: transform, box-shadow;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.05); 
            overflow: hidden; 
        }

        .price-card:hover, .price-card.touch-popup { 
            transform: translateY(-25px) scale(1.05); 
            box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 30px rgba(255, 193, 7, 0.3); 
            border-color: rgba(255, 193, 7, 0.8); 
            z-index: 5;
        }

        .popular-badge { 
            position: absolute; 
            top: 25px; 
            right: -35px; 
            background: linear-gradient(45deg, var(--primary-dark), var(--primary)); 
            color: var(--btn-text); 
            padding: 8px 40px; 
            transform: rotate(45deg); 
            font-weight: 800; 
            font-size: 0.95rem; 
            box-shadow: 0 5px 20px rgba(0,0,0,0.4); 
            z-index: 2; 
        }

        .card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
        .package-name { font-size: 1.6rem; color: #fff; font-weight: 800; }
        
        .price { 
            background: rgba(0,0,0,0.5); 
            padding: 8px 20px; 
            border-radius: 30px; 
            color: var(--primary); 
            font-weight: 700; 
            font-size: 1.1rem; 
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
        }
        
        .speed { 
            font-size: 4rem; 
            font-weight: 800; 
            margin: 1.5rem 0 2.5rem; 
            color: #ffffff; 
            display: flex; 
            align-items: baseline; 
            gap: 8px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
            line-height: 1;
        }
        .speed span { font-size: 1.2rem; color: #cbd5e1; font-weight: 600; }
        
        .features-list { list-style: none; margin-bottom: 3rem; }
        .features-list li { margin: 1.2rem 0; color: #e2e8f0; font-size: 1.05rem; display: flex; align-items: center; font-weight: 500; }
        
        .features-list i { 
            color: var(--primary); 
            background: rgba(255, 193, 7, 0.1);
            margin-right: 15px; 
            font-size: 1.1rem; 
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .btn-card { 
            display: block; 
            text-align: center; 
            padding: 1.2rem; 
            border-radius: 16px; 
            text-decoration: none; 
            font-weight: 700; 
            background: rgba(255, 193, 7, 0.9); 
            color: var(--btn-text); 
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .btn-card:hover { background: var(--primary); box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5); transform: translateY(-5px) scale(1.05); }

        .speed-test-section { 
            text-align: center; 
            padding: 4rem 2rem; 
            margin: 3rem auto 4rem; 
            max-width: 900px; 
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(15px);
            border-radius: 30px; 
            border: 1px solid rgba(255, 255, 255, 0.08); 
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            z-index: 11;
            position: relative;
        }
        
        .btn-speed { margin-top: 2rem; background: var(--primary); color: var(--btn-text); padding: 1.2rem 3rem; border-radius: 50px; font-weight: 800; font-size: 1.2rem; box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3); display: inline-flex; align-items: center; gap: 10px; }

        .support-section { padding: 4rem 5%; position: relative; z-index: 10;}
        .support-container { max-width: 750px; margin: 0 auto; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255,255,255,0.15); border-radius: 28px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .support-tabs { display: flex; gap: 15px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
        .tab-btn { flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.1); color: #cbd5e1; padding: 15px; border-radius: 16px; font-size: 1.05rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .tab-btn.active, .tab-btn:hover { background: rgba(255, 193, 7, 0.1); border-color: var(--primary); color: var(--primary); transform: translateY(-3px) scale(1.02); }
        .tab-content { display: none; animation: fadeIn 0.4s ease; }
        .tab-content.active { display: block; }
        .input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        
        input, select, textarea { width: 100%; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 20px; border-radius: 16px; color: #fff; font-size: 1rem; outline: none; transition: 0.3s; }
        textarea { margin-bottom: 20px; }
        input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15); transform: translateY(-2px); }
        .custom-select option { background: var(--deep-purple); color: #fff; }
        
        .btn-submit, .btn-check-status { width: 100%; padding: 15px; background: var(--primary); border: none; border-radius: 16px; color: var(--btn-text); font-weight: 800; font-size: 1.1rem; }
        .btn-submit:hover, .btn-check-status:hover { background: var(--primary-dark); box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4); }
        
        .coverage-section { padding: 5rem 5%; position: relative; z-index: 10;}
        .coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
        .location-card { background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255,255,255,0.15); border-radius: 24px; padding: 30px 20px; text-align: center; position: relative; overflow: hidden; }
        .loc-icon { width: 60px; height: 60px; background: rgba(255, 193, 7, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); font-size: 1.8rem; transition: 0.4s; border: 1px solid rgba(255,193,7,0.1); }
        .location-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0; }
        .location-card:hover { transform: translateY(-12px) scale(1.05); border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5); background: rgba(0,0,0,0.4); }
        .location-card:hover .loc-icon { background: var(--primary); color: var(--btn-text); transform: scale(1.15) rotate(10deg); }
        .coming-soon { border-style: dashed; opacity: 0.6; }

        .contact-section { padding: 5rem 5%; text-align: center; position: relative; z-index: 10;}
        .contact-cards { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
        .contact-card { background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 28px; padding: 3rem; min-width: 280px; }
        .contact-card:hover { transform: translateY(-15px) scale(1.05); border-color: rgba(255,255,255,0.25); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .contact-link { color: var(--primary); text-decoration: none; font-weight: 800; font-size: 1.4rem; transition: color 0.3s; }
        .contact-link:hover { color: #fff; }
        .icon-glow { color: var(--primary); margin-bottom: 1.5rem; filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.5)); font-size: 3rem; }

        @media (max-width: 768px) { 
            .slide-content { top: 55%; left: 5%; right: 5%; }
            .tech-title { font-size: 2.2rem; margin-bottom: 12px; line-height: 1.2; letter-spacing: 0; }
            .tech-subtitle { font-size: 1rem; margin-bottom: 25px; }
            .speed-badge { padding: 6px 14px; font-size: 0.85rem; margin-bottom: 15px; }
            .hero-ctas { flex-direction: column; width: 100%; gap: 1rem; }
            .hero-ctas .btn { width: 100%; }
            .slider-container::after { height: 100px; }
            .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
            .input-group { grid-template-columns: 1fr; gap: 15px; } 
            .section-title { font-size: 2.2rem; }
            .packages { padding: 3rem 5%; }
            .price-card { padding: 2rem 1.5rem; width: 100%; max-width: 350px; margin: 0 auto; }
            .price-card:hover, .price-card.touch-popup { transform: translateY(-10px) scale(1.02); }
        }

        footer { padding: 4rem 5% 3rem; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(25px); border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 10;}
        .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
        .footer-left h3 { color: #fff; font-size: 1.8rem; }
        .social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 50%; margin-left: 1rem; color: #fff; font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.1); }
        .social-icons a:hover { background: var(--primary); color: var(--btn-text); transform: translateY(-8px) scale(1.1); box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4); }

        .chat-launcher { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: var(--primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 5px 25px rgba(255, 193, 7, 0.5); z-index: 9999; }
        .chat-launcher:hover { transform: scale(1.15) rotate(-10deg); background: var(--primary-dark); }
        .chat-launcher i { font-size: 2rem; color: var(--btn-text); transition: transform 0.3s; }
        
        .chat-window { position: fixed; bottom: 110px; right: 30px; width: 380px; height: 550px; background: rgba(20, 0, 25, 0.98); backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 28px; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.6); z-index: 9999; opacity: 0; visibility: hidden; transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); will-change: transform, opacity; }
        .chat-window.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
        .chat-header { background: var(--primary); padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; color: var(--btn-text); }
        .bot-avatar { width: 40px; height: 40px; background: rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,0,0,0.2); font-size: 1.2rem; }
        .chat-body { flex: 1; padding: 25px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
        .message { max-width: 85%; padding: 14px 18px; font-size: 1rem; line-height: 1.5; word-wrap: break-word; border-radius: 18px; }
        .bot-message { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255,255,255,0.05); }
        .chat-footer { padding: 20px; background: rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 12px; }
        .chat-footer input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 14px 18px; border-radius: 30px; color: #fff; font-size: 1rem; outline: none; transition: 0.3s; }
        .chat-footer input:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
        .chat-footer button { background: var(--primary); border: none; width: 50px; height: 50px; border-radius: 50%; color: var(--btn-text); display: flex; justify-content: center; align-items: center; font-size: 1.2rem; transition: 0.3s; }
        .chat-footer button:hover { transform: scale(1.1); background: var(--primary-dark); }

/* =========================================================
   Compatibility styles for existing index.html logic/options
   ========================================================= */

/* Mobile menu action buttons from existing index.html */
.mobile-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 30px;
    display: block;
    transition: 0.3s;
}
.mobile-link:hover {
    color: var(--primary);
    padding-left: 35px;
}
.nav-links .mobile-btn {
    width: 85%;
    margin: 8px auto;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

/* Preserve current section text spacing with Mamun theme */
.section-subtitle,
.packages > div > p,
.speed-test-section > p,
.support-section .container > p,
.coverage-section .container > p,
.contact-section > p {
    text-align: center;
    color: #cbd5e1 !important;
}

/* Existing support ticket status result card */
.status-search-box {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: stretch;
}
.status-search-box input {
    margin-bottom: 0;
}
.status-search-box .btn-check-status {
    width: auto;
    min-width: 130px;
    padding-left: 28px;
    padding-right: 28px;
}
.ticket-result-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    padding: 22px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.04), 0 15px 35px rgba(0,0,0,0.25);
}
.ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticket-id {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}
.ticket-body p {
    margin: 8px 0;
    color: #e2e8f0;
    line-height: 1.6;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
}
.badge.processing { background: rgba(255, 193, 7, 0.16); color: var(--primary); border: 1px solid rgba(255, 193, 7, 0.28); }
.badge.solved { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.28); }
.badge.pending { background: rgba(244, 63, 94, 0.15); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.28); }
.technician-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 18px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.18);
}
.tech-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--btn-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.tech-name {
    color: #fff;
    font-weight: 800;
    margin: 3px 0;
}
.tech-phone {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

/* Existing full chatbot logic */
.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-info h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}
.status-text {
    font-size: 0.78rem;
    opacity: 0.88;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--btn-text);
}
.status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
}
.close-chat {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    color: var(--btn-text);
    transition: 0.3s;
}
.close-chat:hover {
    transform: rotate(90deg) scale(1.08);
    background: rgba(0,0,0,0.22);
}
.user-message {
    align-self: flex-end;
    background: var(--primary);
    color: var(--btn-text);
    font-weight: 700;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 10px 22px rgba(255, 193, 7, 0.16);
}
.bot-message {
    align-self: flex-start;
    border-radius: 18px 18px 18px 4px;
}
.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.chip {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.45);
    color: var(--primary);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: none !important;
    transition: 0.25s;
}
.chip:hover {
    background: var(--primary);
    color: var(--btn-text);
    transform: translateY(-2px);
}
.typing-indicator {
    display: none;
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    padding: 10px 15px;
    border-radius: 15px;
    width: fit-content;
}
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
    margin: 0 2px;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
.chat-body::-webkit-scrollbar { width: 5px; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(255, 193, 7, 0.25); border-radius: 10px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }

/* Maintenance popup kept from existing index logic */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-content {
    background: rgba(20, 0, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3rem 2rem;
    border-radius: 28px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 0 35px rgba(255, 193, 7, 0.2);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.popup-overlay.active .popup-content { transform: scale(1); }
.popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}
.popup-icon i {
    font-size: 2.5rem;
    animation: spin-wrench 2s infinite ease-in-out;
}
.popup-content h2 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.popup-content p { color: #cbd5e1; font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.btn-popup {
    background: var(--primary);
    color: var(--btn-text);
    border: none;
    padding: 12px 35px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(255, 193, 7, 0.25);
}
@keyframes spin-wrench {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    50% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}

/* Center popup notification used by support ticket logic */
#notification-container {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#notification-container.active {
    opacity: 1;
    visibility: visible;
}
.toast {
    background: rgba(20, 0, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px;
    border-radius: 26px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 45px rgba(255, 193, 7, 0.22);
    transform: scale(0.82);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
#notification-container.active .toast { transform: scale(1); }
.toast-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.toast.success .toast-icon { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.toast.error .toast-icon { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.toast h3 { margin: 0; font-size: 1.5rem; color: #fff; }
.toast p { margin: 0; color: #cbd5e1; line-height: 1.55; }
.btn-toast-close {
    margin-top: 12px;
    padding: 11px 32px;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: var(--btn-text);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(255, 193, 7, 0.25);
}

/* Floating APK download button kept from existing index.html */
.floating-dl-btn {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 9999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 1;
    animation: floatBtn 3s infinite ease-in-out;
}
.floating-dl-btn .dl-logo { width: 18px; height: auto; }
.floating-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .status-search-box { flex-direction: column; }
    .status-search-box .btn-check-status { width: 100%; }
    .support-tabs { flex-direction: column; }
    .chat-window {
        width: calc(100% - 24px);
        height: min(560px, calc(100vh - 125px));
        right: 12px;
        bottom: 92px;
        border-radius: 24px;
    }
    .chat-launcher {
        right: 18px;
        bottom: 22px;
        width: 58px;
        height: 58px;
    }
    .floating-dl-btn {
        bottom: 10px;
        left: 10px;
        padding: 5px 10px;
    }
    .floating-dl-btn .dl-logo { width: 16px; }
    .dl-txt-small { font-size: 0.5rem !important; display: none; }
    .dl-txt-large { font-size: 0.75rem !important; line-height: 1 !important; }
}

@media (pointer: coarse) {
    * { cursor: auto !important; }
    .global-cursor { display: none; }
}

/* =========================================================
   Smooth animation + performance polish update
   ========================================================= */
html { scroll-padding-top: 92px; }

body::before {
    content: '';
    position: fixed;
    inset: -20%;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 193, 7, 0.14), transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(168, 85, 247, 0.13), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(20, 184, 166, 0.10), transparent 28%);
    animation: bgMeshMove 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes bgMeshMove {
    from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
    to { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}

.hero-energy,
.hero-orbit {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    will-change: transform, opacity;
}

.hero-energy {
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.38;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.24), rgba(255, 193, 7, 0.04) 42%, transparent 70%);
    animation: heroGlowFloat 8s ease-in-out infinite;
}
.hero-energy-one { top: 14%; right: 8%; }
.hero-energy-two { width: 300px; height: 300px; bottom: 12%; left: 48%; animation-delay: -3s; opacity: 0.24; }

.hero-orbit {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-top-color: rgba(255, 193, 7, 0.7);
    border-radius: 999px;
    opacity: 0.36;
    animation: orbitSpin 16s linear infinite;
}
.hero-orbit-one { width: 260px; height: 260px; top: 24%; right: 13%; }
.hero-orbit-two { width: 150px; height: 150px; top: 36%; right: 22%; animation-duration: 10s; animation-direction: reverse; }

@keyframes heroGlowFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-18px, 18px, 0) scale(1.08); }
}
@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}

.slide.active .speed-badge { animation: heroItemIn 0.7s 0.08s both, badgePulse 2.4s 1s ease-in-out infinite; }
.slide.active .tech-title { animation: heroItemIn 0.8s 0.18s both; }
.slide.active .tech-subtitle { animation: heroItemIn 0.8s 0.30s both; }
.slide.active .hero-ctas { animation: heroItemIn 0.8s 0.42s both; }

@keyframes heroItemIn {
    from { opacity: 0; transform: translate3d(0, 24px, 0); filter: blur(6px); }
    to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 193, 7, 0); }
    50% { box-shadow: 0 0 28px rgba(255, 193, 7, 0.30); }
}

.tech-title .highlight {
    background: linear-gradient(90deg, #ffc107, #fff3b0, #ffc107);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3.8s linear infinite;
}
.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform-origin: left;
    animation: underlineSweep 2.8s ease-in-out infinite;
}
@keyframes textShine { to { background-position: 220% center; } }
@keyframes underlineSweep {
    0%, 100% { transform: scaleX(0.28); opacity: 0.45; }
    50% { transform: scaleX(1); opacity: 1; }
}

.btn,
.btn-glass,
.btn-gradient,
.btn-Store,
.btn-submit,
.btn-check-status,
.btn-speed,
.btn-card {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
.btn::after,
.btn-glass::after,
.btn-gradient::after,
.btn-Store::after,
.btn-submit::after,
.btn-check-status::after,
.btn-speed::after,
.btn-card::after {
    content: '';
    position: absolute;
    inset: -60% -30%;
    background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.32) 50%, transparent 65%);
    transform: translateX(-120%) rotate(8deg);
    transition: transform 0.75s ease;
    pointer-events: none;
}
.btn:hover::after,
.btn-glass:hover::after,
.btn-gradient:hover::after,
.btn-Store:hover::after,
.btn-submit:hover::after,
.btn-check-status:hover::after,
.btn-speed:hover::after,
.btn-card:hover::after { transform: translateX(120%) rotate(8deg); }

.announcement-bar {
    background: linear-gradient(90deg, rgba(0,0,0,0.22), rgba(255,193,7,0.08), rgba(0,0,0,0.22));
    background-size: 220% 100%;
    animation: announceFlow 7s linear infinite;
}
@keyframes announceFlow { to { background-position: 220% 0; } }

.section-title {
    background: linear-gradient(90deg, #ffffff, #ffc107, #ffffff);
    background-size: 180% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 6s linear infinite;
}
@keyframes titleGlow { to { background-position: 180% center; } }

.price-card::before,
.location-card::before,
.contact-card::before,
.speed-test-section::before,
.support-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(255, 193, 7, 0.18), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.price-card::after,
.location-card::after,
.contact-card::after,
.speed-test-section::after,
.support-container::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255,193,7,0.55), transparent 32%, rgba(255,255,255,0.18)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.price-card:hover::before,
.location-card:hover::before,
.contact-card:hover::before,
.speed-test-section:hover::before,
.support-container:hover::before,
.price-card:hover::after,
.location-card:hover::after,
.contact-card:hover::after,
.speed-test-section:hover::after,
.support-container:hover::after { opacity: 1; }

.price-card .speed { animation: speedFloat 3.8s ease-in-out infinite; }
.price-card:nth-child(2) .speed { animation-delay: -1.2s; }
.price-card:nth-child(3) .speed { animation-delay: -2.2s; }
@keyframes speedFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.features-list li { transition: transform 0.28s ease, color 0.28s ease; }
.price-card:hover .features-list li { color: #fff; }
.price-card:hover .features-list li:nth-child(1) { transform: translateX(5px); }
.price-card:hover .features-list li:nth-child(2) { transform: translateX(9px); }
.price-card:hover .features-list li:nth-child(3) { transform: translateX(13px); }

.location-card,
.contact-card,
.speed-test-section,
.support-container,
.price-card { transform: translateZ(0); }

.chat-launcher::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255,193,7,0.45);
    animation: chatRing 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes chatRing {
    from { transform: scale(0.8); opacity: 0.9; }
    to { transform: scale(1.35); opacity: 0; }
}

.chat-window.active .message { animation: messagePop 0.35s ease both; }
@keyframes messagePop {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.packages,
.support-section,
.coverage-section,
.contact-section,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

@media (max-width: 768px) {
    body::before { animation-duration: 28s; opacity: 0.75; }
    .hero-energy,
    .hero-orbit { display: none; }
    .purple-theme-wrapper { background-attachment: scroll; }
    .announcement-bar { animation: none; }
    .price-card .speed { animation: none; }
    .packages,
    .support-section,
    .coverage-section,
    .contact-section,
    footer { contain-intrinsic-size: 520px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
    .global-cursor { display: none !important; }
}

/* Required positioning for glow layers added above */
.support-container,
.contact-card {
    position: relative;
    overflow: hidden;
}
