.news-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Back Button */
.back-button {
    position: absolute;
    display: inline-block;
    color: gray;
    text-decoration: none;
    font-family: Poppins;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    margin-top: 40px;
    background-color: white;
    padding: 5px 10px 5px 10px;
}

.back-button:hover {
    transform: scale(1.05);
}

/* Heading Image */
.all_news_heading {
    position: absolute;
    left: 50%;
    transform: scale(1.4);
}

/* Text Styling */
.text {
    font-family: Poppins;
    text-align: justify;
}

.text h6 {
    color: #747474;
}

.text h2 {
    font-weight: 900;
}

/* Read More Button */
.text .cust-btn {
    background-color: #519B70;
    color: white;
    padding: 10px 20px;
    border-radius: 0;
}

.text .cust-btn:hover {
    background-color: #79A88D;
    color: #ffffff;
}
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #519B70;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
#scrollToTopBtn:hover {
    background-color: #79A88D;
    transform: scale(1.1);
}

/* Show button only on large screens */
@media (min-width: 992px) {
    #scrollToTopBtn {
        display: block;
    }
}