/* MENU STARTED HERE */
.slider-section {
  max-width: 88%;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  position: relative;
  margin-top: 80px;
}

.slider-section h2 {
  text-align: center;
  color: #0066b2;
  letter-spacing: 2px;
  font-size: 30px;
  margin: 20px 0;
  margin-bottom: 30px;
  font-size: 30px;
  /* position: relative; */
}

.slider-section h2 .span {
  height: 2px;
  width: 200px;
  display: inline-block;
  background: -webkit-linear-gradient(right, #008CBA, transparent);
  top: 10px;
  position: absolute;
}

.slider-section h2 .left-span {
  top: 22px;
  left: 17%
}

.slider-section h2 .right-span {
  top: 22px;
  right: 17%;
  transform: rotate(180deg);

}

.slider-section h2 .left_span {
  top: 16px;
  left: 21%;
}

.slider-section h2 .right_span {
  top: 14px;
  right: 21%;
  transform: rotate(180deg);
}

.slider-section h3 {
  text-align: center;
  font-size: 25px;
  color: #05286e;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.slider {
  width: 96%;
  display: flex;
  justify-content: space-between;
  transition: transform 0.5s linear;
  /* margin: auto; */
}

.slide {
  min-width: 33.5%;
  /*default: 3 cards */
  box-sizing: border-box;
  /* padding: 10px; */
}

.slide img {
  width: 90%;
  border-radius: 8px;
  object-fit: contain;
}

#slider-container .know-more {
  margin: auto 0;
  margin-top: 10px;
  margin-left: 53px;
  color: #fff;
  border-radius: 2px;
  background: url(../img/menu_packages/p_tag_bg.jpg);
  width: 65%;
  height: 30px;
  background-size: 100% 100%;
  border: none;
  font-size: 15px;

}

.know-more a {
  color: #fff;
  padding: 5px 60px;

}

.know-more:hover {
  background: #EFBF04;
  /* filter: contrast(1.5); */
  /* color: #000; */
}



.prev,
.next {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 50px;
  z-index: 10;
}

.prev {
  left: -13px;
}

.next {
  right: -11px;
  top: 54%;
}

/* ✅ Responsive Breakpoints */

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .slide {
    min-width: 50%;
  }
}

/* Mobile: 1 card */
@media (max-width: 600px) {
  .slide {
    min-width: 100%;
  }
}