/* ==========================================================================
   DOMAINNAME | DIGITAL MARKETING AGENCY STYLES
   ========================================================================== */

/* --------------------------------------
   1. CSS VARIABLES & THEME SETTINGS
   -------------------------------------- */
:root {
  /* Color Palette - Dark Tech Theme */
  --bg-dark: #070709;
  --bg-darker: #040405;
  --bg-surface: #111116;
  --bg-surface-light: #1a1a24;
  --bg-glass: rgba(17, 17, 22, 0.6);
  --bg-glass-light: rgba(255, 255, 255, 0.03);

  --accent-primary: #00f0ff; /* Neon Cyan */
  --accent-secondary: #7000ff; /* Deep Neon Purple */
  --accent-tertiary: #ff0055; /* Neon Pink */

  --text-main: #e0e0e6;
  --text-muted: #9a9aa6;
  --text-heading: #ffffff;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(0, 240, 255, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  --gradient-glow: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-primary)
  );
  --gradient-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );

  /* Typography */
  --font-body: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-mono: "Share Tech Mono", monospace;

  /* Shadows & Glows */
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glow-primary: 0 0 20px rgba(0, 240, 255, 0.4);
  --glow-secondary: 0 0 30px rgba(112, 0, 255, 0.4);

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-width: 1280px;
  --header-height: 90px;
  --section-padding: 120px;
}

/* --------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

::selection {
  background: var(--accent-primary);
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------
   3. CUSTOM CURSOR
   -------------------------------------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition:
    width 0.3s,
    height 0.3s,
    background-color 0.3s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
}

.cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 240, 255, 0.1);
  border-color: transparent;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-dot {
    display: none;
  }
}

/* --------------------------------------
   4. PRELOADER
   -------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s var(--ease-out-expo),
    visibility 0.8s;
}

.preloader-content {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}

.glitch-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  position: relative;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.glitch-logo::before,
.glitch-logo::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-logo::before {
  left: 2px;
  text-shadow: -2px 0 var(--accent-primary);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-logo::after {
  left: -2px;
  text-shadow: -2px 0 var(--accent-secondary);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.loading-bar-container {
  width: 100%;
  height: 2px;
  background: var(--bg-surface-light);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  box-shadow: var(--glow-primary);
}

.loading-text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

#loading-progress {
  color: var(--accent-primary);
}

/* --------------------------------------
   5. STRICT SITE-WIDE HEADER
   -------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition:
    background-color 0.4s,
    backdrop-filter 0.4s,
    border-bottom 0.4s,
    height 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 80px;
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.site-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* Forces white if logo is dark */
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-item:hover {
  color: var(--accent-primary);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1001;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-heading);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.hamburger-line.top {
  top: 0;
}
.hamburger-line.middle {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-line.bottom {
  bottom: 0;
}

.mobile-menu-btn.active .hamburger-line.top {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--accent-primary);
}
.mobile-menu-btn.active .hamburger-line.middle {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-line.bottom {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--accent-primary);
}

/* --------------------------------------
   6. TYPOGRAPHY & UTILITIES
   -------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.pt-150 {
  padding-top: 150px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-600 {
  max-width: 600px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-100 {
  width: 100%;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
}

.text-huge {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}
.h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
}
.h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
}
.h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
}
.h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-accent {
  color: var(--accent-primary);
}
.text-light-gray {
  color: var(--text-muted);
}

.bg-darker {
  background-color: var(--bg-darker);
}

.layout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-glass);
}

/* Badge Utility */
.badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
  animation: pulse 2s infinite;
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headings */
.section-subtitle {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --------------------------------------
   7. BUTTONS & LINKS
   -------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-primary)
  );
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--border-color);
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--bg-surface-light);
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-outline:hover::before {
  width: 100%;
}
.btn-outline:hover {
  border-color: var(--text-heading);
}

.btn-glow {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  box-shadow:
    inset 0 0 10px rgba(0, 240, 255, 0.1),
    0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-glow:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow:
    inset 0 0 20px rgba(0, 240, 255, 0.2),
    0 0 20px rgba(0, 240, 255, 0.4);
  transform: scale(1.02);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 20px;
}
.link-arrow i {
  transition: transform 0.3s;
}
.link-arrow:hover i {
  transform: translateX(5px);
}

/* --------------------------------------
   8. HERO SECTION
   -------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(112, 0, 255, 0.15),
      transparent 25%
    ),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.15), transparent 25%);
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visuals {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: float 10s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 240, 255, 0.2);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(112, 0, 255, 0.2);
  bottom: 10%;
  left: 10%;
  animation-delay: -3s;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 0, 85, 0.15);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}

.floating-card-1,
.floating-card-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(17, 17, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  animation: float-y 6s infinite ease-in-out;
}

.floating-card-1 {
  top: 20%;
  right: 5%;
  border-left: 3px solid var(--accent-primary);
}

.floating-card-2 {
  bottom: 25%;
  left: 0;
  border-left: 3px solid var(--accent-secondary);
  animation-delay: -3s;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--accent-primary);
}

.floating-card-2 .card-icon {
  color: var(--accent-secondary);
}

.card-data h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}
.card-data p {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-heading);
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 15px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --------------------------------------
   9. DATA TICKER / MARQUEE
   -------------------------------------- */
