.slider-container {
    width: 100%;
    height: 100vh; /* Set the container height to the full height of the viewport */
    margin: auto;
}

/* Slick Slider Styling */
.slick-slide {
    position: relative;
}

/* Ensure each slide image takes full screen height */
.slick-slide img {
    width: 100%;
    height: 100vh; /* 100% of the viewport height */
    object-fit: cover; /* Make the image cover the container without distortion */
}

/* Styling for the caption */
.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
}

/* Optional: Style the heading and paragraph */
.caption h2 {
    font-size: 2rem;
    /* margin-bottom: 10px; */
    color: #fff;
}

.caption p {
    font-size: 1rem;
    margin: 0;
}

.slick-dots
{
    bottom:0px !important;
}

.slick-dots li button:before
{
    width: 10px;
    height: 10px;
    background: #8bc43f;
    border-radius: 5px;
}
.slick-slide img
{
    width: 100%;
}