body {
    margin: 0;
    font-family: Arial, sans-serif;
}
 

    .swiper {
      width: 100%;
      height: 130px;
    }

    .swiper-slide {
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .swiper-slide img {
      width: 300px;
      height: 130px;
      object-fit: cover;
      transition: transform 0.5s ease;
      border-radius:10px;
    }

    .swiper:hover .swiper-slide img {
      transform: scale(1.5);
    }

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
    transition: transform 0.5s ease;
}
#bg-might{
background-color: black;
color: white;padding-bottom: 10px;
}
#bg-might ul li a{
background-color: black;
color: white;
}

.slider{
    display: flex;
}
.slide {
    width: 350px;
    height: 230px;
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    background-color: white;
  
    transition: transform 0.3s ease;
}


.slide:hover {
    transform: scale(1.2);
}

/* Button styling */
.prev,.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.imageSlider{
    display: flex;
    flex-direction: row;
overflow: hidden;
}

/* Styling for the image container */
.imageSlider {
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    /* max-width: 1200px; */
    margin: 10px;
    padding: 10px;
}
.imageSlider1{
    display: flex;
    overflow: hidden;
    width: 100%;
    /* max-width: 1200px; */
    margin: 10px;
    padding: 10px;
}
/* Styling for each image */
.imagesSliderImg {
    width: 150px; /* Set to desired width */
    height: 120px; /* Set to desired height */
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Zoom-in effect on hover */
.imagesSliderImg:hover {
    
    transform: scale(1.2);
    box-shadow: 0px 0px  7px rgba(0, 0, 0, 0.515);
    z-index: 200;
  
}

/* Auto-scrolling effect */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes scrollSlider1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Apply the scrolling animation */
.imageSlider {
    animation: scrollSlider 20s linear infinite;
}

/* Pause scrolling when hovering */
.imageSlider:hover {
    animation-play-state: paused;
}

.imageSlider1 {
    animation: scrollSlider1 20s linear infinite;
}

/* Pause scrolling when hovering */
.imageSlider1:hover {
    animation-play-state: paused;
}

.imageSliderBody{
    /* background-color: black; */
    position: relative;

}
.imageData{
    position: absolute;
    top:0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.644);
    color: white;
    max-height: 300px;
    width: 100%;
    height: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Pause on hover */
.slider-container:hover .slider-wrapper {
    animation-play-state: paused;
}
@media screen and (max-width:400px) {
    .slide{
        width: 230px !important;
    }
    
}