<style>
        /* --- 1. GLOBAL VARIABLES & RESET --- */
        :root {
            --nq-blue: #005a9c;       /* NetQuest Blue */
            --nq-blue-hover: #0077cc; 
            --nq-dark: #0f0f11;       /* Deep Main Background */
            --nq-card: #1a1a1e;       /* Card Background */
            --nq-gray: #888888;       
            --text-main: #eeeeee;
            --text-muted: #aaaaaa;
            
            /* Modern accents */
            --feat-green: #25D366;
            --feat-orange: #ff9800;
            --feat-red: #ff4444;
            --gold-gradient: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);
        }

        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--nq-dark);
            color: var(--text-main);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        a { 
            text-decoration: none; 
            color: inherit; 
        }

        /* --- 2. HEADER & NAVIGATION --- */
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--nq-blue);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo { 
            color: white; 
            font-weight: 800; 
            letter-spacing: 1.5px; 
            font-size: 1.4rem; 
            transition: color 0.3s ease;
            text-transform: uppercase;
        }
        .logo span {
            color: var(--nq-blue);
            transition: color 0.3s ease;
        }
        .logo:hover, .logo:hover span { 
            color: var(--nq-blue-hover) !important; 
        }

        /* Mobile Nav Button */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            color: var(--text-muted);
            margin-left: 25px;
            font-size: 0.85rem;
            font-weight: bold;
            text-transform: uppercase;
            transition: color 0.3s, transform 0.3s;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--nq-blue);
            transition: width 0.3s ease;
        }
        nav a:hover::after, nav a.active::after {
            width: 100%;
        }
        nav a.active, nav a:hover { 
            color: white; 
        }

        /* --- 3. SCROLL-ANIMATION CLASSES (JS triggered) --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- 4. FULL-SCREEN HERO WITH MOUNTAIN BANNER --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 5%;
            text-align: center;
            /* Combines dynamic atmospheric dark styling overlaying a mountain WISP environment background */
            background: linear-gradient(180deg, rgba(15,15,17,0.4) 0%, rgba(15,15,17,0.95) 100%), 
                        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('index2.png') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            position: relative;
        }
        .hero-content {
            max-width: 900px;
            z-index: 2;
        }
        .hero h1 { 
            font-size: 3.5rem; 
            margin: 0 0 15px 0; 
            color: #fff; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.6);
            line-height: 1.2;
        }
        .hero h2 {
            font-size: 1.5rem;
            color: var(--text-main);
            font-weight: 400;
            margin-bottom: 20px;
        }
        .hero p { 
            font-size: 1.25rem; 
            color: var(--text-muted); 
            margin: 20px auto 40px; 
            max-width: 700px;
        }

        /* Hero Badges / Interactive Network Status Panel */
        .status-container {
            display: inline-flex;
            align-items: center;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
        }
        .status-pulse {
            width: 10px;
            height: 10px;
            background-color: var(--feat-green);
            border-radius: 50%;
            margin-right: 10px;
            box-shadow: 0 0 10px var(--feat-green);
            animation: pulse 1.8s infinite;
        }
        .status-text {
            font-size: 0.85rem;
            font-weight: bold;
            color: #fff;
            letter-spacing: 0.5px;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* --- BUTTONS STYLING --- */
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .btn-primary, .btn-secondary {
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background-color: var(--nq-blue);
            color: white !important;
            border: 2px solid var(--nq-blue);
            box-shadow: 0 4px 15px rgba(0, 90, 156, 0.4);
        }
        .btn-primary:hover {
            background-color: transparent;
            color: var(--nq-blue) !important;
            box-shadow: none;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: white !important;
            border: 2px solid white;
        }
        .btn-secondary:hover {
            background-color: white;
            color: black !important;
            transform: translateY(-2px);
        }

        /* --- 5. STATS COUNTER SECTION --- */
        .stats-section {
            background: #0a0a0c;
            padding: 50px 10%;
            border-bottom: 1px solid #1f1f25;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item h3 {
            font-size: 2.8rem;
            color: var(--nq-blue);
            margin-bottom: 5px;
            font-weight: 800;
        }
        .stat-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- 6. CHECK COVERAGE INTERACTIVE SECTION --- */
        .coverage-checker {
            background: linear-gradient(135deg, #111115 0%, #171720 100%);
            padding: 80px 10%;
            border-bottom: 1px solid #222;
        }
        .coverage-wrapper {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .coverage-wrapper h2 {
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 15px;
        }
        .coverage-wrapper p {
            color: var(--text-muted);
            margin-bottom: 30px;
        }
        .search-box {
            display: flex;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid #333;
            border-radius: 50px;
            padding: 6px 6px 6px 20px;
            max-width: 600px;
            margin: 0 auto;
            align-items: center;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: var(--nq-blue);
        }
        .search-box i {
            color: var(--nq-blue);
            font-size: 1.2rem;
            margin-right: 15px;
        }
        .search-box input {
            background: none;
            border: none;
            outline: none;
            color: #fff;
            font-size: 1rem;
            flex-grow: 1;
        }
        .search-box button {
            background: var(--nq-blue);
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: var(--nq-blue-hover);
        }

        /* --- 7. WHY CHOOSE US CARDS --- */
        .why-choose-us {
            padding: 100px 10%;
            background-color: var(--nq-dark);
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: 2.5rem;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--nq-blue);
            margin: 15px auto 0;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background: var(--nq-card);
            border: 1px solid #222;
            padding: 40px 30px;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px; height: 100%;
            background: var(--nq-blue);
            transform: scaleY(0);
            transition: transform 0.3s;
            transform-origin: bottom;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #333;
        }
        .feature-card:hover::before {
            transform: scaleY(1);
        }
        .feat-icon {
            font-size: 2.5rem;
            color: var(--nq-blue);
            margin-bottom: 20px;
        }
        .feature-card h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 15px;
        }
        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* --- 8. FEATURED INTERNET PACKAGES --- */
        .packages-section {
            background: #0d0d11;
            padding: 100px 10%;
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }
        .package-card {
            background: var(--nq-card);
            border: 1px solid #25252b;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: transform 0.3s, border-color 0.3s;
        }
        .package-card:hover {
            transform: translateY(-10px);
        }
        .package-card.popular {
            border: 2px solid var(--nq-blue);
            transform: scale(1.03);
        }
        .package-card.popular:hover {
            transform: scale(1.03) translateY(-10px);
        }
        .badge-popular {
            background: var(--gold-gradient);
            color: #000;
            font-weight: 800;
            font-size: 0.75rem;
            padding: 6px 16px;
            border-radius: 50px;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pack-title {
            font-size: 1.4rem;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .pack-price {
            margin: 20px 0;
        }
        .pack-price .amount {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
        }
        .pack-price .period {
            font-size: 1rem;
            color: var(--text-muted);
        }
        .pack-features {
            list-style: none;
            padding: 0; margin: 30px 0;
            text-align: left;
            border-top: 1px solid #2d2d35;
            padding-top: 20px;
        }
        .pack-features li {
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pack-features li i {
            color: var(--nq-blue);
        }
        .pack-btn {
            display: block;
            width: 100%;
            background: #25252b;
            border: 1px solid #3a3a45;
            color: #fff;
            padding: 12px;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: 0.3s;
        }
        .package-card.popular .pack-btn {
            background: var(--nq-blue);
            border-color: var(--nq-blue);
        }
        .package-card.popular .pack-btn:hover {
            background: var(--nq-blue-hover);
        }
        .pack-btn:hover {
            background: #fff;
            color: #000;
        }

        /* --- 9. LOCAL SEO & CONTENT SECTION --- */
        .local-seo-section {
            padding: 80px 10%;
            background: var(--nq-card);
        }
        .seo-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .seo-card h3 {
            color: var(--nq-blue);
            font-size: 1.4rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .seo-card p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* --- 10. INSTALLATION TIMELINE --- */
        .timeline-section {
            padding: 100px 10%;
            background: var(--nq-dark);
        }
        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
        }
        .timeline-item {
            text-align: center;
            position: relative;
        }
        .step-num {
            width: 60px;
            height: 60px;
            background: var(--nq-card);
            border: 2px solid var(--nq-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--nq-blue);
            margin: 0 auto 20px;
            box-shadow: 0 0 15px rgba(0, 90, 156, 0.2);
            position: relative;
            z-index: 2;
        }
        .timeline-item h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .timeline-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- 11. HARDWARE BRAND HIGHLIGHTS (MikroTik & Ubiquiti) --- */
        .hardware-brands {
            background: #121216;
            padding: 80px 10%;
            text-align: center;
            border-top: 1px solid #1f1f25;
            border-bottom: 1px solid #1f1f25;
        }
        .brands-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        .brand-logo-card {
            background: var(--nq-card);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 25px 45px;
            border-radius: 8px;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            transition: 0.3s;
            min-width: 200px;
        }
        .brand-logo-card.ubnt {
            color: #005a9c; /* Ubiquiti Blue */
        }
        .brand-logo-card.mikrotik {
            color: #e21a22; /* MikroTik Red Accent */
        }
        .brand-logo-card:hover {
            transform: scale(1.05);
            border-color: var(--nq-blue);
        }

        /* --- PRODUCT GRID --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .product-card {
            background: var(--nq-card);
            border: 1px solid #333;
            border-radius: 8px;
            overflow: hidden;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover { border-color: var(--nq-blue); transform: translateY(-5px); }
        .product-img-wrapper { background: #000; padding: 20px; display: flex; justify-content: center; align-items: center; height: 180px; }
        .product-img-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
        .card-details { padding: 20px; text-align: center; }
        .plan-title { color: white; font-weight: bold; text-transform: uppercase; font-size: 1rem; margin-bottom: 5px; }
        .spec-line { color: var(--text-muted); font-size: 0.85rem; }
        .category-tag { height: 3px; width: 40px; background: var(--nq-blue); margin: 0 auto 15px; }

        /* --- 12. CUSTOMER TESTIMONIALS --- */
        .testimonials {
            padding: 100px 10%;
            background: var(--nq-dark);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 45px;
        }
        .testimonial-card {
            background: var(--nq-card);
            border: 1px solid #222;
            padding: 40px 30px;
            border-radius: 8px;
            position: relative;
        }
        .testimonial-card i.quote-icon {
            font-size: 2.5rem;
            color: rgba(0, 90, 156, 0.15);
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .stars {
            color: #ff9800;
            margin-bottom: 15px;
        }
        .testimonial-card p {
            color: var(--text-main);
            font-style: italic;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        .client-info h5 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 2px;
        }
        .client-info span {
            color: var(--nq-blue);
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* --- 13. STRONG CALL-TO-ACTION (CTA) --- */
        .strong-cta {
            background: linear-gradient(135deg, var(--nq-blue) 0%, #003366 100%);
            padding: 80px 10%;
            text-align: center;
            border-top: 4px solid var(--nq-blue);
        }
        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #fff;
        }
        .cta-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 35px;
            color: rgba(255,255,255,0.9);
        }

        /* --- 14. FLOATING WHATSAPP SUPPORT BUTTON --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--feat-green);
            color: white !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 2px 5px 15px rgba(0,0,0,0.4);
            z-index: 1000;
            transition: transform 0.3s, background 0.3s;
        }
        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
            background: #20b855;
        }

        /* --- UNIFIED FOOTER STYLING --- */
        footer {
            background: #111; 
            color: white;
            padding: 60px 10% 20px 10%;
            margin-top: auto;
            border-top: 4px solid var(--nq-blue);
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .f-col {
            flex: 1;
            min-width: 200px;
        }
        .f-col h3 {
            color: var(--nq-blue);
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .f-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .f-col ul li {
            margin-bottom: 12px;
        }
        .f-col ul li a {
            color: var(--text-muted);
            font-size: 0.95rem;
            text-decoration: none; 
            transition: 0.3s;
        }
        .f-col ul li a:hover {
            color: var(--nq-blue);
            padding-left: 5px; 
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #222;
            color: #555;
            font-size: 0.85rem;
        }

        /* --- 15. MOBILE RESPONSIVENESS MEDIA QUERIES --- */
        @media (max-width: 991px) {
            .hero h1 { font-size: 2.8rem; }
            .hero h2 { font-size: 1.3rem; }
            .nav-toggle { display: block; }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0,0,0,0.95);
                padding: 30px 0;
                border-bottom: 2px solid var(--nq-blue);
            }
            nav.mobile-active {
                display: flex;
            }
            nav a {
                margin: 15px 0;
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .hero-btns { flex-direction: column; gap: 15px; }
            .strong-cta h2 { font-size: 2rem; }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
                padding: 15px;
                gap: 15px;
            }
            .search-box input { width: 100%; text-align: center; }
            .search-box button { width: 100%; }
        }
    </style>