/* =================================================================
   TMS Design Consultants — Master Stylesheet
   Generated from inline <style> blocks across all HTML pages.
   =================================================================

   SHARED RULES appear first (used across multiple pages).
   PAGE-SPECIFIC RULES are at the bottom, labelled by source file.
================================================================= */

/* ================================================================= */
/* === SHARED / COMMON RULES (appear in 2 or more HTML files)  === */
/* ================================================================= */

:root {
    --cyan: #00f5ff;
    --blue: #0080ff;
    --dark-blue: #001233;
    --deeper: #000810;
    --grid-color: rgba(0,245,255,0.07);
    --glow: 0 0 20px rgba(0,245,255,0.5), 0 0 40px rgba(0,245,255,0.2);
    --glow-strong: 0 0 30px rgba(0,245,255,0.8), 0 0 60px rgba(0,245,255,0.4), 0 0 100px rgba(0,245,255,0.1);
    --panel-bg: rgba(0,18,51,0.7);
    --panel-border: rgba(0,245,255,0.25);
    --text-dim: rgba(0,245,255,0.5);
    --orange: #ff6b00;
    --orange-glow: 0 0 20px rgba(255,107,0,0.5);
  }

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

html { scroll-behavior: smooth; }

body {
    background: var(--deeper);
    color: var(--cyan);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

/* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 20px; height: 20px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
  mix-blend-mode: normal;
  }

.cursor-dot {
    position: fixed;
    width: 4px; height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    box-shadow: var(--glow);
  }

body:hover .cursor { opacity: 1; }

/* GRID BACKGROUND */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(var(--grid-color) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
  }

.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, var(--deeper) 100%);
  }

/* SCANLINES */
  .scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.06) 3px,
      rgba(0,0,0,0.06) 4px
    );
    z-index: 1;
    pointer-events: none;
    animation: scanline-drift 8s linear infinite;
  }

@keyframes scanline-drift {
    0%   { background-position: 0 0; }
    100% { background-position: 0 40px; }
  }

/* Moving CRT sweep beam */
  .scanlines::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 120px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0,245,255,0.018) 40%,
      rgba(0,245,255,0.035) 50%,
      rgba(0,245,255,0.018) 60%,
      transparent 100%
    );
    animation: crt-sweep 7s linear infinite;
    pointer-events: none;
  }

@keyframes crt-sweep {
    0%   { top: -120px; }
    100% { top: 100vh; }
  }

/* CRT vignette corners */
  .vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
  }

/* CONTENT WRAPPER */
  .content {
    position: relative;
    z-index: 2;
  }

/* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 60px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,8,16,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--panel-border);
  }

nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    box-shadow: var(--glow);
  }

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-shadow: var(--glow);
  }

.nav-logo span { color: var(--orange); }

.nav-links { display: flex; gap: 40px; }

.nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
  }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform 0.3s;
    box-shadow: var(--glow);
  }

.nav-links a:hover { color: var(--cyan); text-shadow: var(--glow); }

.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    cursor: none;
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

.nav-cta:hover {
    background: var(--cyan);
    color: var(--deeper);
    box-shadow: var(--glow);
  }

/* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px 60px;
    position: relative;
    overflow: hidden;
  }

.hero-rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    pointer-events: none;
  }

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,245,255,0.08);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: ring-rotate linear infinite;
  }

.ring:nth-child(1) { width: 300px; height: 300px; animation-duration: 20s; border-color: rgba(0,245,255,0.15); }

.ring:nth-child(2) { width: 450px; height: 450px; animation-duration: 30s; animation-direction: reverse; }

.ring:nth-child(3) { width: 600px; height: 600px; animation-duration: 45s; }

.ring:nth-child(4) { width: 750px; height: 750px; animation-duration: 60s; animation-direction: reverse; border-color: rgba(0,128,255,0.06); }

.ring::after {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: var(--glow);
  }

@keyframes ring-rotate { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-content { text-align: center; position: relative; z-index: 2; }

.hero-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-shadow: var(--orange-glow);
    margin-bottom: 20px;
    display: block;
    animation: flicker 4s infinite;
  }

@keyframes flicker {
    0%,95%,100% { opacity: 1; }
    96% { opacity: 0.4; }
    97% { opacity: 1; }
    98% { opacity: 0.2; }
    99% { opacity: 1; }
  }

.hero h1 .line1 {
    display: block;
    color: #fff;
    text-shadow: 0 0 40px rgba(255,255,255,0.3), 0 0 80px rgba(0,245,255,0.2);
  }

.hero h1 .line2 {
    display: block;
    color: var(--cyan);
    text-shadow: var(--glow-strong);
    position: relative;
  }

.hero-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 50px;
    text-transform: uppercase;
  }

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

.btn-primary {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 16px 40px;
    background: var(--cyan);
    color: var(--deeper);
    border: none;
    cursor: none;
    text-transform: uppercase;
    font-weight: 700;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
  }

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }

.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 16px 40px;
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    cursor: none;
    text-transform: uppercase;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
  }

.btn-secondary:hover { background: rgba(0,245,255,0.1); box-shadow: var(--glow); }

/* SECTION STYLES */
  section { padding: 120px 60px; position: relative; }

