:root{
    --tj-primary:#2366f2;
    --tj-primary-dark:#1d4ed8;
    --tj-dark:#07152f;
    --tj-muted:#64748b;
    --tj-border:#e8edf5;
    --tj-bg:#f6f8fc;
    --tj-card:#fff;
    --tj-radius:22px;
    --tj-shadow:0 18px 45px rgba(18,38,63,.10);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:#14213d;
    background:#fff;
    line-height:1.65;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
}

.tj-container{
    width:min(1180px,92%);
    margin:auto;
}

.tj-skip{
    position:absolute;
    left:-9999px;
}

.tj-skip:focus{
    left:16px;
    top:16px;
    z-index:9999;
    background:#fff;
    color:#07152f;
    padding:10px 14px;
    border-radius:10px;
}

/* Top Bar */
.tj-topbar{
    background:var(--tj-dark);
    color:#dbe7ff;
    font-size:14px;
}

.tj-topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    padding:8px 0;
}

.tj-topbar-inner a,
.tj-topbar-inner span{
    color:#dbe7ff;
}

/* Header */
.tj-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);
    box-shadow:0 1px 0 var(--tj-border);
}

.tj-header-inner{
    height:78px;
    display:flex;
    align-items:center;
    position:relative;
}

.tj-logo,
.tj-footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:900;
    font-size:22px;
    color:var(--tj-dark);
}

.custom-logo-link{
    display:flex;
    align-items:center;
}

.custom-logo-link img{
    width:auto;
    object-fit:contain;
}

.tj-logo-mark{
    width:38px;
    height:38px;
    border-radius:12px;
    background:var(--tj-primary);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
}

.tj-mainnav{
    margin-left:auto;
}

.tj-nav{
    display:flex;
    align-items:center;
    gap:6px;
    list-style:none;
    margin:0;
    padding:0;
}

.tj-nav li{
    position:relative;
}

.tj-nav a{
    display:flex;
    align-items:center;
    gap:6px;
    padding:11px 13px;
    border-radius:12px;
    font-weight:750;
    color:#253858;
}

.tj-nav a:hover{
    background:#eef4ff;
    color:var(--tj-primary);
}

.tj-nav .sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:230px;
    list-style:none;
    padding:10px;
    margin:0;
    background:#fff;
    border:1px solid var(--tj-border);
    border-radius:16px;
    box-shadow:var(--tj-shadow);
}

.tj-nav li:hover > .sub-menu{
    display:block;
}

.tj-nav .sub-menu a{
    display:block;
    padding:10px 12px;
}

/* Buttons */
.tj-client-btn,
.tj-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:11px 16px;
    background:var(--tj-primary);
    color:#fff;
    font-weight:900;
    box-shadow:0 10px 24px rgba(35,102,242,.22);
    transition:.2s ease;
}

.tj-client-btn:hover,
.tj-btn:hover{
    background:var(--tj-primary-dark);
    transform:translateY(-1px);
}

.tj-menu-toggle{
    display:none;
    margin-left:auto;
    border:0;
    background:#eef4ff;
    color:var(--tj-dark);
    border-radius:13px;
    padding:0;
    width:44px;
    height:44px;
    font-size:24px;
    cursor:pointer;
}

/* Blog Hero */
.tj-blog-hero,
.tj-single-hero{
    background:linear-gradient(135deg,#07152f 0%,#0b2a6f 55%,#2366f2 100%);
    color:#fff;
    padding:74px 0;
    border-radius:0 0 34px 34px;
    position:relative;
    overflow:hidden;
}

.tj-blog-hero:before,
.tj-single-hero:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-150px;
    top:-160px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
}

.tj-blog-hero .tj-container,
.tj-single-hero .tj-container{
    position:relative;
}

.tj-blog-kicker{
    display:inline-flex;
    border:1px solid rgba(255,255,255,.24);
    background:rgba(255,255,255,.12);
    border-radius:999px;
    padding:8px 14px;
    font-weight:900;
}

.tj-blog-hero h1,
.tj-single-hero h1{
    font-size:clamp(36px,5vw,58px);
    line-height:1.08;
    margin:18px 0 12px;
    letter-spacing:-1.2px;
}

.tj-blog-hero p,
.tj-single-hero p{
    font-size:18px;
    color:#dbeafe;
    max-width:780px;
}

/* Blog Layout */
.tj-blog-section{
    padding:64px 0;
    background:#f8fafc;
}

.tj-blog-layout{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:28px;
    align-items:start;
}

.tj-post-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.tj-post-card,
.tj-empty-card,
.tj-widget{
    background:#fff;
    border:1px solid var(--tj-border);
    border-radius:24px;
    box-shadow:0 14px 40px rgba(15,23,42,.06);
    overflow:hidden;
}

