/* Container for the slider needs to be relative */
.hero-slider {
    position: relative;
}
.hero-section {
    min-height: 100vh; /* Or 600px */
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}

/* Style the custom arrows */
.prevArrow, .nextArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background-color: #27364b !important;
    color: #ffffff !important;
    border: 2px solid #263546 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.prevArrow:hover, .nextArrow:hover {
    background-color: green !important; /* Deep blue on hover */
    color: #ffffff !important;
    border-color: #0056b3 !important;
}
.prevArrow {
    left: 30px;
}

.nextArrow {
    right: 30px;
}

/* Fix for icons if they are tiny */
.prevArrow i, .nextArrow i {
    font-size: 20px;
    line-height: 1;
}

/* Ensure the dots are also visible */
.slick-dots {
    bottom: 30px;
    z-index: 99;
}
.slider-title {
    /* rgba(red, green, blue, alpha/transparency) */
    background-color: rgba(26, 26, 55, 0.40) !important;
    padding: 10px 20px;
    display: inline-block; /* Background ta sudhu text er upor thakbe */
    border-radius: 5px;
    width: 1000px;
}
.slider-description {
    /* rgba(red, green, blue, alpha/transparency) */
    background-color: rgba(26, 26, 55, 0.40) !important;
    padding: 10px 20px;
    display: inline-block; /* Background ta sudhu text er upor thakbe */
    border-radius: 5px;
    width: 1000px;
}