/* 🔹 Slider base */
.fsp-flexslider { position: relative; overflow: hidden; }
.fsp-flexslider .slides li { position: relative; }

/* 🔹 Image fixed height */
.fsp-flexslider img.fsp-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* 🔹 Title background */
.fsp-title-bg {
    position: absolute;
    bottom: 30px;  /* move title up to make space for dots */
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    padding: 10px 0;
	padding-bottom:20px;
}
.fsp-title { margin: 0; font-size: 18px; }

/* 🔹 Radio buttons container BELOW title */
.fsp-flexslider .flex-control-nav {
    position: absolute;
    bottom: 0;          /* stick to very bottom */
    width: 100%;
    background: #fff;   /* white strip */
    padding: 8px 0;
    text-align: center;
    z-index: 15;
}

/* 🔹 Radio buttons (dots) */
.fsp-flexslider .flex-control-nav li {
    display: inline-block;
    margin: 0 6px;
}
.fsp-flexslider .flex-control-nav a {
    width: 12px;
    height: 12px;
    display: block;
    background: #ccc;      /* default gray */
    border-radius: 50%;
    text-indent: -9999px;
    cursor: pointer;
}
.fsp-flexslider .flex-control-nav a.flex-active {
    background: #ff6600;   /* active orange */
}