.section-header { text-align: center; margin-bottom: 80px; }

.section-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--orange);
    text-shadow: var(--orange-glow);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
  }

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 40px rgba(0,245,255,0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

.section-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 0 auto;
    box-shadow: var(--glow);
  }

/* PORTFOLIO */
  #portfolio { background: linear-gradient(180deg, var(--deeper) 0%, rgba(0,18,51,0.3) 50%, var(--deeper) 100%); }

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

.tab-btn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid rgba(0,245,255,0.2);
    cursor: none;
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    position: relative;
    overflow: hidden;
  }

.tab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(0,245,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }

.tab-btn:hover::before, .tab-btn.active::before { opacity: 1; }

.tab-btn.active {
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: var(--glow);
    background: rgba(0,245,255,0.05);
  }

.tab-btn:hover { color: var(--cyan); border-color: rgba(0,245,255,0.5); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

.project-card {
    padding: 32px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: transform 0.3s;
  }

.project-card:hover { transform: translateY(-4px); }

.project-card-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, rgba(0,245,255,0.05) 0%, rgba(0,128,255,0.1) 100%);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.project-card-img .proj-icon {
    font-size: 3rem;
    opacity: 0.3;
    color: var(--cyan);
    font-family: 'Orbitron', monospace;
  }

.project-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--panel-bg) 0%, transparent 60%);
  }

.project-card-img img{
  width: 100%;
}

.proj-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

.proj-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }

.proj-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 300;
  }

.portfolio-panel-grid {
    animation: fadeIn 0.4s ease;
  }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.portfolio-panel-grid.hidden { display: none; }

/* SERVICES */
  #services {
    background: rgba(0,4,16,0.8);
/*    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);*/
      /*MADD_ABOVE WAS WHEN NOT USING CIRCUIT SECTION DIVIDERS*/
  }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

.service-card .service-title,
  .service-card .service-desc,
  .service-card .btn-explore {
    padding-left: 28px;
    padding-right: 28px;
  }

.service-icon {
    width: 60px; height: 60px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 20px;
    font-size: 1.5rem;
    color: var(--cyan);
    box-shadow: var(--glow);
    transition: all 0.3s;
    position: relative;
  }

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(0,245,255,0.2);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
  }

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
  }

.service-card:hover .service-icon {
    background: rgba(0,245,255,0.1);
    box-shadow: var(--glow-strong);
  }

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

.service-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
  }

.btn-explore {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 10px 24px;
    background: transparent;
    color: var(--cyan);
    border: 1px solid rgba(0,245,255,0.4);
    cursor: none;
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }

.btn-explore:hover {
    background: rgba(0,245,255,0.1);
    border-color: var(--cyan);
    box-shadow: var(--glow);
  }

/* TESTIMONIALS */
  #testimonials { background: var(--deeper); }

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }

.testimonial-track { overflow: hidden; }

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
  }

.testimonial-slide.active { display: block; }

.testimonial-card {
    padding: 50px 60px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    text-align: center;
    position: relative;
  }

.quote-mark {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    color: var(--cyan);
    opacity: 0.1;
    position: absolute;
    top: 10px; left: 40px;
    line-height: 1;
  }

.testimonial-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
  }

.testimonial-author {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-shadow: var(--glow);
    text-transform: uppercase;
  }

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    letter-spacing: 0.1em;
  }

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

.slider-btn {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--panel-border);
    color: var(--cyan);
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    font-family: monospace;
  }

.slider-btn:hover { border-color: var(--cyan); box-shadow: var(--glow); background: rgba(0,245,255,0.05); }

.slider-dots { display: flex; gap: 10px; }

.slider-dot {
    width: 6px; height: 6px;
    background: var(--panel-border);
    border-radius: 50%;
    cursor: none;
    transition: all 0.3s;
  }

.slider-dot.active {
    background: var(--cyan);
    box-shadow: var(--glow);
    transform: scale(1.3);
  }

/* ACCREDITATIONS */
  #accreditations {
    padding: 80px 0;
    overflow: hidden;
    background: rgba(0,4,16,0.9);
/*    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);*/
    /*MADD_ABOVE WAS WHEN NOT USING CIRCUIT SECTION DIVIDERS*/
  }

.accred-header { text-align: center; margin-bottom: 50px; padding: 0 60px; }

.scroller-wrapper { overflow: hidden; position: relative; }

.scroller-wrapper::before,
  .scroller-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 200px;
    z-index: 3;
    pointer-events: none;
  }

.scroller-wrapper::before { left: 0; background: linear-gradient(90deg, rgba(0,4,16,0.9), transparent); }

.scroller-wrapper::after { right: 0; background: linear-gradient(-90deg, rgba(0,4,16,0.9), transparent); }

.scroller-track {
    display: flex;
    gap: 32px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
  }

