.slider-container { position: relative;
    width: 620px;
    height: 500px;
  
    } /* Adjust frame width */
/* Laptop Frame */
.laptop-frame {
   width: 650px; 
   height: 390px;
   max-width: 600px; 
   max-height: 380px;
    display: block !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
     z-index: 2;   
   }
/* Swiper Container for Images */
.swiper-container { 
 position: absolute; 
top:70px;  /* Adjust to align inside laptop frame */
left:0;
right: 0;
width: 100%; 
 z-index: 1; 
 display: flex; 
 align-items: center;
 justify-content: center;
 padding: 0;
}
.swiper-slide{
display: flex; justify-content: center; align-items: center;
}
.swiper-slide img { 
   position: relative; 
   object-fit: cover !important;
   width: 450px; 
    height: 210px;
    max-width: 420px; 
    max-height: 210px; 
    border-radius: 4px; 
    transition: transform 0.3s ease;
    }
.swiper-slide-active img { transform: scale(1.1); }

@media (max-width: 480px) {

   .swiper-container { 
 
top:28px; 
}
   .laptop-frame {
   width: 200px; 
   height: 160px;
   max-width: 200px; 
   max-height: 160px;
    display: block !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
     z-index: 2;   
   }
 .swiper-slide img {
   width: 130px;
   height: 90px;
 }
}