/* Reset and Base Styles */


/* Container */
.pos_container {
    width: 100%;
    min-height: 100vh;
}

/* Hero Banner Section */
.pos_hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%), 
                url('../images/3di1.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.pos_hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.pos_hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.pos_hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pos_hero-subtitle {
    font-size: 22px;
    color: #e8f0f5;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Content Area */
.pos_main-content {
    /* max-width: 1400px; */
    /* margin: 0 auto; */
    padding: 40px 0px;
}

/* Category Filter - REMOVED */
/* .pos_category-filter styles removed */

/* Blog Grid */
.pos_blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 60px;
}

/* Blog Card */
.pos_blog-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pos_blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Blog Card Image Container */
.pos_blog-card-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

/* Blog Card Image */
.pos_blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blog Card Content */
.pos_blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Category Badge inside Card - Positioned on Image */
.pos_blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.pos_blog-category:hover {
    background-color: rgba(0, 0, 0, 0.95);
}

/* Blog Title */
.pos_blog-title {
    margin-bottom: 14px;
}

.pos_blog-title a {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
}

.pos_blog-title a:hover {
    color: #1a1a1a;
}

/* Blog Description */
.pos_blog-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Blog Meta */
.pos_blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.pos_blog-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.pos_blog-meta svg {
    width: 16px;
    height: 16px;
    color: #1a1a1a;
}

/* Featured Badge */
.pos_featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: #ffc107;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.pos_featured-badge svg {
    width: 14px;
    height: 14px;
}

/* Read More Link */
.pos_read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.pos_read-more:hover {
    gap: 12px;
}

.pos_read-more svg {
    width: 16px;
    height: 16px;
}

/* Pagination */
.pos_pagination {
    margin: 50px 0 30px;
}

.pos_pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pos_pagination-wrapper a,
.pos_pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background-color: #ffffff;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pos_pagination-wrapper a:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.pos_pagination-wrapper .pos_current-page {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.pos_pagination-wrapper svg {
    width: 20px;
    height: 20px;
}

.pos_ellipsis {
    min-width: auto;
    border: none;
    background: transparent;
}

/* Pagination Info */
.pos_pagination-info {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* No Posts Found */
.pos_no-posts {
    text-align: center;
    padding: 80px 20px;
    background-color: #ffffff;
    margin: 40px 0;
}

.pos_no-posts svg {
    width: 80px;
    height: 80px;
    color: #ccc;
    margin-bottom: 24px;
}

.pos_no-posts h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 12px;
}

.pos_no-posts p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

/* Back to Top Button */
.pos_back-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pos_back-to-top.pos_visible {
    opacity: 1;
    visibility: visible;
}

.pos_back-to-top:hover {
    background-color: #000000;
    transform: translateY(-3px);
}

.pos_back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pos_blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pos_hero-banner {
        height: 400px;
    }

    .pos_hero-title {
        font-size: 36px;
    }

    .pos_hero-subtitle {
        font-size: 16px;
    }

    .pos_blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pos_main-content {
        padding: 40px 15px;
    }

    .pos_category-buttons {
        justify-content: flex-start;
    }

    .pos_pagination-wrapper a,
    .pos_pagination-wrapper span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .pos_blog-card-content {
        padding: 20px;
    }

    .pos_blog-title a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pos_hero-title {
        font-size: 28px;
    }

    .pos_hero-subtitle {
        font-size: 14px;
    }

    .pos_category-badge {
        padding: 10px 20px;
        font-size: 12px;
    }

    .pos_blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}



