:root {
    --primary-color: #0f172a;
    --accent-color: #6366f1;
    --tertiary-color: #a855f7;
    --dark-color: #0f172a;
    --secondary-color: #f8fafc;
    --white-color: #ffffff;
    --dark-divider-color: rgba(99, 102, 241, 0.14);
    --border-color: var(--dark-divider-color);
    --dark-text: var(--dark-color);
    --soft-gradient: linear-gradient(135deg, rgba(99, 102, 241, 0.13), rgba(255, 255, 255, 0.96));
    --brand-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --button-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --font-main: "Poppins", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #1f2937;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

body a {
    color: var(--primary-color);
}

img {
    height: auto;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    margin-top: 0;
}

p {
    margin-top: 0;
}

.font-serif {
    font-family: "Poppins", Arial, sans-serif !important;
    font-weight: 700;
    letter-spacing: 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.g-3 {
    margin-left: -8px;
    margin-right: -8px;
    row-gap: 16px;
}

.g-3 > * {
    padding-left: 8px;
    padding-right: 8px;
}

.g-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    row-gap: 0 !important;
}

.g-0 > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.g-4 {
    margin-left: -12px;
    margin-right: -12px;
    row-gap: 24px;
}

.g-4 > * {
    padding-left: 12px;
    padding-right: 12px;
}

.g-5 {
    margin-left: -18px;
    margin-right: -18px;
    row-gap: 36px;
}

.g-5 > * {
    padding-left: 18px;
    padding-right: 18px;
}

@media (min-width: 768px) {
    .col-md-0 {
        display: none;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.topbar {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.topbar ul,
.navbar-nav,
.main-menu ul,
.footer-social-links ul,
.footer-links ul,
.about-working-hour ul,
.about-service-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-contact-info ul,
.topbar-social-links ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar img {
    display: none;
}

.topbar-social-links ul {
    justify-content: flex-end;
}

.topbar-social-links a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.topbar-social-links i {
    font-size: 13px;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar {
    padding: 0 !important;
}

.navbar .container {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 86px;
}

.navbar-brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    text-decoration: none;
}

.navbar-brand img {
    display: block;
    max-height: 64px;
    width: auto !important;
}

.brand-mark {
    color: var(--primary-color);
    display: inline-block;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
}

.brand-mark::first-letter {
    color: var(--accent-color);
}

.breadcrumb-item a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #94a3b8;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.back-to-top {
    background: var(--button-gradient);
    border: 0;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
    color: #fff;
    cursor: pointer;
    display: none;
    height: 46px;
    opacity: 0;
    position: fixed;
    right: 24px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 46px;
    z-index: 90;
}

.back-to-top.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.navbar-collapse {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.main-menu,
.nav-menu-wrapper {
    align-items: center;
    display: flex;
}

.navbar-nav {
    align-items: center;
    display: flex;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #23324a;
    display: block;
    font-weight: 700;
    padding: 12px 13px !important;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--accent-color);
}

.submenu > ul {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    display: none;
    left: 0;
    min-width: 220px;
    padding: 10px;
    position: absolute;
    top: 100%;
    z-index: 80;
}

.submenu:hover > ul {
    display: block;
}

.submenu > ul .nav-link {
    border-radius: 6px;
    padding: 9px 10px !important;
    white-space: nowrap;
}

.header-btn {
    margin-left: 18px;
}

.navbar-toggle {
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 5px;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 46px;
}

.navbar-toggle span {
    background: var(--primary-color);
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: 0.2s ease;
    width: 22px;
}

.navbar-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-default {
    background: var(--button-gradient);
    border: 0;
    border-radius: 8px;
    color: #fff !important;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1.2;
    padding: 14px 22px;
    text-decoration: none;
}

.btn-default:hover {
    background: var(--brand-gradient);
    color: #fff !important;
}

.form-control {
    background: #fff;
    border: 1px solid var(--border-color);
    color: #1f2937;
    display: block;
    font-family: inherit;
    font-size: 16px;
    width: 100%;
}

.d-none {
    display: none !important;
}

.alert {
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 14px 16px;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.py-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
}

.py-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
}

.py-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.my-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.float-end {
    float: right !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.min-w-0 {
    min-width: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.text-start {
    text-align: left !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-muted,
.text-secondary {
    color: #5f6673 !important;
}

.text-primary,
.hover-text-primary:hover {
    color: var(--accent-color) !important;
}

.text-body,
.text-body-emphasis {
    color: #1f2937 !important;
}

.text-white {
    color: #fff !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semibold {
    font-weight: 700 !important;
}

.fw-bold {
    font-weight: 800 !important;
}

.small,
small {
    font-size: 0.875rem;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.lead {
    color: #5f6673;
    font-size: 1.14rem;
    line-height: 1.8;
}

.display-3 {
    font-size: 3rem;
}

.display-4 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

.display-5 {
    font-size: 2.4rem;
}

.display-6 {
    font-size: clamp(28px, 3.4vw, 42px);
}

.lh-sm {
    line-height: 1.18 !important;
}

.rounded-3,
.rounded-4 {
    border-radius: 8px !important;
}

.rounded-pill {
    border-radius: 999px !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-top-4 {
    border-radius: 8px 8px 0 0 !important;
}

.shadow-sm {
    box-shadow: 0 14px 36px rgba(20, 43, 53, 0.06) !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid var(--border-color) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color) !important;
}

.bg-transparent {
    background: transparent !important;
}

.bg-light-subtle,
.bg-body-tertiary {
    background: #f8fbfb !important;
}

.bg-primary,
.btn-primary {
    background: var(--button-gradient) !important;
    color: #fff !important;
}

.bg-primary-subtle,
.badge.bg-primary-subtle {
    background: rgba(99, 102, 241, 0.12) !important;
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-weight: 800;
    justify-content: center;
    line-height: 1.2;
    padding: 12px 18px;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 9px 14px;
}

.btn-outline-secondary {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.24);
    color: #23324a;
}

.btn-outline-secondary:hover,
.btn-outline-secondary.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.btn-link {
    background: transparent;
    border: 0;
    padding: 0;
}

.badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    padding: 8px 12px;
}

.badge-custom {
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-color);
}

.card {
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(20, 43, 53, 0.06);
    color: inherit;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
    position: relative;
}

.card-body {
    flex: 1 1 auto;
}

.card-footer {
    margin-top: auto;
}

.card-title {
    font-size: 1.28rem;
    line-height: 1.3;
}

.card-text {
    line-height: 1.7;
}

.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
    box-shadow: 0 18px 46px rgba(20, 43, 53, 0.1) !important;
    transform: translateY(-3px);
}

.hover-zoom-container {
    background: #eef8f8;
    color: var(--accent-color);
    overflow: hidden;
}

.hover-zoom-img,
.blog-dynamic-thumb img,
.sidebar-post-thumb {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hover-zoom-img {
    transition: transform 0.25s ease;
}

.hover-zoom-container:hover .hover-zoom-img {
    transform: scale(1.04);
}

.blog-hero,
.article-page {
    background: #f8fbfb;
}

.blog-hero {
    padding: 76px 0 48px;
}

.blog-hero .card {
    overflow: hidden;
}

.article-page .container {
    max-width: 1340px;
}

.article-header-band {
    background: var(--soft-gradient);
    border-bottom: 1px solid var(--border-color);
    padding: 64px 0 48px;
    width: 100%;
}

.article-content {
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 12px;
    box-shadow: 0 16px 42px rgba(20, 43, 53, 0.07);
    padding: 48px 56px;
}

.article-content * {
    font-family: "Poppins", Arial, sans-serif !important;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 16px;
    margin-top: 34px;
}

.article-content h1 { font-size: 2.25rem !important; }
.article-content h2 { font-size: 1.75rem !important; }
.article-content h3 { font-size: 1.4rem !important; }
.article-content h4 { font-size: 1.2rem !important; }
.article-content h5 { font-size: 1.05rem !important; }
.article-content h6 { font-size: 1rem !important; }

.article-content p,
.article-content li,
.article-content span,
.article-content div,
.article-content a,
.article-content strong,
.article-content em {
    color: #374151 !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
}

.article-content img {
    border-radius: 10px;
    margin: 22px 0;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    content: "";
    display: block;
    padding-top: 42.857%;
}

.ratio > * {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.object-fit-cover {
    object-fit: cover;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-item {
    background: #f8fbfb;
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 999px;
    color: #23324a;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 12px;
    text-decoration: none;
}

.tag-cloud-item:hover {
    background: rgba(99, 102, 241, 0.1);
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group .form-control {
    border-radius: 999px 0 0 999px;
}

.input-group .btn {
    border-radius: 0 999px 999px 0;
}

.invalid-feedback {
    color: #b91c1c;
    display: none;
    font-size: 0.875rem;
    margin-top: 6px;
}

.btn-close {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 18px;
}

.btn-close::before {
    content: "x";
}

.alert-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
}

.visually-hidden {
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.sticky-top {
    position: sticky;
    top: 96px;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
}

.comments-section,
.comment-card {
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 8px;
    padding: 24px;
}

.comment-card {
    margin-bottom: 18px;
}

.reading-progress-container {
    background: transparent;
    height: 4px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.reading-progress-bar {
    background: var(--accent-color);
    height: 100%;
    width: 0;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }
}

.main-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.78);
    padding: 64px 0 0;
}

.main-footer h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.main-footer p,
.main-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.main-footer a:hover {
    color: #fff;
}

.about-working-hour li,
.about-service-list li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-social-links ul,
.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-social-links a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.footer-social-links i {
    font-size: 15px;
}

.footer-info-box {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-info-box .icon-box {
    display: none;
}

.footer-info-box-content p {
    margin-bottom: 0;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 44px;
    padding: 22px 0;
}

.footer-copyright p {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .topbar-social-links {
        display: none;
    }

    .navbar .container {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 0 14px;
        min-height: 0;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .navbar-brand {
        flex: 1 1 auto;
        margin-bottom: 0;
        min-width: 0;
    }

    .brand-mark {
        font-size: clamp(24px, 6vw, 34px);
        overflow-wrap: anywhere;
    }

    .navbar-toggle {
        display: inline-flex;
    }

    .navbar-collapse,
    .main-menu {
        align-items: stretch;
        display: none;
        flex: 0 0 100%;
        width: 100%;
    }

    .navbar-collapse.is-open,
    .main-menu.is-open {
        display: block;
    }

    .nav-menu-wrapper,
    .navbar-nav {
        align-items: stretch;
        display: block;
        width: 100%;
    }

    .nav-link {
        border-top: 1px solid var(--border-color);
        padding: 11px 0 !important;
    }

    .submenu > ul {
        border: 0;
        box-shadow: none;
        display: block;
        margin-bottom: 2px;
        padding: 0 0 0 16px;
        position: static;
    }

    .submenu > ul .nav-link {
        background: #f8fbfb;
        border: 1px solid rgba(99, 102, 241, 0.14);
        border-radius: 8px;
        margin-top: 8px;
        padding: 10px 12px !important;
        white-space: normal;
    }

    .header-btn {
        margin: 14px 0 0;
    }

    .header-btn,
    .header-btn .btn-default {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }

    .topbar-contact-info ul {
        display: block;
    }

    .topbar-contact-info li {
        margin-bottom: 6px;
    }

    .topbar {
        padding: 12px 0;
    }

    .topbar-contact-info a {
        display: inline-block;
        overflow-wrap: anywhere;
    }

    .main-footer {
        padding-top: 42px;
    }

    .article-header-band {
        padding: 40px 0 28px;
    }

    .article-content {
        padding: 24px;
    }

    .blog-hero {
        padding: 52px 0 32px;
    }
}

.blog-pagination-wrap,
.pagination-area {
    clear: both;
    margin-top: 42px;
    width: 100%;
}

.pagination-area nav {
    display: flex;
    justify-content: center;
}

.blog-pagination-wrap ul,
.pagination-area .pagination,
.pagination-area ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.blog-pagination-wrap li,
.pagination-area li,
.pagination-area .page-item {
    display: inline-flex;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.blog-pagination-wrap li::marker,
.pagination-area li::marker {
    content: "" !important;
}

.pagination-area a,
.pagination-area strong,
.pagination-area .page-link,
.blog-pagination-wrap a,
.blog-pagination-wrap strong {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 999px;
    color: var(--primary-color);
    display: inline-flex;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    line-height: 1;
    min-width: 42px;
    padding: 0 16px;
    text-align: center;
    text-decoration: none;
}

.pagination-area .active .page-link,
.pagination-area a:hover,
.pagination-area strong,
.pagination-area .page-link:hover,
.blog-pagination-wrap a:hover,
.blog-pagination-wrap strong {
    background: var(--button-gradient);
    border-color: transparent;
    color: var(--white-color) !important;
}

.breadcrumb-area {
    background: var(--secondary-color);
    padding: 70px 0;
}

.breadcrumb-heading {
    font-size: 44px;
    margin-bottom: 15px;
}

.breadcrumb-item ul,
.breadcrumb-item ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-header-box .breadcrumb,
.blog-single-breadcrumb {
    --bs-breadcrumb-divider: "/" !important;
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.site-breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-breadcrumb-item {
    color: #5f6673;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: capitalize;
}

.site-breadcrumb-item + .site-breadcrumb-item::before,
.site-breadcrumb-item + .site-breadcrumb-item:before {
    color: #5f6673;
    content: "/" !important;
    display: inline-block;
    padding: 0 10px;
}

.site-breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.site-breadcrumb-item a:hover,
.site-breadcrumb-item.active {
    color: var(--primary-color);
}

.page-header-box .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.page-header-box .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    color: #5f6673 !important;
    content: "/" !important;
    float: none !important;
    padding: 0 10px !important;
}

.page-header-box .breadcrumb a::after,
.page-header-box .breadcrumb a:after,
.blog-single-breadcrumb a::after,
.blog-single-breadcrumb a:after,
body a[href^="http"]::after,
body a[href^="https"]::after {
    content: "" !important;
    display: none !important;
}
