:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #1e40af;
  --accent-blue: #3b82f6;
  --light-blue: #60a5fa;
  --dark-blue: #1e293b;
  --darker-blue: #0f172a;
  --blue-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --light-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
  --medium-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
  --strong-shadow: 0 30px 60px rgba(30, 58, 138, 0.4);
}

/* Section Styling */

.section-padding {
  padding: 100px 0;
}

/* Form Styling */

.demo-form {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: var(--medium-shadow);
  max-width: 650px;
}

.form-control {
  background: rgba(30, 41, 91, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: white;
  border-radius: 10px;
}

.form-control:focus {
  background: rgba(30, 41, 91, 0.5);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
  color: white;
}

.form-label {
  color: rgba(255, 255, 255, 0.8);
}

.stats-card {
  text-align: center;
  padding: 2rem;
}

.stats-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stats-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.industry-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  /*background: var(--blue-gradient);*/
  color: white;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

