/* Blog Specific Trendy Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #ff8000;
    --secondary-color: #003366;
    --accent-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: #f4f7f6;
}

/* Blog List Styles */
.blog-list-section {
    padding: 80px 0;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.blog-card-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--light-text);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    gap: 12px;
}

/* Blog Single Page Styles */
.blog-single-section {
    padding: 60px 0 100px;
}

.blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: var(--light-text);
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-main-image {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

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

.blog-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-content h3::before {
    content: '';
    width: 20px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.blog-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.blog-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.blog-content ul li:hover {
    transform: translateX(5px);
}

.blog-content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
    top: 4px;
}

.blog-content ol {
    counter-reset: blog-counter;
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.blog-content ol li {
    counter-increment: blog-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.blog-content ol li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.highlight-box {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-left: 8px solid var(--primary-color);
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.highlight-box::after {
    content: '\f10e';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 80px;
    color: rgba(255, 128, 0, 0.05);
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.recent-posts ul {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-posts img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-info a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.recent-post-info span {
    font-size: 12px;
    color: var(--light-text);
}

.cta-widget {
    background: linear-gradient(45deg, var(--secondary-color), #0055aa);
    color: #fff;
    text-align: center;
}

.cta-widget h4 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #e67300;
    color: #fff;
}



.img-blog-small {
    height: 250px !important;
}

/* Reading Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 4px;
    background: transparent;
}

.progress-bar {
    height: 4px;
    background: var(--primary-color);
    width: 0%;
}

.blog-post {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.blog-content .lead {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 2px dashed #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.share-post {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-post span {
    font-weight: 600;
    color: var(--secondary-color);
}

.share-post a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.share-post a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.blog-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 32px;
    }

    .sidebar {
        margin-top: 50px;
    }
}

/* Responsive adjustments */
@media (max-width: 375px) {

    .highlight-box {
        background: transparent;
        padding: 0;
        border: 0;
        border-left: 0;
        border-radius: 0;
        margin: 10px 0;
        box-shadow: none;
        position: relative;
        overflow: hidden;
    }

    .blog-post {
        padding: 20px;
    }

    .blog-meta {
        flex-direction: column;
    }

    .product-banner-part {
        padding: 110px 10px 50px 10px;
    }
}