/* ═══════════ DESIGN SYSTEM ═══════════ */
        :root {
            --bg-primary: #020408;
            --bg-secondary: #060d14;
            --accent-primary: #00e5ff;
            --accent-secondary: #0077ff;
            --accent-glow: rgba(0, 229, 255, 0.15);
            --text-primary: #f0f4f8;
            --text-secondary: #7a9ab5;
            --border-glass: rgba(0, 229, 255, 0.12);
            --card-bg: rgba(6, 18, 30, 0.75);
            --font-heading: 'Orbitron', sans-serif;
            --font-body: 'Rajdhani', sans-serif;
            --glow: 0 0 20px var(--accent-primary), 0 0 60px rgba(0, 229, 255, 0.2);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 400;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-primary);
            border-radius: 4px;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ═══════════ UTILITY ═══════════ */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .section-title span {
            color: var(--accent-primary);
        }

        .section-line {
            width: 80px;
            height: 3px;
            background: var(--accent-primary);
            margin: 0 auto 60px;
            box-shadow: var(--glow);
            border-radius: 2px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Safety fallback moved to noscript tag in head */

        section {
            padding: 100px 0;
            position: relative;
        }

/* Intro screen removed */

/* ═══════════ TOP TICKER ═══════════ */
        .top-ticker {
            width: 100%;
            background: rgba(10, 21, 32, 0.95);
            border-bottom: 1px solid rgba(0, 229, 255, 0.15);
            color: #f0f4f8;
            padding: 8px 0;
            font-size: 0.85rem;
            font-family: var(--font-body);
            letter-spacing: 0.05em;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease, border 0.4s ease;
            max-height: 40px;
            opacity: 1;
        }

        #navbar.scrolled .top-ticker {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
            opacity: 0;
            border-bottom-color: transparent;
        }

        .ticker-content {
            display: inline-flex;
            width: max-content;
            animation: scroll-ticker 40s linear infinite;
        }

        .ticker-content:hover {
            animation-play-state: paused;
        }

        .ticker-text {
            padding-right: 50px;
        }
        
        .ticker-text strong {
            color: var(--accent-primary);
        }

        @keyframes scroll-ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ═══════════ NAVBAR ═══════════ */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0;
            transition: var(--transition);
            background: rgba(2, 4, 8, 0.7);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid transparent;
        }

        #navbar.scrolled {
            background: rgba(2, 4, 8, 0.95);
            backdrop-filter: blur(20px);
            border-bottom-color: var(--border-glass);
            padding: 0;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            transition: var(--transition);
        }

        #navbar.scrolled .nav-inner {
            padding: 10px 24px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-brand svg {
    width: 65px;
    height: 65px;
}

        .nav-brand-text {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--accent-primary);
            letter-spacing: 0.15em;
        }

        .nav-brand-text-group {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .nav-brand-sub {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.65rem;
            color: var(--text-secondary);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }

        .btn-cta {
            display: inline-block;
            padding: 10px 24px;
            background: var(--accent-primary);
            color: var(--bg-primary);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.85rem;
            border: 2px solid var(--accent-primary);
            border-radius: 4px;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.05em;
        }

        .btn-cta:hover {
            background: transparent;
            color: var(--accent-primary);
            box-shadow: var(--glow);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent-primary);
            border: 2px solid var(--accent-primary);
        }

        .btn-outline:hover {
            background: var(--accent-primary);
            color: var(--bg-primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--accent-primary);
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ═══════════ HERO ═══════════ */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            padding: 150px 24px 60px;
        }

        #particles-js {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 75%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 24px;
        }

        .hero-tag {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--accent-primary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero-tag .cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: var(--accent-primary);
            margin-left: 4px;
            animation: blink 1s step-end infinite;
            vertical-align: text-bottom;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .hero-h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: clamp(2.5rem, 7vw, 5rem);
            line-height: 1.1;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .hero-h1 .cyan {
            color: var(--accent-primary);
            text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
        }

        .hero-addon-text {
            color: var(--accent-primary);
            font-weight: 600;
            font-size: 0.9em;
            margin-top: 8px;
            display: inline-block;
        }

        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 36px;
            letter-spacing: 0.05em;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat-pill {
            padding: 8px 20px;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-glass);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-primary);
            letter-spacing: 0.05em;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
            color: var(--accent-primary);
            font-size: 1.5rem;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(12px);
            }
        }

        /* ═══════════ SERVICES ═══════════ */
        #services {
            background: var(--bg-secondary);
        }

        /* .services-grid and .service-card removed — unused in current HTML */

        /* ═══════════ WHY US ═══════════ */
        #why-us {
            background: var(--bg-primary);
        }

        /* .why-grid and .why-card removed — unused in current HTML */

        /* ═══════════ HOW IT WORKS ═══════════ */
        #how-it-works {
            background: var(--bg-secondary);
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--accent-primary) 0, var(--accent-primary) 12px, transparent 12px, transparent 24px);
            opacity: 0.4;
        }

        .timeline-step {
            text-align: center;
            flex: 1;
            position: relative;
            padding: 0 12px;
        }

        .step-number {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--accent-primary);
            box-shadow: var(--glow);
            position: relative;
            z-index: 1;
        }

        .timeline-step i {
            font-size: 1.5rem;
            color: var(--accent-primary);
            margin-bottom: 10px;
            display: block;
        }

        .timeline-step h3 {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-step p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            max-width: 220px;
            margin: 0 auto;
        }

        /* ═══════════ GALLERY ═══════════ */
        #gallery {
            background: var(--bg-primary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        .gallery-item i {
            font-size: 2.5rem;
            color: var(--text-secondary);
            opacity: 0.3;
        }

        .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 229, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-item:hover {
            border-color: var(--accent-primary);
            box-shadow: var(--glow);
        }

        .overlay span {
            color: var(--accent-primary);
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* ═══════════ TESTIMONIALS ═══════════ */
        #testimonials {
            background: var(--bg-secondary);
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            padding: 10px 0 20px;
            scrollbar-width: none;
        }

        .testimonial-track::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            min-width: 340px;
            max-width: 400px;
            flex-shrink: 0;
            scroll-snap-align: center;
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 30px;
        }

        .testimonial-card .stars {
            color: var(--accent-primary);
            margin-bottom: 14px;
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .testimonial-card .quote {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-card .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 0.85rem;
        }

        .testimonial-card .author-info h4 {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .testimonial-card .author-info p {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        /* ═══════════ FAQ ═══════════ */
        #faq {
            background: var(--bg-primary);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active {
            border-left: 3px solid var(--accent-primary);
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            background: var(--card-bg);
            transition: var(--transition);
        }

        .faq-q:hover {
            color: var(--accent-primary);
        }

        .faq-q i {
            color: var(--accent-primary);
            transition: transform 0.3s;
            font-size: 0.85rem;
        }

        .faq-item.active .faq-q i {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-a-inner {
            padding: 0 24px 18px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-a {
            max-height: 200px;
        }

        /* ═══════════ CONTACT ═══════════ */
        #contact {
            background: var(--bg-secondary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 24px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .contact-detail i {
            color: var(--accent-primary);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .contact-detail a {
            color: var(--accent-primary);
            text-decoration: none;
        }

        .contact-detail a:hover {
            text-decoration: underline;
        }

        .contact-map iframe {
            width: 100%;
            height: 250px;
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            margin-top: 20px;
            filter: grayscale(0.8) invert(100%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
        }

        .contact-form {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 36px;
        }

        .form-group {
            position: relative;
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(2, 4, 8, 0.6);
            border: 1px solid var(--border-glass);
            border-radius: 6px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent-primary);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
        }

        .form-group label {
            position: absolute;
            left: 16px;
            top: 14px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            pointer-events: none;
            transition: var(--transition);
        }

        .form-group input:focus~label,
        .form-group input:not(:placeholder-shown)~label,
        .form-group textarea:focus~label,
        .form-group textarea:not(:placeholder-shown)~label {
            top: -10px;
            left: 12px;
            font-size: 0.75rem;
            color: var(--accent-primary);
            background: var(--bg-secondary);
            padding: 0 6px;
        }

        .form-group select {
            appearance: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 20px;
            color: var(--accent-primary);
            font-weight: 600;
        }

        /* ═══════════ FOOTER ═══════════ */
        footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--accent-primary);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .brand-text {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--accent-primary);
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 16px;
        }

        .social-icons a {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-right: 14px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--accent-primary);
        }

        footer h4 {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: 0.05em;
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: 8px;
        }

        footer ul a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        footer ul a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-glass);
            padding: 20px 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* ═══════════ FLOATING BUTTONS ═══════════ */
        .floating-btns {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .float-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .float-btn.whatsapp {
            background: #25d366;
            color: #fff;
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
        }

        .float-btn.phone {
            background: var(--accent-primary);
            color: var(--bg-primary);
        }

        .float-btn.top {
            background: var(--card-bg);
            color: var(--accent-primary);
            border: 1px solid var(--border-glass);
            opacity: 0;
            pointer-events: none;
        }

        .float-btn.top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
            }
        }

        .float-btn[data-tooltip]:hover::before {
            content: attr(data-tooltip);
            position: absolute;
            right: 62px;
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            border: 1px solid var(--border-glass);
        }

        .float-btn {
            position: relative;
        }

        /* ═══════════ SECTION TAG ═══════════ */
        .section-tag {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--accent-primary);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            margin-bottom: 8px;
            opacity: 0.8;
        }

        .section-icon-row {
            margin: 20px 0 32px;
        }

        .section-owl-icon {
            width: 56px;
            height: 56px;
        }

        /* ═══════════ SOLUTIONS GRID ═══════════ */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .solutions-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .solution-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 28px 24px;
            transition: var(--transition);
        }

        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--glow);
            border-color: var(--accent-primary);
        }

        .solution-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(0, 229, 255, 0.08);
            border: 1px solid var(--border-glass);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.1rem;
            color: var(--accent-primary);
        }

        .solution-card h3 {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.03em;
        }

        .solution-card p {
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* ═══════════ NUMBERS GRID ═══════════ */
        .numbers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .number-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
            transition: var(--transition);
        }

        .number-card:hover {
            border-color: var(--accent-primary);
            box-shadow: var(--glow);
        }

        .number-card h3 {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--accent-primary);
            margin-bottom: 6px;
            letter-spacing: 0.04em;
        }

        .number-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* ═══════════ CTA SECTION ═══════════ */
        .cta-section {
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(0, 119, 255, 0.08) 100%);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 60px 40px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .cta-section p {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 28px;
        }

        /* ═══════════ RESPONSIVE ═══════════ */
        @media(max-width:1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline {
                flex-direction: column;
                gap: 40px;
                align-items: center;
            }

            .timeline::before {
                top: 0;
                bottom: 0;
                left: 50%;
                width: 2px;
                height: 100%;
                right: auto;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(2, 4, 8, 0.97);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-top: 1px solid var(--border-glass);
            }

            .nav-links.open {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .services-grid,
            .solutions-grid,
            .solutions-grid-2 {
                grid-template-columns: 1fr !important;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-h1 {
                font-size: clamp(1.8rem, 6vw, 3.5rem);
            }

            .stat-pill {
                font-size: 0.75rem;
                padding: 6px 14px;
            }

            .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .cta-section {
                padding: 40px 20px;
            }

            .scene-container {
                height: 180px;
                max-width: 100%;
            }



            .scene-lights {
                right: 16px;
                gap: 10px;
            }

            .live-feed {
                width: 100%;
                max-width: 280px;
                height: 150px;
            }

            .notif-popup {
                width: calc(100% - 24px);
                max-width: 300px;
                right: -120%;
                padding: 12px;
            }

            .notif-popup.show {
                right: 12px;
            }

            .hero-sub {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: clamp(1.4rem, 4vw, 2rem);
            }

            .solution-card {
                padding: 20px 16px;
            }

            .number-card {
                padding: 20px 14px;
            }

            .number-card h3 {
                font-size: 1.4rem;
            }
        }

        @media(max-width:480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 0;
            }

            .numbers-grid {
                grid-template-columns: 1fr !important;
            }

            .scene-container {
                height: 160px;
            }



            .scene-camera {
                right: 10px;
            }

            .scene-lights {
                right: 10px;
                gap: 8px;
            }

            .scene-status-badge {
                font-size: 0.4rem;
                padding: 2px 5px;
            }

            .live-feed {
                max-width: 100%;
                height: 130px;
            }

            .notif-popup {
                width: calc(100% - 24px);
                max-width: 280px;
                right: -120%;
            }

            .notif-popup.show {
                right: 12px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .hero-buttons .btn-cta {
                width: 100%;
                text-align: center;
            }

            .cta-section {
                padding: 32px 16px;
            }
        }

        /* ═══════════ CINEMATIC SECURITY SCENE ═══════════ */
        .scene-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 220px;
            margin: 24px auto 20px;
            background: rgba(6, 18, 30, 0.8);
            border: 1px solid var(--border-glass);
            border-radius: 14px;
            overflow: hidden;
        }

        /* Ground */
        .scene-ground {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.04));
            border-top: 1px solid rgba(0, 229, 255, 0.08);
        }

        /* Realistic Bullet Camera */
        .scene-camera {
            position: absolute;
            top: -2px;
            right: 20px;
            z-index: 5;
        }

        .scene-cam-base {
            position: absolute;
            top: 0;
            right: 0px;
            width: 25px;
            height: 10px;
            background: #94a3b8;
            border-radius: 0 0 4px 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .scene-cam-arm {
            position: absolute;
            top: 10px;
            right: 8px;
            width: 8px;
            height: 16px;
            background: #64748b;
            z-index: 1;
        }

        .scene-cam-head {
            position: absolute;
            top: 20px;
            right: -6px;
            width: 44px;
            height: 22px;
            background: linear-gradient(180deg, #f8fafc, #cbd5e1);
            border-radius: 10px 4px 4px 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transform-origin: 36px 11px;
            /* Pivot near the right arm attachment */
            animation: camScan 4s ease-in-out infinite alternate;
            z-index: 3;
            display: flex;
            align-items: center;
        }

        .scene-cam-front {
            width: 12px;
            height: 22px;
            background: #0f172a;
            border-radius: 10px 0 0 10px;
            position: relative;
        }

        .scene-cam-lens {
            position: absolute;
            top: 50%;
            left: 3px;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: #000;
            border-radius: 50%;
            box-shadow: 0 0 4px var(--accent-primary);
        }

        /* Vision cone from camera lens */
        .scene-cone {
            position: absolute;
            top: 50%;
            right: 12px;
            transform: translateY(-50%);
            width: 250px;
            height: 160px;
            background: linear-gradient(270deg, transparent 0%, rgba(0, 229, 255, 0.15) 100%);
            clip-path: polygon(0% 0%, 100% 48%, 100% 52%, 0% 100%);
            pointer-events: none;
            transition: background 0.3s;
            z-index: -1;
        }

        .scene-cone.detected {
            background: linear-gradient(270deg, transparent 0%, rgba(255, 59, 59, 0.25) 100%);
        }

        .scene-cam-head.locked {
            animation: none;
            transform: rotate(-35deg);
            /* Point down towards the person */
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes camScan {
            0% {
                transform: rotate(-5deg);
            }

            100% {
                transform: rotate(-60deg);
            }
        }

        /* Walking Person */
        .scene-person {
            position: absolute;
            bottom: 40px;
            left: -40px;
            z-index: 3;
            animation: personWalk 8s linear infinite;
        }

        @keyframes personWalk {
            0% {
                left: -40px;
            }

            100% {
                left: 110%;
            }
        }

        .person-body {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .person-head {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--text-secondary);
        }

        .person-torso {
            width: 2px;
            height: 22px;
            background: var(--text-secondary);
            position: relative;
        }

        .person-torso::before {
            content: '';
            position: absolute;
            top: 4px;
            left: -8px;
            width: 18px;
            height: 2px;
            background: var(--text-secondary);
        }

        .person-legs {
            display: flex;
            gap: 4px;
        }

        .person-leg {
            width: 2px;
            height: 18px;
            background: var(--text-secondary);
            animation: legWalk 0.6s ease-in-out infinite alternate;
        }

        .person-leg:nth-child(2) {
            animation-delay: 0.3s;
        }

        @keyframes legWalk {
            0% {
                transform: rotate(-15deg);
            }

            100% {
                transform: rotate(15deg);
            }
        }

        /* Detection Box around person */
        .scene-detect-box {
            position: absolute;
            bottom: 35px;
            z-index: 4;
            width: 40px;
            height: 65px;
            border: 2px solid #00ff88;
            border-radius: 3px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            animation: detectBoxFollow 8s linear infinite;
        }

        @keyframes detectBoxFollow {
            0% {
                left: -45px;
            }

            100% {
                left: calc(110% - 5px);
            }
        }

        .scene-detect-box::before {
            content: 'PERSON DETECTED';
            position: absolute;
            top: -18px;
            left: 0;
            font-family: var(--font-heading);
            font-size: 0.5rem;
            color: #00ff88;
            background: rgba(0, 255, 136, 0.15);
            padding: 1px 6px;
            border-radius: 2px;
            letter-spacing: 0.08em;
            white-space: nowrap;
            font-weight: 700;
        }

        .scene-detect-box.visible {
            opacity: 1;
        }

        /* Lights on building */
        .scene-lights {
            position: absolute;
            bottom: 40px;
            right: 30px;
            display: flex;
            gap: 16px;
            z-index: 1;
        }

        .scene-light {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .light-bulb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #1a2a3a;
            border: 2px solid var(--text-secondary);
            transition: all 0.5s ease;
        }

        .light-bulb.on {
            background: #ffd700;
            border-color: #ffd700;
            box-shadow: 0 0 16px #ffd700, 0 0 40px rgba(255, 215, 0, 0.3);
        }

        .light-beam {
            width: 30px;
            height: 70px;
            background: linear-gradient(180deg, rgba(255, 215, 0, 0.15), transparent);
            clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .light-beam.on {
            opacity: 1;
        }

        .light-label {
            font-family: var(--font-heading);
            font-size: 0.45rem;
            color: var(--text-secondary);
            letter-spacing: 0.08em;
            transition: color 0.5s;
        }

        .light-label.on {
            color: #ffd700;
        }

        /* Scene status bar */
        .scene-status {
            position: absolute;
            top: 12px;
            left: 14px;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .scene-status-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 3px 8px;
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid var(--border-glass);
            border-radius: 4px;
            font-family: var(--font-heading);
            font-size: 0.5rem;
            color: var(--accent-primary);
            letter-spacing: 0.1em;
            transition: all 0.3s;
        }

        .scene-status-badge.alert {
            background: rgba(255, 59, 59, 0.15);
            border-color: #ff3b3b;
            color: #ff3b3b;
        }

        .scene-status-badge.success {
            background: rgba(0, 255, 136, 0.1);
            border-color: #00ff88;
            color: #00ff88;
        }

        .status-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-primary);
            animation: statusPulse 1.5s ease infinite;
        }

        .scene-status-badge.alert .status-dot {
            background: #ff3b3b;
        }

        .scene-status-badge.success .status-dot {
            background: #00ff88;
        }

        @keyframes statusPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }


        /* ═══════════ ANIMATION 3: Live Surveillance Feed ═══════════ */
        .live-feed {
            position: relative;
            width: 280px;
            height: 180px;
            background: #0a0f14;
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            overflow: hidden;
            margin: 20px auto 0;
        }

        .live-feed-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .live-feed-scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.2), transparent);
            animation: scanDown 3s linear infinite;
        }

        @keyframes scanDown {
            0% {
                top: -3px;
            }

            100% {
                top: 100%;
            }
        }

        .live-feed-header {
            position: absolute;
            top: 8px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }

        .rec-dot {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #ff3b3b;
            font-family: var(--font-heading);
            letter-spacing: 0.1em;
        }

        .rec-dot::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff3b3b;
            animation: recBlink 1s step-end infinite;
        }

        @keyframes recBlink {
            50% {
                opacity: 0;
            }
        }

        .feed-timestamp {
            font-family: var(--font-heading);
            font-size: 0.6rem;
            color: var(--accent-primary);
            letter-spacing: 0.1em;
            opacity: 0.8;
        }

        .live-feed-footer {
            position: absolute;
            bottom: 8px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }

        .feed-cam-label {
            font-family: var(--font-heading);
            font-size: 0.6rem;
            color: var(--text-secondary);
            letter-spacing: 0.1em;
        }

        .feed-ai-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            background: rgba(0, 229, 255, 0.15);
            border: 1px solid var(--accent-primary);
            border-radius: 3px;
            font-family: var(--font-heading);
            font-size: 0.55rem;
            color: var(--accent-primary);
            letter-spacing: 0.1em;
        }

        .feed-ai-badge::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-primary);
            animation: aiBadgePulse 2s ease infinite;
        }

        @keyframes aiBadgePulse {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px var(--accent-primary);
            }

            50% {
                opacity: 0.5;
                box-shadow: none;
            }
        }

        /* Person detection overlay */
        .feed-person-box {
            position: absolute;
            top: 40px;
            left: 70px;
            width: 50px;
            height: 90px;
            border: 1.5px solid #00ff88;
            border-radius: 3px;
            opacity: 0;
            animation: personDetect 5s ease-in-out infinite;
        }

        .feed-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            opacity: 0.6;
        }

        .feed-person-box .feed-icon {
            font-size: 2.5rem;
            color: #00ff88;
        }

        .feed-vehicle-box .feed-icon {
            font-size: 1.5rem;
            color: #ffaa00;
        }

        .feed-label {
            position: absolute;
            top: -16px;
            left: -1px;
            font-family: var(--font-heading);
            font-size: 0.45rem;
            padding: 2px 5px;
            border-radius: 2px;
            letter-spacing: 0.08em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .feed-person-box .feed-label {
            color: #00ff88;
            background: rgba(0, 255, 136, 0.2);
        }

        @keyframes personDetect {

            0%,
            20% {
                opacity: 0;
            }

            25%,
            75% {
                opacity: 1;
            }

            80%,
            100% {
                opacity: 0;
            }
        }

        .feed-vehicle-box {
            position: absolute;
            bottom: 35px;
            right: 30px;
            width: 70px;
            height: 40px;
            border: 1.5px solid #ffaa00;
            border-radius: 3px;
            opacity: 0;
            animation: vehicleDetect 5s ease-in-out infinite 2.5s;
        }

        .feed-vehicle-box .feed-label {
            color: #ffaa00;
            background: rgba(255, 170, 0, 0.2);
        }

        @keyframes vehicleDetect {

            0%,
            20% {
                opacity: 0;
            }

            25%,
            75% {
                opacity: 1;
            }

            80%,
            100% {
                opacity: 0;
            }
        }

        /* ═══════════ ANIMATION 4: Hero Scanning Line ═══════════ */
        .hero-scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
            opacity: 0.3;
            animation: heroScan 4s linear infinite;
            z-index: 1;
        }

        @keyframes heroScan {
            0% {
                top: 0;
                opacity: 0;
            }

            10% {
                opacity: 0.3;
            }

            90% {
                opacity: 0.3;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* ═══════════ ANIMATION 5: Card Micro-Animations ═══════════ */
        .solution-card:hover .solution-icon .fa-bell {
            animation: bellShake 0.5s ease;
        }

        @keyframes bellShake {

            0%,
            100% {
                transform: rotate(0);
            }

            20% {
                transform: rotate(15deg);
            }

            40% {
                transform: rotate(-15deg);
            }

            60% {
                transform: rotate(10deg);
            }

            80% {
                transform: rotate(-10deg);
            }
        }

        .solution-card:hover .solution-icon .fa-lightbulb {
            animation: bulbPulse 0.8s ease;
            color: #ffd700;
        }

        @keyframes bulbPulse {

            0%,
            100% {
                filter: drop-shadow(0 0 0px transparent);
            }

            50% {
                filter: drop-shadow(0 0 12px #ffd700);
            }
        }

        .solution-card:hover .solution-icon .fa-car {
            animation: carDrive 0.6s ease;
        }

        @keyframes carDrive {
            0% {
                transform: translateX(-10px);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .solution-card:hover .solution-icon .fa-mobile-alt,
        .solution-card:hover .solution-icon .fa-mobile-screen-button {
            animation: phoneVibrate 0.4s ease;
        }

        @keyframes phoneVibrate {

            0%,
            100% {
                transform: translateX(0);
            }

            20% {
                transform: translateX(-2px);
            }

            40% {
                transform: translateX(2px);
            }

            60% {
                transform: translateX(-2px);
            }

            80% {
                transform: translateX(2px);
            }
        }

        .solution-card:hover .solution-icon .fa-shield-halved {
            animation: shieldPulse 0.6s ease;
        }

        @keyframes shieldPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
                color: #00ff88;
                filter: drop-shadow(0 0 8px #00ff88);
            }
        }

        .solution-card:hover .solution-icon .fa-user-check {
            animation: userPop 0.5s ease;
        }

        @keyframes userPop {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.25);
            }
        }

        .solution-card:hover .solution-icon .fa-id-card {
            animation: cardFlip 0.6s ease;
        }

        @keyframes cardFlip {
            0% {
                transform: rotateY(0);
            }

            50% {
                transform: rotateY(90deg);
            }

            100% {
                transform: rotateY(0);
            }
        }

        .solution-card:hover .solution-icon .fa-clock {
            animation: clockTick 0.6s ease;
        }

        @keyframes clockTick {

            0%,
            100% {
                transform: rotate(0);
            }

            50% {
                transform: rotate(360deg);
            }
        }

        .solution-card:hover .solution-icon .fa-bullhorn {
            animation: hornBlast 0.5s ease;
        }

        @keyframes hornBlast {

            0%,
            100% {
                transform: scale(1) rotate(0);
            }

            25% {
                transform: scale(1.15) rotate(-5deg);
            }

            75% {
                transform: scale(1.15) rotate(5deg);
            }
        }

        /* ═══════════ AUTOMATION SCENE ═══════════ */
        .automation-scene {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 220px;
            margin: 0 auto 40px;
            background: rgba(6, 18, 30, 0.4);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            overflow: hidden;
        }

        .auto-phone {
            width: 110px;
            height: 180px;
            background: #020408;
            border: 3px solid #1a2e42;
            border-radius: 14px;
            position: relative;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .auto-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 35px;
            height: 10px;
            background: #1a2e42;
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
        }

        .auto-header {
            font-family: var(--font-heading);
            font-size: 0.55rem;
            color: var(--accent-primary);
            text-align: center;
            margin-top: 12px;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .auto-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 6px 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.5rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .auto-btn i {
            font-size: 0.7rem;
        }

        /* Animated Pointer */
        .auto-cursor {
            position: absolute;
            font-size: 1.2rem;
            color: #fff;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
            z-index: 10;
            pointer-events: none;
            animation: phoneTap 6s infinite;
        }

        @keyframes phoneTap {
            0% {
                top: 150px;
                left: 90px;
                opacity: 0;
                transform: scale(1);
            }

            10% {
                top: 55px;
                left: 50px;
                opacity: 1;
                transform: scale(1);
            }

            /* Light btn */
            15% {
                transform: scale(0.85);
            }

            20% {
                transform: scale(1);
            }

            40% {
                top: 55px;
                left: 50px;
                opacity: 1;
                transform: scale(1);
            }

            45% {
                top: 90px;
                left: 50px;
                opacity: 1;
                transform: scale(1);
            }

            /* Fan btn */
            50% {
                transform: scale(0.85);
            }

            55% {
                transform: scale(1);
            }

            75% {
                top: 90px;
                left: 50px;
                opacity: 1;
                transform: scale(1);
            }

            85% {
                top: 150px;
                left: 90px;
                opacity: 0;
                transform: scale(1);
            }

            100% {
                opacity: 0;
            }
        }

        /* Smart Devices */
        .auto-devices {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .auto-dev {
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-glass);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-secondary);
            position: relative;
        }

        .auto-btn-light {
            animation: btnLightSync 6s infinite;
        }

        .auto-btn-fan {
            animation: btnFanSync 6s infinite;
        }

        .auto-dev-light {
            animation: devLightFlash 6s infinite;
        }

        .auto-dev-fan {
            animation: devFanSync 6s infinite;
        }

        .auto-dev-fan i {
            animation: fanSpin 6s linear infinite;
        }

        @keyframes btnLightSync {

            0%,
            15% {
                background: rgba(255, 255, 255, 0.05);
                color: var(--text-secondary);
                border-color: rgba(255, 255, 255, 0.1);
            }

            16%,
            90% {
                background: rgba(255, 223, 0, 0.15);
                color: #ffd700;
                border-color: rgba(255, 223, 0, 0.4);
            }

            91%,
            100% {
                background: rgba(255, 255, 255, 0.05);
                color: var(--text-secondary);
                border-color: rgba(255, 255, 255, 0.1);
            }
        }

        @keyframes devLightFlash {

            0%,
            15% {
                color: var(--text-secondary);
                box-shadow: none;
                border-color: var(--border-glass);
            }

            16%,
            90% {
                color: #ffd700;
                box-shadow: 0 0 20px rgba(255, 223, 0, 0.4);
                border-color: rgba(255, 223, 0, 0.5);
            }

            91%,
            100% {
                color: var(--text-secondary);
                box-shadow: none;
                border-color: var(--border-glass);
            }
        }

        @keyframes btnFanSync {

            0%,
            50% {
                background: rgba(255, 255, 255, 0.05);
                color: var(--text-secondary);
                border-color: rgba(255, 255, 255, 0.1);
            }

            51%,
            85% {
                background: rgba(0, 229, 255, 0.15);
                color: var(--accent-primary);
                border-color: var(--border-glass);
            }

            86%,
            100% {
                background: rgba(255, 255, 255, 0.05);
                color: var(--text-secondary);
                border-color: rgba(255, 255, 255, 0.1);
            }
        }

        @keyframes devFanSync {

            0%,
            50% {
                color: var(--text-secondary);
                border-color: var(--border-glass);
                box-shadow: none;
            }

            51%,
            85% {
                color: var(--accent-primary);
                border-color: rgba(0, 229, 255, 0.5);
                box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
            }

            86%,
            100% {
                color: var(--text-secondary);
                border-color: var(--border-glass);
                box-shadow: none;
            }
        }

        @keyframes fanSpin {

            0%,
            50% {
                transform: rotate(0deg);
            }

            85% {
                transform: rotate(1440deg);
            }

            86%,
            100% {
                transform: rotate(1440deg);
            }
        }

        /* ═══════════ NUMBER COUNTER ANIMATION ═══════════ */
        .number-card h3 {
            transition: transform 0.4s ease;
        }

        .number-card.counted h3 {
            animation: numberPop 0.6s ease;
        }

        @keyframes numberPop {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }

            60% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* ═══════════ UTILITY: Left-aligned section title ═══════════ */
        .section-title-left {
            text-align: left;
        }

        /* ═══════════ GALLERY IMAGE FIX ═══════════ */
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* ═══════════ GALLERY LIGHTBOX ═══════════ */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(2, 4, 8, 0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .lightbox-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 12px;
            box-shadow: 0 0 60px rgba(0, 229, 255, 0.2);
            border: 1px solid var(--border-glass);
            transform: scale(0.9);
            transition: transform 0.4s ease;
        }

        .lightbox-overlay.active img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 2rem;
            color: var(--accent-primary);
            background: none;
            border: none;
            cursor: pointer;
            z-index: 2001;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            background: rgba(0, 229, 255, 0.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--accent-primary);
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .lightbox-nav:hover {
            background: rgba(0, 229, 255, 0.15);
            box-shadow: var(--glow);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-heading);
            font-size: 0.8rem;
            color: var(--text-secondary);
            letter-spacing: 0.1em;
        }

        /* ═══════════ TESTIMONIAL DOTS ═══════════ */
        .testimonial-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 24px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-glass);
            border: 1px solid var(--border-glass);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            box-shadow: 0 0 8px var(--accent-primary);
        }

        /* ═══════════ COOKIE CONSENT ═══════════ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(6, 18, 30, 0.97);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-glass);
            padding: 16px 24px;
            z-index: 1500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            max-width: 600px;
        }

        .cookie-banner a {
            color: var(--accent-primary);
            text-decoration: underline;
        }

        .cookie-accept {
            padding: 8px 20px;
            background: var(--accent-primary);
            color: var(--bg-primary);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.75rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            letter-spacing: 0.05em;
            transition: var(--transition);
        }

        .cookie-accept:hover {
            box-shadow: var(--glow);
        }

        /* ═══════════ SERVICES OVERVIEW ═══════════ */

        .services-overview-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .service-overview-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 220px;
        }

        .service-overview-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: var(--glow);
            border-color: var(--accent-primary);
        }

        .service-overview-card .svc-icon {
            font-size: 2rem;
            color: var(--accent-primary);
            margin-bottom: 14px;
            display: block;
        }

        .service-overview-card h3 {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.04em;
            color: var(--text-primary);
        }

        .service-overview-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        @media(max-width:1024px) {
            .services-overview-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:768px) {
            .services-overview-grid {
                grid-template-columns: 1fr;
            }

            /* Fix: Smaller floating buttons on mobile */
            .floating-btns {
                bottom: 14px;
                right: 10px;
                gap: 8px;
            }

            .float-btn {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            .lightbox-nav {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }

            .lightbox-prev {
                left: 8px;
            }

            .lightbox-next {
                right: 8px;
            }

            /* Notification popup at bottom on mobile */
            .notif-popup {
                top: auto;
                bottom: -200px;
                right: 12px;
                left: 12px;
                width: auto;
                max-width: none;
            }

            .notif-popup.show {
                bottom: 80px;
                right: 12px;
            }
        }

        @media(max-width:480px) {
            .services-overview-grid {
                grid-template-columns: 1fr;
            }
        }