/* Blog Section Styles */
.blog-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Blog Card Styles */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #3498db;
}

.blog-description {
    color: #6c757d;
    font-size: 1.50rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.blog-date {
    color: #6c757d;
    font-size: 1.50rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.50rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #2980b9;
    gap: 10px;
}

/* No Blogs State */
.no-blogs {
    padding: 80px 0;
}

.no-blogs i {
    color: #bdc3c7;
}

.no-blogs h3 {
    color: #2c3e50;
    margin-bottom: 12px;
}

/* Blog Detail Styles */
.blog-detail-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-article {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.blog-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article .blog-meta {
    padding: 24px 32px 0;
    border-bottom: none;
    margin-bottom: 24px;
}

.blog-author {
    color: #6c757d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content {
    padding: 0 32px;
    line-height: 1.8;
    color: #2c3e50;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-content p {
    margin-bottom: 16px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    color: #6c757d;
}

.blog-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
}

.blog-content pre {
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}

/* Share Buttons */
.blog-share {
    padding: 32px;
    border-top: 1px solid #e9ecef;
    margin-top: 32px;
}

.blog-share h5 {
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sidebar Styles */
.blog-sidebar {
    padding-left: 32px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: #2c3e50;
    font-size: 1.50rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3498db;
}

.related-blog-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.related-blog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-blog-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-blog-content {
    flex-grow: 1;
}

.related-blog-content h6 {
    margin-bottom: 4px;
    line-height: 1.4;
}

.related-blog-content h6 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.50rem;
    font-weight: 500;
}

.related-blog-content h6 a:hover {
    color: #3498db;
}

.related-blog-date {
    color: #6c757d;
    font-size: 1.50rem;
}

/* Blog Not Found */
.blog-not-found {
    padding: 80px 0;
    text-align: center;
}

.blog-not-found i {
    color: #f39c12;
}

.blog-not-found h3 {
    color: #2c3e50;
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .blog-content {
        padding: 0 20px;
    }
    
    .blog-article .blog-meta {
        padding: 20px 20px 0;
    }
    
    .blog-share {
        padding: 20px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-detail-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .blog-card {
        margin-bottom: 24px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.50rem;
    }
    
    .blog-featured-image {
        height: 200px;
    }
    
    .no-blogs {
        padding: 60px 0;
    }
    
    .blog-not-found {
        padding: 60px 0;
    }
} 




.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-title i {
    color: #3b82f6;
    font-size: 2.8rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #b3d9ff;
    margin-bottom: 30px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 25px;
    margin: 0 auto;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a {
    color: #b3d9ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #94a3b8;
    margin: 0 10px;
}
