.img-comp-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    display: block;
    aspect-ratio: 16/9; /* maintain aspect ratio */
    overflow: hidden;
  }
  
  .img-comp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .img-comp-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .img-comp-slider-container {
    position: absolute;
    z-index: 8;
    cursor: ew-resize;
    width: 5px;
    background: white;
    height: 100%;
  }
  
  .img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 25px;
    height: 25px;
    display: flex;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }
  
  .img-comp-slider::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #B89C36;
    animation: blinker 1.2s infinite;
    display: block;
  }
  
  @keyframes blinker {
    0%, 100% {
      opacity: 0.2;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.4);
    }
  }
  
  /* ✅ Adjust slider size for smaller devices */
  @media screen and (max-width: 768px) {
    .img-comp-slider {
      width: 18px;
      height: 18px;
    }
  }