/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  /* Color Palette */
  --bg-dark: #030305;
  --bg-surface: #0a0a0f;
  --bg-glass: rgba(15, 15, 20, 0.6);
  --border-glass: rgba(255, 255, 255, 0.08);

  --accent-primary: #00f0ff;
  --accent-secondary: #7000ff;
  --accent-tertiary: #ff0055;

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;

  /* Typography */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Outfit", sans-serif;

  /* Fluid Typography */
  --step--1: clamp(0.83rem, calc(0.78rem + 0.25vw), 0.96rem);
  --step-0: clamp(1rem, calc(0.91rem + 0.43vw), 1.25rem);
  --step-1: clamp(1.2rem, calc(1.07rem + 0.68vw), 1.58rem);
  --step-2: clamp(1.44rem, calc(1.24rem + 1.02vw), 2rem);
  --step-3: clamp(1.73rem, calc(1.43rem + 1.48vw), 2.53rem);
  --step-4: clamp(2.07rem, calc(1.66rem + 2.08vw), 3.19rem);
  --step-5: clamp(2.49rem, calc(1.91rem + 2.9vw), 4.02rem);
  --step-6: clamp(2.99rem, calc(2.19rem + 3.97vw), 5.07rem);
  --step-hero: clamp(3.5rem, 8vw, 8rem);

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 10rem);
  --container-width: 1400px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset & Global */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background: var(--accent-secondary);
  color: #fff;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url('data:image/svg+xml,%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)"/%3E%3C/svg%3E');
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
  will-change: transform;
}
.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 1);
  mix-blend-mode: difference;
}
@media (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.text-gradient {
  background: linear-gradient(
    to right,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Reusable Components */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--step--1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
  z-index: 1;
}
.btn-magnetic::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--accent-secondary),
    var(--accent-primary)
  );
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
  border-radius: 100px;
}
.btn-magnetic:hover::before {
  transform: translateY(-100%);
}
.btn-magnetic:hover {
  border-color: transparent;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: var(--step--1);
  color: var(--accent-primary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.main-nav ul {
  display: flex;
  gap: 3rem;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  width: 30px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.8s var(--ease-out-expo);
}
.mobile-menu.active {
  clip-path: circle(150% at 100% 0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-menu a {
  font-size: var(--step-3);
  font-family: var(--font-heading);
}

/* --- INDEX PAGE SECTIONS --- */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero h1 {
  font-size: var(--step-hero);
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: var(--step-1);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}
.hero-3d-element {
  position: absolute;
  right: 5%;
  top: 20%;
  width: 500px;
  height: 500px;
  z-index: 0;
  perspective: 1000px;
  pointer-events: none;
}
.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate3d 20s infinite linear;
}
.cube div {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2) inset;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
}
.front {
  transform: translateZ(100px);
}
.back {
  transform: rotateY(180deg) translateZ(100px);
}
.right {
  transform: rotateY(90deg) translateZ(100px);
}
.left {
  transform: rotateY(-90deg) translateZ(100px);
}
.top {
  transform: rotateX(90deg) translateZ(100px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

/* Marquee Section */
.marquee-section {
  padding: 3rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.marquee-content {
  display: flex;
  animation: scrollMarquee 20s linear infinite;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: var(--step-2);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
  padding: 0 4rem;
  text-transform: uppercase;
}

/* About Section */
.about {
  padding: var(--section-pad) 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: var(--step-5);
  margin-bottom: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-glass);
}
.stat-card h3 {
  font-size: var(--step-4);
  color: var(--accent-primary);
}
.stat-card p {
  font-size: var(--step--1);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Services Section */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}
.services-header {
  text-align: center;
  margin-bottom: 5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  padding: 3rem 2rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(112, 0, 255, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-secondary);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--accent-primary);
}
.service-card h3 {
  font-size: var(--step-1);
  margin-bottom: 1rem;
}

/* Campaign Reports (CSS Dashboard) */
.reports {
  padding: var(--section-pad) 0;
}
.dashboard-ui {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.dash-charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  height: 300px;
}
.chart-bar-container {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 100%;
  padding-top: 2rem;
}
.bar {
  flex: 1;
  background: var(--accent-primary);
  border-radius: 8px 8px 0 0;
  position: relative;
  animation: growBar 2s var(--ease-out-expo) forwards;
  transform-origin: bottom;
  opacity: 0;
}
.bar:nth-child(1) {
  height: 40%;
  animation-delay: 0.1s;
}
.bar:nth-child(2) {
  height: 60%;
  background: var(--accent-secondary);
  animation-delay: 0.2s;
}
.bar:nth-child(3) {
  height: 35%;
  animation-delay: 0.3s;
}
.bar:nth-child(4) {
  height: 80%;
  background: var(--accent-tertiary);
  animation-delay: 0.4s;
}
.bar:nth-child(5) {
  height: 100%;
  animation-delay: 0.5s;
}
.metric-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--bg-dark);
  border-top-color: var(--accent-primary);
  border-right-color: var(--accent-secondary);
  animation: spin 10s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Industry Specific (Horizontal Scroll simulation via Flex) */
.industry {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  overflow: hidden;
}
.industry-scroll-wrap {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.industry-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.industry-card {
  min-width: 400px;
  height: 500px;
  background: var(--bg-dark);
  border-radius: 24px;
  border: 1px solid var(--border-glass);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-snap-align: center;
  position: relative;
}
.industry-card h3 {
  font-size: var(--step-2);
  z-index: 2;
  position: relative;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  border-radius: 24px;
  z-index: 1;
}

/* Calculator Section */
.calculator {
  padding: var(--section-pad) 0;
}
.calc-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-surface);
  padding: 4rem;
  border-radius: 32px;
  border: 1px solid var(--border-glass);
}
.range-group {
  margin-bottom: 3rem;
}
.range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
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: var(--accent-primary);
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 0 20px var(--accent-primary);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: var(--border-glass);
  border-radius: 2px;
}
.calc-results {
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
  border-top: 1px solid var(--border-glass);
}
.result-item h4 {
  font-size: var(--step--1);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.result-item span {
  font-size: var(--step-4);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-primary);
}

