.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
  }
  .product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.8rem 0 0.4rem;
    color: #111;
  }
  .product-details {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.6rem;
  }
  .product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #eab308;
    margin-bottom: 0.8rem;
  }


  .testimonial-card {
    background: #ffffff;
    border: 10px;
    border: #bebebe;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.212);
    height: 100%;
  }
  .testimonial-card:hover{
      transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.39);
  }
  .testimonial-card img {
    
    border-radius: 1%;
    width: 250px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  .testimonial-card h5 {
    margin-top: 0.5rem;
    font-weight: 600;
  }
  .testimonial-card p {
    margin: 0.3rem 0;
  }
 
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: #ff0000; /* Bootstrap primary blue */
border-radius: 50%;
padding: 20px; /* Make circle bigger */
background-size: 60% 60%;
}

/* Optional: change hover color */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
background-color: #000000; /* yellow on hover */
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
