:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #3b82f6;
  --success-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></linearGradient></defs><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="800" cy="400" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="400" cy="800" r="4" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.inner-header-section {
  /* background: linear-gradient(45deg, #1a237e, #271a28); */
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  min-height: 220px;
}

.feature-icon {
  font-size: 2.5rem;
  color: #4a148c;
}
.testimonial-card {
  border-left: 4px solid #4a148c;
  background: #f8f9fa;
}
.cta-section {
  background: #f8f9fa;
  padding: 4rem 0;
}
.dashboard-img {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

 

.hero-image {
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  position: relative;
}
.challenge-card {
  transition: transform 0.3s ease;
}
.challenge-card:hover {
  transform: translateY(-5px);
}
.solution-badge {
  background: rgba(74, 20, 140, 0.1);
  border-left: 3px solid #4a148c;
}
.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

 
.bg-purple {
  background-color: #7b1fa2 !important;
}
.text-purple {
  color: #7b1fa2 !important;
}
.badge {
  width: 12px;
  height: 12px;
  padding: 0;
}

 