:root {
  --bg: #0b0f14;
  --bg-soft: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #3b82f6;
  --border-glow: rgba(59,130,246,0.45);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.glass-nav {
  background: rgba(11,15,20,.85);
  backdrop-filter: blur(10px);
}

.hero-section {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f172a, var(--bg));
}

.section {
  padding: 5rem 0;
}

.bg-soft {
  background: var(--bg-soft);
}

.section-title {
  font-weight: 600;
}

.section-subtitle {
  max-width: 720px;
  margin: auto;
  color: var(--muted);
}

.glow-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(17,24,39,.85);
  border: 1px solid var(--border-glow);
  transition: .3s;
}

.glow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(59,130,246,.18);
}

.industry-slider {
  overflow: hidden;
  margin-top: 3rem;
}

.industry-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 35s linear infinite;
}

.industry-card {
  min-width: 220px;
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(17,24,39,.85);
  border: 1px solid var(--border-glow);
  text-align: center;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: #0b1220;
  border: 1px solid var(--border-glow);
  color: var(--text);
}

.footer {
  padding: 3rem 0;
  background: #05080d;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 25px rgba(37,211,102,.5);
  z-index: 999;
  text-decoration: none;
}



.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}



.service-icon {
  font-size: 2.5rem;
  color: #00e5ff;
  margin-bottom: 1rem;
}

.glow-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfd8dc;
}

.process-step {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #e0f7fa;
  font-weight: 500;
}


#services .glow-card {
  padding: 30px;
}

#services h5 {
  margin-top: 10px;
  margin-bottom: 10px;
}


.newsletter-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.newsletter-box h6 {
  color: #ffffff;
}

.newsletter-box input {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

