.clients-section{
  min-height: 100vh;
  background: #FFF;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.project-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.project-details {
  margin-top: 1rem;
}

.location {
  display: inline-flex;
  align-items: center;
  background-color: var(--light-gray);
  /* padding: 0.2rem 0.8rem; */
  gap: 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.location img{
  width: 14px;
  height: 14px;
}

h3,
.project-details {
  color: var(--white);
  font-weight: 600;
  margin-top: 5px;
}
.project-details > p{
  text-transform: capitalize;
}
.project-card h3{
  font-size: 20px;
  margin-bottom: 1px;
}

.logo-placeholder {
  background-color: var(--white);
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo-placeholder img {
  height: 160px;
}

.location {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
      font-size: 2rem;
  }
  
  .projects-grid {
      grid-template-columns: 1fr;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .logo-placeholder {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
  }
  
  .logo-placeholder img {
    height: 130px;
    max-width: 100%;
    width: auto;
  }
  .project-card h3{
    font-size: 18px;
  }
}