/* New Add On - 10/03/2025  -> READ MORE/READ LESS SECTION : START */
.readmore-content {
    overflow: hidden;
    max-height: 150px;
    transition: max-height 0.5s ease;
}
.readmore-content.expanded {
    max-height: none; /* Adjust as per content height */
}
/* New Add On - 10/03/2025  -> READ MORE/READ LESS SECTION : START */