/* Slider Container */
.slide {
    position: relative;
    width: 80%; /* Adjust width as needed */
    margin: 0 auto; /* Center the slider */
    overflow: hidden;
}

/* Slick Slide */
.slick-slide {
    padding: 0 20px; /* Add padding for spacing between slides */
}

/* Slick Image */
.slick-slide img {
    width: 100%;
    height: 300px; /* Fixed height for all images */
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 10px; /* Add border radius */
}

/* Navigation Arrows */
.hi-slide {
    position: relative;
}

.hi-prev, .hi-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hi-prev {
    left: 10px;
}

.hi-next {
    right: 10px;
}

/* Center Image Size */
.slick-center img {
    height: 340px; /* Increase the height of the center image */
}