.scroller-track:hover { animation-play-state: paused; }

@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.accred-badge {
    flex-shrink: 0;
    padding: 18px 32px;
    border: 1px solid var(--panel-border);
    background: var(--panel-bg);
    display: flex;
    align-items: center;
    gap: 14px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: border-color 0.3s;
    white-space: nowrap;
  }

.accred-badge:hover { border-color: rgba(0,245,255,0.4); }

.accred-icon {
    width: 32px; height: 32px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--cyan);
    box-shadow: var(--glow);
    flex-shrink: 0;
  }

.accred-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
  }

.accred-year {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

/* BLOG */
  #blog { background: var(--deeper); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

.blog-card {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    overflow: hidden;
    transition: transform 0.3s;
    cursor: none;
  }

.blog-card:hover { transform: translateY(-6px); }

.blog-img {
    height: 180px;
    background: linear-gradient(135deg, rgba(0,128,255,0.1) 0%, rgba(0,245,255,0.05) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.blog-img-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(0,245,255,0.3);
    text-transform: uppercase;
  }

.blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--panel-bg) 0%, transparent 70%);
  }

.blog-img img{
  width: 100%;
  margin: auto;
}

.blog-content { padding: 24px 28px 32px; }

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

.blog-cat {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
  }

.blog-date {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

.blog-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
  }

.blog-read {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }

.blog-read:hover { gap: 16px; text-shadow: var(--glow); }

.blog-read::after { content: '→'; }

/* CONTACT */
  #contact {
    background: rgba(0,4,16,0.9);
    border-top: 1px solid var(--panel-border);
  }

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
  }

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
  }

.contact-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid var(--panel-border);
    background: var(--panel-bg);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }

.stat-icon {
    color: var(--cyan);
    text-shadow: var(--glow);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    font-family: monospace;
  }

.stat-text { font-family: 'Share Tech Mono', monospace; font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.1em; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

.field-input, .field-textarea, .field-select {
    background: rgba(0,18,51,0.5);
    border: 1px solid var(--panel-border);
    color: var(--cyan);
    padding: 14px 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    width: 100%;
    appearance: none;
  }

.field-input::placeholder, .field-textarea::placeholder { color: rgba(0,245,255,0.25); }

.field-input:focus, .field-textarea:focus, .field-select:focus {
    border-color: var(--cyan);
    box-shadow: var(--glow);
  }

.field-textarea { resize: vertical; min-height: 120px; }

.field-select { cursor: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f5ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.field-select option { background: #000c1e; color: var(--cyan); }

.btn-submit {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    padding: 18px 40px;
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    cursor: none;
    text-transform: uppercase;
    font-weight: 700;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
  }

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    z-index: -1;
  }

.btn-submit:hover { color: var(--deeper); box-shadow: var(--glow); }

.btn-submit:hover::before { transform: scaleX(1); }

/* FOOTER */
  footer {
    padding: 60px;
    background: rgba(0,2,8,0.98);
    border-top: 1px solid var(--panel-border);
    position: relative;
  }

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), var(--cyan), transparent);
    box-shadow: var(--glow);
  }

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }

.footer-brand .brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-shadow: var(--glow);
    margin-bottom: 16px;
  }

.footer-brand .brand-name span { color: var(--orange); }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
    max-width: 280px;
  }

.footer-col h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--panel-border);
  }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s, text-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

.footer-col ul li a::before { content: '//'; font-family: 'Share Tech Mono', monospace; font-size: 0.65rem; color: var(--cyan); opacity: 0.5; }

.footer-col ul li a:hover { color: var(--cyan); text-shadow: var(--glow); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--panel-border);
    max-width: 1200px;
    margin: 0 auto;
  }

.footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

.status-dot {
    width: 6px; height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
  }

@keyframes status-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.6); } 50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); } }

/* DATA STREAM DECORATION */
  .data-stream {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    color: rgba(0,245,255,0.15);
    line-height: 1.8;
    letter-spacing: 0.1em;
    user-select: none;
    pointer-events: none;
    writing-mode: vertical-rl;
  }

/* DIVIDERS */
  .section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--panel-border), transparent);
  }

/* SCROLL ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

.fade-up:nth-child(2) { transition-delay: 0.1s; }

.fade-up:nth-child(3) { transition-delay: 0.2s; }

.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── GLITCH TEXT ─── */
  .glitch {
    position: relative;
    display: inline-block;
  }

.glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
  }

.glitch::before {
    color: #ff003c;
    text-shadow: none;
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    animation: glitch-top 4s infinite linear;
    opacity: 0;
  }

.glitch::after {
    color: #00f5ff;
    text-shadow: none;
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    animation: glitch-bot 4s infinite linear;
    opacity: 0;
  }

@keyframes glitch-top {
    0%,89%,100% { opacity: 0; transform: none; }
    90%          { opacity: 1; transform: translate(-3px, -1px) skew(-1deg); }
    91%          { opacity: 1; transform: translate(3px, 1px) skew(1deg); }
    92%          { opacity: 0; }
    94%          { opacity: 1; transform: translate(-2px, 0); }
    95%          { opacity: 0; }
  }

