/* Start custom CSS for html, class: .elementor-element-343fb8e *//* Slider Container */
.custom-slider {
  width: 100%;
  padding: 40px 0;
}

.slide-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: #000;
  text-align: center;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 80%;
}

.slide-content h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.slide-content .btn {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.slide-content .btn:hover {
  background: #ff4081;
  color: #fff;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #6a00ff;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.2rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }
}/* End custom CSS */