/* Global Styles */
body {
    
    font-family: 'Roboto', sans-serif;
    color: #333;
}

h2 {
    font-family: 'Lora', serif;
    color: #212529;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}
/* .card{
      background: radial-gradient(900px 600px at 10% 10%, rgba(248, 124, 21, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% -10%, rgba(11, 113, 172, 0.10), transparent 60%),
    radial-gradient(600px 400px at 50% 80%, rgba(46, 28, 96, 0.06), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3f5fa 100%);
  border: 1px solid black;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} */

/* Pagination container styling */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Styling for pagination buttons */
.pagination-btn {
    padding: 8px 16px;
    margin: 0 6px;
    background-color: #007bff;
    color: white;
    border: 2px solid #000;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover effects for buttons */
.pagination-btn:hover {
    background-color: #0056b3;
    border-color: #000;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Active page button styling */
.pagination-btn.active-btn {
    background-color: #ff6f00;
    border-color: #000;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
}

/* Active button hover effect */
.pagination-btn.active-btn:hover {
    transform: scale(1.15);
    background-color: #ff8f00;
    border-color: #000;
}

/* Disabled state for buttons */
.pagination-btn:disabled {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #a3a3a3;
    cursor: not-allowed;
    box-shadow: none;
}

/* Previous and Next button styling */
.pagination-btn.prev-btn,
.pagination-btn.next-btn {
    background-color: #f0f0f0;
    color: #007bff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 45px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect for Previous and Next buttons */
.pagination-btn.prev-btn:hover,
.pagination-btn.next-btn:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Previous and Next disabled state */
.pagination-btn.prev-btn:disabled,
.pagination-btn.next-btn:disabled {
    background-color: #e0e0e0;
    color: #a3a3a3;
    cursor: not-allowed;
    box-shadow: none;
}

/* Font Awesome icons for Previous and Next buttons */
.pagination-btn.prev-btn::before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
}

.pagination-btn.next-btn::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
}

/* Resize icons for both buttons */
.pagination-btn.prev-btn::before,
.pagination-btn.next-btn::before {
    font-size: 20px;
    color: inherit;
}

/* Blog item styles */
.blog-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.26);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    max-width: 800px;
    margin: 20px auto;
}

.blog-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

/* Avatar-like Image Styling */
.blog-img {
    object-fit: cover;
    border: 1px solid black;
    transition: all 0.3s ease;
    height: 200px;
    width: 100% ;
}

.blog-img:hover {
    border-radius: 5px;
    transform: scale(1.05);
}

/* Title Styling */
.title-link {
    font-size: clamp(10px, 4vw, 16px);
    font-weight: 700;
    color: #2e1c60;
    text-decoration: none;
    text-transform: uppercase;

    padding-bottom: 8px;
    display: inline-block;
    transition: color 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
}

/* Title Hover Effects */
.title-link:hover {
    color: #0b71ac;
    border-bottom: 2px solid rgb(20, 118, 178);
}

.card-text {
    font-size: clamp(10px, 4vw, 14px);
    color: #081d20;
    line-height: 1.5;
}

/* Author and Date Styling */
.d-flex {
    font-size: clamp(10px, 2vw, 12px);
    color: #888;
}

.d-flex span i {
    color: #888;
}

/* Tags container styles */
.tags-container {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tags-container a {
    margin: 5px;
    padding: 5px 10px;
    background-color: #F87C15;
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

/* Tag hover effects */
.tag:hover {
    background-color: #007bff;
    color: white;
}

/* Selected tag styles */
.tag.selected {
    background-color: #28a745;
    color: white;
}