.ticker-section {
  width: 100%;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  width: fit-content;
}

.ticker-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
  padding-right: 4rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-heading);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------
   10. ABOUT / SYSTEM MATRIX
   -------------------------------------- */
.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hologram-effect {
  position: relative;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 255, 0.05) 0%,
    transparent 70%
  );
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
  animation: float-y 4s infinite ease-in-out;
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
  opacity: 0.5;
  animation: scanline 4s linear infinite;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--accent-primary);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-glass);
}

.experience-badge .number {
  font-size: 3rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.feature-list {
  margin: 30px 0;
}
.feature-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-list li i {
  color: var(--accent-primary);
  font-size: 1.2rem;
  width: 24px;
}

/* --------------------------------------
   11. SERVICES (ARSENAL)
   -------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  perspective: 1000px; /* For 3D effect */
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  transition:
    transform 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 240, 255, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 240, 255, 0.1);
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-surface-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--accent-primary);
  margin-bottom: 25px;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--text-heading);
  background: var(--gradient-primary);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.service-desc {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1rem;
}

.service-features li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.service-features li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--accent-primary);
  margin-right: 10px;
}

/* --------------------------------------
   12. ROI CALCULATOR INTERACTIVE
   -------------------------------------- */
.calculator-wrapper {
  padding: 50px;
}

.calc-header {
  margin-bottom: 40px;
}

.calc-body {
  align-items: center;
}

.range-group {
  margin-bottom: 30px;
}

.range-group label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

/* Custom Slider Styling */
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-dark);
  border-radius: 3px;
  outline: none;
  border: 1px solid var(--border-color);
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-primary);
  transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results {
  display: grid;
  gap: 20px;
}

.result-card {
  background: var(--bg-surface-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.result-card h5 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.result-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
}

/* --------------------------------------
   13. DATA VISUALIZATIONS / REPORTS
   -------------------------------------- */
.check-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.check-list i {
  color: var(--accent-secondary);
  margin-right: 15px;
}

.chart-container {
  padding: 30px;
}
.chart-header h4 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bar-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bar-label {
  width: 30px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.bar-track {
  flex-grow: 1;
  height: 12px;
  background: var(--bg-dark);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  width: 0; /* Animated by JS */
  border-radius: 6px;
  transition: width 1.5s var(--ease-out-expo);
}

.bar-fill.highlight {
  background: var(--gradient-primary);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.bar-value {
  width: 40px;
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 700;
}

/* --------------------------------------
   14. INDUSTRIES GRID
   -------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.industry-box {
  background: var(--bg-surface-light);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    background 0.3s,
    transform 0.3s;
}

.industry-box:hover {
  background: var(--bg-surface);
  transform: translateY(-5px);
  border-color: rgba(112, 0, 255, 0.4);
}

.industry-box i {
  font-size: 2rem;
  color: var(--accent-secondary);
  margin-bottom: 20px;
}

.industry-box h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.industry-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --------------------------------------
   15. TESTIMONIALS
   -------------------------------------- */
.testimonial-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testi-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testi-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(0, 240, 255, 0.2);
  margin-bottom: 20px;
}

.testi-text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 40px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-surface-light);
  border: 2px solid var(--accent-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--text-main);
}

.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.author-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-light);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #000;
}

.slider-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
}

/* --------------------------------------
   16. STATS & CTA
   -------------------------------------- */
.border-top-bottom {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-box {
  padding: 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 22, 0.8) 0%,
    rgba(112, 0, 255, 0.1) 100%
  );
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 20px auto 40px;
  max-width: 600px;
}

.mini-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}
.mini-form input {
  flex-grow: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 0 20px;
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-body);
}
.mini-form input:focus {
  border-color: var(--accent-primary);
  outline: none;
}
.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
  font-family: var(--font-mono);
}

/* --------------------------------------
   17. FORMS (CONTACT PAGE SPECIFIC)
   -------------------------------------- */
.page-padding {
  padding-top: 180px;
}

.custom-form {
  width: 100%;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.custom-form input,
.custom-form textarea,
.custom-form select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
  border-color: var(--accent-primary);
  outline: none;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.custom-select-wrapper {
  position: relative;
}
.custom-select-wrapper select {
  appearance: none;
  cursor: pointer;
}
.select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-item {
  display: flex;
  gap: 20px;
}
.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-primary);
  font-size: 1.2rem;
}
.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.info-content p,
.info-content a {
  color: var(--text-muted);
  font-size: 1rem;
}
.info-content a:hover {
  color: var(--accent-primary);
}