/* blog.css */
       

        /* Banner Section */
        .blog-banner {
            position: relative;
            height: 700px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .blog-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
        }

        .banner-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #ffffff;
            max-width: 900px;
            padding: 0 20px;
        }

        .banner-category {
            display: inline-block;
            background: #ffffff;
            color: #1a1a1a;
            padding: 8px 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .banner-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .banner-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            font-size: 14px;
            color: #e0e0e0;
        }

        .banner-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Main Container */
        .blog-container {
            /* max-width: 1400px; */
            /* margin: 0 auto; */
            /* padding: 60px 0px; */
        }

        .blog-wrapper {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 20px;
        }

        /* Main Content */
        .blog-main {
            max-width: 100%;
        }

        .blog-content {
            background: #ffffff;
            padding: 40px;
            border: 1px solid #e0e0e0;
        }

        .blog-content h1,
        .blog-content h2,
        .blog-content h3,
        .blog-content h4 {
            color: #1a1a1a;
            font-weight: 700;
            margin: 30px 0 15px 0;
        }

        .blog-content h2 {
            font-size: 32px;
        }

        .blog-content h3 {
            font-size: 24px;
        }

        .blog-content p {
            margin-bottom: 20px;
            color: #4a4a4a;
            line-height: 1.8;
        }

        .blog-content img {
            max-width: 100%;
            height: auto;
            margin: 30px 0;
        }

        .blog-content ul,
        .blog-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .blog-content li {
            margin-bottom: 10px;
            color: #4a4a4a;
        }

        /* Share Section */
        .blog-share {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .share-buttons {
            display: flex;
            gap: 10px;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a1a1a;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background: #4a4a4a;
            transform: translateY(-2px);
        }

        .share-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Sidebar */
        .blog-sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        /* Contact Form */
        .sidebar-form {
            /* background: #f5f5f5; */
            padding: 40px 30px;
            margin-bottom: 40px;
        }

        .form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #d0d0d0;
            background: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            color: #1a1a1a;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #1a1a1a;
            background: #ffffff;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #999999;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .captcha-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .captcha-display {
            flex: 1;
            padding: 15px;
            background: #ffffff;
            border: 1px solid #d0d0d0;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 3px;
            text-align: center;
            color: #1a1a1a;
            user-select: none;
        }

        .captcha-refresh {
            width: 45px;
            height: 45px;
            background: #1a1a1a;
            border: none;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .captcha-refresh:hover {
            background: #4a4a4a;
        }

        .captcha-refresh svg {
            width: 20px;
            height: 20px;
        }

        .form-submit {
            width: 100%;
            padding: 15px;
            background: #1a1a1a;
            color: #ffffff;
            border: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: #4a4a4a;
        }

        /* Related Posts Sidebar */
        .sidebar-related {
            /* background: #f5f5f5; */
            padding: 40px 30px;
        }

        .sidebar-related-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .related-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #d0d0d0;
        }

        .related-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .related-item-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .related-item-title a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .related-item-title a:hover {
            color: #666666;
        }

        .related-item-date {
            font-size: 12px;
            color: #888888;
            margin-bottom: 10px;
        }

        .related-item-link {
            display: inline-block;
            color: #1a1a1a;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border-bottom: 2px solid #1a1a1a;
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }

        .related-item-link:hover {
            color: #666666;
            border-color: #666666;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 60px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #1a1a1a;
            color: #ffffff;
            border: none;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #4a4a4a;
        }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }

        /* Navigation */
        .blog-navigation {
            margin-top: 50px;
            padding-top: 30px;
            /* border-top: 2px solid #e0e0e0; */
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .blog-nav-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background: #f5f5f5;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .blog-nav-link:hover {
            background: #1a1a1a;
            color: #ffffff;
        }

        .blog-nav-link svg {
            width: 16px;
            height: 16px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .blog-wrapper {
                grid-template-columns: 1fr;
            }

            .blog-sidebar {
                position: static;
            }

            .banner-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .blog-banner {
                height: 300px;
            }

            .banner-title {
                font-size: 28px;
            }

            .banner-meta {
                flex-direction: column;
                gap: 10px;
            }

            .blog-container {
                padding: 40px 15px;
            }

            .blog-content {
                padding: 25px;
            }

            .sidebar-form,
            .sidebar-related {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .blog-share {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .banner-title {
                font-size: 24px;
            }

            .blog-content {
                padding: 20px;
            }

            .form-title,
            .sidebar-related-title {
                font-size: 20px;
            }
        }