body 

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 25px 20px;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.card button {
  margin-top: 10px;
  background: #0d6efd;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.card button:hover {
  background: #084eb0;
}






.swiper-slide {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    min-height: 250px;
    text-align: center;
}

.swiper-slide:hover {
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.swiper-button-next, .swiper-button-prev {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    width: 40px;
    height: 40px;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px;
    color: #003366;
}