@keyframes glitch-bot {
    0%,89%,100% { opacity: 0; transform: none; }
    90%          { opacity: 1; transform: translate(3px, 1px) skew(1deg); }
    92%          { opacity: 0; }
    93%          { opacity: 1; transform: translate(-3px, -1px); }
    95%          { opacity: 0; }
  }

/* ─── HOLOGRAPHIC FOIL on cards ─── */
  .holo-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.1s;
    transform-style: preserve-3d;
    will-change: transform;
  }

/* Foil rainbow layer — revealed on hover via JS mouse position */
  .holo-panel .holo-foil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 3;
    background: conic-gradient(
      from 0deg,
      rgba(255,0,128,0.07),
      rgba(255,165,0,0.07),
      rgba(0,245,255,0.1),
      rgba(128,0,255,0.07),
      rgba(255,0,128,0.07)
    );
    mix-blend-mode: screen;
  }

.holo-panel:hover .holo-foil {
    opacity: 1;
    animation: foil-spin 3s linear infinite;
  }

@keyframes foil-spin {
    from { filter: hue-rotate(0deg); }
    to   { filter: hue-rotate(360deg); }
  }

/* Specular highlight that tracks mouse */
  .holo-panel .holo-specular {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 4;
    background: radial-gradient(circle 180px at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  }

.holo-panel:hover .holo-specular { opacity: 1; }

/* Edge glow sweep on hover */
  .holo-panel::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(130deg, transparent 30%, rgba(0,245,255,0.15) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 5;
  }

.holo-panel:hover::after { opacity: 1; }

.holo-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
  }

.holo-panel:hover::before { opacity: 1; }

.holo-panel:hover {
    border-color: rgba(0,245,255,0.5);
    box-shadow: 0 0 30px rgba(0,245,255,0.1), inset 0 0 30px rgba(0,245,255,0.03), 0 20px 60px rgba(0,0,0,0.5);
  }

/* ─── CARD DATA READOUT BAR ─── */
  .card-readout {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 6;
    box-shadow: 0 0 8px var(--cyan);
  }

.holo-panel:hover .card-readout { transform: scaleX(1); }

/* ─── PARTICLE CANVAS ─── */
  #particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
  }

/* ─── GLITCH BAND — full-page random horizontal tear ─── */
  .glitch-band {
    position: fixed;
    left: 0; right: 0;
    height: 2px;
    background: rgba(0,245,255,0.4);
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    mix-blend-mode: screen;
  }

/* ─── HERO TITLE TYPING CURSOR ─── */
  .hero-cursor {
    display: inline-block;
    width: 3px;
    background: var(--cyan);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: baseline;
  }

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ─── SECTION DATA TICKER ─── */
  .data-ticker {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: rgba(0,245,255,0.2);
    letter-spacing: 0.15em;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 16px;
  }

.data-ticker-inner {
    display: inline-block;
    animation: ticker-scroll 20s linear infinite;
  }

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

/* ─── NOISE TEXTURE OVERLAY ─── */
  .noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    animation: noise-shift 0.5s steps(2) infinite;
  }

@keyframes noise-shift {
    0%   { background-position: 0 0; }
    25%  { background-position: 30px -20px; }
    50%  { background-position: -15px 10px; }
    75%  { background-position: 20px 25px; }
    100% { background-position: 0 0; }
  }

/* ─── CORNER brackets upgrade — animated on hover ─── */
  .corner-tl, .corner-tr, .corner-bl, .corner-br {
    position: absolute;
    width: 14px; height: 14px;
    border-color: var(--cyan);
    border-style: solid;
    opacity: 0.5;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 6;
  }

.holo-panel:hover .corner-tl,
  .holo-panel:hover .corner-tr,
  .holo-panel:hover .corner-bl,
  .holo-panel:hover .corner-br {
    width: 20px; height: 20px; opacity: 1;
  }

.corner-tl { top: 6px; left: 6px; border-width: 1px 0 0 1px; }

.corner-tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }

.corner-bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }

.corner-br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

/* HEXAGON DATA DECORATIONS */
  .hex-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.04;
  }

/* ─── MOBILE HAMBURGER ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: none;
    padding: 8px;
    z-index: 200;
    position: relative;
  }

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cyan);
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
    box-shadow: 0 0 6px rgba(0,245,255,0.6);
  }

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }

.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }

.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(0,4,16,0.97);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--panel-border);
    z-index: 99;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
  }

.mobile-menu.open {
    max-height: 420px;
    padding: 20px 0 30px;
  }

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    box-shadow: var(--glow);
  }

.mobile-menu a {
    display: block;
    padding: 16px 32px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,245,255,0.05);
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
    position: relative;
  }

.mobile-menu a::before {
    content: '// ';
    color: var(--cyan);
    opacity: 0.4;
    font-size: 0.7rem;
  }

.mobile-menu a:hover {
    color: var(--cyan);
    background: rgba(0,245,255,0.04);
    padding-left: 44px;
    text-shadow: var(--glow);
  }

.mobile-menu .mobile-cta {
    margin: 20px 32px 0;
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.3s;
  }

.mobile-menu .mobile-cta:hover {
    background: var(--cyan);
    color: var(--deeper);
  }

/* ─── HEX GRID HERO OVERLAY ─── */
  .hero-hex-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='%2300f5ff' stroke-width='0.5'/%3E%3Cpolygon points='28,52 54,66 54,94 28,108 2,94 2,66' fill='none' stroke='%2300f5ff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 56px 100px;
  }

