
/* ===================================
   Blog Listing Page - Hero Section
   =================================== */
   .blog-hero-section-main {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #E0F2ED 0%, #fff 50%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-content-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-label-tag {
    display: inline-block;
    background: linear-gradient(135deg, #15966F 0%, #0D6B4F 100%);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-hero-main-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #202020;
    margin-bottom: 1.5rem;
}

.blog-text-gradient {
    background: linear-gradient(135deg, #15966F 0%, #6AB187 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-main-description {
    font-size: 1.1rem;
    color: #7E909A;
    line-height: 1.8;
}

/* ===================================
   Blog Categories Filter
   =================================== */
.blog-categories-filter-section {
    padding: 2rem 0;
    background: #fff;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-filter-pill-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-filter-pill-btn {
    padding: 0.7rem 1.5rem;
    background: #F8F9FA;
    border: 2px solid transparent;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #7E909A;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.blog-filter-pill-btn:hover {
    background: #E0F2ED;
    color: #15966F;
    border-color: #15966F;
}

.blog-filter-pill-btn.active {
    background: linear-gradient(135deg, #15966F 0%, #0D6B4F 100%);
    color: #fff;
    border-color: #15966F;
}

/* ===================================
   Blog Grid Section
   =================================== */
.blog-grid-main-section {
    padding: 4rem 0;
    background: #F8F9FA;
}

.blog-premium-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(21, 150, 111, 0.25);
}

.blog-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.blog-premium-card:hover .blog-card-featured-image {
    transform: scale(1.1);
}

.blog-card-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-card-date-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #15966F;
    padding: 0.4rem 0.8rem;
    border-radius: 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-premium-card-body {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-premium-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-premium-card-title a {
    color: #202020;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-premium-card-title a:hover {
    color: #15966F;
}

.blog-premium-card-excerpt {
    font-size: 0.9rem;
    color: #7E909A;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid #E0E0E0;
    margin-bottom: 1rem;
}

.blog-meta-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.blog-author-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #15966F 0%, #6AB187 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.blog-meta-author span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #202020;
}

.blog-meta-reading-time {
    font-size: 0.8rem;
    color: #7E909A;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-premium-read-more {
    display: inline-flex;
    align-items: center;
    color: #15966F;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.blog-premium-read-more:hover {
    color: #0D6B4F;
    gap: 0.8rem;
}

/* ===================================
   Blog Pagination
   =================================== */
.blog-pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.blog-pagination-item {
    margin: 0;
}

.blog-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 0.7rem;
    color: #202020;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.blog-pagination-link:hover {
    background: #15966F;
    border-color: #15966F;
    color: #fff;
}

.blog-pagination-item.active .blog-pagination-link {
    background: #15966F;
    border-color: #15966F;
    color: #fff;
}

.blog-pagination-item.disabled .blog-pagination-link {
    opacity: 0.5;
    pointer-events: none;
}

/* ===================================
   Single Blog Page - Hero
   =================================== */
.single-blog-hero-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #E0F2ED 0%, #fff 100%);
}

.single-blog-breadcrumb-nav {
    margin-bottom: 2rem;
}

.single-blog-breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    align-items: center;
}

.single-blog-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-blog-breadcrumb-link {
    color: #7E909A;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.single-blog-breadcrumb-link:hover {
    color: #15966F;
}

.single-blog-breadcrumb-item.active {
    color: #15966F;
    font-weight: 600;
}

.single-blog-category-tag {
    display: inline-block;
    background: #15966F;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.single-blog-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #202020;
    margin-bottom: 1.5rem;
}

.single-blog-meta-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.single-blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #7E909A;
}

.single-blog-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.single-blog-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15966F 0%, #6AB187 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.single-blog-author-details h6 {
    margin: 0;
    font-weight: 700;
    color: #202020;
}

.single-blog-author-details small {
    color: #7E909A;
}

/* ===================================
   Single Blog Content
   =================================== */
.single-blog-content-section {
    padding: 4rem 0;
    background: #fff;
}

.single-blog-featured-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.single-blog-featured-img {
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.single-blog-content-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #202020;
}

.single-blog-content-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #202020;
    margin: 2.5rem 0 1.5rem;
}

.single-blog-content-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #202020;
    margin: 2rem 0 1rem;
}

.single-blog-content-body h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #202020;
    margin: 1.5rem 0 1rem;
}

.single-blog-content-body p {
    margin-bottom: 1.5rem;
}

.single-blog-content-body ul,
.single-blog-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-blog-content-body li {
    margin-bottom: 0.8rem;
}

.single-blog-content-body blockquote {
    background: #E0F2ED;
    border-left: 4px solid #15966F;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0.7rem;
    font-style: italic;
    color: #202020;
}

.single-blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
}

.single-blog-content-body a {
    color: #15966F;
    font-weight: 600;
    text-decoration: underline;
}

.single-blog-content-body a:hover {
    color: #0D6B4F;
}

.single-blog-content-body strong {
    font-weight: 700;
    color: #202020;
}

.single-blog-highlight-box {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3D4 100%);
    border-left: 4px solid #FFC107;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0.7rem;
}

.single-blog-highlight-box h4 {
    color: #F57C00;
    margin-top: 0;
}