/* Testimonials */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.testi-card {
  padding: 3rem;
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}
.testi-quote {
  font-size: var(--step-0);
  font-style: italic;
  margin-bottom: 2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border-glass);
}

/* CTA Section */
.cta-section {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(112, 0, 255, 0.2) 0%,
    var(--bg-dark) 70%
  );
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: var(--step-6);
  margin-bottom: 2rem;
}

/* Chat Widget UI */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
  transition: transform 0.3s;
}
.chat-btn:hover {
  transform: scale(1.1);
}
.chat-btn svg {
  width: 24px;
  height: 24px;
  fill: #000;
}
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 400px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-box.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.chat-header {
  background: var(--accent-secondary);
  padding: 1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
}
.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.msg {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  max-width: 80%;
  font-size: 0.9rem;
}
.msg.bot {
  background: var(--bg-dark);
  align-self: flex-start;
}
.chat-input {
  padding: 1rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
}
.chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}

/* Footer (Global) */
.site-footer {
  padding: 6rem 0 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1.5rem;
  max-width: 300px;
}
.footer-col h3 {
  font-size: var(--step-0);
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-col a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--accent-primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-icon:hover {
  background: var(--accent-primary);
  color: #000;
  border-color: transparent;
}

/* Legal Pages Typography & Layout */
.legal-page-wrapper {
  padding: calc(var(--section-pad) + 80px) 0 var(--section-pad);
}
.legal-header {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 2rem;
}
.legal-header h1 {
  font-size: var(--step-5);
  margin-bottom: 1rem;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: var(--step-2);
  margin: 3rem 0 1.5rem;
  color: var(--accent-primary);
}
.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}
.legal-content ul {
  list-style: disc;
  margin: 1.5rem 0 1.5rem 2rem;
  color: var(--text-secondary);
}
.legal-content li {
  margin-bottom: 0.5rem;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.info-block h3 {
  font-size: var(--step-1);
  margin-bottom: 0.5rem;
  color: var(--accent-secondary);
}
.info-block p {
  color: var(--text-secondary);
  font-size: 1.2rem;
}
.contact-form-box {
  background: var(--bg-surface);
  padding: 4rem;
  border-radius: 32px;
  border: 1px solid var(--border-glass);
}
.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  transition: 0.3s ease all;
  font-family: var(--font-heading);
}
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: -1.5rem;
  font-size: 0.8rem;
  color: var(--accent-primary);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--accent-primary);
}
.form-group select option {
  background: var(--bg-dark);
  color: #fff;
}

/* Animations */
@keyframes rotate3d {
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes growBar {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Reveal Classes (Triggered by JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--ease-out-expo);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}

/* Media Queries */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid,
  .footer-grid,
  .dash-charts {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .hero-3d-element {
    opacity: 0.3;
    right: -20%;
  }
  .main-nav,
  .header-actions .btn-magnetic {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .dash-charts {
    height: auto;
  }
  .chart-bar-container {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .contact-form-box {
    padding: 2rem;
  }
  .industry-card {
    min-width: 300px;
    padding: 2rem;
  }
}