/* ─── AURORA GLOW ─── */
  .aurora {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    animation: aurora-drift linear infinite;
  }

.aurora-1 {
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,245,255,1) 0%, transparent 70%);
    top: 10%; left: -100px;
    animation-duration: 25s;
  }

.aurora-2 {
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,128,255,1) 0%, transparent 70%);
    bottom: 20%; right: -100px;
    animation-duration: 32s;
    animation-direction: reverse;
    opacity: 0.05;
  }

.aurora-3 {
    width: 300px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,107,0,1) 0%, transparent 70%);
    top: 50%; left: 40%;
    animation-duration: 40s;
    opacity: 0.03;
  }

@keyframes aurora-drift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(80px, -60px) scale(1.1); }
    66%  { transform: translate(-40px, 40px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
  }

/* ─── FLOATING DATA NODES ─── */
  .data-nodes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

.data-node {
    position: absolute;
    width: 4px; height: 4px;
    border: 1px solid var(--cyan);
    transform: rotate(45deg);
    opacity: 0;
    animation: node-float linear infinite;
    box-shadow: 0 0 6px rgba(0,245,255,0.6);
  }

@keyframes node-float {
    0%   { opacity: 0; transform: rotate(45deg) translateY(0); }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.4; }
    100% { opacity: 0; transform: rotate(45deg) translateY(-120px); }
  }

/* ─── SECTION DEPTH LINES ─── */
  .depth-line {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,245,255,0.08) 20%, rgba(0,245,255,0.2) 50%, rgba(0,245,255,0.08) 80%, transparent 100%);
    pointer-events: none;
  }

/* ─── HOLOGRAPHIC PROJECTION LINES (hero) ─── */
  .holo-projection {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--cyan));
    opacity: 0.3;
    animation: projection-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px var(--cyan);
  }

@keyframes projection-pulse {
    0%,100% { opacity: 0.1; height: 60px; }
    50% { opacity: 0.4; height: 120px; }
  }

/* ─── DIGITAL RAIN (subtle vertical lines) ─── */
  .digital-rain-col {
    position: fixed;
    top: 0;
    width: 1px;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

.digital-rain-col::after {
    content: '';
    position: absolute;
    top: -200px;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(0,245,255,0.15), transparent);
    animation: rain-fall linear infinite;
  }

@keyframes rain-fall {
    from { transform: translateY(0); }
    to   { transform: translateY(calc(100vh + 200px)); }
  }

/* ─── SERVICE CARD IMAGE AREA ─── */
  .service-img-area {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, rgba(0,245,255,0.04) 0%, rgba(0,128,255,0.08) 100%);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,245,255,0.1);
  }

.service-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.4s;
  }

.service-card:hover .service-img-area img {
    opacity: 1;
    transform: scale(1.04);
  }

.service-img-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--panel-bg) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
  }

.service-img-placeholder {
    font-size: 2.5rem;
    color: var(--cyan);
    opacity: 0.2;
    position: relative;
    z-index: 0;
  }

/* ─── ACCRED BADGE IMAGE SUPPORT ─── */
  .accred-img {
    /*width: 50%;*/
    max-height: 100px;
    /*object-fit: contain;*/
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(170deg);
    opacity: 0.8;
    flex-shrink: 0;
    transition: opacity 0.3s, filter 0.3s;
  }

/* ─── MATRIX RAIN CANVAS ─── */
  #matrixCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.045;
  }

/* ─── HOLOGRAM PROJECTION CONE ─── */
  .holo-cone {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 1;
  }

.holo-cone-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    width: 2px;
    background: linear-gradient(0deg, rgba(0,245,255,0.6), transparent);
    pointer-events: none;
    animation: cone-flicker 3s ease-in-out infinite;
  }

@keyframes cone-flicker {
    0%,100% { opacity: 0.4; }
    50% { opacity: 0.8; }
    75% { opacity: 0.3; }
  }

.holo-cone-platform {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(0,245,255,0.08), rgba(0,245,255,0.3), rgba(0,245,255,0.08), transparent);
    box-shadow: 0 0 20px rgba(0,245,255,0.4), 0 0 60px rgba(0,245,255,0.1);
    animation: platform-pulse 2s ease-in-out infinite;
  }