/* ===================================
   Single Blog Tags & Share
   =================================== */
.single-blog-tags-share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E0E0E0;
}

.single-blog-tags-wrapper {
    margin-bottom: 2rem;
}

.single-blog-tags-label {
    font-size: 1rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1rem;
    display: block;
}

.single-blog-tag-list {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.single-blog-tag-item {
    background: #F8F9FA;
    color: #7E909A;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.single-blog-tag-item:hover {
    background: #15966F;
    color: #fff;
}

.single-blog-share-wrapper {
    margin-top: 2rem;
}

.single-blog-share-label {
    font-size: 1rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1rem;
    display: block;
}

.single-blog-share-buttons {
    display: flex;
    gap: 1rem;
}

.single-blog-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.single-blog-share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.single-blog-share-facebook {
    background: #1877F2;
}

.single-blog-share-twitter {
    background: #1DA1F2;
}

.single-blog-share-linkedin {
    background: #0A66C2;
}

.single-blog-share-whatsapp {
    background: #25D366;
}

.single-blog-share-email {
    background: #EA4335;
}

/* ===================================
   Latest Blogs Horizontal Cards
   =================================== */
.single-blog-latest-section {
    padding: 4rem 0;
    background: #F8F9FA;
}

.single-blog-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 2rem;
    text-align: center;
}

.single-blog-horizontal-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.single-blog-horizontal-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(21, 150, 111, 0.2);
}

.single-blog-horizontal-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.single-blog-horizontal-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.single-blog-horizontal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog-horizontal-body {
    flex: 1;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.single-blog-horizontal-category {
    display: inline-block;
    background: #E0F2ED;
    color: #15966F;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.single-blog-horizontal-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.single-blog-horizontal-title a {
    color: #202020;
    text-decoration: none;
    transition: all 0.3s;
}

.single-blog-horizontal-title a:hover {
    color: #15966F;
}

.single-blog-horizontal-excerpt {
    font-size: 0.9rem;
    color: #7E909A;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.single-blog-horizontal-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.85rem;
    color: #7E909A;
}

/* ===================================
   Comment Section (Optional)
   =================================== */
.single-blog-comments-section {
    background: #fff;
    padding: 4rem 0 3rem;
}

.single-blog-comments-title {
    font-size: 2rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 2rem;
}

.single-blog-comment-form {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 1.2rem;
    margin-bottom: 3rem;
}

.single-blog-form-group {
    margin-bottom: 1.5rem;
}

.single-blog-form-label {
    font-weight: 600;
    color: #202020;
    margin-bottom: 0.5rem;
    display: block;
}

.single-blog-form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.single-blog-form-input:focus {
    outline: none;
    border-color: #15966F;
    box-shadow: 0 0 0 0.2rem rgba(21, 150, 111, 0.1);
}

.single-blog-submit-btn {
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #15966F 0%, #0D6B4F 100%);
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.single-blog-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21, 150, 111, 0.4);
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 991px) {
    .blog-hero-main-heading,
    .single-blog-main-title {
        font-size: 2.2rem;
    }

    .single-blog-section-title {
        font-size: 1.8rem;
    }

    .blog-categories-filter-section {
        position: static;
    }

    .single-blog-horizontal-content {
        flex-direction: column;
    }

    .single-blog-horizontal-image {
        width: 100%;
        height: 200px;
    }

    .single-blog-horizontal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-main-heading,
    .single-blog-main-title {
        font-size: 1.8rem;
    }

    .blog-grid-main-section,
    .single-blog-content-section,
    .single-blog-latest-section {
        padding: 3rem 0;
    }

    .blog-premium-card-title {
        font-size: 1.1rem;
    }

    .single-blog-content-body {
        font-size: 1rem;
    }

    .single-blog-content-body h2 {
        font-size: 1.6rem;
    }

    .single-blog-content-body h3 {
        font-size: 1.4rem;
    }

    .blog-filter-pill-container {
        gap: 0.7rem;
    }

    .blog-filter-pill-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-hero-main-heading,
    .single-blog-main-title {
        font-size: 1.6rem;
    }

    .blog-hero-main-description {
        font-size: 1rem;
    }

    .blog-premium-card-title {
        font-size: 1rem;
    }

    .blog-premium-card-excerpt {
        font-size: 0.85rem;
    }

    .single-blog-horizontal-title {
        font-size: 1.1rem;
    }

    .single-blog-share-buttons {
        justify-content: center;
    }

    .blog-pagination-link {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .blog-categories-filter-section,
    .blog-pagination-wrapper,
    .single-blog-share-wrapper,
    .single-blog-comments-section,
    .navbar,
    .footer-section,
    .scroll-top-btn,
    .whatsapp-float {
        display: none !important;
    }

    .single-blog-content-body {
        font-size: 12pt;
        line-height: 1.6;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.blog-text-primary {
    color: #15966F !important;
}

.blog-bg-primary {
    background-color: #15966F !important;
}

.blog-shadow-hover {
    transition: all 0.3s;
}

.blog-shadow-hover:hover {
    box-shadow: 0 15px 35px rgba(21, 150, 111, 0.25) !important;
}