.tj-post-thumb{
    display:block;
    background:#eaf2ff;
    aspect-ratio:16/9;
    overflow:hidden;
}

.tj-post-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.2s ease;
}

.tj-post-card:hover .tj-post-thumb img{
    transform:scale(1.03);
}

.tj-post-placeholder{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:950;
    color:#2366f2;
    background:linear-gradient(135deg,#eff6ff,#dbeafe);
}

.tj-post-content,
.tj-empty-card{
    padding:24px;
}

.tj-post-meta{
    font-size:13px;
    color:#64748b;
    font-weight:800;
    margin-bottom:10px;
}

.tj-post-meta a{
    color:#2366f2;
}

.tj-post-card h2{
    font-size:24px;
    line-height:1.2;
    margin:0 0 10px;
    color:#07152f;
}

.tj-post-card p{
    color:#64748b;
    margin:0 0 16px;
}

.tj-read-more{
    color:#2366f2;
    font-weight:950;
}

/* Sidebar */
.tj-sidebar{
    display:grid;
    gap:18px;
}

.tj-widget{
    padding:22px;
}

.tj-widget h3{
    margin:0 0 14px;
    color:#07152f;
}

.tj-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.tj-widget li{
    border-bottom:1px solid #eef2f7;
    padding:8px 0;
}

.tj-widget li:last-child{
    border-bottom:0;
}

.tj-search-form{
    display:grid;
    gap:10px;
}

.tj-search-form input{
    width:100%;
    padding:13px 14px;
    border:1px solid var(--tj-border);
    border-radius:14px;
    outline:none;
}

.tj-search-form input:focus{
    border-color:#2366f2;
    box-shadow:0 0 0 4px rgba(35,102,242,.12);
}

.tj-search-form button{
    border:0;
    border-radius:14px;
    background:#2366f2;
    color:#fff;
    font-weight:900;
    padding:12px;
    cursor:pointer;
}

.tj-search-form button:hover{
    background:#1d4ed8;
}

.tj-support-widget{
    background:linear-gradient(135deg,#07152f,#2366f2);
    color:#fff;
}

.tj-support-widget h3{
    color:#fff;
}

.tj-support-widget p{
    color:#dbeafe;
}

/* Single Post */
.tj-single-narrow{
    max-width:900px;
}

.tj-single-thumb{
    margin:34px 0;
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--tj-shadow);
}

.tj-single-thumb img{
    width:100%;
    display:block;
}

.tj-content{
    background:#fff;
    border:1px solid var(--tj-border);
    border-radius:26px;
    padding:34px;
    margin:34px auto;
    box-shadow:0 14px 40px rgba(15,23,42,.06);
}

.tj-content h2,
.tj-content h3{
    color:#07152f;
    line-height:1.2;
}

.tj-content p,
.tj-content li{
    color:#334155;
    font-size:17px;
}

.tj-content a{
    color:#2366f2;
    font-weight:800;
}

.tj-content img{
    border-radius:18px;
}

.tj-post-tags{
    margin:20px 0 60px;
}

.tj-post-tags a{
    display:inline-flex;
    background:#eef4ff;
    color:#2366f2;
    border-radius:999px;
    padding:8px 12px;
    margin:4px;
    font-weight:800;
}

.tj-pagination{
    grid-column:1/-1;
}

/* Footer */
.tj-footer{
    background:#07152f;
    color:#dce7fb;
}

.tj-footer-grid{
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1fr;
    gap:26px;
    padding:54px 0;
}

.tj-footer h3{
    color:#fff;
    margin:0 0 16px;
}

.tj-footer p{
    color:#b8c5dc;
}

.tj-footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.tj-footer-links li{
    margin:9px 0;
}

.tj-footer-links a{
    color:#c7d4ea;
}

.tj-footer-links a:hover{
    color:#fff;
}

.tj-footer-logo{
    color:#fff;
}

.tj-whatsapp{
    display:inline-block;
    margin-top:8px;
    background:#19c37d;
    color:#fff;
    border-radius:999px;
    padding:10px 16px;
    font-weight:900;
}

.tj-footer-bottom{
    border-top:1px solid rgba(255,255,255,.11);
    padding:18px 0;
    color:#aebbd0;
    font-size:14px;
}

.screen-reader-text{
    position:absolute;
    left:-9999px;
}

/* Mobile Header Fix */
@media(max-width:900px){

    .tj-topbar{
        font-size:12px;
        background:#07152f;
    }

    .tj-topbar-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:10px;
        white-space:nowrap;
        padding:7px 0;
    }

    .tj-topbar-inner span,
    .tj-topbar-inner a{
        display:inline-flex;
        align-items:center;
        margin:0;
        color:#dbe7ff;
        line-height:1.2;
    }

    .tj-header-inner{
        height:68px;
        display:flex;
        align-items:center;
        flex-wrap:nowrap;
        gap:10px;
        padding:0;
        position:relative;
    }

    .tj-logo{
        order:1;
        flex:1 1 auto;
        min-width:0;
        max-width:44%;
    }

    .custom-logo-link{
        display:flex;
        align-items:center;
        min-width:0;
    }

    .custom-logo-link img{
        width:auto;
        height:42px;
        max-width:145px;
        object-fit:contain;
        display:block;
    }

    .tj-logo-mark{
        display:none;
    }

    .tj-client-btn{
        order:2;
        margin-left:auto;
        margin-right:10px;
        padding:10px 15px;
        min-height:42px;
        border-radius:999px;
        font-size:13px;
        font-weight:900;
        white-space:nowrap;
        box-shadow:0 10px 22px rgba(35,102,242,.22);
    }

    .tj-menu-toggle{
        order:3;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width:46px;
        height:46px;
        min-width:46px;
        margin-left:0;
        padding:0;
        border:0;
        border-radius:15px;
        background:#eef4ff;
        color:#07152f;
        font-size:25px;
        font-weight:900;
        line-height:1;
        cursor:pointer;
    }

    .tj-mainnav{
        position:absolute;
        left:0;
        right:0;
        top:100%;
        display:none;
        width:100%;
        margin:0;
        background:#fff;
        border-top:1px solid #e8edf5;
        box-shadow:0 18px 36px rgba(15,23,42,.14);
        padding:10px 4%;
        z-index:999;
    }

    .tj-mainnav.open{
        display:block;
    }

    .tj-nav{
        display:block;
    }

    .tj-nav li{
        position:relative;
    }

    .tj-nav a{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:13px 12px;
        border-radius:12px;
        font-size:15px;
    }

    .tj-nav .sub-menu{
        position:static;
        display:block;
        min-width:100%;
        box-shadow:none;
        border:0;
        background:#f7faff;
        margin:4px 0 10px 10px;
        padding:6px;
        border-radius:14px;
    }

    .tj-blog-layout,
    .tj-post-grid,
    .tj-footer-grid{
        grid-template-columns:1fr;
    }

    .tj-blog-hero,
    .tj-single-hero{
        padding:58px 0;
    }

    .tj-content{
        padding:24px;
    }
}

