

.pos_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pos_main-wrapper {
    display: flex;
    gap: 80px;
    margin-top: 32px;
}

/* Main Content Area */
.pos_main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Styles */
.pos_sidebar {
    width: 350px;
    flex-shrink: 0;
}

.pos_sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.pos_contact-form h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pos_google-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pos_google-logo {
    width: 24px;
    height: 24px;
}

.pos_partner-badge {
    background: #34d399;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.pos_form-group {
    margin-bottom: 16px;
}

.pos_form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
}

.pos_form-group input,
.pos_form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.pos_form-group input:focus,
.pos_form-group textarea:focus {
    outline: none;
    border-color: #EC2125;
    box-shadow: 0 0 0 3px rgba(241, 99, 99, 0.1);
}

.pos_form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.pos_submit-btn {
    background: #dc2626;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pos_submit-btn:hover {
    background: #b91c1c;
}

.pos_sidebar-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.pos_sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.pos_page-header {
    margin-bottom: 32px;
}

.pos_breadcrumbs {
    margin-bottom: 16px;
}

.pos_breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pos_breadcrumbs a {
    color: #EC2125;
    text-decoration: none;
    transition: color 0.2s;
}

.pos_breadcrumbs a:hover {
    color: #990c0eff;
}

.pos_breadcrumb-separator {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    color: #9ca3af;
}

.pos_page-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.pos_page-description {
    color: #6b7280;
}

/* Category Filter */
.pos_category-filter {
    margin-bottom: 32px;
}

.pos_category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pos_category-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pos_category-badge.pos_active {
    background: #EC2125;
    color: white;
}

.pos_category-badge:not(.pos_active) {
    background: #e5e7eb;
    color: #374151;
}

.pos_category-badge:not(.pos_active):hover {
    background: #d1d5db;
    transform: scale(1.05);
}

/* Blog Grid */
.pos_blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pos_blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.pos_blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pos_blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pos_blog-card-content {
    padding: 24px;
}

.pos_blog-category {
    display: inline-block;
    background: #e0e7ff;
    color: #EC2125;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background-color 0.2s;
}

.pos_blog-category:hover {
    background: #e24f52ff;
}

.pos_blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pos_blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.pos_blog-title a:hover {
    color: #EC2125;
}

.pos_blog-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.pos_blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.pos_blog-meta div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pos_blog-meta svg {
    width: 16px;
    height: 16px;
}

.pos_featured-badge {
    display: inline-flex;
    align-items: center;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    gap: 4px;
}

.pos_featured-badge svg {
    width: 12px;
    height: 12px;
}

.pos_read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #EC2125;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.pos_read-more:hover {
    color: #b31f22ff;
}

.pos_read-more svg {
    width: 16px;
    height: 16px;
}

/* No Posts */
.pos_no-posts {
    text-align: center;
    padding: 48px 0;
}

.pos_no-posts svg {
    width: 96px;
    height: 96px;
    color: #d1d5db;
    margin: 0 auto 16px;
}

.pos_no-posts h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.pos_no-posts p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Pagination */
.pos_pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.pos_pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pos_pagination a,
.pos_pagination span {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.pos_pagination a {
    color: #374151;
    background: white;
    border: 1px solid #d1d5db;
}

.pos_pagination a:hover {
    background: #f9fafb;
}

.pos_pagination .pos_current-page {
    color: white;
    background: #EC2125;
    border: 1px solid #EC2125;
}

.pos_pagination .pos_ellipsis {
    color: #9ca3af;
    background: none;
    border: none;
}

.pos_pagination-info {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

/* Back to Top Button */
.pos_back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #EC2125;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.pos_back-to-top:hover {
    background: #982b2dff;
    transform: translateY(-2px);
}

.pos_back-to-top.pos_visible {
    opacity: 1;
    visibility: visible;
}

.pos_back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pos_main-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pos_sidebar {
        width: 100%;
        order: -1;
    }

    .pos_blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pos_category-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pos_category-badge {
        text-align: center;
    }

    .pos_pagination-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.pos_images-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pos_images-flex .pos_sidebar-image {
    flex: 1;
    margin-bottom: 0;
}

    


.blogp_container {
    max-width: 1400px;
    margin: 10px;
    padding: 0 20px;
}

.blogp_main-wrapper {
    display: flex;
    gap: 0px;
    margin-top: 20px;
}

/* Main Content Area */
.blogp_main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Styles */
.blogp_sidebar {
    margin-top: 60px;
    width: 350px;
    flex-shrink: 0;
}

.blogp_sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-top: 20px;
}

.blogp_contact-form h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blogp_google-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.blogp_google-logo {
    width: 24px;
    height: 24px;
}

.blogp_partner-badge {
    background: #34d399;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.blogp_form-group {
    margin-bottom: 16px;
}

.blogp_form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
}

.blogp_form-group input,
.blogp_form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blogp_form-group input:focus,
.blogp_form-group textarea:focus {
    outline: none;
    border-color: #EC2125;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.blogp_form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.blogp_submit-btn {
    background: #dc2626;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.blogp_submit-btn:hover {
    background: #b91c1c;
}

