p, ul, li{
    font-size: 15px;
    line-height: 18px;
    list-style: disc;
    text-decoration: none;
    color: #000;
}
#content-area ul{
    margin-left: 20px;  
}
.navbar{
    display: flex;
}

.navbar-nav>li>a {
    padding: 41px 10px 15px;
}


.blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #fff;
    margin: 20px 0px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

/* Date & Author Meta (Row Below Image) */
.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
}

/* Blog Title */
.blog-title {
    font-size: 22px;
    font-weight: bold;
    padding: 0px 10px;
}

.blog-title a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.blog-title a:hover {
    color: #86bc42;
}

/* Blog Description */
.blog-description {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px;
}

/* Read More Button (Full Width) */
.read-more-btn {
    display: block;
    background: linear-gradient(to right, #86bc42, rgb(94, 151, 24));
    color: #fff;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.read-more-btn:hover {
    background: linear-gradient(to right, #0056b3, #004494);
}


.pagination .page-item .page-link {
    color: #007bff;
    border-radius: 5px;
    margin: 2px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
}

/* Sidebar Styling */
.sidebar_list {
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.d-flex {
    display: flex;
    flex-direction: row;
}

/* Search Input & Button */
.search-input {
    width: 80%;
    padding: 10px;
    border: 2px solid #86bc42;
    border-radius: 8px 0 0 8px;
}

.search-btn {
    width: 20%;
    background: #86bc42;
    color: white;
    border: 2px solid #86bc42;
    padding: 5px 15px;
    border-radius: 0 8px 8px 0;
    transition: background 0.3s ease-in-out;
}

.search-btn:hover {
    background: #6aa32b;
}

/* Widget Title */
.widget-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #86bc42;
    margin-top: 10px;
}

/* Recent Posts */
.recentlist {
    padding-left: 10px;
    list-style: square;
}

.recent-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease-in-out;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease-in-out;
}

.recent-item:hover {
    background: #eaf4d3;
}

.recent-item a:hover {
    color: #86bc42;
}