.sticky-slider-pro-v14-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
    color: white;
    border-top: 1px solid #333;
    z-index: 99999;
    height: 90px;
    display: flex;
    align-items: center;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}
.slide-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px;
}
.slide-thumb {
    max-height: 75px;
    width: auto;
    border-radius: 5px;
    margin-right: 10px;
    object-fit: contain;
}
.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.slide-title {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.readmore-btn {
    background: red;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 1px 5px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    width: auto !important;
    line-height: 1.3;
    box-shadow: 0 0 5px rgba(255,0,0,0.4);
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
}
.readmore-btn:hover {
    background: #ff3333;
    box-shadow: 0 0 10px rgba(255,0,0,0.7);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}
.tajya-btn {
    background: red;
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
}
.after-content-section {
    margin-top: 25px;
    border-top: 2px solid #ccc;
    padding-top: 10px;
}
.after-content-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    color: #000;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    text-decoration: none;
}
.after-content-card:hover { background: #eee; }
.after-content-card img {
    width: 100px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
    margin-left: 10px;
}
.after-content-card .after-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
}
@media(max-width: 600px) {
  .after-content-card .after-text { font-size: 14px; }
  .tajya-btn { font-size: 14px; padding: 6px 15px; }
  .readmore-btn { font-size: 9px; padding: 1px 4px; }
}



.sticky-slider-pro-v14-bar {
    background: #ffffff; /* white bar */
    height: auto;
    min-height: 100px;
    padding: 10px 0;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}
.slide-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.slide-inner-block {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 15px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 95%;
}
.slide-inner-block img {
    max-height: 70px;
    width: auto;
    border-radius: 10px;
    margin-right: 12px;
    object-fit: cover;
}
.slide-inner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide-inner-content .slide-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}
.slide-inner-content .readmore-btn {
    background: #e53935;
    color: #fff;
    border-radius: 12px;
    padding: 3px 10px;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    width: fit-content;
}


/* === v14.3 Final Polished === */
.sticky-slider-pro-v14-bar {
    background: #ffffff;
    padding: 6px 0;
    min-height: 90px;
}
.slide-item {
    padding: 6px;
}
.slide-inner-block {
    padding: 6px 10px;
    border-radius: 14px;
    background: #f5f5f5;
}
.slide-inner-block img {
    margin-right: 8px;
}
.slide-inner-content .slide-title {
    color: #000000; /* black title */
    margin-bottom: 3px;
}
.slide-inner-content .readmore-btn {
    margin-top: 2px;
}


/* === v14.4 Title Color Fix === */
.slide-inner-content .slide-title,
.slider-wrapper .slide-item .slide-title {
    color: #000000 !important; /* enforce black title */
}


/* === v14.5 Centered Read More Button === */
.slide-inner-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* center align items horizontally */
    text-align: center;
}
.slide-inner-content .slide-title {
    text-align: center;
}
.slide-inner-content .readmore-btn {
    margin: 4px auto 0 auto; /* center button with margin */
    display: inline-block;
}


/* === v14.6 Perfect Read More Button === */
.slide-inner-content .readmore-btn {
    display: inline-block;
    background: #e53935;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 16px;
    text-align: center;
    width: auto; /* remove elongated width */
    min-width: auto;
    max-width: fit-content;
    margin: 5px auto 0 auto;
    white-space: nowrap;
}
