@charset "UTF-8";

/* ==========================================================================
   VARIABLES & THEME CONFIGURATION (Neon Soft Contrast)
   ========================================================================== */
:root {
  /* Core Vibe Colors */
  --bg-color: #0b1120;
  --surface-color: #111827;
  --surface-light: #1e293b;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00e5ff, #7c3aed);
  --gradient-accent: linear-gradient(135deg, #ec4899, #8b5cf6);
  --gradient-dark: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 0%,
    #0b1120 100%
  );

  /* Glows & Shadows */
  --edge-glow: rgba(0, 229, 255, 0.35);
  --purple-glow: rgba(124, 58, 237, 0.25);
  --box-shadow-glass:
    0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 80px rgba(124, 58, 237, 0.14);
  --box-shadow-neon:
    0 0 15px var(--edge-glow), inset 0 0 10px rgba(0, 229, 255, 0.1);

  /* Typography */
  --font-main: "Poppins", sans-serif;

  /* Layout */
  --container-width: 1280px;
  --section-pad: 100px 0;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Global Background Haze */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: slowFloat 20s infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
  animation: slowFloatReverse 25s infinite alternate;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: var(--box-shadow-neon);
}

.glass-panel {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: var(--box-shadow-glass);
}

/* ==========================================================================
   HEADER / NAVBAR (STRICT CONSISTENCY)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
  background: transparent;
}

.header.scrolled {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 60px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: #00e5ff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(15px);
  z-index: 999;
  transition: 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-nav-overlay.active {
  left: 0;
}

.mobile-nav-list {
  text-align: center;
}

.mobile-nav-list li {
  margin: 25px 0;
}

.mobile-nav-list a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.close-mobile-nav {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 3rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00e5ff;
  margin-bottom: 24px;
  animation: pulseBadge 2s infinite;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Hero Right: Glowing Gradient Panel / Abstract UI */
.hero-visual {
  position: relative;
  height: 600px;
  perspective: 1000px;
}

.abstract-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg);
  width: 80%;
  height: 80%;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(124, 58, 237, 0.2);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: floatPanel 6s ease-in-out infinite alternate;
}

.panel-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(0, 229, 255, 0.3) 25%,
    transparent 50%,
    rgba(124, 58, 237, 0.3) 75%,
    transparent 100%
  );
  animation: rotateGlow 10s linear infinite;
  z-index: 0;
}

.panel-inner {
  position: absolute;
  inset: 2px;
  background: var(--surface-color);
  border-radius: 28px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.ui-skeleton-header {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.ui-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #334155;
}
.ui-dot:nth-child(1) {
  background: #ef4444;
}
.ui-dot:nth-child(2) {
  background: #f59e0b;
}
.ui-dot:nth-child(3) {
  background: #10b981;
}

.ui-chart {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 20px;
}

.ui-bar {
  flex: 1;
  background: var(--surface-light);
  border-radius: 5px 5px 0 0;
  position: relative;
  overflow: hidden;
}

.ui-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-primary);
  animation: barGrow 2s ease-out forwards;
  transform-origin: bottom;
}

.ui-bar:nth-child(1) .ui-bar-fill {
  height: 40%;
  animation-delay: 0.2s;
}
.ui-bar:nth-child(2) .ui-bar-fill {
  height: 65%;
  animation-delay: 0.4s;
}
.ui-bar:nth-child(3) .ui-bar-fill {
  height: 50%;
  animation-delay: 0.6s;
}
.ui-bar:nth-child(4) .ui-bar-fill {
  height: 90%;
  animation-delay: 0.8s;
  background: var(--gradient-accent);
}

