        :root {
            --bg-deep: #000000;
            --bg-accent: #020617;
            --primary: #00d2ff;    /* Logo Cyan */
            --secondary: #9333ea;  /* Logo Purple */
            --accent: #fb923c;     /* Logo Orange */
            --text-main: #ffffff;
            --text-muted: #94a3b8;
            --glass: rgba(15, 23, 42, 0.4);
            --glass-border: rgba(0, 210, 255, 0.15);
        }

        html { box-sizing: border-box; -webkit-font-smoothing: antialiased; scroll-behavior: smooth;}

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            background-color: var(--bg-deep);
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Ambient Background */
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 0% 0%, #1e1b4b 0%, #000000 50%),
                        radial-gradient(circle at 100% 100%, #1e293b 0%, #000000 50%);
            z-index: -1;
            opacity: 0.6;
        }

        /* --- NAVIGATION --- */
        header {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            padding: 8px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
        }

        .logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        
        .logo-img { height: 50px; width: auto; transition: transform 0.3s ease; border-radius: 12px; }
        .logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 700; letter-spacing: -1px; color: var(--text-main); }
        .logo-text span { color: var(--primary); }

        nav { display: flex; align-items: center; }
        
        /* UPDATED: Nav Links - Larger, bolder, with gradient hover */
        nav a, .dropbtn {
            color: var(--text-main);
            margin-left: 25px;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 700; /* Increased boldness */
            font-size: 1.05rem; /* Increased size based on your image */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }

        /* Gradient Hover Effect */
        nav a:hover, .dropdown:hover .dropbtn { 
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* NEW: Dropdown Menu CSS */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(2, 6, 23, 0.95);
            backdrop-filter: blur(15px);
            min-width: 200px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 10px 0;
            z-index: 2000;
            top: 150%; /* Pushed down slightly for breathing room */
            left: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
        }

        .dropdown-content a {
            color: var(--text-main);
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            margin: 0;
            font-size: 0.9rem;
            text-transform: none; /* Keep dropdown items readable */
            letter-spacing: 0.5px;
            -webkit-text-fill-color: initial; /* Resets gradient text */
        }

        .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.05);
            /* Gradient applies again on hover via nav a:hover rule */
        }

        .btn-login {
            background: transparent;
            border: 1px solid var(--primary);
            padding: 8px 25px;
            border-radius: 50px;
            cursor: pointer;
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            margin-left: 25px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }
        .btn-login:hover { background: var(--primary); color: #000; box-shadow: 0 0 20px rgba(0, 210, 255, 0.4); }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            padding: 140px 4% 100px;
            text-align: center;
            min-height: 100vh;
            overflow: hidden;
        }

        #heroVideo {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }


        .hero h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.2rem, 8vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        /* ===== NEURAL HERO ENHANCEMENT ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
            z-index: 0;
        }

        #particleCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 20px;
        }

        .hero-content h2 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: #ffffff;
            max-width: 800px;
            margin: 0 auto;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            padding: 16px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px -5px rgba(147, 51, 234, 0.5);
        }
        .btn-primary:hover { transform: scale(1.05); box-shadow: 0 15px 30px -5px rgba(0, 210, 255, 0.6); }

        
        .btn-secondary {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            padding: 6px 14px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px -5px rgba(147, 51, 234, 0.5);
        }
        .btn-secondary:hover { transform: scale(1.05); box-shadow: 0 15px 30px -5px rgba(0, 210, 255, 0.6); }



        /* --- SECTIONS & BENTO GRID --- */
        .section { padding: 30px 4%; max-width: 1300px; margin: 0 auto; }
        
        /* UPDATED: Section Headings are now Gradient */


        h1 {font-size: 2.0rem; 
            text-align: center;
            border-radius: 16px;
            padding: 4px 8px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            /*width: fit-content;*/ 
            
           }
        
        .section h2 { 
            font-family: 'Space Grotesk', sans-serif; 
            font-size: 2.5rem; 
            margin-bottom: 40px; 
            display: flex; 
            align-items: center; 
            gap: 15px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section h2::after { content: ""; height: 1px; flex-grow: 1; background: linear-gradient(to right, var(--glass-border), transparent); }

        .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

        .card {
            background: var(--glass);
            border-radius: 24px;
            border: 2px solid var(--glass-border);
            transition: all 0.4s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        
        .card:hover { transform: translateY(-10px); border-color: var(--secondary); box-shadow: 0 60px 100px -60px rgba(136, 46, 219, 0.5); }

        .card-img { width: 100%; height: 200px; object-fit: cover; filter: grayscale(50%) brightness(70%); transition: 0.5s; }
        .card:hover .card-img { filter: grayscale(0%) brightness(100%); transform: scale(1.05); }

        .card-body { padding: 30px; }
        
        /* UPDATED: Card Headings to bright white for high contrast */
        .card h3 { color: #ffffff; font-size: 1.4rem; margin-top: 0; font-family: 'Space Grotesk'; letter-spacing: -0.5px; }
        .card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
        .card i { color: var(--primary); margin-bottom: 20px; }

        .about-content { columns: 2; column-gap: 40px; color: var(--text-muted); font-size: 1.1rem; }

        /* --- NEW: MISSION & VISION SECTION --- */
        .mv-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .mv-card {
            background: rgba(2, 6, 23, 0.7);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 0 25px rgba(0, 210, 255, 0.3), inset 0 0 15px rgba(0, 210, 255, 0.1);
        }
        .mv-header-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            color: #fff;
        }
        .mv-header-row i {
            color: var(--text-main);
        }
        .mv-header-row h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            margin: 0;
            letter-spacing: 1px;
            color: #fff;
        }
        .mv-card h4 {
            color: var(--primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 15px;
        }
        .mv-card p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0;
        }
        
        /* Readiness Bar */
        .readiness-box {
            background: rgba(2, 6, 23, 0.8);
            border: 3px solid var(--glass-border);
            border-radius: 8px;
            padding: 20px 30px;
            max-width: 650px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .readiness-title {
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-align: center;
            margin-bottom: 15px;
        }
        .readiness-title span {
            color: var(--primary);
        }
        .r-bar-track {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            position: relative;
        }
        .r-bar-fill {
            position: absolute;
            top: 0; left: 0;
            height: 100%;
            width: 80%;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            border-radius: 10px;
            box-shadow: 0 0 15px var(--primary);
        }

        /* --- SCROLL ANIMATIONS --- */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform; /* Hardware acceleration */
        }
        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- FORM INPUTS (Contact & Modal) --- */
        .form-input {
            width: 100%; padding: 12px 15px; margin-bottom: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--glass-border);
            border-radius: 8px; color: white;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }
        #contact a:hover {
            color: var(--primary) !important;
            transition: 0.3s ease;
        }
        .form-input:focus { outline: none; border-color: var(--primary); background: rgba(0, 210, 255, 0.05); }
        /*for career page code starts*/
        #careers .grid-container {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
        }

        #careers .card {
            border-radius: 18px;
        }

        #careers .card-img {
            height: 180px;
        }

        #careers .card-body {
            padding: 20px;
        }

        #careers .card h3 {
            font-size: 1.15rem;
        }

        #careers .card p {
            font-size: 0.9rem;
        }
        /*for career page code ends*/
        /* Career Cards */
        #careers .grid-container {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        #careers .card-img {
            height: 180px;
        }
        .modal-content {
            max-height: 85vh;
            overflow: hidden;
        }
        /* ===== CAREER MODAL WIDER + INVISIBLE SCROLL ===== */
        .modal-content {
            width: 96%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 40px;
            scroll-behavior: smooth;
        }

        .modal-content::-webkit-scrollbar {
            width: 0;
            display: none;
        }

        .modal-content textarea.form-input {
            min-height: 140px;
            width: 100%;
        }

        .modal-content.form-input::placeholder {
            white-space: normal;
        }
        /* Resume Label */
        .resume-label {
            display: block;
            margin-bottom: 8px;
            color: #ffffff;
            font-weight: 700;
            text-align: left;
        }

        /* Role Explorer */
        .role-card {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 20px;
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid rgba(0, 210, 255, 0.2);
            flex-wrap: wrap;
        }

        .role-left {
            flex: 1;
            min-width: 260px;
        }

        .role-left h3 {
            margin-bottom: 8px;
            color: #ffffff;
        }

        .role-left p {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .role-right {
            display: flex;
            align-items: flex-start;
        }
        #roleExplorerContent {
            max-height: 65vh;   /* fixed modal scroll area */
            overflow-y: auto;
            padding-right: 8px;
            margin-top: 10px;
        }
        /* ===== REQUIRED FIELD STARS ===== */
        .required-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            color: #ffffff;
            text-align: left;
        }

        .required-label span {
            color: red;
            margin-left: 4px;
        }

        /* Optional premium scrollbar */
        #roleExplorerContent::-webkit-scrollbar {
            width: 8px;
        }

        #roleExplorerContent::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
        }

        #roleExplorerContent::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #9333ea, #00d2ff);
            border-radius: 10px;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .role-card {
                flex-direction: column;
            }

            .role-right {
                width: 100%;
            }

            .role-right .btn-primary {
                width: 100%;
            }
        }
        .company-about-section {
            padding: 80px 5%;
        }

        .company-split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .about-left,
        .about-right {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .simple-info {
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid rgba(0, 210, 255, 0.15);
            padding: 25px;
            border-radius: 20px;
        }

        /*.company-vertical-stats {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 22px;
                margin: 20px 0 30px;
                text-align: center;
            }

            .stat-line h3 {
                margin: 0;
                font-size: 1.6rem;
                font-weight: 700;
                color: var(--primary);
                line-height: 1.2;
            }

            .stat-line p {
                margin: 4px 0 0;
                font-size: 0.95rem;
                color: var(--text-muted);
                line-height: 1.3;
            }

            .founder-box {
                display: grid;
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 18px;
                background: rgba(15, 23, 42, 0.45);
                border: 1px solid rgba(0, 210, 255, 0.2);
                padding: 14px 18px;   /* reduced height 
                border-radius: 20px;
            }

            .founder-left {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .founder-left img {
                width: 140px;
                height: 140px;
                border-radius: 50%;
                object-fit: cover;
                border: 3px solid var(--primary);
                box-shadow: 0 0 20px rgba(0,210,255,0.25);
            }

            .founder-right {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .founder-right h3 {
                margin-bottom: 10px;
                font-size: 1.5rem;
            }

            .founder-right p {
                margin-bottom: 18px;
                line-height: 1.6;
                color: var(--text-muted);
            }

            .linkedin-btn {
                width: fit-content;
                padding: 10px 18px;
                background: linear-gradient(45deg,#9333ea,#00d2ff);
                color: white;
                text-decoration: none;
                border-radius: 10px;
                font-weight: 700;
            }*/
           
        #about h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 35px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--primary);
            -webkit-text-fill-color: unset;
            background: none;
        }

        #about h2::after {
            content: "";
            height: 1px;
            flex-grow: 1;
            background: linear-gradient(to right, var(--glass-border), transparent);
        }

        /* TOP LONG BOX */
        .about-full-box {
            background: rgba(15, 23, 42, 0.4);
            border: 2px solid var(--primary);
            /*border: 1px solid rgba(0, 210, 255, 0.15);*/
            padding: 30px;
            border-radius: 24px;
            margin-bottom: 35px;
        }

        .about-full-box p {
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
            font-size: 1rem;
        }

        /* BOTTOM 50-50 */
        .about-bottom-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 35px;
            align-items: stretch;
        }

        /* LEFT STATS BOX */
        .stats-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            background: rgba(15, 23, 42, 0.4);
            border: 2px solid var(--primary);
            /*border: 1px solid rgba(0, 210, 255, 0.15);*/
            padding: 30px;
            border-radius: 24px;
        }

        .stat-line {
            text-align: center;
        }

        .stat-line h3 {
            margin: 0;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .stat-line p {
            margin-top: 5px;
            color: var(--text-muted);
        }

        /* RIGHT FOUNDER */
        .founder-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 18px;
            background: rgba(15, 23, 42, 0.45);
            border: 2px solid var(--primary);
            /*border: 5px solid rgba(0, 210, 255, 0.2)*/
            padding: 18px 22px;
            border-radius: 20px;
        }

        .founder-left {
            display: flex;
            justify-content: center;
        }

        .founder-left img {
            width: 180px;
            height: 160px;
            border-radius: 20%;
            object-fit: cover;
            /*border: 3px solid var(--primary);*/
            border: 4px solid rgba(0, 210, 255, 0.2)
        }

        .founder-right h3 {
            font-size: 1.6rem;
            margin-bottom: 2px;
            margin-top: 12px;
            margin-top: auto;
        }

        .founder-right p {
            font-size: 1.0rem;
            color: var(--text-muted);
            margin-bottom: 12px;
            margin-top: auto;
        }

        .linkedin-btn {
            width: fit-content;
            padding: 10px 18px;
            background: linear-gradient(45deg,#9333ea,#00d2ff);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
        }


        /* --- LOGIN & SIGNUP MODAL --- */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            z-index: 2000;
            justify-content: center; align-items: center;
        }
        .modal-content {
            background: var(--bg-accent);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid var(--glass-border);
            width: 90%; max-width: 420px;
            text-align: center;
            position: relative;
        }
        .close-modal { position: absolute; top: 15px; right: 20px; cursor: pointer; color: var(--text-muted); transition: color 0.3s ease; }
        .close-modal:hover { color: var(--primary); }

        .tab-btn {
            background: transparent; border: none; font-family: 'Space Grotesk'; font-size: 1.2rem; font-weight: 700; cursor: pointer; padding-bottom: 5px; margin: 0 10px; transition: all 0.3s ease;
        }
        .tab-active { color: var(--primary); border-bottom: 2px solid var(--primary); }
        .tab-inactive { color: var(--text-muted); border-bottom: 2px solid transparent; }
        .tab-inactive:hover { color: white; }

        /* --- MOBILE OPTIMIZATION --- */
        @media (max-width: 768px) {
            header { flex-direction: column; padding: 15px; gap: 15px; }
            .logo-img { height: 50px; } 
            .logo-text { font-size: 1.8rem; }
            nav { flex-wrap: wrap; justify-content: center; gap: 10px; }
            nav a, .dropbtn { margin: 10px; font-size: 0.95rem; letter-spacing: 1px; }
            .dropdown-content { position: relative; left: 0; width: 100%; top: 0; }
            .btn-login { margin: 10px 0 0; width: 100%; text-align: center; }
            .about-content { columns: 1; }
            .hero { padding: 100px 20px; }
        }




       /* css for blog Section triveni*/
        #blogs .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));  /* Fixed min width, auto columns, wrap rows */
            gap: 1.5rem;  /* Space between cards */
            padding: 1rem;
        }

        #blogs .card {
            width: 100%;  /* Fill grid cell */
            min-height: 200px;  /* Consistent height */
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        #blogs .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* Mobile: 1 column */
        @media (max-width: 768px) {
            #blogs .grid-container {
                grid-template-columns: 1fr;
                minmax(280px, 1fr);
            }
        }

   /* ================= QUITELABS CHATBOT ================= */

    .ql-chatbot-fab{
        position:fixed;
        right:25px;
        bottom:25px;
        width:100px;
        height:100px;
        border:none;
        background:transparent;
        cursor:pointer;
        z-index:9999;
        display:flex;
        align-items:center;
        justify-content:center;
        transition:all .3s ease;
    }

    .ql-chatbot-fab:hover{
        transform:scale(1.08);
    }

    .realistic-3d-bot{
        width:145px;
        height:auto;
        object-fit:contain;
        filter:drop-shadow(0 12px 20px rgba(0,0,0,.45));
        transition:transform .35s ease;
        pointer-events:none;
    }

    .ql-chatbot-fab:hover .realistic-3d-bot{
        transform:translateY(-8px) scale(1.08);
    }

    .ql-chatbot-window{
        position:fixed;
        right:25px;
        bottom:105px;
        width:370px;
        max-width:92vw;
        background:rgba(2,6,23,.98);
        border:1px solid rgba(0,210,255,.15);
        border-radius:22px;
        overflow:hidden;
        z-index:9999;
        box-shadow:0 25px 60px rgba(0,0,0,.55);
        opacity:0;
        visibility:hidden;
        transform:translateY(20px) scale(.95);
        transition:all .35s ease;
    }

    .ql-chatbot-window.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0) scale(1);
    }

    .ql-chatbot-body{
        height:320px;
        overflow-y:auto;
        padding:16px;
        display:flex;
        flex-direction:column;
        gap:12px;
        scroll-behavior:smooth;
        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .ql-chatbot-body::-webkit-scrollbar{
        display:none;
    }

    .ql-msg-row{
        display:flex;
        gap:8px;
        align-items:flex-end;
        animation:fadeUp .3s ease;
    }

    .ql-msg-row.user{
        justify-content:flex-end;
    }

    .ql-avatar{
        width: 18px;4px;
        height:18px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
    }

    .ql-avatar.bot{
        background:#334155;
    }

    .ql-avatar.user{
        background:linear-gradient(45deg,var(--secondary),var(--primary));
    }

    .ql-msg{
        max-width:75%;
        padding:10px 14px;
        border-radius:18px;
        line-height:1.4;
        font-size:.95rem;
    }

    .ql-msg.bot{
        background:#1e293b;
        border-bottom-left-radius:4px;
    }

    .ql-msg.user{
        background:linear-gradient(45deg,var(--secondary),var(--primary));
        border-bottom-right-radius:4px;
    }

    .ql-time{
        display:block;
        font-size:.7rem;
        opacity:.7;
        margin-top:4px;
    }

    .ql-chatbot-input{
        display:flex;
        padding:14px;
        border-top:1px solid rgba(0,210,255,.15);
    }

    .ql-chatbot-input input{
        flex:1;
        padding:12px;
        border-radius:12px;
        border:1px solid rgba(0,210,255,.15);
        background:#0f172a;
        color:#fff;
    }

    .ql-chatbot-input button{
        margin-left:10px;
        padding:12px 16px;
        border:none;
        border-radius:12px;
        background:var(--primary);
        color:#000;
        font-weight:700;
        cursor:pointer;
    }

    .ql-typing{
        display:flex;
        gap:5px;
        padding:12px 14px;
        background:#1e293b;
        width:fit-content;
        border-radius:18px;
    }

    .ql-typing span{
        width:7px;
        height:7px;
        border-radius:50%;
        background:var(--primary);
        animation:blink 1.2s infinite;
    }

    .ql-typing span:nth-child(2){animation-delay:.2s;}
    .ql-typing span:nth-child(3){animation-delay:.4s;}

    .ql-menu-links{
        display:flex;
        flex-direction:column;
        gap:10px;
        margin:14px 0 0 52px;
    }

    .ql-menu-links a{
        text-decoration:none;
        padding:10px 14px;
        border-radius:12px;
        background:rgba(255,255,255,0.08);
        color:var(--text-main);
        font-size:14px;
        border:1px solid rgba(255,255,255,0.06);
    }

    .ql-msg-logo {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;

        /* focus only on sphere part */
        object-position: 16% center;

        /* zoom enough to hide text */
        transform: scale(1.5);
    }

    .ql-chatbot-header{
        display:none;
    }

    @keyframes blink{
        0%,80%,100%{opacity:.3;transform:scale(.8);}
        40%{opacity:1;transform:scale(1);}
    }

    @keyframes fadeUp{
        from{opacity:0;transform:translateY(10px);}
        to{opacity:1;transform:translateY(0);}
    }
    .ql-menu-links button {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: #111827;
    color: white;
    cursor: pointer;
    text-align: left;
    }

    .chat-link-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 12px;
        border-radius: 8px;
        background: #2563eb;
        color: white;
        text-decoration: none;
    }

    /*Footer Section*/
    footer { text-align: center; padding: 80px 20px; border-top: 1px solid var(--glass-border); color: var(--text-muted); }








    
    /* Your existing #feedback styles preserved */
