/*==========================================================================
Awwwards-Level Digital Marketing Agency Stylesheet
========================================================================== */ /*
-------------------------------------------------------------------------- CSS
Variables & Theming
-------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-color: #050505;
  --bg-surface: #0a0a0c;
  --bg-surface-light: rgba(255, 255, 255, 0.03);
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0; /* Brand Colors - High-tech, Cyber, Growth */
  --accent: #00f0ff;
  --accent-glow: rgba(0, 240, 255, 0.4);
  --accent-secondary: #7000ff;
  --accent-gradient: linear-gradient(
    135deg,
    #00f0ff 0%,
    #7000ff 100%
  ); /*
Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif; /* Spacing & Sizes */
  --container-max: 1280px;
  --section-pad: 120px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px; /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* Z-index layers */
  --z-back: -10;
  --z-normal: 1;
  --z-overlay: 100;
  --z-header: 1000;
  --z-preloader: 9999;
  --z-cursor: 10000;
} /*
-------------------------------------------------------------------------- Reset
& Base Styles
-------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* For custom cursor */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  background: var(--accent-secondary);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: none;
  font-family: inherit;
  color: inherit;
}
input,
textarea,
select {
  font-family: inherit;
  cursor: none;
} /*
--------------------------------------------------------------------------
Typography
-------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.sub-title {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}
.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.text-center {
  text-align: center;
} /*
--------------------------------------------------------------------------
Layout & Utility
-------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
}
.section-padding {
  padding: var(--section-pad) 0;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
} /*
--------------------------------------------------------------------------
Custom Cursor
-------------------------------------------------------------------------- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: transform 0.1s;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-glow);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
.cursor-hover {
  transform: scale(1.5);
}
.cursor-outline-hover {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 240, 255, 0.1);
  border-color: var(--accent);
} /*
--------------------------------------------------------------------------
Preloader
-------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  z-index: var(--z-preloader);
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  text-align: center;
  width: 300px;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.preloader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: var(--accent-gradient);
  animation: loading 2s ease-in-out forwards;
}
@keyframes loading {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
} /*
--------------------------------------------------------------------------
Background Effects
-------------------------------------------------------------------------- */
.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-back);
  pointer-events: none;
  overflow: hidden;
}
.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.8;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: floatOrb 20s infinite alternate linear;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -10%;
  left: -10%;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: #0055ff;
  top: 40%;
  left: 50%;
  animation-duration: 25s;
}
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, 50px) scale(1.2);
  }
  100% {
    transform: translate(-50px, 100px) scale(0.8);
  }
} /*
--------------------------------------------------------------------------
Buttons
-------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--trans-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn i {
  margin-left: 10px;
  font-size: 0.9em;
  position: relative;
  z-index: 2;
  transition: transform var(--trans-normal);
}
.btn:hover i {
  transform: translateX(4px) translateY(-4px);
}
.btn-primary {
  background: var(--text-main);
  color: var(--bg-color);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  z-index: 0;
  opacity: 0;
  transition: opacity var(--trans-normal);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 10px 20px var(--accent-glow);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0, 240, 255, 0.05);
} /*
--------------------------------------------------------------------------
Header & Navigation
-------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: var(--z-header);
  transition: var(--trans-normal);
}
.header.scrolled {
  padding: 15px 0;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* Ensure white logo if original is dark */
}
.nav-list {
  display: flex;
  gap: 30px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans-fast);
  position: relative;
  padding: 5px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width var(--trans-normal);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1001;
}
.bar {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: var(--trans-normal);
} /*
-------------------------------------------------------------------------- Hero
Section
-------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 30px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
.stat-item h4 {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.abstract-element {
  position: relative;
  width: 400px;
  height: 400px;
}
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}
.ring-1 {
  width: 200px;
  height: 200px;
  animation: spin 20s linear infinite;
}
.ring-2 {
  width: 300px;
  height: 300px;
  border-style: solid;
  border-color: rgba(0, 240, 255, 0.2);
  animation: spin 30s linear infinite reverse;
}
.ring-3 {
  width: 400px;
  height: 400px;
  animation: spin 40s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.floating-card {
  position: absolute;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}
.floating-card i {
  color: var(--accent);
  font-size: 1.5rem;
}
.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}
.card-2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 3s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
} /*
--------------------------------------------------------------------------
Marquee
-------------------------------------------------------------------------- */
.marquee-wrapper {
  padding: 30px 0;
  background: var(--accent);
  transform: rotate(-2deg) scale(1.05);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}
