.seesaw-slider-wrapper {
  max-width: 1800px;
  margin: auto;
  /*padding: 40px 20px;*/
}

.header {
width: 90%;
margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #003C9A;
      font-family: "Montserrat";
}

.nav {
  display: flex;
  gap: 10px;
}

.prev-btn, .next-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ccc
  /*background: transparent linear-gradient(270deg, #FFC526 0%, #FF4C15 100%) 0% 0% no-repeat padding-box;*/
opacity: 1;
  cursor: pointer;
}

.slide-img img {
  width: 95%;
  border-radius: 20px;
}

.prev-btn, .next-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Layer */
.bg-layer {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  transition: all 0.3s ease;
}

/* Hover Gradient */
.prev-btn:hover .bg-layer,
.next-btn:hover .bg-layer {
  background: transparent linear-gradient(270deg, #FFC526 0%, #FF4C15 100%) 0% 0% no-repeat padding-box;
}

/* Icon */
.icon {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  color: white;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(to right, #FFC526, #FF4C15);
  width: 22px;
  border-radius: 10px;
}

@media (max-width: 767px) {

  .seesaw-slider-wrapper .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  /* Buttons below title */
  .seesaw-slider-wrapper .nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }

}