/* ==========================================================================
   CSS Variables & Theme Setup
   ========================================================================== */
:root {
  /* Brand Colors based on Tech/Digital Marketing Theme */
  --bg-dark: #070b19;
  --bg-darker: #04060e;
  --bg-card: rgba(15, 23, 42, 0.6);
  --primary-cyan: #00f0ff;
  --primary-purple: #b026ff;
  --text-main: #ffffff;
  --text-muted: #94a3b8;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-cyan),
    var(--primary-purple)
  );
  --gradient-text: linear-gradient(
    to right,
    var(--primary-cyan),
    var(--primary-purple)
  );
  --gradient-glow: linear-gradient(
    90deg,
    rgba(0, 240, 255, 0.15),
    rgba(176, 38, 255, 0.15)
  );

  /* UI Elements */
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(7, 11, 25, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-heading: "Orbitron", sans-serif;
  --font-body: "Roboto", sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-glow: 0 0 20px rgba(0, 240, 255, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor applied */
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}
.text-center {
  text-align: center;
}
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Custom Cursor & Preloader
   ========================================================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-cyan);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(176, 38, 255, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 240, 255, 0.1);
  border-color: var(--primary-cyan);
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.loader-circle {
  width: 80px;
  height: 80px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}
.loader-text {
  font-family: var(--font-heading);
  letter-spacing: 4px;
  color: var(--primary-cyan);
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ==========================================================================
   Background Effects (Grid & Particles)
   ========================================================================== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  z-index: -2;
  pointer-events: none;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 50px;
  }
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
  z-index: 1;
  border: none;
  cursor: none; /* override default */
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: var(--transition-fast);
  z-index: -1;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  box-shadow: 0 0 25px rgba(176, 38, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-cyan);
  color: var(--primary-cyan);
}
.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  background: transparent;
}
.header.scrolled {
  padding: 1rem 0;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}
.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-cyan);
  transition: width var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-cyan);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-main);
  transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}
.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--primary-cyan);
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--primary-cyan);
}
.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Floating Stats in Hero */
.hero-stats-wrapper {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
}
.stat-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}
.stat-glass-card:nth-child(2) {
  animation-delay: 2s;
  right: 30px;
  position: relative;
}
.stat-glass-card i {
  font-size: 2rem;
  color: var(--primary-purple);
}
.stat-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-cyan);
}
.stat-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ==========================================================================
   Client Marquee (Logos)
   ========================================================================== */
.client-marquee {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: calc(250px * 10); /* Adjust based on items */
  animation: scrollMarquee 30s linear infinite;
}
.marquee-item {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}
.marquee-item:hover {
  opacity: 1;
  color: var(--primary-cyan);
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--primary-purple);
}
.about-image::before {
  content: "";
  display: block;
  padding-top: 75%; /* Aspect ratio */
  background: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80")
    center/cover;
  transition: transform 0.5s ease;
  filter: grayscale(100%) contrast(1.2);
}
.about-image:hover::before {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 25, 1), transparent);
}

/* ==========================================================================
   Services Section (3D Cards)
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-subtitle {
  color: var(--primary-cyan);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  transform-style: preserve-3d;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(176, 38, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: var(--transition-fast);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: -10px 10px 30px rgba(0, 240, 255, 0.1);
  border-color: var(--primary-cyan);
}
.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

/* ==========================================================================
   Industries Tabs Section
   ========================================================================== */
.industries-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
}
.tab-buttons {
  width: 30%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}
.tab-btn {
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  text-align: left;
  font-size: 1.1rem;
  cursor: none;
  transition: var(--transition-fast);
}
.tab-btn.active {
  background: rgba(0, 240, 255, 0.05);
  border-left-color: var(--primary-cyan);
  color: var(--text-main);
}
.tab-content-container {
  width: 70%;
  padding: 3rem;
  position: relative;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-pane.active {
  display: block;
}
.tab-pane h3 {
  color: var(--primary-purple);
}
.tab-pane ul {
  margin-top: 1.5rem;
}
.tab-pane li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-pane li i {
  color: var(--primary-cyan);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Live Dashboard / Reports Section
   ========================================================================== */
.dashboard-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.dash-status {
  color: #00ff66;
  font-family: monospace;
}
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Bar Chart UI */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bar-label {
  width: 80px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fill-1 {
  background: var(--primary-cyan);
}
.fill-2 {
  background: var(--primary-purple);
}
.fill-3 {
  background: #00ff66;
}

/* Number Counters */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.metric-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.metric-number {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: bold;
}
.metric-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   ROI Calculator Section
   ========================================================================== */
.calculator-section {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}
.calculator-box {
  background: var(--glass-bg);
  border: 1px solid var(--primary-cyan);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}
.calc-form {
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* Custom Range Slider */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--primary-cyan);
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 0 10px var(--primary-cyan);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.range-values {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--primary-purple);
}

.calc-results {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
  border: 1px dashed var(--border-color);
  text-align: center;
}
.result-val {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: #00ff66;
  text-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
}
.stars {
  color: #ffbc00;
  margin-bottom: 1rem;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: var(--gradient-primary);
  padding: 5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="white" stroke-width="2" fill="none" opacity="0.1"/></svg>')
    repeat;
  mix-blend-mode: overlay;
}

/* ==========================================================================
   Footer (Strict Consistency)
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 0 0;
  position: relative;
  z-index: 10;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}
.footer-social a:hover {
  background: transparent;
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: translateY(-3px);
}
.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer-links ul li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--primary-purple);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-contact i {
  color: var(--primary-cyan);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-legal-links a {
  margin-left: 1.5rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #fff;
}

/* ==========================================================================
   Page Headers (Legal & Contact)
   ========================================================================== */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
  border-bottom: 1px solid var(--border-color);
}
.page-title {
  font-size: 3rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.breadcrumbs {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--primary-cyan);
}

/* ==========================================================================
   Legal Content Styling
   ========================================================================== */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content .content-wrapper {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.legal-content h2 {
  margin-top: 2rem;
  color: var(--primary-cyan);
  font-size: 1.5rem;
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: var(--glass-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-purple);
}
.contact-form {
  background: var(--glass-bg);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-cyan);
  background: rgba(0, 240, 255, 0.02);
}

/* ==========================================================================
   Animations & Interactivity (Pure CSS)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
  transition: transform 0.3s;
}
.chat-bubble:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats-wrapper {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--bg-darker);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .about-grid,
  .chart-grid,
  .industries-wrapper {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .tab-buttons,
  .tab-content-container {
    width: 100%;
  }
  .tab-buttons {
    flex-direction: row;
    overflow-x: auto;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  } /* Disable custom cursor on mobile */
  body {
    cursor: auto;
  }
  .btn {
    cursor: pointer;
  }
}