@keyframes platform-pulse {
    0%,100% { box-shadow: 0 0 20px rgba(0,245,255,0.4), 0 0 60px rgba(0,245,255,0.1); }
    50% { box-shadow: 0 0 40px rgba(0,245,255,0.7), 0 0 100px rgba(0,245,255,0.2); }
  }

/* ─── SVG CIRCUIT TRACES ─── */
  .circuit-divider {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: visible;
    pointer-events: none;
    margin: 0;
    display: block;
  }

.circuit-divider svg {
    width: 100%;
    height: 40px;
    overflow: visible;
  }

.circuit-path {
    fill: none;
    stroke: rgba(0,245,255,0.15);
    stroke-width: 1;
  }

.circuit-path-glow {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.5;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    filter: drop-shadow(0 0 4px rgba(0,245,255,0.8));
    opacity: 0;
    transition: none;
  }

.circuit-divider .circuit-path-glow {
  animation: trace-illuminate 3s linear infinite;
  opacity: 1;
}

@keyframes trace-illuminate {
  0% {
    stroke-dashoffset: 600;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.circuit-node {
    fill: var(--cyan);
    filter: drop-shadow(0 0 4px rgba(0,245,255,1));
    opacity: 0;
    transition: opacity 0.3s;
  }

.circuit-divider.illuminated .circuit-node {
    opacity: 1;
    animation: node-blink 1s step-end infinite 2s;
  }

@keyframes node-blink {
    0%,100% { opacity: 1; } 50% { opacity: 0.2; }
  }

.circuit-divider:nth-of-type(2) .circuit-path-glow {
  animation-delay: 0.7s;
}

.circuit-divider:nth-of-type(3) .circuit-path-glow {
  animation-delay: 1.4s;
}

.circuit-path {
  stroke: rgba(0,245,255,0.08);
}

.circuit-path-glow {
  stroke: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(0,245,255,0.9));
}

/* ─── SECTION BOOT SCAN ─── */
  .boot-scan {
    position: absolute;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0,245,255,0.8), rgba(255,255,255,0.4), rgba(0,245,255,0.8), transparent);
    box-shadow: 0 0 15px rgba(0,245,255,0.8), 0 0 40px rgba(0,245,255,0.3);
    pointer-events: none;
    z-index: 20;
    top: 0;
    opacity: 0;
  }

section { position: relative; }

/* ─── CARD HOLO LIFT SHADOW ─── */
  .holo-lift-cone {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(0,245,255,0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(4px);
  }

.holo-panel:hover .holo-lift-cone { opacity: 1; }

/* ─── NAV ACTIVE TRACKER ─── */
  .nav-links a.nav-active {
    color: var(--cyan) !important;
    text-shadow: var(--glow) !important;
  }

.nav-links a.nav-active::after { transform: scaleX(1) !important; }

.nav-links a.nav-active::before {
    content: '//';
    position: absolute;
    left: -18px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--orange);
    opacity: 0.8;
    animation: nav-ping 1s ease-out;
  }

@keyframes nav-ping {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 0.8; transform: scale(1); }
  }

/* ─── STATUS HUD OVERLAY ─── */
  .hud-panel {
    position: absolute;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: rgba(0,245,255,0.5);
    letter-spacing: 0.12em;
    pointer-events: none;
    z-index: 3;
    border: 1px solid rgba(0,245,255,0.12);
    background: rgba(0,8,16,0.5);
    padding: 8px 12px;
    backdrop-filter: blur(8px);
    line-height: 1.8;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    animation: hud-flicker 6s ease-in-out infinite;
  }

.hud-panel-tl { top: 100px; left: 40px; }

.hud-panel-tr { top: 100px; right: 40px; text-align: right; }

.hud-panel-bl { bottom: 60px; left: 40px; }

@keyframes hud-flicker {
    0%,95%,100% { opacity: 1; }
    96% { opacity: 0.3; }
    97% { opacity: 1; }
    98% { opacity: 0.5; }
    99% { opacity: 1; }
  }

.hud-value { color: var(--cyan); }

.hud-value.orange { color: var(--orange); }

.hud-bar {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: rgba(0,245,255,0.1);
    vertical-align: middle;
    position: relative;
    margin-left: 6px;
  }

.hud-bar-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
  }

.hud-title {
    color: rgba(0,245,255,0.3);
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(0,245,255,0.08);
    margin-bottom: 4px;
    padding-bottom: 4px;
  }

/* ─── FOOTER ENERGY CHARGE BAR ─── */
  .footer-energy-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    overflow: hidden;
    background: rgba(0,245,255,0.05);
  }

.footer-energy-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--cyan), rgba(255,255,255,0.8), var(--cyan));
    box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,245,255,0.4);
    animation: energy-charge 4s ease-in-out infinite;
    background-size: 200% 100%;
    animation: energy-charge 4s ease-in-out infinite, shimmer-bar 1.5s linear infinite;
  }

@keyframes energy-charge {
    0% { width: 0%; opacity: 0.6; }
    60% { width: 100%; opacity: 1; }
    80% { width: 100%; opacity: 0.8; }
    100% { width: 0%; opacity: 0; }
  }