#feedbackSlider {
    display: flex !important;
    gap: 20px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 10px 60px 20px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: thin;
    scrollbar-color: #667eea transparent;
    max-width: 100%;
}

#feedbackSlider::-webkit-scrollbar {
    height: 6px;
}

#feedbackSlider::-webkit-scrollbar-track {
    background: transparent;
}

#feedbackSlider::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

/* Loading/Error for your slider */
#feedbackSlider.loading {
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    color: #666;
    font-size: 1.2em;
    background: none;
}

#feedbackSlider .error {
    color: #e74c3c;
    text-align: center;
    padding: 2rem;
}

/* Cards (hover works with your padding) */
.comment-card {
    min-width: 320px;
    max-width: 350px;
    scroll-snap-align: start !important;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-8px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.name {
    font-weight: bold;
    font-size: 1.1em;
}

.comment-text {
    font-size: 1em;
    line-height: 1.4;
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    #feedbackSlider {
        padding: 10px 40px 20px !important;
        gap: 15px !important;
    }
}  

/* Add to your style.css - Active section highlighting */
html { scroll-behavior: smooth; }

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #00d4ff; /* Highlight color */
    transition: width 0.3s ease;
}

.card-link:hover::after,
.card-link.active::after {
    width: 100%;
}

/* Scroll-based highlighting */
#quantum.active { 
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1.02);
}