body {
  padding-top: 80px;
  background: #f8fafc;

}
/* ===== GLOBAL FONT ===== */
* {
  font-family: 'Inter', sans-serif;
}

.hero {
  min-height: 90vh;
  background: radial-gradient(circle at center, #eafaf1, #ffffff);
}

.text-gradient {
  background: linear-gradient(90deg, #198754, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats {
  margin-top: -60px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card i {
  font-size: 30px;
  color: #198754;
}

.services {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 32px;
  color: #198754;
  margin-bottom: 15px;
}

/* ANIMATION */
.fade-in {
  animation: fadeInUp 0.8s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CARD */
.prediction-card {
  border-radius: 18px;
  font-size: 16px;
}
.tete{
  font-size: 30px;
}
.image{
  height: 40px;
}

/* DARK MODE */
body.dark {
  background: #0f172a;
  color: #e5e7eb;
  font-size: 24px;

}

body.dark .navbar,
body.dark .card {
  background: #020617 !important;
}

body.dark .table {
  color: #e5e7eb;
}

body.dark .table thead {
  background: #020617;
}

body.dark .btn-outline-secondary {
  color: #e5e7eb;
  border-color: #64748b;
}

.btn {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.15),
              0 12px 30px rgba(0, 0, 0, 0.18);
}
.btna-jour{
  background-color: #54db; /* bleu */
    color: white;
    padding: 10px 20px;
    cursor: pointer
}