/* Floating Stats Cards around Panel */
.floating-stat {
  position: absolute;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.stat-1 {
  top: 15%;
  right: -5%;
  animation: floatItem 4s ease-in-out infinite alternate;
}
.stat-2 {
  bottom: 20%;
  left: -10%;
  animation: floatItem 5s ease-in-out infinite alternate-reverse;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.stat-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.stat-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   MARQUEE (CLIENT LOGOS)
   ========================================================================== */
.client-marquee {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scrollMarquee 30s linear infinite;
  padding: 0 40px;
}

.marquee-item {
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.5;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.marquee-item:hover {
  opacity: 1;
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* ==========================================================================
   ABOUT / PROCESS SECTION
   ========================================================================== */
.about-section {
  padding: var(--section-pad);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-card {
  padding: 40px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.process-card::before {
  content: "0" counter(process);
  counter-increment: process;
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  transition: var(--transition-smooth);
}

body {
  counter-reset: process;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-card:hover::before {
  color: rgba(124, 58, 237, 0.1);
}

.process-icon {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.process-card p {
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION (3D Tilt Cards)
   ========================================================================== */
.services-section {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--bg-color) 0%, #0d1527 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

/* Edge Glow effect via pseudo-element */
.service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
  filter: blur(10px);
}

.service-card:hover {
  background: var(--surface-light);
  border-color: transparent;
}

.srv-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #f8fafc;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
  transform: translateZ(30px); /* 3D effect */
}

.service-card:hover .srv-icon {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transform: translateZ(20px);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  transform: translateZ(10px);
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00e5ff;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateZ(15px);
}

.srv-link i {
  transition: transform 0.3s ease;
}
.service-card:hover .srv-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   CALCULATOR SECTION (Interactive)
   ========================================================================== */
.calc-section {
  padding: var(--section-pad);
  position: relative;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--surface-color);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.range-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 500;
}

.range-val {
  color: #00e5ff;
  font-weight: 700;
}

/* Custom Range Slider */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #00e5ff;
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.calc-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.checkbox-label:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.checkbox-label input:checked + span {
  color: #00e5ff;
}
.checkbox-label input {
  accent-color: #00e5ff;
  width: 18px;
  height: 18px;
}

.calc-result {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.calc-result::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 70%
  );
  animation: rotateGlow 15s linear infinite reverse;
}

.result-label {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 10px;
  z-index: 1;
}
.result-value {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}
.result-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 1;
}

/* ==========================================================================
   DASHBOARD UI / REPORTS SECTION
   ========================================================================== */
.reports-section {
  padding: var(--section-pad);
}

.reports-container {
  background: var(--surface-color);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--box-shadow-glass);
}

.dash-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-title i {
  color: #ec4899;
}
.dash-controls {
  display: flex;
  gap: 10px;
}
.dash-btn {
  padding: 5px 15px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-primary);
  font-size: 0.8rem;
  cursor: pointer;
}

.dash-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.chart-area {
  background: var(--surface-light);
  border-radius: 15px;
  padding: 30px;
}

.chart-area h4 {
  margin-bottom: 20px;
  font-weight: 500;
}

.fake-graph {
  height: 200px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 10px;
  position: relative;
}

.graph-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,100 L20,60 L40,80 L60,30 L80,50 L100,10" stroke="%2300E5FF" stroke-width="2" fill="none"/></svg>')
    no-repeat;
  background-size: 100% 100%;
  opacity: 0.7;
  filter: drop-shadow(0 5px 5px rgba(0, 229, 255, 0.3));
}

.dash-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-stat-box {
  background: var(--surface-light);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-stat-box h5 {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
}
.dash-stat-box .val {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 5px;
}
.val.green {
  color: #10b981;
}
.val.purple {
  color: #8b5cf6;
}

/* ==========================================================================
   METRICS / COUNTERS (Glowing Strip)
   ========================================================================== */
.metrics-strip {
  background: linear-gradient(
    90deg,
    rgba(11, 17, 32, 1) 0%,
    rgba(30, 41, 59, 1) 50%,
    rgba(11, 17, 32, 1) 100%
  );
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

/* Sweeping line animation */
.metrics-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00e5ff, transparent);
  animation: sweepLine 3s linear infinite;
}

.metrics-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.metric-item {
  text-align: center;
}
.metric-num {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.metric-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   INDUSTRY SECTORS
   ========================================================================== */
.sectors-section {
  padding: var(--section-pad);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.sector-card {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--surface-light);
  cursor: pointer;
}

.sector-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  opacity: 0.4;
  filter: grayscale(100%);
}

/* Fallback colors if images not loaded */
.sector-card:nth-child(1) .sector-bg {
  background-color: #1e3a8a;
}
.sector-card:nth-child(2) .sector-bg {
  background-color: #064e3b;
}
.sector-card:nth-child(3) .sector-bg {
  background-color: #701a75;
}
.sector-card:nth-child(4) .sector-bg {
  background-color: #7f1d1d;
}

.sector-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(11, 17, 32, 0.9) 0%,
    rgba(11, 17, 32, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.sector-card:hover .sector-bg {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 0.6;
}
.sector-card:hover .sector-overlay {
  background: linear-gradient(
    0deg,
    rgba(124, 58, 237, 0.8) 0%,
    transparent 100%
  );
}

.sector-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.sector-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.sector-card:hover h3 {
  transform: translateY(0);
}
.sector-card:hover p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-section {
  padding: var(--section-pad);
  background: var(--surface-color);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition-smooth);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(236, 72, 153, 0.3);
}

.testi-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.author-info h5 {
  font-size: 1.1rem;
}
.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT CTA / FORM
   ========================================================================== */
.contact-section {
  padding: var(--section-pad);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--surface-color);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info {
  padding: 60px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%231E293B" d="M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.3,-46.3C90.8,-33.5,96.9,-18,97.3,-2.3C97.7,13.4,92.5,29,83.4,42.2C74.3,55.4,61.4,66.2,46.9,74.1C32.4,82,16.2,87,-0.4,87.7C-17,88.4,-34,84.8,-48.5,76.8C-63,68.8,-75,56.4,-82.9,41.9C-90.8,27.4,-94.6,10.8,-93.6,-5.3C-92.6,-21.4,-86.8,-37,-76.9,-49.2C-67,-61.4,-53,-70.2,-38.7,-77.2C-24.4,-84.2,-9.8,-89.4,3.1,-84.8C16,-80.2,30.5,-83.6,44.7,-76.4Z" transform="translate(100 100)"/></svg>')
    no-repeat center right;
  background-size: cover;
}
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}
.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contact-details p {
  color: var(--text-muted);
}

