.slideshow-container {
    background-color: #fff;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    width: 100vw;
    aspect-ratio: 16 / 4;
    /* Wider, sleeker */
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    transition: all 0.8s ease-in-out;
    z-index: 0;
    pointer-events: none;
  }
  
  .slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 1;
    pointer-events: auto;
  }
  
  .slide img,
  .slide iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .slide-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 3;
  }
  
  .slide-dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slide-dot.active {
    background-color: #a855f7 !important;
  }
  
  .grid-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
    pointer-events: none;
    z-index: 2;
  }
  
  .grid-reveal span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 1;
    animation: flyInSquare 0.6s ease forwards;
  }
  
  @keyframes flyInSquare {
    0% {
      transform: translateY(50px) scale(0.5) rotate(15deg);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0) scale(1) rotate(0deg);
      opacity: 0;
    }
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
  }
  
  /* LEFT Arrow */
  .arrow.left {
    left: clamp(4px, 2vw, 16px);
    /* Moved further left */
    border-top: clamp(10px, 2.5vw, 18px) solid transparent;
    border-bottom: clamp(10px, 2.5vw, 18px) solid transparent;
    border-right: clamp(12px, 2.5vw, 20px) solid #d4d1e0;
  }
  
  /* RIGHT Arrow */
  .arrow.right {
    right: clamp(4px, 2vw, 16px);
    /* Moved further right */
    border-top: clamp(10px, 2.5vw, 18px) solid transparent;
    border-bottom: clamp(10px, 2.5vw, 18px) solid transparent;
    border-left: clamp(12px, 2.5vw, 20px) solid #d4d1e0;
  }
  
  /* Hover Effect */
  .arrow:hover {
    transform: translateY(-50%) scale(1.15);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
  }
  
  
  /* Pause button */
  .pause-btn {
    font-size: clamp(18px, 2vw, 24px);
    color: #a855f7;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  
    /* Position on larger screens */
    position: absolute;
    bottom: 20px;
    right: 30px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
  }
  
  /* Hover effect */
  .pause-btn:hover {
    color: #9333ea;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  
  @media (max-width: 700px) {
    .pause-btn {
      position: relative;
      bottom: auto;
      right: auto;
      margin: 16px auto 0 auto;
      font-size: 22px;
    }
  }
  