  :root {
      --primary: #0e9dfc;
      --secondary: #0efc93;
      --accent1: #fc0e85;
      --accent2: #fc5f0e;
      --dark: #333;
      --light: #f8f9fa;
      --gray: #6c757d;
  }
  
  body {
      color: var(--dark);
  }
  
  .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary) !important;
  }
  
  .navbar-brand span {
      color: var(--accent1);
  }
  
  .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
  }
  
  .btn-primary:hover {
      background-color: #0c8ae0;
      border-color: #0c8ae0;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(14, 157, 252, 0.3);
  }
  
  .btn-light {
      background-color: white;
      color: var(--primary);
  }
  
  .btn-light:hover {
      background-color: #f0f0f0;
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  }
  
  .hero {
      padding: 150px 0 100px;
      background: linear-gradient(135deg, rgba(14, 157, 252, 0.1) 0%, rgba(14, 252, 147, 0.1) 100%);
  }
  
  .hero h1 span {
      color: var(--primary);
  }
  
  .hero-image img {
      animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
  }
  
  .stat-card {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .stat-card:nth-child(1) {
      border-top: 4px solid var(--primary);
  }
  
  .stat-card:nth-child(2) {
      border-top: 4px solid var(--secondary);
  }
  
  .stat-card:nth-child(3) {
      border-top: 4px solid var(--accent1);
  }
  
  .stat-card:nth-child(4) {
      border-top: 4px solid var(--accent2);
  }
  
  .stat-card:nth-child(5) {
      border-top: 4px solid var(--primary);
  }
  
  .stat-card:nth-child(6) {
      border-top: 4px solid var(--secondary);
  }
  
  .stat-icon {
      font-size: 2.5rem;
  }
  
  .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
  }
  
  .features {
      background: linear-gradient(135deg, rgba(252, 14, 133, 0.05) 0%, rgba(252, 95, 14, 0.05) 100%);
  }
  
  .feature-card {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
      transform: translateY(-10px);
  }
  
  .feature-icon {
      font-size: 2.5rem;
      color: var(--primary);
  }
  
  .cta {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  }
  

  body {
    overflow-x: hidden;
}


/* illustrated-cards */

.illustrated-card {
  background: linear-gradient(145deg, #ffffff, #e6ecf3);
  border: 2px dashed #02489e;
  border-radius: 1rem;
  box-shadow: 6px 6px 0px #02489e;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.illustrated-card:hover {
  transform: translateY(-5px);
}

  .illustrated-card-left {
  background: linear-gradient(145deg, #ffffff, #e6ecf3);
  border: 2px dashed #02489e;
  border-radius: 1rem;
  box-shadow: -6px 6px 0px #02489e;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.illustrated-card-left:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #02489e;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
  font-weight: bold;
  font-size: 1.25rem;
  color: #02489e;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #02489e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.2rem;
}






  