.main-container {
/*   width: 280px; */
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.top-container img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Bottom Section */
.bottom-container {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  background: none;
  box-shadow: none;
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: hidden;
}

/* Hidden Button */
.hidden-btn {
  display: block;
  margin-top: 0px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  height: 0;
  overflow: hidden;
}

/* Hover Effects */
.main-container:hover {
  transform: translateY(0px); /* card moves up instead of growing down */
}

.main-container:hover .bottom-container {
  transform: translateY(-50px); /* bottom container still slides up */
}

.main-container:hover .hidden-btn {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  overflow: visible;
}

.main-container:hover .top-container img {
  transform: scale(1.05);
}



/* New Code */


.elementor-element .swiper .swiper-horizontal>.swiper-pagination-bullets, .elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .elementor-element .swiper .swiper-pagination-custom, .elementor-element .swiper .swiper-pagination-fraction, .elementor-element .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal, .elementor-element .swiper~.swiper-pagination-custom, .elementor-element .swiper~.swiper-pagination-fraction, .elementor-lightbox .swiper .swiper-horizontal>.swiper-pagination-bullets, .elementor-lightbox .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .elementor-lightbox .swiper .swiper-pagination-custom, .elementor-lightbox .swiper .swiper-pagination-fraction, .elementor-lightbox .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal, .elementor-lightbox .swiper~.swiper-pagination-custom, .elementor-lightbox .swiper~.swiper-pagination-fraction{
    left: 50% !important;
}

/* End Code */