 .image-carousel-wrapper {
    position: relative;
    overflow: hidden;
  }

  .image-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .image-carousel::-webkit-scrollbar {
    display: none;
  }

  .image-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    overflow: hidden;
  }
    .image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .influencer-line-divider{
    max-width: 75%;
    margin: auto;

  }





  .arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; /* No background */
  border: none;
  padding: 0.5rem 0.8rem;
  z-index: 10;
  color: #DBBC57; /* Yellow arrows */
  font-size: 2rem;
  cursor: pointer;
  border-radius: 0;
}

.arrow-left {
  left: 30px;
}

.arrow-right {
  right: 30px;
}

.arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.image-item {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
}

.image-overlay-text {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  /* background: rgba(0, 0, 0, 0.6); dark transparent overlay */
  padding: 6px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: white;
  }

  .section-heading::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    margin: 18px auto 0;
    background: linear-gradient(to right, transparent, #DBBC57, transparent);
    border-radius: 2px;
  }


   @media (min-width: 992px) {
    .image-item {
      width: calc(100% / 5 - 0.8rem);
    }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    .image-item {
      width: calc(100% / 3 - 0.7rem);
    }
     .arrow-left {
  left: 0px;
}

.arrow-right {
  right: 0px;
}
.image-item img {
    width: 93%;
    margin: auto;
    height: 100%;

  }
  .image-overlay-text {
    max-width: 85%;
    margin: 0px 7.5%;
}
  }

  @media (max-width: 767px) {
    .image-item {
       width: 100%;
    margin-left: auto;
    margin-right: auto;
    }
    .image-item img {
    width: 80%;
    margin: auto;

  }
  .arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}
.image-overlay-text {
    max-width: 65%;
    margin: 0px 17.5%;
}
.image-item {
    border-radius: 0px !important;
}
  }
.fluid{
    max-width: 90%;
    margin: auto;
}
.navbar{
    position: fixed;
    top: 0px;
    left: 0px;
  width: 100%;
  z-index: 1000;

}
