.client-feedback {
    padding: 40px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .client-feedback h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: rgb(2,108,108);
  }
  
  .feedback-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .feedback-card {
    background: #fafafa;
    padding: 20px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation added */
  }
  
  .client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .feedback-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: rgb(0,108,108);
  }
  
  .feedback-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
  }
  
  .feedback-button {
    margin-top: 30px;
  }
  
  .btn-post {
    background-color: rgb(0,108,108);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* Smooth transition */
  }
  
  .btn-post:hover {
    background-color: transparent;
    border: 2px solid rgb(0,108,108);
    color: rgb(0,108,108);
    border-radius: 25px;
    font-size: 1rem;
  }
  
  /* Hover Animation for Cards */
  .feedback-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  