.contact-form-box {
  padding: 60px;
  background: rgba(0, 0, 0, 0.2);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   FOOTER (STRICT CONSISTENCY)
   ========================================================================== */
.footer {
  background: var(--surface-color);
  position: relative;
  border-top: 4px solid transparent;
  background-clip: padding-box;
}

.footer::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-top {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 20px 0;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}
.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #00e5ff;
}

.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: #00e5ff;
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--text-muted);
}
.contact-list i {
  color: #ec4899;
  margin-top: 5px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.legal-links {
  display: flex;
  gap: 20px;
}
.legal-links a:hover {
  color: #fff;
}

/* ==========================================================================
   LEGAL PAGES & SUBPAGES SPECIFICS
   ========================================================================== */
.page-header {
  padding: 180px 0 80px;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 32, 1) 0%,
    var(--surface-color) 100%
  );
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.breadcrumbs {
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.breadcrumbs a {
  color: #00e5ff;
}
.breadcrumbs i {
  font-size: 0.8rem;
}

.page-content {
  padding: var(--section-pad);
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface-color);
  padding: 50px 60px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.content-wrapper p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.content-wrapper h2 {
  margin: 40px 0 20px;
  font-size: 1.8rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}
.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-muted);
  list-style-type: disc;
}
.content-wrapper li {
  margin-bottom: 10px;
}

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-toggle:hover {
  transform: scale(1.1);
}
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--surface-light);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.chat-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.chat-header {
  background: var(--surface-color);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-messages {
  height: 250px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.msg.bot {
  background: rgba(0, 229, 255, 0.1);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.chat-input {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-input input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 15px;
  color: #fff;
  outline: none;
}
.chat-input button {
  background: transparent;
  border: none;
  color: #00e5ff;
  padding: 0 15px;
  cursor: pointer;
}

/* ==========================================================================
   ANIMATIONS (Keyframes)
   ========================================================================== */
@keyframes slowFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 50px) scale(1.2);
  }
}
@keyframes slowFloatReverse {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-100px, -50px) scale(1.1);
  }
}
@keyframes floatPanel {
  0% {
    transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg)
      translateY(0);
  }
  100% {
    transform: translate(-50%, -50%) rotateY(-10deg) rotateX(15deg)
      translateY(-20px);
  }
}
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes barGrow {
  0% {
    height: 0;
  }
}
@keyframes floatItem {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes sweepLine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
  }
}

/* Reveal Classes (Triggered by JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-desc {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .calc-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .contact-list li {
    justify-content: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .content-wrapper {
    padding: 30px 20px;
  }
  .contact-info,
  .contact-form-box {
    padding: 30px;
  }
  .calc-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .metrics-num {
    font-size: 2.5rem;
  }
  .dash-header {
    flex-direction: column;
    gap: 15px;
  }
}
