/* Modern Logo Styles */
.modern-logo-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.modern-logo-link:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.modern-logo {
    height: 90px;
    width: auto;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .modern-logo {
        height: 55px;
    }
}

/* Main Content Padding */
main {
    padding-top: 0;
    margin-top: 0;
}

.blog-listing {
    padding-top: 40px !important;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu {
        width: 100% !important;
        height: 100vh !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        z-index: 9999 !important;
    }
}

/* Hero Section Mobile Styles */
@media (max-width: 768px) {
    .about-hero-minimal {
        min-height: 100vh !important;
        display: flex !important;
        align-items: flex-start !important;
        padding: 8rem 0 4rem 0 !important;
    }
    
    .about-hero-minimal .container {
        height: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        padding-top: 4rem !important;
    }
    
    .about-hero-minimal .row {
        height: 100% !important;
        align-items: flex-start !important;
    }
    
    .about-hero-minimal .col-lg-8 {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
    }
    
    .hero-headline {
        margin-bottom: 4rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subhead {
        margin-bottom: 5rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-cta-buttons {
        margin-top: 3rem !important;
    }
}

/* Blog Detail Page Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.8;
}

.blog-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.blog-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2c5530;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: #2c5530;
}

.publish-date {
    color: #888;
    font-size: 14px;
}

.blog-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin: 40px 0;
}

.image-credit {
    color: #999;
    font-size: 12px;
    margin-top: -30px;
    margin-bottom: 40px;
    text-align: right;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c5530;
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 12px;
    color: #555;
}

/* Back to Blog Link */
#back-to-blog:hover {
    color: #1e3a21;
    gap: 15px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.post-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.post-nav-link:hover {
    color: #1e3a21;
    gap: 15px;
}

.post-nav-link i {
    font-size: 14px;
}

/* Comments Section */
.comments-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.comments-heading {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 10px;
}

.comments-count {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.comment-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    max-width: 1000px !important;
    margin: 0 auto;
    margin-bottom: 50px !important;
}

.comment-reply-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2c5530;
    /* margin-bottom: 25px; */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #2c5530;
}

.btn-submit-comment {
    background: #2c5530;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit-comment:hover {
    background: #1e3a21;
}

.comments-list {
    margin-top: 40px;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2c5530;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 700;
    color: #2c5530;
    font-size: 16px;
    margin-bottom: 5px;
}

.comment-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.comment-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.comment-reply {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.comment-reply:hover {
    color: #1e3a21;
}
.comment-form
/* Blog Listing Styles */
.sidebar-article {
    display: flex;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #e0e0e0;
}

.sidebar-article:hover {
    background: #e8e8e8 !important;
}

.sidebar-article img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-article-content {
    flex: 1;
}

.sidebar-article-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sidebar-article-title {
    color: #2c5530;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.sidebar-article-meta {
    color: #888;
    font-size: 11px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.2) !important;
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c5530;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #fff;
    font-size: 12px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    color: #2c5530;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-card-title {
    color: #2c5530;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-card-meta {
    color: #888;
    font-size: 13px;
}

.featured-article {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.featured-article-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2c5530;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: #fff;
}

.featured-article-content {
    padding: 30px;
    background: #fff;
}

.featured-article-category {
    color: #2c5530;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.featured-article-title {
    color: #2c5530;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-article-excerpt {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-article-meta {
    color: #888;
    font-size: 14px;
}

.promotional-card {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promotional-card-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.promotional-card-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.promotional-card-button {
    background: white;
    color: #2c5530;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.blog-link {
    text-decoration: none;
    display: block;
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .blog-title {
        font-size: 32px;
    }
    
    .blog-image {
        height: 300px;
    }
    
    .blog-content {
        font-size: 16px;
    }
    
    .blog-content h2 {
        font-size: 24px;
    }
}

