.slider_banner {
    display: flex;
    height: auto;
    max-height: 800px;
    margin-top: 100px;
    width: 100%;
    padding: 0 45px 0 100px;
    background: url(https://49716150.fs1.hubspotusercontent-na1.net/hubfs/49716150/wave-pink.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.left_of_slider {
  width: 50%;
  padding: 60px;
  overflow-y: hidden;
}

.left_of_slider h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #274a50;
}

.left_of_slider h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.left_of_slider h3,
.left_of_slider p {
  color: #274a50;
  line-height: 1.5;
}

.signature img {
  margin-top: 20px;
}

/* ====== RIGHT SIDE ====== */
.right_of_slider {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

/* Slider wrapper (holds track & ensures aspect ratio) */
.slider_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.slider_track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.image_card {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_card img {
  width: 700px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Navigation buttons */
.nav_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(39, 74, 80, 0.8);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 10;
}

.nav_btn:hover {
  background-color: rgba(39, 74, 80, 1);
}

.prev_btn {
  left: 35px;
}

.next_btn {
  right: 35px;
}

/* Dashes / indicators */
.dashes {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.dash {
  flex: 1;
  height: 6px;
  background-color: rgba(39, 74, 80, 0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash.active {
  background-color: #274a50;
  height: 8px;
}

.dash:hover {
  background-color: rgba(39, 74, 80, 0.6);
}

@media (max-width: 1800px) {

  .left_of_slider {
    padding: 25px;
  }

  .left_of_slider h1 {
    font-size: 32px;
  }

  .left_of_slider h3 {
    font-size: 20px;
  }
}

@media (max-width: 1330px) {
  .left_of_slider {
    padding: 10px;
  }
  
  .slider_banner{
    max-height: 1000px;
}

@media (max-width: 1189px) {
  .slider_banner {
    height: auto;
  }

  .left_of_slider,
  .right_of_slider {
    width: 100%;
    height: auto;
  }

  .slider_wrapper {
    height: 500px;
  }
}

@media (max-width: 1100px) {
  .slider_banner {
    flex-direction: column;
    height: auto;
    max-height: 1100px;
  }

  .left_of_slider,
  .right_of_slider {
    width: 100%;
    height: auto;
  }

  .slider_wrapper {
    height: 400px;
  }

  .nav_btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 832px) {
  .slider_banner{
    padding: 0 20px;
    max-height: none;
  }
    
    .right_of_slider{
      padding: 0;
    }
}