@keyframes shimmer-bar {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

/* ─── CHROMATIC ABERRATION ─── */
  body.chroma-glitch::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    mix-blend-mode: screen;
    background: transparent;
    animation: chroma-split 0.3s steps(1) forwards;
  }

@keyframes chroma-split {
    0% { box-shadow: inset 4px 0 0 rgba(255,0,0,0.15), inset -4px 0 0 rgba(0,255,255,0.15); }
    33% { box-shadow: inset -4px 0 0 rgba(255,0,0,0.15), inset 4px 0 0 rgba(0,255,255,0.15); }
    66% { box-shadow: inset 2px 0 0 rgba(0,255,0,0.1), inset -2px 0 0 rgba(255,0,255,0.1); }
    100% { box-shadow: none; }
  }

/* ─── HERO TYPING CURSOR ─── */
  .type-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--cyan);
    margin-left: 3px;
    vertical-align: text-bottom;
    animation: blink 0.9s step-end infinite;
    box-shadow: 0 0 6px var(--cyan);
  }

/* ─── TESSELLATING TRIANGLE MESH ─── */
  #meshCanvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
  }

* {
  /*backdrop-filter: none !important;*/
  filter: none !important;
}

.hero-content img{
  max-width: 50%;
  margin-bottom: -70px;
}

@media (max-width: 900px) {
.hero-content img{
  max-width: 100%;
  margin-bottom: -25px;
}
}

@media (max-width: 900px) {
.hud-panel{
display:none;
}
}

.form-status { margin-top: 20px; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: all 0.35s ease; }

.form-status.success, .form-status.error { opacity: 1; transform: translateY(0); }

.form-status.success { color: #5fffd2; text-shadow: 0 0 12px rgba(95, 255, 210, 0.7); }

.form-status.error { color: #ff5f7a; text-shadow: 0 0 12px rgba(255, 95, 122, 0.7); }

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

.service-card {
    padding: 0 0 32px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    cursor: none;
    overflow: hidden;
  }

/* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 80px 24px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero { padding: 100px 24px 60px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr 1fr; }
  }

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }

/* ===================================================== */
/* SERVICE PAGE CSS                                      */
/* ALL NEW CSS BELOW THIS LINE                           */
/* ===================================================== */

.service-hero {
    padding: 180px 60px 100px;
    text-align: center;
    position: relative;
}

.page-breadcrumb {
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-dim);
    letter-spacing: .2em;
    font-size: .7rem;
    margin-bottom: 24px;
}

.service-tag {
    display: block;
    color: var(--orange);
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: .35em;
    margin-bottom: 20px;
}

.service-page-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.8rem,6vw,5rem);
    color: white;
    margin-bottom: 20px;
    text-shadow: var(--glow);
}

.service-page-subtitle {
    max-width: 800px;
    margin: auto;
    color: var(--text-dim);
    font-size: 1.2rem;
    line-height: 1.7;
}

.service-feature-image {
    padding: 0 60px 80px;
}

.service-image-panel {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.service-image-panel img {
    width: 100%;
    display: block;
}

.service-content-section {
    padding: 0 60px 120px;
}

.service-content-wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.service-article {
    padding: 50px;
}

.article-content {
    max-width: 850px;
}

.article-content h2 {
    font-family: 'Orbitron', monospace;
    color: white;
    margin: 50px 0 20px;
    font-size: 1.8rem;
}

.article-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cyan);
    margin: 35px 0 15px;
    font-size: 1.1rem;
}

.article-content p {
    line-height: 1.9;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}

.article-content ul {
    margin: 20px 0 30px 25px;
}

.article-content li {
    margin-bottom: 12px;
    color: rgba(255,255,255,.85);
}

.info-callout {
    margin: 40px 0;
    padding: 25px;
    border: 1px solid var(--panel-border);
    background: rgba(0,245,255,.04);
}

.callout-label {
    display: block;
    margin-bottom: 10px;
    color: var(--orange);
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: .2em;
    font-size: .7rem;
}

.service-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.sidebar-panel {
    padding: 30px;
}

.sidebar-title {
    display: block;
    margin-bottom: 25px;
    font-family: 'Orbitron', monospace;
    color: white;
}

.sidebar-stat {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,245,255,.15);
    color: var(--text-dim);
}

.sidebar-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 8px;
}

.service-cta {
    padding: 0 60px 120px;
}

.cta-panel {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 70px;
}

.cta-panel h2 {
    font-family: 'Orbitron', monospace;
    color: white;
    margin-bottom: 20px;
}

.cta-panel p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-dim);
    line-height: 1.8;
}

@media (max-width: 1000px) {

    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: relative;
        top: auto;
    }

}

@media (max-width: 768px) {

    .service-hero,
    .service-content-section,
    .service-feature-image,
    .service-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .service-article {
        padding: 30px;
    }

}

@media (max-width: 768px) {
    .service-card-inline {
        flex: 1 1 100% !important;
    }
}


