.image-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 20px;
}

.box {
  text-align: center;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  padding: 10px;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 150px;
}

.box img {
  width: 100%;
  border-radius: 8px;
}

.box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


  .footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 40px 20px 15px;
    font-family: Arial, sans-serif;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }

  .footer-about, .footer-links, .footer-social {
    flex: 1;
    min-width: 250px;
    margin: 15px;
  }

  .footer-about h3 {
    color: #00bcd4;
  }

  .footer-links h4, .footer-social h4 {
    color: #fdd835;
    margin-bottom: 10px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin: 8px 0;
  }

  .footer-links a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #00bcd4;
  }

  .social-icons a img {
    width: 25px;
    margin: 0 8px;
    filter: invert(1);
    transition: transform 0.3s;
  }

  .social-icons a:hover img {
    transform: scale(1.2);
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .social-icons a img {
      margin: 5px;
    }
  }
  
  
     .quiz-section {
      font-family: 'Poppins', sans-serif;
      background: #f5f7fa;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      margin: 30px auto;
      width: 90%;
      max-width: 800px;
    }

    .quiz-section h2 {
      color: #2563eb;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .quiz-section select, .quiz-section button {
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
      margin: 10px;
      cursor: pointer;
    }

    .quiz-section button {
      background: #2563eb;
      color: white;
      border: none;
      transition: 0.3s;
    }

    .quiz-section button:hover {
      background: #1d4ed8;
    }

    .quiz-card {
      background: white;
      border-radius: 10px;
      padding: 20px;
      margin-top: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .quiz-card h3 {
      color: #333;
    }

    .quiz-option {
      display: block;
      background: #e5e7eb;
      border-radius: 8px;
      padding: 10px;
      margin: 10px auto;
      max-width: 400px;
      cursor: pointer;
      transition: 0.3s;
    }

    .quiz-option:hover {
      background: #2563eb;
      color: white;
    }

    .result-box {
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
      color: #2563eb;
    }
    
    
    .review-section {
  background: linear-gradient(135deg, #eef2ff, #f9f9f9);
  padding: 50px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 1000px;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-section h2 {
  color: #333;
  font-size: 28px;
  margin-bottom: 10px;
}

.intro-text {
  color: #555;
  margin-bottom: 30px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.review-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 230px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.review-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.review-box h3 {
  color: #333;
  margin-bottom: 5px;
}

.review-box .stars {
  color: #ffbb00;
  font-size: 18px;
  margin: 5px 0;
}

.review-box p {
  color: #555;
  font-size: 15px;
}

.review-form {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-form h3 {
  margin-bottom: 15px;
  color: #333;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.review-form button {
  background: #4b3aff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-form button:hover {
  background: #3729c7;
}

.cta-text {
  margin-top: 30px;
  color: #333;
  font-weight: bold;
}