body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
    color: #000;
    
}

/* LOGO */
.logo-text {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
}

.logo-happy {
    color: #4169e1; /* blue */
}

.logo-zindagi {
    color: #000; /* black */
}

/* NAV LINKS */
.nav-link {
    font-weight: 500;
    margin-left: 12px;
    color: #333 !important;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4169e1;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #4169e1 !important;
}

/* Active menu */
.nav-link.active {
    color: #4169e1 !important;
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-weight: 700;
    color: #4169e1;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.footer-links a:hover {
    color: #4169e1;
}

/* CONTAINER WIDTH */
.container {
    max-width: 1100px;
}
/* FOOTER IMPROVED */
.footer {
    background: #ffffff;
    padding: 50px 0 20px;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    color: #666;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4169e1;
    padding-left: 3px;
}

/* BLOG CARD */
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* TITLE */
.post-title {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.post-title:hover {
    color: #4169e1;
}

/* PAGINATION */
.pagination .page-link {
    color: #333;
    border: none;
}

.pagination .active .page-link {
    background-color: #4169e1;
    color: #fff;
}

/* SEARCH BOX */
.input-group input {
    border-radius: 6px 0 0 6px;
}

.input-group .btn {
    background: #4169e1;
    color: #fff;
    border-radius: 0 6px 6px 0;
}

/* PAGINATION IMPROVED */
.pagination {
    gap: 5px;
}

.page-link {
    border-radius: 6px !important;
    padding: 6px 12px;
    font-size: 14px;
}

.page-item.active .page-link {
    background-color: #4169e1;
    color: #fff;
}
/* pagination text buttons */
.page-link {
    min-width: 38px;
    text-align: center;
}

.post-content {
    line-height: 1.8;
    font-size: 16px;
}

.post-content h2 {
    margin-top: 20px;
    font-size: 22px;
}

.post-content h3 {
    margin-top: 15px;
    font-size: 18px;
}

.post-content p {
    margin-bottom: 15px;
}

.faq h5 {
    margin-top: 15px;
    font-weight: 600;
}
/* SIDEBAR CARDS */
.latest-card {
    align-items: center;
    transition: 0.3s;
}

.latest-card:hover {
    transform: translateX(3px);
}

.latest-img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.latest-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
}

.latest-title:hover {
    color: #4169e1;
}

h1, h2, h3, h4, h5 {
    color: #000;
}

.post-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.inline-links {
    margin-top: 25px;
}

.inline-links a {
    display: block;
    background: #f1f5ff;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #4169e1;
    font-weight: 500;
    transition: 0.3s;
}

.inline-links a:hover {
    background: #4169e1;
    color: #fff;
}

.post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.latest-img {
    width: 80px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
}

.post-content {
    line-height: 1.9;
    font-size: 16px;
}

.post-content p {
    margin-bottom: 18px;
}

.faq-item {
    background: #f8f9ff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.faq-item h5 {
    margin-bottom: 5px;
    color: #000;
}
/* FAQ DESIGN */
.faq-item {
    background: #f8f9ff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.faq-q {
    font-weight: 600;
    color: #4169e1;
    margin-bottom: 5px;
}

.faq-a {
    color: #333;
    line-height: 1.6;
}

/* INLINE LINKS */
.inline-links {
    margin: 25px 0;
}

.inline-links a {
    display: block;
    background: #eef2ff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #4169e1;
    font-weight: 500;
    transition: 0.3s;
}

.inline-links a:hover {
    background: #4169e1;
    color: #fff;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.post-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}