/* ================================================================= */
/* === index.html === */
/* ================================================================= */

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

.services-grid-brochure {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

/*MADD_ABOVE For martins brochure like change to services, 4 to a row vs 3. kept old one for display on other pages*/

  .service-card {
    padding: 0 0 32px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    cursor: none;
    overflow: hidden;
  }

/* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 80px 24px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero { padding: 100px 24px 60px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .services-grid-brochure { grid-template-columns: 1fr 1fr; }
  }

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-brochure { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }


/* ================================================================= */
/* === blog-draft.html === */
/* ================================================================= */

/* ===================================================== */
/* BLOG PAGE CSS - ALL NEW CSS BELOW THIS LINE           */
/* ===================================================== */

.blog-hero{
padding:160px 60px 80px;
text-align:center;
}

.blog-hero-inner{
max-width:1100px;
margin:auto;
}

.blog-breadcrumb{
font-family:'Share Tech Mono', monospace;
font-size:.7rem;
letter-spacing:.2em;
color:var(--text-dim);
margin-bottom:30px;
}

.blog-meta-top{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:25px;
flex-wrap:wrap;
}

.blog-category-tag{
color:var(--orange);
font-family:'Share Tech Mono', monospace;
letter-spacing:.25em;
}

.blog-date-display{
color:var(--text-dim);
font-family:'Share Tech Mono', monospace;
}

.blog-page-title{
font-family:'Orbitron', monospace;
font-size:clamp(3rem,7vw,5.8rem);
line-height:1;
color:#fff;
margin-bottom:30px;
text-shadow:var(--glow-strong);
}

.blog-page-intro{
max-width:850px;
margin:auto;
color:var(--text-dim);
line-height:1.8;
font-size:1.2rem;
}

.blog-author-bar{
margin-top:50px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding:25px;
}

.blog-meta-item{
text-align:center;
}

.blog-meta-item span{
display:block;
font-size:.65rem;
color:var(--text-dim);
letter-spacing:.2em;
margin-bottom:8px;
font-family:'Share Tech Mono', monospace;
}

.blog-meta-item strong{
color:#fff;
font-size:.9rem;
}

.blog-feature-image{
padding:0 60px 80px;
}

.blog-image-panel{
max-width:1400px;
margin:auto;
overflow:hidden;
}

.blog-image-panel img{
width:100%;
display:block;
}

.blog-article-wrapper{
padding:0 60px 100px;
}

.blog-article{
max-width:950px;
margin:auto;
padding:60px;
}

.blog-article .article-content{
max-width:none;
}

.blog-article h2{
font-family:'Orbitron';
color:#fff;
margin:50px 0 20px;
}

.blog-article h3{
color:var(--cyan);
margin:35px 0 15px;
}

.blog-article p{
color:rgba(255,255,255,.85);
line-height:2;
font-size:1.08rem;
margin-bottom:24px;
}

.blog-article ul{
margin:25px 0 25px 25px;
}

.blog-article li{
margin-bottom:12px;
color:rgba(255,255,255,.85);
}

.pull-quote{
margin:60px 0;
padding:40px;
border-left:3px solid var(--orange);
background:rgba(255,107,0,.06);
}

.quote-label{
display:block;
margin-bottom:15px;
color:var(--orange);
font-family:'Share Tech Mono';
letter-spacing:.2em;
font-size:.7rem;
}

.pull-quote blockquote{
font-size:1.7rem;
line-height:1.5;
color:#fff;
font-family:'Orbitron';
}

.technical-note{
margin:50px 0;
padding:30px;
background:rgba(0,245,255,.04);
border:1px solid var(--panel-border);
}

.note-label{
display:block;
margin-bottom:12px;
color:var(--cyan);
font-family:'Share Tech Mono';
font-size:.7rem;
letter-spacing:.2em;
}

.author-section{
padding:0 60px 100px;
}

.author-card{
max-width:900px;
margin:auto;
padding:40px;
text-align:center;
}

.author-card h3{
color:#fff;
margin-bottom:15px;
font-family:'Orbitron';
}

.author-card p{
color:var(--text-dim);
line-height:1.8;
}

.related-articles{
padding:0 60px 100px;
}

.blog-newsletter{
padding:0 60px 120px;
}

.newsletter-panel{
max-width:1000px;
margin:auto;
padding:70px;
text-align:center;
}

.newsletter-panel h2{
color:#fff;
margin-bottom:20px;
font-family:'Orbitron';
}

.newsletter-panel p{
color:var(--text-dim);
max-width:700px;
margin:0 auto 30px;
}

@media(max-width:768px){


.blog-hero,
.blog-feature-image,
.blog-article-wrapper,
.related-articles,
.author-section,
.blog-newsletter{
    padding-left:24px;
    padding-right:24px;
}

.blog-author-bar{
    grid-template-columns:1fr;
}

.blog-article{
    padding:30px;
}

.pull-quote blockquote{
    font-size:1.2rem;
}


}