@media(max-width:480px){

    .tj-container{
        width:min(100% - 28px,1180px);
    }

    .tj-topbar-inner{
        font-size:11px;
        gap:8px;
    }

    .tj-topbar-inner a{
        max-width:168px;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .tj-header-inner{
        height:64px;
        gap:8px;
    }

    .tj-logo{
        max-width:40%;
    }

    .custom-logo-link img{
        height:38px;
        max-width:126px;
    }

    .tj-client-btn{
        padding:9px 13px;
        font-size:12px;
        min-height:40px;
        margin-right:10px;
    }

    .tj-menu-toggle{
        width:44px;
        height:44px;
        min-width:44px;
        font-size:24px;
    }

    .tj-post-content,
    .tj-widget,
    .tj-content{
        padding:22px;
    }

    .tj-blog-section{
        padding:48px 0;
    }
}

@media(max-width:380px){

    .tj-topbar-inner{
        font-size:10.5px;
    }

    .tj-topbar-inner a{
        max-width:135px;
    }

    .tj-logo{
        max-width:37%;
    }

    .custom-logo-link img{
        height:34px;
        max-width:108px;
    }

    .tj-client-btn{
        font-size:11px;
        padding:8px 10px;
        min-height:38px;
        margin-right:9px;
    }

    .tj-menu-toggle{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:23px;
    }
}
/* Blog post end action buttons */
.tj-post-end-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 10px 0 60px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.tj-end-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.tj-end-primary {
    background: #2366f2;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(35, 102, 242, .22);
}

.tj-end-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.tj-end-light {
    background: #eef4ff;
    color: #07152f;
}

.tj-end-light:hover {
    background: #dbeafe;
}

@media(max-width:520px) {
    .tj-post-end-actions {
        display: grid;
        padding: 18px;
    }

    .tj-end-btn {
        width: 100%;
    }
}
/* Blog Back to Top Button */
.tj-back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #2366f2;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(35, 102, 242, .35);
    z-index: 9999;
    transition: .2s ease;
}

.tj-back-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.tj-back-top.show {
    display: flex;
}

@media(max-width: 600px) {
    .tj-back-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}