.blogp_sidebar-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.blogp_sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blogp_images-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.blogp_images-flex .blogp_sidebar-image {
    flex: 1;
    margin-bottom: 0;
}

/* Blog Post Styles */
.blogp_blog-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 32px;
}

.blogp_blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blogp_blog-header {
    position: relative;
    padding: 32px;
    padding-bottom: 24px;

}

.blogp_category-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #EC2125;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 16px;
    transition: background-color 0.2s;
}

.blogp_category-badge:hover {
    background: #eb4949ff;
}

.blogp_blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blogp_blog-description {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blogp_blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #9ca3af;
}

.blogp_blog-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blogp_blog-meta svg {
    width: 16px;
    height: 16px;
}

.blogp_featured-badge {
    display: inline-flex;
    align-items: center;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
}

.blogp_featured-badge svg {
    width: 14px;
    height: 14px;
}

.blogp_blog-content {
    padding: 0 32px 32px;
}

.blogp_blog-footer {
    background: #f9fafb;
    padding: 24px 32px;
    border-top: 1px solid #e5e7eb;
}

.blogp_share-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.blogp_last-updated {
    font-size: 14px;
    color: #6b7280;
}

.blogp_share-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.blogp_share-label {
    font-size: 14px;
    color: #6b7280;
}

.blogp_share-link {
    color: #EC2125;
    transition: color 0.2s;
}

.blogp_share-link:hover {
    color: #c82628ff;
}

.blogp_share-link svg {
    width: 20px;
    height: 20px;
}

/* Related Posts */
.blogp_related-posts {
    margin-top: 48px;
}

.blogp_related-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.blogp_related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blogp_related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.blogp_related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blogp_related-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blogp_related-content {
    padding: 20px;
}

.blogp_related-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blogp_related-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blogp_related-card-title a:hover {
    color: #EC2125;
}

.blogp_related-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blogp_related-date {
    font-size: 12px;
    color: #9ca3af;
}

/* Navigation Links */
.blogp_navigation {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.blogp_nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: white;
    text-decoration: none;
    transition: all 0.2s;
}

.blogp_nav-link:hover {
    background: #f9fafb;
    border-color: #EC2125;
    color: #EC2125;
}

.blogp_nav-link svg {
    width: 16px;
    height: 16px;
}

.blogp_nav-link.blogp_primary {
    background: #EC2125;
    color: white;
    border-color: #EC2125;
}

.blogp_nav-link.blogp_primary:hover {
    background: #EC2125;
    border-color: #EC2125;
    color: white;
}

/* Back to Top Button */
.blogp_back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #EC2125;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.blogp_back-to-top:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.blogp_back-to-top.blogp_visible {
    opacity: 1;
    visibility: visible;
}

.blogp_back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Blog Content Styles */
.blogp_blog-content {
    line-height: 1.8;
}
.blogp_blog-content h1, .blogp_blog-content h2, .blogp_blog-content h3, 
.blogp_blog-content h4, .blogp_blog-content h5, .blogp_blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.blogp_blog-content h1 { font-size: 2rem; }
.blogp_blog-content h2 { font-size: 1.75rem; }
.blogp_blog-content h3 { font-size: 1.5rem; }
.blogp_blog-content h4 { font-size: 1.25rem; }
.blogp_blog-content p {
    margin-bottom: 1.5rem;
}
.blogp_blog-content ul, .blogp_blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.blogp_blog-content li {
    margin-bottom: 0.5rem;
}
.blogp_blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}
.blogp_blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}
.blogp_blog-content code {
    background-color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
}
.blogp_blog-content pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.blogp_blog-content pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}
.blogp_blog-content a {
    color: #3b82f6;
    text-decoration: underline;
}
.blogp_blog-content a:hover {
    color: #1d4ed8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blogp_main-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .blogp_sidebar {
        width: 100%;
        order: 2;
    }

    .blogp_blog-header,
    .blogp_blog-content,
    .blogp_blog-footer {
        padding: 20px;
    }

    .blogp_blog-title {
        font-size: 24px;
    }

    .blogp_blog-description {
        font-size: 16px;
    }

    .blogp_related-grid {
        grid-template-columns: 1fr;
    }

    .blogp_navigation {
        flex-direction: column;
        align-items: stretch;
    }

    .blogp_nav-link {
        justify-content: center;
    }

    .blogp_share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blogp_share-buttons {
        margin-top: 0;
    }

    .blogp_images-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blogp_container {
        padding: 0 16px;
    }

    .blogp_blog-header,
    .blogp_blog-content,
    .blogp_blog-footer {
        padding: 16px;
    }

    .blogp_sidebar-card {
        padding: 16px;
    }
}


.blogp_sidebar-info {
    text-align: center;
    margin-top: 8px;
}
.employee-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.employee-position {
    font-size: 14px;
    color: #666;
    margin: 2px 0 0;
}

