/* css/style.css */
/* === All original styles preserved === */
:root {
  --primary: #fec016;
  --primary-dark: #e6ad0b;
  --dark: #0f0f1a;
  --darker: #0a0a12;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gradient: linear-gradient(135deg, #fec016, #ff8c00);
  --gradient-dark: linear-gradient(135deg, #1a1a2e, #0f0f1a);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: #e9ecef;
  line-height: 1.7;
  overflow-x: hidden;
}
/* Typography */
.display-3 { font-weight: 800; }
.display-5 { font-weight: 700; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Logo Round */
.logo-round img {
  object-fit: cover;
  border: 2px solid rgba(254,192,22,0.3);
}
/* Glass Navigation */
.glass-nav {
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.glass-nav.scrolled {
  background: rgba(10, 10, 18, 0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
/* Section Dividers */
.section-divider {
  height: 80px;
  position: relative;
}
.section-divider.top {
  background: linear-gradient(to bottom, transparent, var(--dark));
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}
.section-divider.bottom {
  background: linear-gradient(to top, transparent, var(--dark));
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}
/* Hero */
.hero {
  position: relative;
  background: var(--darker);
  padding-top: 6rem; /* Prevents navbar overlap */
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(254,192,22,0.15), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,140,0,0.1), transparent 50%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(254,192,22,0.3) 1px, transparent 1px),
    radial-gradient(circle at 90% 80%, rgba(255,140,0,0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: float 25s infinite linear;
  z-index: 1;
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}
/* Mockup Dashboard */
.mockup {
  perspective: 1200px;
}
.mockup-screen {
  background: #1a1a2a;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: rotateY(-6deg) rotateX(6deg);
  transition: transform 0.7s ease;
}
.mockup-screen:hover {
  transform: rotateY(0) rotateX(0) scale(1.03);
}
.mockup-header {
  background: #2a2a3a;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
.mockup-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #555;
}
.mockup-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.metric-card {
  background: rgba(254,192,22,0.1);
  border: 1px solid rgba(254,192,22,0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}
.metric-card.active {
  background: rgba(254,192,22,0.2);
  border-color: var(--primary);
  transform: translateY(-8px);
}
.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.metric-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}
.metric-trend {
  font-size: 0.8rem;
  margin-top: 0.75rem;
}
.metric-trend.up { color: #4ade80; }
.mockup-footer {
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.2);
}
/* Service Cards */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: rgba(254,192,22,0.05);
  border-color: var(--primary);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(254,192,22,0.15);
}
.service-icon {
  width: 70px; height: 70px;
  background: rgba(254,192,22,0.1);
  border: 1px solid rgba(254,192,22,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.service-icon svg { width: 36px; height: 36px; }
/* Status Preview */
.status-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  font-size: 0.9rem;
}
.status-item.pending { border-left: 4px solid #fdba74; }
.status-item.approved { border-left: 4px solid #4ade80; }
/* Tech Stack */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tech-tag {
  background: rgba(254,192,22,0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
}
/* How It Works Steps */
.step {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}
.step.active, .step:hover {
  background: rgba(254,192,22,0.1);
  border-color: var(--primary);
}
.step-number {
  width: 40px; height: 40px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
/* Interactive Dashboard */
.interactive-dashboard {
  background: #1a1a2a;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.dash-header {
  background: #2a2a3a;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dash-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}
.dash-nav {
  display: flex;
  gap: 1.5rem;
}
.nav-item {
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-item:hover { background: rgba(254,192,22,0.2); }
.nav-item.active {
  background: var(--primary);
  color: #000;
  font-weight: 600;
}
.dash-body { padding: 2.5rem; }
.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.setting-item:last-child { border: none; }
/* Tech Card */
.tech-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}
.tech-card:hover {
  background: rgba(254,192,22,0.05);
  border-color: var(--primary);
}
/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-form .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.contact-form .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(254,192,22,0.25);
  color: #fff;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
/* Interactive Buttons */
.interactive-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.interactive-btn .btn-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(254,192,22,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s ease;
  pointer-events: none;
}
.interactive-btn:hover .btn-glow {
  width: 350px; height: 350px;
}
.interactive-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(254,192,22,0.3);
}
/* Footer */
.social-links a {
  color: #aaa;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.social-links a:hover { color: var(--primary); }
/* Background Gradients */
.bg-gradient-dark { background: var(--gradient-dark); }
/* Utilities */
.py-6 { padding: 7rem 0; }
.z-3 { z-index: 3; }

/* === NEW: Interactive Workflow SVG === */
.workflow-interactive {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: all 0.5s ease;
}
.workflow-interactive:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(254,192,22,0.15);
}
.workflow-line {
  padding: 2rem;
}
.workflow-circle {
  transition: all 0.4s ease;
  cursor: pointer;
}
.workflow-circle:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(254,192,22,0.6));
}
.workflow-number {
  pointer-events: none;
}