.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.marquee-content i {
  color: var(--bg-color);
  font-size: 1rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} /* --------------------------------------------------------------------------
About Section
-------------------------------------------------------------------------- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-lead {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-body {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}
.about-features i {
  color: var(--accent);
}
.about-image-wrapper {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
}
.radar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.3);
  position: relative;
  overflow: hidden;
  background: repeating-radial-gradient(
    transparent,
    transparent 30px,
    rgba(0, 240, 255, 0.1) 31px,
    rgba(0, 240, 255, 0.1) 32px
  );
}
.radar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 240, 255, 0.3);
}
.radar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(0, 240, 255, 0.3);
}
.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: conic-gradient(
    from 0deg,
    transparent 70%,
    rgba(0, 240, 255, 0.8) 100%
  );
  transform-origin: 0 0;
  animation: radarSweep 4s linear infinite;
}
@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.radar-blip {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 10px #fff,
    0 0 20px var(--accent);
  opacity: 0;
  animation: blip 4s infinite;
}
.blip-1 {
  top: 30%;
  left: 60%;
  animation-delay: 1s;
}
.blip-2 {
  top: 70%;
  left: 40%;
  animation-delay: 2.5s;
}
.blip-3 {
  top: 40%;
  left: 20%;
  animation-delay: 3.2s;
}
@keyframes blip {
  0%,
  10% {
    opacity: 1;
    transform: scale(1);
  }
  20%,
  100% {
    opacity: 0;
    transform: scale(2);
  }
} /*
--------------------------------------------------------------------------
Services Section
-------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--trans-normal);
  transform-style: preserve-3d;
}
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    var(--accent-glow) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--trans-normal);
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover .card-glow {
  opacity: 1;
}
.service-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}
.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: var(--accent);
  transition: var(--trans-normal);
}
.service-card:hover .card-icon {
  background: var(--accent);
  color: var(--bg-color);
  transform: scale(1.1) translateZ(20px);
}
.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transform: translateZ(30px);
}
.service-desc {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
  transform: translateZ(20px);
}
.service-list {
  transform: translateZ(10px);
}
.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}
.service-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
} /*
--------------------------------------------------------------------------
Industries Section
-------------------------------------------------------------------------- */
.industries {
  overflow: hidden;
}
.industry-slider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 20px 0;
}
.industry-track {
  display: flex;
  gap: 30px;
  padding: 0 5vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /*
Firefox */
}
.industry-track::-webkit-scrollbar {
  display: none; /* Chrome */
}
.industry-card {
  flex: 0 0 350px;
  scroll-snap-align: center;
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--trans-normal);
}
.industry-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--accent);
}
.ind-icon {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 20px;
  transition: var(--trans-normal);
}
.industry-card:hover .ind-icon {
  color: var(--accent);
  transform: translateY(-5px);
}
.industry-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.industry-card p {
  color: var(--text-muted);
} /*
--------------------------------------------------------------------------
Reports Section
-------------------------------------------------------------------------- */
.reports-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reports-list {
  margin: 30px 0;
}
.reports-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.reports-list i {
  color: var(--accent);
}
.dashboard-mockup {
  padding: 20px;
  background: rgba(5, 5, 5, 0.8);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  font-weight: 600;
}
.dash-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  margin-left: 5px;
}
.dash-dots span:nth-child(1) {
  background: #ff5f56;
}
.dash-dots span:nth-child(2) {
  background: #ffbd2e;
}
.dash-dots span:nth-child(3) {
  background: #27c93f;
}
.dash-stats {
  display: grid;
  grid-template-columns:
    1fr
    1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.d-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: var(--radius-sm);
}
.d-stat small {
  display: block;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.d-stat strong {
  font-size: 2rem;
  font-family: var(--font-heading);
  display: block;
}
.trend.up {
  color: #27c93f;
  font-size: 0.85rem;
  font-weight: 600;
}
.dash-chart {
  height: 150px;
  width: 100%;
}
.line-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-out forwards;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.chart-area {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
} /*
--------------------------------------------------------------------------
Calculator Section
-------------------------------------------------------------------------- */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.calc-inputs {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.range-group {
  margin-bottom: 30px;
}
.range-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 500;
}
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-glow);
  transition: transform var(--trans-fast);
}
.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-output {
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-output h3 {
  margin-bottom: 30px;
}
.output-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.out-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.out-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.out-box strong {
  font-size: 2.5rem;
  font-family: var(--font-heading);
}
.calc-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}
.w-100 {
  width: 100%;
} /*
--------------------------------------------------------------------------
Testimonials
-------------------------------------------------------------------------- */
.testi-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testi-slide {
  min-width: 100%;
  padding: 50px;
  text-align: center;
}
.quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.testi-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--bg-color);
}
.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--trans-fast);
}
.testi-btn:hover {
  background: var(--text-main);
  color: var(--bg-color);
}
.testi-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--trans-fast);
}
.dot.active {
  background: var(--accent);
  transform: scale(1.2);
} /*
-------------------------------------------------------------------------- FAQ
Section
-------------------------------------------------------------------------- */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.faq-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 15px 0;
  text-align: left;
}
.faq-question i {
  color: var(--accent);
  transition: transform var(--trans-fast);
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-normal);
}
.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
} /*
-------------------------------------------------------------------------- CTA
Section
-------------------------------------------------------------------------- */
.cta-box {
  padding: 80px 40px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.1);
}
.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: var(--accent-glow);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-box p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.inline-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.inline-form input {
  flex: 1;
  padding: 0 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  transition: var(--trans-fast);
}
.inline-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
} /*
--------------------------------------------------------------------------
Footer
-------------------------------------------------------------------------- */
.footer {
  background: #020202;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-desc {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 350px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--trans-fast);
}
.social-link:hover {
  background: var(--accent);
  color: var(--bg-color);
  transform: translateY(-5px);
}
.footer-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  transition: var(--trans-fast);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.footer-contact-info i {
  color: var(--accent);
  margin-top: 5px;
}
.footer-contact-info a {
  transition: var(--trans-fast);
}
.footer-contact-info a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
} /*
--------------------------------------------------------------------------
Subpages (Contact, Legal)
-------------------------------------------------------------------------- */
.subpage .header {
  background: rgba(10, 10, 12, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-main {
  padding-top: 120px;
  min-height: calc(100vh - 400px);
}
.page-header {
  padding: 60px 0 40px;
  text-align: center;
}
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs .current {
  color: #fff;
}
.page-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 20px;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
/* Contact Specific */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.contact-info-panel,
.contact-form-wrapper {
  padding: 40px;
}
.contact-info-panel h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.contact-info-panel p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-method-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.method-details h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.method-details p,
.method-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  margin-bottom: 25px;
}
.form-group.full-width {
  width: 100%;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.custom-select {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  transition: var(--trans-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.custom-select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.5);
}
.custom-select-wrapper {
  position: relative;
}
.custom-select {
  appearance: none;
  -webkit-appearance: none;
}
.select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}
.submit-btn {
  width: 100%;
  margin-top: 10px;
} /* Legal
Pages */
.prose {
  padding: 60px;
}
.prose h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: #fff;
}
.prose p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 1.05rem;
}
.prose ul {
  margin: 0 0 20px 20px;
  color: #ccc;
}
.prose li {
  margin-bottom: 10px;
  list-style-type: disc;
} /* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans-normal);
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  padding: 50px;
  text-align: center;
  max-width: 500px;
  position: relative;
  transform: scale(0.9);
  transition: var(--trans-normal);
}
.popup:target .popup-content {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
}
.popup-icon {
  font-size: 4rem;
  color: #27c93f;
  margin-bottom: 20px;
}
.popup-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.popup-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
} /*
-------------------------------------------------------------------------- Live
Chat Widget
-------------------------------------------------------------------------- */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
}
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--bg-color);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px var(--accent-glow);
  transition: var(--trans-fast);
}
.chat-toggle:hover {
  transform: scale(1.1);
}
.chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 450px;
  background: rgba(10, 10, 12, 0.95);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--trans-normal);
}
.chat-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h4 {
  margin: 0;
  font-size: 1.1rem;
}
.online-status {
  font-size: 0.8rem;
  color: #27c93f;
}
.online-status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #27c93f;
  border-radius: 50%;
  margin-right: 5px;
}
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chat-msg {
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 80%;
  font-size: 0.9rem;
}
.bot-msg {
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.user-msg {
  background: var(--accent);
  color: var(--bg-color);
  align-self: flex-end;
  border-bottom-right-radius: 0;
  font-weight: 500;
}
.chat-input-area {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
}
.chat-input-area input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 20px;
  color: #fff;
}
.chat-input-area input:focus {
  outline: none;
  border-color: var(--accent);
}
.chat-input-area button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-main);
  color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
} /*
--------------------------------------------------------------------------
Scroll Animations (Classes added by JS)
-------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade {
  opacity: 0;
  transition: all 1.2s ease-in-out;
}
.reveal-active {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
} /*
--------------------------------------------------------------------------
Responsive Media Queries
-------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
}
@media (max-width: 992px) {
  .hero-inner,
  .about-container,
  .reports-wrapper,
  .calc-wrapper,
  .faq-container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 400px;
    display: none; /* Hide complex visual on tablet */
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-normal);
    z-index: 1000;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .nav-link {
    font-size: 1.5rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .header-btn {
    display: none;
  } /* Toggle animation */
  .mobile-toggle.active .bar-top {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-toggle.active .bar-middle {
    opacity: 0;
  }
  .mobile-toggle.active .bar-bottom {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .calc-inputs {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
  }
  .calc-output {
    padding: 20px;
  }
  .prose {
    padding: 30px 20px;
  }
  .contact-info-panel,
  .contact-form-wrapper {
    padding: 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .inline-form {
    flex-direction: column;
  }
  .chat-panel {
    width: calc(100vw - 40px);
    right: -10px;
  }
  .testi-slide {
    padding: 30px 15px;
  }
}