/* Form Popup Overlay */
.form-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.form-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.form-popup-content {
  width: 90%;
  max-width: 500px;
  padding: 50px;
  transform: scale(0.8);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.form-popup-overlay.active .form-popup-content {
  transform: scale(1);
}

/* --------------------------------------
   18. LEGAL PAGES TYPOGRAPHY
   -------------------------------------- */
.legal-content-area p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.legal-content-area h2 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.legal-content-area strong {
  color: var(--text-heading);
}

/* --------------------------------------
   19. LIVE CHAT MOCKUP
   -------------------------------------- */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
}
.chat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-glass);
  transition: transform 0.3s;
}
.chat-icon:hover {
  transform: scale(1.1);
}
.chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
}
.chat-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-header {
  background: var(--bg-surface-light);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.agent-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.agent-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.agent-info h4 {
  font-size: 0.9rem;
  margin: 0;
}
.agent-info span {
  font-size: 0.75rem;
  color: #00f0ff;
}
.close-chat {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
}
.chat-body {
  padding: 20px;
  height: 250px;
  overflow-y: auto;
  background: var(--bg-dark);
}
.chat-message.bot {
  background: var(--bg-surface-light);
  padding: 12px 15px;
  border-radius: 12px 12px 12px 0;
  margin-bottom: 15px;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
}
.chat-message.user {
  background: var(--accent-primary);
  color: #000;
  padding: 12px 15px;
  border-radius: 12px 12px 0 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-align: right;
  margin-left: auto;
  width: fit-content;
  max-width: 80%;
}
.chat-footer {
  padding: 15px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}
.chat-footer input {
  flex-grow: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.9rem;
}
.chat-footer input:focus {
  outline: none;
  border-color: var(--accent-primary);
}
.chat-footer button {
  background: var(--gradient-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --------------------------------------
   20. STRICT SITE-WIDE FOOTER
   -------------------------------------- */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 35px;
  filter: brightness(0) invert(1);
}
.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: 0.3s;
}
.social-links a:hover {
  background: var(--accent-primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i {
  font-size: 0.8rem;
  color: var(--accent-primary);
  transition: transform 0.3s;
}
.footer-links a:hover {
  color: var(--accent-primary);
}
.footer-links a:hover i {
  transform: translateX(5px);
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-info-list i {
  color: var(--accent-primary);
  margin-top: 4px;
}
.contact-info-list a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 25px 0;
  background: var(--bg-dark);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-mono);
}

.legal-links {
  display: flex;
  gap: 20px;
}
.legal-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: var(--accent-primary);
}

/* --------------------------------------
   21. ANIMATIONS (KEYFRAMES)
   -------------------------------------- */
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}
@keyframes scrollWheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scanline {
  0% {
    top: 0;
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0.5;
  }
}

/* Glitch specific keyframes */
@keyframes glitch-anim {
  0% {
    clip: rect(41px, 9999px, 83px, 0);
    transform: translate(0);
  }
  20% {
    clip: rect(100px, 9999px, 2px, 0);
    transform: translate(-2px, 2px);
  }
  40% {
    clip: rect(61px, 9999px, 29px, 0);
    transform: translate(2px, -2px);
  }
  60% {
    clip: rect(3px, 9999px, 98px, 0);
    transform: translate(-2px, 2px);
  }
  80% {
    clip: rect(80px, 9999px, 12px, 0);
    transform: translate(2px, -2px);
  }
  100% {
    clip: rect(22px, 9999px, 66px, 0);
    transform: translate(0);
  }
}
@keyframes glitch-anim-2 {
  0% {
    clip: rect(18px, 9999px, 33px, 0);
    transform: translate(0);
  }
  20% {
    clip: rect(81px, 9999px, 5px, 0);
    transform: translate(2px, -2px);
  }
  40% {
    clip: rect(12px, 9999px, 99px, 0);
    transform: translate(-2px, 2px);
  }
  60% {
    clip: rect(55px, 9999px, 22px, 0);
    transform: translate(2px, -2px);
  }
  80% {
    clip: rect(93px, 9999px, 77px, 0);
    transform: translate(-2px, 2px);
  }
  100% {
    clip: rect(44px, 9999px, 11px, 0);
    transform: translate(0);
  }
}

/* --------------------------------------
   22. MEDIA QUERIES
   -------------------------------------- */
/* Large Tablet / Small Desktop */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visuals {
    height: 400px;
  }
  .floating-card-1 {
    right: 0;
  }
  .floating-card-2 {
    left: 0;
  }

  .layout-grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrapper {
    order: 2;
  }
  .about-content {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet / Mobile Menu Trigger */
@media (max-width: 850px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(7, 7, 9, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s var(--ease-out-expo);
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-item {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .text-huge {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-visuals {
    display: none; /* Simplify mobile hero */
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 20px;
  }
  .mini-form {
    flex-direction: column;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .legal-links {
    justify-content: center;
  }
}
