.products-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 70px 0;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  color: #0b6578;
  margin-bottom: 40px;
}

.myProductSwiper {
  padding-bottom: 40px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s;
  min-width: 330px;
  max-width: 340px;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s;
  border-radius: 25px 25px 0 0;
}

.product-card:hover img {
  transform: scale(1.12);
}

.product-info {
  padding: 25px 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.25rem;
  color: #224056;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-info p {
  font-size: 1rem;
  color: #4496a6;
  margin-bottom: 20px;
  min-height: 45px;
}

.product-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #6dbdc8;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(109, 189, 200, 0.3);
  transition: all .3s;
  text-decoration: none;
}

.product-btn:hover {
  background: #5aacb7;
}

.swiper-pagination-bullet-active {
    background: #6dbdc8 !important;
}
