﻿:root {
            --cl-navy: #142B6F;
            --cl-deep: #10245C;
            --cl-royal: #1E3A8A;
            --cl-gold: #D4A62A;
            --cl-cream: #FFF8EA;
            --cl-soft-blue: #F3F7FF;
            --cl-lavender: #F7F5FF;
            --cl-mint: #F6FBF8;
            --cl-gray-blue: #F4F8FC;
            --cl-white: #FFFFFF;
        }
        .computer-lab-page {
            font-family: 'Yantramanav', sans-serif;
            color: #263756;
            overflow: hidden;
            background: #fff;
        }
        .computer-lab-page h1,
        .computer-lab-page h2,
        .computer-lab-page h3 {
            color: var(--cl-deep);
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: 0;
        }
        .computer-lab-page p {
            color: #5d6a82;
            font-size: 16px;
            line-height: 1.72;
        }
        .cl-section {
            position: relative;
            padding: 92px 0;
            overflow: hidden;
        }
        .cl-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--cl-gold);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            margin-bottom: 14px;
        }
        .cl-title {
            font-size: clamp(32px, 4vw, 54px);
            margin-bottom: 16px;
        }
        .cl-intro {
            max-width: 760px;
            margin: 0 auto 38px;
        }
        .cl-hero {
            min-height: 760px;
            display: flex;
            align-items: center;
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #F3F7FF 0%, #FFF8EA 100%);
        }
        .cl-hero::before,
        .cl-flow::before,
        .cl-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(20,43,111,.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(20,43,111,.07) 1px, transparent 1px),
                radial-gradient(circle at 18% 18%, rgba(212,166,42,.18), transparent 26%),
                radial-gradient(circle at 82% 28%, rgba(30,58,138,.14), transparent 28%);
            background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
            opacity: .72;
        }
        .cl-hero-copy,
        .cl-hero-visual {
            position: relative;
            z-index: 2;
        }
        .cl-hero h1 {
            max-width: 690px;
            font-size: clamp(46px, 6vw, 78px);
            margin-bottom: 24px;
        }
        .cl-hero h1 span {
            color: var(--cl-gold);
        }
        .cl-hero .lead {
            max-width: 670px;
            font-size: 19px;
            margin-bottom: 28px;
        }
        .cl-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .cl-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 999px;
            padding: 14px 24px;
            font-weight: 800;
            transition: .35s ease;
            border: 1px solid transparent;
        }
        .cl-btn-primary {
            color: #fff;
            background: var(--cl-navy);
            box-shadow: 0 16px 34px rgba(20,43,111,.22);
        }
        .cl-btn-primary:hover {
            color: var(--cl-deep);
            background: var(--cl-gold);
            transform: translateY(-3px);
        }
        .cl-btn-ghost {
            color: var(--cl-navy);
            background: rgba(255,255,255,.78);
            border-color: rgba(20,43,111,.14);
        }
        .cl-btn-ghost:hover {
            color: #fff;
            background: var(--cl-royal);
            transform: translateY(-3px);
        }
        .cl-laptop {
            position: relative;
            min-height: 530px;
        }
        .cl-screen {
            position: absolute;
            inset: 35px 36px 95px;
            padding: 18px;
            border-radius: 34px;
            background: linear-gradient(135deg, #0d1e50, #1E3A8A);
            box-shadow: 0 32px 70px rgba(16,36,92,.22);
        }
        .cl-screen::before {
            content: "";
            position: absolute;
            inset: 12px;
            border-radius: 24px;
            border: 1px solid rgba(212,166,42,.42);
            pointer-events: none;
        }
        .cl-screen-img {
            position: relative;
            height: 100%;
            border-radius: 22px;
            overflow: hidden;
            background: #fff;
        }
        .cl-screen-img img,
        .cl-monitor-img img,
        .cl-gallery-main img,
        .cl-gallery-circle img,
        .cl-tilt-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cl-keyboard-base {
            position: absolute;
            left: 4%;
            right: 4%;
            bottom: 45px;
            height: 58px;
            border-radius: 16px 16px 34px 34px;
            background: linear-gradient(180deg, #fdfefe, #dce6f6);
            box-shadow: 0 22px 40px rgba(16,36,92,.16);
        }
        .cl-keyboard-base::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 16px;
            transform: translateX(-50%);
            width: 110px;
            height: 14px;
            border-radius: 999px;
            background: rgba(20,43,111,.12);
        }
        .cl-float {
            position: absolute;
            z-index: 4;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            color: var(--cl-deep);
            background: rgba(255,255,255,.9);
            box-shadow: 0 16px 34px rgba(16,36,92,.13);
            border: 1px solid rgba(212,166,42,.18);
            font-weight: 800;
            font-size: 13px;
            animation: clFloat 6s ease-in-out infinite;
        }
        .cl-float i { color: var(--cl-gold); }
        .cl-float.f1 { left: 0; top: 72px; }
        .cl-float.f2 { right: 0; top: 112px; animation-delay: -1.3s; }
        .cl-float.f3 { left: 30px; bottom: 90px; animation-delay: -2s; }
        .cl-float.f4 { right: 28px; bottom: 70px; animation-delay: -2.8s; }
        .cl-code-chip {
            position: absolute;
            z-index: 3;
            color: rgba(20,43,111,.2);
            font-weight: 900;
            font-size: 40px;
            animation: clFloat 7s ease-in-out infinite;
        }
        .cl-code-chip.c1 { right: 40px; top: 10px; }
        .cl-code-chip.c2 { left: 18px; bottom: 18px; animation-delay: -2s; }
        .cl-showcase {
            background: #fff;
        }
        .cl-monitor-panel {
            position: relative;
            min-height: 535px;
            padding: 24px;
            border-radius: 38px;
            background:
                linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, var(--cl-navy), var(--cl-gold), var(--cl-royal)) border-box;
            border: 2px solid transparent;
            box-shadow: 0 28px 70px rgba(16,36,92,.13);
        }
        .cl-monitor-top {
            display: flex;
            gap: 8px;
            margin-bottom: 14px;
        }
        .cl-monitor-top span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cl-gold);
        }
        .cl-monitor-img {
            height: 410px;
            overflow: hidden;
            border-radius: 28px 28px 58px 28px;
            clip-path: polygon(0 0, 92% 0, 100% 13%, 100% 100%, 0 100%);
        }
        .cl-show-label {
            position: absolute;
            z-index: 3;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,.92);
            color: var(--cl-deep);
            box-shadow: 0 16px 34px rgba(16,36,92,.12);
            font-weight: 800;
            font-size: 13px;
        }
        .cl-show-label i { color: var(--cl-gold); margin-right: 7px; }
        .cl-show-label.s1 { left: 28px; top: 88px; }
        .cl-show-label.s2 { right: 26px; top: 148px; }
        .cl-show-label.s3 { left: 56px; bottom: 56px; }
        .cl-show-label.s4 { right: 42px; bottom: 38px; }
        .cl-list {
            display: grid;
            gap: 14px;
            margin-top: 24px;
        }
        .cl-list li {
            display: flex;
            gap: 12px;
            font-weight: 700;
            color: #51617a;
        }
        .cl-list span {
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            color: #fff;
            background: var(--cl-royal);
        }
        .cl-skills {
            background: var(--cl-soft-blue);
        }
        .cl-bento {
            display: grid;
            grid-template-columns: 1.15fr .85fr 1fr;
            grid-auto-rows: minmax(190px, auto);
            gap: 18px;
        }
        .cl-widget,
        .cl-trust-card,
        .cl-dashboard-card {
            position: relative;
            overflow: hidden;
            background: rgba(255,255,255,.92);
            border: 1px solid rgba(20,43,111,.08);
            box-shadow: 0 18px 44px rgba(16,36,92,.08);
            transition: .35s ease;
        }
        .cl-widget {
            border-radius: 28px;
            padding: 26px;
        }
        .cl-widget.big {
            grid-row: span 2;
            min-height: 398px;
            background: linear-gradient(135deg, #fff, #eef4ff);
        }
        .cl-widget:hover,
        .cl-trust-card:hover,
        .cl-dashboard-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 28px 58px rgba(16,36,92,.14);
            border-color: rgba(212,166,42,.38);
        }
        .cl-widget::before {
            content: "</>";
            position: absolute;
            right: 18px;
            top: 12px;
            color: rgba(20,43,111,.06);
            font-size: 42px;
            font-weight: 900;
        }
        .cl-icon {
            width: 62px;
            height: 62px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 22px;
            color: #fff;
            background: var(--cl-navy);
            margin-bottom: 18px;
            box-shadow: 0 16px 30px rgba(20,43,111,.2);
        }
        .cl-icon i { font-size: 27px; }
        .cl-widget h3,
        .cl-dashboard-card h3,
        .cl-trust-card h3 {
            font-size: 22px;
            margin-bottom: 9px;
        }
        .cl-widget p,
        .cl-dashboard-card p,
        .cl-trust-card p {
            margin-bottom: 0;
            font-size: 14px;
        }
        .cl-flow {
            background: linear-gradient(135deg, #10245C 0%, #1E3A8A 100%);
            color: rgba(255,255,255,.78);
        }
        .cl-flow h2,
        .cl-flow h3 { color: #fff; }
        .cl-flow p { color: rgba(255,255,255,.72); }
        .cl-circuit {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            margin-top: 42px;
        }
        .cl-circuit::before {
            content: "";
            position: absolute;
            top: 48px;
            left: 7%;
            right: 7%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(212,166,42,.9), rgba(125,211,252,.7), transparent);
            box-shadow: 0 0 22px rgba(212,166,42,.32);
        }
        .cl-step {
            position: relative;
            z-index: 3;
            text-align: center;
        }
        .cl-step-icon {
            width: 96px;
            height: 96px;
            margin: 0 auto 16px;
            border-radius: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--cl-gold);
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.18);
            backdrop-filter: blur(8px);
        }
        .cl-step-icon i { font-size: 30px; }
        .cl-safe {
            background: var(--cl-cream);
        }
        .cl-security-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            align-items: center;
        }
        .cl-security-core {
            grid-column: span 2;
            min-height: 360px;
            border-radius: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: linear-gradient(145deg, var(--cl-deep), var(--cl-royal));
            box-shadow: 0 28px 60px rgba(16,36,92,.18);
        }
        .cl-security-core i {
            color: var(--cl-gold);
            font-size: 78px;
            margin-bottom: 16px;
        }
        .cl-security-core h3 {
            color: #fff;
            font-size: 31px;
        }
        .cl-security-node {
            min-height: 155px;
            padding: 22px;
            border-radius: 26px;
            background: #fff;
            border: 1px solid rgba(20,43,111,.08);
            box-shadow: 0 18px 44px rgba(16,36,92,.08);
        }
        .cl-security-node i { color: var(--cl-gold); font-size: 26px; margin-bottom: 12px; }
        .cl-features {
            background: #fff;
        }
        .cl-dashboard-stack {
            display: grid;
            gap: 18px;
        }
        .cl-dashboard-card {
            border-radius: 26px;
            padding: 22px 26px;
            display: grid;
            grid-template-columns: 70px 1fr auto;
            gap: 18px;
            align-items: center;
        }
        .cl-dashboard-card .cl-icon {
            margin: 0;
        }
        .cl-dashboard-code {
            color: rgba(20,43,111,.32);
            font-weight: 900;
            font-size: 18px;
        }
        .cl-code {
            background: var(--cl-lavender);
        }
        .cl-terminal {
            border-radius: 34px;
            overflow: hidden;
            background: #081a45;
            box-shadow: 0 28px 68px rgba(16,36,92,.24);
            border: 1px solid rgba(255,255,255,.12);
        }
        .cl-terminal-top {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: rgba(255,255,255,.08);
        }
        .cl-terminal-top span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cl-gold);
        }
        .cl-terminal pre {
            margin: 0;
            padding: 34px;
            color: #dbeafe;
            font-size: 18px;
            line-height: 1.75;
            white-space: pre-wrap;
        }
        .cl-terminal em { color: var(--cl-gold); font-style: normal; }
        .cl-creativity {
            background: var(--cl-mint);
        }
        .cl-app-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .cl-app {
            min-height: 160px;
            padding: 24px;
            border-radius: 28px;
            background: rgba(255,255,255,.88);
            box-shadow: 0 18px 44px rgba(16,36,92,.08);
            border: 1px solid rgba(20,43,111,.08);
            transform: rotate(var(--tilt, 0deg));
            transition: .35s ease;
        }
        .cl-app:hover { transform: rotate(0deg) translateY(-7px); }
        .cl-app i { color: var(--cl-gold); font-size: 30px; margin-bottom: 16px; }
        .cl-benefits {
            background: var(--cl-gray-blue);
        }
        .cl-chip-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
        }
        .cl-benefit-chip {
            position: relative;
            width: 235px;
            min-height: 150px;
            padding: 24px;
            border-radius: 44px;
            background: #fff;
            border: 1px solid rgba(20,43,111,.08);
            box-shadow: 0 18px 44px rgba(16,36,92,.08);
            animation: clFloat 7s ease-in-out infinite;
        }
        .cl-benefit-chip:nth-child(even) {
            border-radius: 28px 54px 28px 54px;
            animation-delay: -2s;
        }
        .cl-benefit-chip i { color: var(--cl-gold); font-size: 26px; margin-bottom: 12px; }
        .cl-gallery {
            background: #fff;
        }
        .cl-gallery-stage {
            position: relative;
            min-height: 620px;
        }
        .cl-gallery-main {
            position: absolute;
            left: 5%;
            top: 28px;
            width: 66%;
            height: 500px;
            padding: 18px;
            border-radius: 40px;
            background: linear-gradient(145deg, var(--cl-deep), var(--cl-royal));
            box-shadow: 0 28px 66px rgba(16,36,92,.16);
        }
        .cl-gallery-main img {
            border-radius: 26px;
        }
        .cl-gallery-circle {
            position: absolute;
            right: 7%;
            top: 64px;
            width: 235px;
            height: 235px;
            overflow: hidden;
            border-radius: 50%;
            border: 10px solid #fff;
            box-shadow: 0 22px 48px rgba(16,36,92,.16);
        }
        .cl-tilt-img {
            position: absolute;
            right: 10%;
            bottom: 62px;
            width: 315px;
            height: 220px;
            overflow: hidden;
            border-radius: 28px;
            border: 10px solid #fff;
            box-shadow: 0 22px 48px rgba(16,36,92,.16);
            transform: rotate(-5deg);
        }
        .cl-trust {
            background: #FFFDF6;
        }
        .cl-trust-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .cl-trust-card {
            border-radius: 30px;
            padding: 28px;
            border-left: 5px solid var(--cl-gold);
        }
        .cl-trust-card i { color: var(--cl-gold); font-size: 28px; margin-bottom: 16px; }
        .cl-cta {
            position: relative;
            padding: 92px 0;
            background: linear-gradient(135deg, #10245C 0%, #172F7A 100%);
        }
        .cl-cta-panel {
            position: relative;
            z-index: 2;
            padding: 54px;
            border-radius: 38px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.16);
            box-shadow: inset 0 0 40px rgba(255,255,255,.04), 0 26px 64px rgba(0,0,0,.2);
            backdrop-filter: blur(14px);
        }
        .cl-cta-panel h2 { color: #fff; font-size: clamp(34px, 4.4vw, 58px); }
        .cl-cta-panel p { color: rgba(255,255,255,.76); max-width: 820px; }
        .cl-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .75s ease, transform .75s ease;
        }
        .cl-reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 { transition-delay: .08s; }
        .delay-2 { transition-delay: .16s; }
        .delay-3 { transition-delay: .24s; }
        @keyframes clFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        @media (max-width: 1199px) {
            .cl-hero { min-height: auto; padding-top: 120px; }
            .cl-laptop { min-height: 500px; margin-top: 34px; }
            .cl-circuit { grid-template-columns: repeat(3, 1fr); }
            .cl-circuit::before { display: none; }
            .cl-security-grid { grid-template-columns: 1fr 1fr; }
            .cl-security-core { grid-column: span 2; }
        }
        @media (max-width: 991px) {
            .cl-section { padding: 64px 0; }
            .cl-bento,
            .cl-app-grid,
            .cl-trust-layout {
                grid-template-columns: 1fr;
            }
            .cl-widget.big {
                grid-row: auto;
                min-height: 0;
            }
            .cl-circuit,
            .cl-security-grid {
                grid-template-columns: 1fr;
            }
            .cl-security-core {
                grid-column: auto;
            }
            .cl-dashboard-card {
                grid-template-columns: 58px 1fr;
            }
            .cl-dashboard-code {
                display: none;
            }
            .cl-gallery-stage {
                min-height: auto;
                display: grid;
                gap: 18px;
            }
            .cl-gallery-main,
            .cl-gallery-circle,
            .cl-tilt-img {
                position: relative;
                left: auto;
                right: auto;
                top: auto;
                bottom: auto;
                width: 100%;
                height: 300px;
                transform: none;
                border-radius: 28px;
            }
        }
        @media (max-width: 575px) {
            .cl-section { padding: 48px 0; }
            .cl-hero { padding: 92px 0 52px; }
            .cl-hero h1 { font-size: 40px; }
            .cl-hero .lead { font-size: 16px; }
            .cl-actions { flex-direction: column; }
            .cl-btn { width: 100%; }
            .cl-laptop { min-height: 390px; }
            .cl-screen { inset: 28px 10px 76px; padding: 12px; border-radius: 26px; }
            .cl-keyboard-base { bottom: 42px; height: 42px; }
            .cl-float { display: none; }
            .cl-code-chip { font-size: 28px; }
            .cl-monitor-panel,
            .cl-widget,
            .cl-terminal,
            .cl-app,
            .cl-benefit-chip,
            .cl-trust-card,
            .cl-cta-panel {
                border-radius: 24px;
                padding: 24px;
            }
            .cl-monitor-img { height: 280px; clip-path: none; border-radius: 20px; }
            .cl-show-label { display: none; }
            .cl-security-core { min-height: 270px; }
            .cl-terminal pre { padding: 24px; font-size: 15px; }
            .cl-benefit-chip { width: 100%; min-height: 0; }
        }