body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}
/*fixation de la navbar*/


/* .navbar {
  background-color: #1a1a1a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: absolute;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
} */
.bling{
  color: red;
}

.hero {
  background: linear-gradient(to bottom, #ffd700, #fff);
  text-align: center;
  padding: 2rem 1rem;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.search-form select,
.search-form button {
  padding: 0.6rem;
  border-radius: 25px;
  border: 1px solid #ccc;
}

.search-form button {
  background-color: black;
  color: white;
  cursor: pointer;
}

.best-schools {
  text-align: center;
  padding: 2rem 1rem;
}

.best-schools h2 {
  color: #ffcc00;
  margin-bottom: 1rem;
   border-color: #1a1a1a;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-color: #1a1a1a;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card {
  background: #ffcc00;
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



.card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.how-it-works {
  text-align: center;
  padding: 2rem 1rem;
}

.how-it-works h2 {
  color: #ffcc00;
  margin-bottom: 1rem;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step img {
  width: 40px;
  margin-bottom: 1rem;
}

.testimonials {
  text-align: center;
  padding: 2rem 1rem;
  background: #eee;
}

.testimonials h2 {
  color: #ffcc00;
  margin-bottom: 1rem;
}

.testimonial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial img {
  width: 100px;
  border-radius: 50%;
}

blockquote {
  max-width: 400px;
  background: #ffcc00;
  padding: 1rem;
  border-radius: 8px;
}
/* ===== Responsive Mobile ===== */
@media (max-width: 768px) {
  .navbar {
    align-items: start;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .search-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-form select,
  .search-form button {
    width: 90%;
    margin: 0 auto;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
  }

  .testimonial img {
    width: 80px;
  }

  blockquote {
    width: 90%;
  }
}
.img{
  border-radius: 50%;
}

.site-footer {
  background-color: black;
  color: #ccc;
  font-size: 13px;
  padding: 20px 0 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-container div {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}

.footer-left h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-center h5,
.footer-right h5 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  margin: 4px 0;
}

.footer-center ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-center ul li a:hover {
  color: #00aaff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #34495e;
  margin-top: 10px;
  padding-top: 8px;
  font-size: 12px;
  color: #aaa;
}