 /*CLIENT AREA*/
/* Client Area Styling */
 .clients-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.clients-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.view-all {
  display: inline-block;
  color: #2e8b57;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 50px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.client-card {
  background: #ffffff;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card span {
  color: #2e8b57;
  font-size: 20px;
  font-weight: 600;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.client-card img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.dashboard_contents {
    margin-top: 50px;
    margin-left: 240px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
}

.History_page {
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    min-width: 200px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
