/* css/style.css */

:root {
    --blue-neon: #00bfff;
    --orange-neon: #ff8c00;
    --dark-bg: #050508;
    --panel-bg: rgba(5, 5, 10, 0.97);
    --card-bg: rgba(15, 15, 25, 0.9);
}

* {
    box-sizing: border-box;
    user-select: none;
}

body {
    background-color: var(--dark-bg); 
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column;
    /*align-items: center; */
    align-items: center; justify-content: space-between; min-height: 100vh;

    min-height: 100vh;
    overflow-x: hidden;
}


#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

.main-container {
    margin-top: 100px;
    text-align: center;
    z-index: 10;
    margin: auto;
    padding: 20px;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: var(--blue-neon);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    text-transform: uppercase;
}

.hero-sub {
    color: #aaaaaa;
    margin-bottom: 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    min-height: 24px; /* Dynamic height reservation for typing effect */
}

.activate-btn {
    background: transparent;
    border: 2px solid var(--blue-neon);
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

.activate-btn:hover {
    background: rgba(0, 191, 255, 0.1);
    box-shadow: 0 0 25px var(--blue-neon);
    text-shadow: 0 0 5px #fff;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    padding-bottom: 40px;
    margin-top: 12%;
    z-index: 10;
}

.nav-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.3;
      /* ✨ Blur effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.nav-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

/* css/style.css - Pure Transparent Outer Border Glow Only */

/* --- BLUE THEME CARDS (Cybersecurity & Freelancing) --- */
.blue-glow-active {
    border-color: var(--blue-neon) !important;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3) !important;
    background: transparent !important; /* Hamesha transparent rahega */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover karne par andar koi color nahi bharega, sirf baahar ka daira aur shadow bright hogi */
.blue-glow-active:hover {
    background: transparent !important; /* Andar se 100% transparent */
    border-color: var(--blue-neon) !important; /* Border poora solid roshan */
    box-shadow: 0 0 25px var(--blue-neon) !important; /* Sirf outer area roshan hoga */
    transform: translateY(-4px); /* Smooth upward bounce effect */
}

/* --- ORANGE THEME CARDS (Smart Batteries & Solar) --- */
.orange-glow-active {
    border-color: var(--orange-neon) !important;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3) !important;
    background: transparent !important; /* Hamesha transparent rahega */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover karne par Orange outer lighting boost */
.orange-glow-active:hover {
    background: transparent !important; /* Andar se 100% transparent */
    border-color: var(--orange-neon) !important; /* Border poora solid roshan */
    box-shadow: 0 0 25px var(--orange-neon) !important; /* Sirf outer area roshan hoga */
    transform: translateY(-4px);
}


/* Data Display Overlays */
.display-panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 700px;
    max-height: 71vh;
    background: var(--panel-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 30px;
    overflow-y: auto;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.close-btn {
    float: right;
    color: #ff4d4d;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
}

#panel-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

#panel-content li {
    margin-bottom: 8px;
}

        /* --- FUTURISTIC SEO CALIBRATED INDUSTRIAL FOOTER STYLES --- */
       .cyber-footer {
            display: flex;
            background: #000000; 
            margin-top: 110px; /* Yeh footer ko upar wale card se sahi fasle par neeche kar dega */
            flex-direction: column;   /* Content ko upar se neeche align karne ke liye */
            justify-content: center;  /* Vertically center (upar/neeche se barabar) */
            align-items: center;      /* Horizontally center (dayen/bayen se barabar) */
            width: 100%;             /* Screen choti ya bari hone par khud ko adjust karega */
            min-height: 400px;        /* Fix height ki jagah min-height use karein taake mobile par text box se bahr na nikle */
            padding: 20px;            /* Mobile screens par text ko sides se jurne se bachane ke liye */
            box-sizing: border-box;   /* Padding ko width ke andar hi manage karne ke liye */
        }
        .footer-text {
            text-align: center;       /* Text ke andar ke words ko center karne ke liye */
            max-width: 1200px;        /* Bari screen par text ko bohot zyada phailne se rokne ke liye */
            width: 100%;
        }
        .footer-upper-matrix {
            display: grid;
            /* Column 1 (Brand Profile) occupies 1.3 fractional space, others share equally */
            grid-template-columns: 1.3fr repeat(4, 1fr);
            gap: clamp(25px, 3vw, 45px);
            max-width: 1240px;
            margin: 0 auto;
            text-align: left;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        /* Brand Profile Column Layouts */
        .footer-logo-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: clamp(15px, 1.8vw, 25px);
        }

        .footer-logo-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            filter: drop-shadow(0 0 5px var(--blue-neon));
        }

        .footer-logo-text {
            font-size: clamp(1.1rem, 1.2vw, 1.4rem);
            font-weight: 800;
            letter-spacing: 1.5px;
        }

        .social-icon-links {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-box {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            opacity: 0.6;
            transition: all 0.25s ease;
        }

        .social-box:hover {
            opacity: 1;
            color: var(--blue-neon);
            text-shadow: 0 0 8px var(--blue-neon);
            transform: scale(1.1);
        }

        .contact-telemetry {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .telemetry-line {
            margin: 0;
            font-size: 0.82rem;
            color: #8c94a6; /* Steel hue for text high-readability */
            line-height: 1.5;
            font-family: system-ui, -apple-system, sans-serif;
        }

        /* 4 Main SEO Categories Heading Nodes */
        .col-header-nodes {
            font-size: clamp(0.85rem, 0.9vw, 1rem);
            color: #ffffff;
            font-weight: 700;
            letter-spacing: 1px;
            margin: 0 0 clamp(15px, 1.5vw, 22px) 0;
            text-transform: uppercase;
            border-left: 2px solid rgba(255, 255, 255, 0.1);
            padding-left: 8px;
        }

        /* SEO Link Phrases Formatting */
        .footer-node-link {
            color: #838a99; /* Slightly darker shade to give hierarchy prominence to headings */
            text-decoration: none;
            font-size: clamp(0.8rem, 0.85vw, 0.92rem);
            margin-bottom: clamp(10px, 1vw, 14px);
            line-height: 1.4;
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
            width: fit-content;
        }

        /* Hover: Changes text white and pulls text 4px right smoothly */
        .footer-node-link:hover {
            color: #ffffff;
            text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
            transform: translateX(4px);
        }

        
        /* Bottom Row Strip */
        .footer-bottom-copyright {
            max-width: 1240px;
            margin: clamp(35px, 4vw, 55px) auto 0 auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright-token {
            font-size: 0.76rem;
            color: #586070;
            font-family: monospace;
            letter-spacing: 0.5px;
        }

        /* Responsive Layout Matrix Configurations */
        @media (max-width: 1100px) {
            .footer-upper-matrix {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .footer-col.brand-profile {
                grid-column: span 2;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
                padding-bottom: 25px;
                margin-bottom: 10px;
            }
            .footer-bottom-copyright {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 580px) {
            .footer-upper-matrix {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-col.brand-profile {
                grid-column: span 1;
            }
            .col-header-nodes {
                margin-bottom: 12px;
            }
        }

        /* --- PREMIUM GLOBAL NAVIGATION BAR --- */
        .top-navbar {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: clamp(65px, 6vw);
            background: rgba(5, 5, 10, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            padding: 0 clamp(20px, 4vw, 60px);
            z-index: 1000;
            box-sizing: border-box;
            justify-content: space-between;
        }

        /* jidr  navbar fix top pr rkhna ho */
        .fixed-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }
        body.fixed-layout {
            padding-top: 85px; /* navbar ki height ke barabar */
        }

        
        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.2vw, 18px);
        }

        .nav-favicon-img {
            width: clamp(32px, 3.2vw, 45px);
            height: clamp(32px, 3.2vw, 45px);
            object-fit: contain;
            filter: drop-shadow(0 0 8px var(--blue-neon)); 
            transition: transform 0.3s ease;
        }

        .nav-favicon-img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .logo-text {
            font-size: clamp(1.1rem, 1.3vw, 1.5rem);
            font-weight: 800;
            letter-spacing: 1.5px;
            font-family: system-ui, -apple-system, sans-serif;
            white-space: nowrap;
        }

        .text-cyber { color: var(--blue-neon); text-shadow: 0 0 10px rgba(0, 191, 255, 0.6); }
        .text-voltix { color: var(--orange-neon); text-shadow: 0 0 10px rgba(255, 140, 0, 0.6); }
        .text-labs {
            background: linear-gradient(to bottom, #ffffff 0%, #a1a8b8 45%, #e1e5ed 55%, #757d8f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            font-weight: 800;
            letter-spacing: 2px;
            filter: drop-shadow(0 0 4px rgba(161, 168, 184, 0.8));
        }

        .nav-divider, .nav-divider-right {
            color: rgba(255, 255, 255, 0.15);
            margin: 0 clamp(15px, 2vw, 30px);
            font-size: clamp(1.1rem, 1.4vw, 1.6rem);
            font-weight: 300;
        }

        .nav-links-center {
            display: flex;
            gap: clamp(20px, 2.5vw, 45px);
            flex: 1;
        }

        .nav-item {
            color: #cccccc;
            text-decoration: none;
            font-size: clamp(0.85rem, 0.95vw, 1.05rem);
            font-weight: 600;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-item:hover, .nav-item.active {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue-neon);
            transition: width 0.3s ease;
            box-shadow: 0 0 8px var(--blue-neon);
        }

        .nav-item:hover::after, .nav-item.active::after {
            width: 100%;
        }

        .nav-icons-right { display: flex; gap: clamp(15px, 1.8vw, 30px); align-items: center; }
        .icon-link { color: #ffffff; text-decoration: none; font-size: clamp(1.1rem, 1.2vw, 1.4rem); opacity: 0.7; transition: all 0.2s ease; }
        .icon-link:hover { opacity: 1; color: var(--blue-neon); transform: scale(1.15); text-shadow: 0 0 10px var(--blue-neon); }

        /* Responsive Overrides */
        @media (max-width: 900px) {
            .nav-links-center, .nav-divider, .nav-divider-right { display: none; }
            .top-navbar { justify-content: space-between; padding: 0 20px; }
        }


        .products-page-container {
            position: relative;   /* apna stacking context banaye */
            z-index: 50;          /* canvas ke upar */
            width: 95%;
            max-width: 1300px; /* Layout width thodi badha di taake teeno cards fit ho sakein */
            margin: 40px auto;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .page-header {
            border-bottom: 2px solid var(--blue-neon);
            padding-bottom: 25px;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .back-btn {
            background: transparent;
            border: 1px solid var(--blue-neon);
            color: var(--blue-neon);
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .back-btn:hover {
            background: var(--blue-neon);
            color: #000;
            box-shadow: 0 0 15px var(--blue-neon);
        }
        .products-grid {
            display: flex;
            flex-wrap: wrap; /* Grid ki jagah Flexbox lagaya jo items ko squeeze hone se bachaega */
            justify-content: center;
            gap: 25px;
            width: 100%;
            position: relative;   /* apna stacking context banaye */
            z-index: 50;          /* canvas ke upar */

        }
        
        /* products page pr nihchy fixed products cards with prices*/
        .product-card {
            background: rgba(255, 255, 255, 0.08); /* slightly stronger transparency */
            border: 1px solid rgba(0, 191, 255, 0.15);
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            flex: 1 1 300px;       /* minimum width */
            max-width: 360px;      /* prevent oversized cards */
            box-sizing: border-box;
            position: relative;    /* stacking context */
            z-index: 50;           /* above canvas */

            /* ✨ Blur effect */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px); /* Safari support */
        }

        .product-card:hover {
            border-color: var(--orange-neon);
            box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
            transform: translateY(-5px);
        }
        .product-image {
            max-width: 150px;
            height: 150px;
            object-fit: cover;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 8px var(--blue-neon));
        }


        /*front page pr products ki ads k lie */
        .product-slider {
            overflow: hidden;
            width: 100%;
            padding: 20px 0;
        }

        .slider-track {
            display: flex;
            animation: scroll 25s linear infinite;
        }

        .slider-track img {
            width: 400px;   /* pehle 250px thi, ab zyada rakho */
            height: 300px;   /* image proportion maintain karegi */
            margin: 0 20px;
            border-radius: 8px;
            box-shadow: 0 0 15px #00f0ff;
        }


        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

