.navbar {
    background-color: #161616;
}


/* Blog Card */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Blog Card Image */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* Blog Card Body */
.blog-card-body {
    padding: 20px;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9900;
    /* Updated to primary color */
}

.blog-card-text {
    font-size: 1rem;
    color: #444;
}

/* Blog Card Footer */
.blog-card-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Read More Button */
.btn-read-more {
    background: #ff9900;
    /* Updated to primary color */
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: #cc7a00;
    /* Darker shade for hover effect */
    color: white;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-load-more {
    background: #fff;
    color: #ff9900;
    /* Updated to primary color */
    font-size: 1.2rem;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border: 2px solid #ff9900;
    /* Border updated */
}

.btn-load-more:hover {
    background: #ff9900;
    /* Background updated */
    color: white;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination a,
.pagination .current {
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    color: #ff9900;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #ff9900;
    color: #fff;
}

.pagination .current {
    font-weight: bold;
    background-color: #ff9900;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    background-color: #ff9900;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    margin: 0 5px;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #a46200;
}