@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white:#ffffff;
    --ink: #1d1d1f;
    --body: #3a4a63;
    --mist: #f5f5f7;
    --border: #d2d2d7;
    --blue: #0071e3;
    --blue-dk: #0051a2;
    --blue-lt: #e8f1fb;
    --teal: #00b4a2;
    --teal-lt: #e6f7f5;
    --teal-dk: #007a6e;
    --green: #34c759;
    --amber: #e8612c;
    --amber-dark:#cf4f1f;
    --ss-orange-dark:#cf4f1f;
    --ss-orange:#e8612c;
    --red: #ff3b30;
    --dark: #0a0a14;
    --ai-indigo: #5b5bff;
    --ai-violet: #8b5cf6;
    --ai-cyan: #22d3ee;
    --ai-pink: #f472b6;
    --ai-indigo-lt: #eef0ff;
    --ai-violet-lt: #f5f0ff;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, .08), 0 1px 4px rgba(0, 0, 0, .04);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .06);
    --shadow-ai: 0 10px 40px rgba(91, 91, 255, .18), 0 2px 8px rgba(139, 92, 246, .12);
    --ss-grad:linear-gradient(135deg, #20208f 0%, #5b34c7 48%, #0a8aa6 100%);
    --ss-teal-dark:#018577;
    --ss-purple-soft: #efedff;
    --ss-teal-soft: #e8faf7;
    --ss-body: #3a4a63;
    --ss-purple: #755bfa;
    --ss-purple-dark: #5a40e6;
    --ss-navy: #0e1c3f;
    --ss-teal-dark: #018577;
    --ss-line: #e6ecf7;
    --ss-mist: #f5f6fa;


}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    font-size: 17px;
    line-height: 1.47059;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -.022em;
}

.sec.pb-0 {
    padding-bottom: 0;
}

.post,
.page {
    margin: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    /* max-width: 1120px; */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}


/* ── NAV ── */

nav {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.4px;
}
.nav-logo img {
    height: 37px;
    width: 100%;
}
.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 16px;
    font-weight: 400;
    color: #515154;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: -.01em;
    transition: color .15s, background .15s;
}

.nav-links a:hover {
    color: var(--ai-indigo);
    background: rgba(0, 0, 0, .05);
}
.nav-links li.active > a {
    color: var(--ai-indigo);
    background: rgba(91, 91, 255, .08);
}
.desktop-nav .has-submenu .down-arrow {
    display: inline-block;
    vertical-align: middle;
}

.desktop-nav .has-submenu .down-arrow img {
    height: 14px;
    object-fit: contain;
    transition: 0.2s ease-in;
}

.desktop-nav .has-submenu a:hover .down-arrow img {
    transform: rotate(-180deg);
}

.desktop-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: white;
    min-width: 220px;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.desktop-nav .submenu li {
    padding: 8px 18px;
    border-bottom: 1px solid var(--border);
}

.desktop-nav .submenu li:last-child {
    border: none;
}

.desktop-nav .submenu li a {
    text-decoration: none;
    color: #333;
    white-space: nowrap;
    padding: 0;
    font-size: 14px;
}

.desktop-nav .submenu li a:hover {
    background: none;
    color: var(--ai-violet);
}

.desktop-nav .has-submenu:hover .submenu {
    display: block;
}

.nav-r {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-ghost {
    font-size: 16px;
    font-weight: 400;
    color: var(--ai-indigo);
    padding: 6px 14px;
    border-radius: 980px;
    border: 1px solid var(--ai-indigo);
    letter-spacing: 0;
    transition: all .15s;
}
.btn-ghost:hover {
    color: var(--ss-purple-dark);
    -webkit-text-fill-color: var(--ss-purple-dark);
    background: var(--ss-purple-soft);
    border-color: var(--ss-purple-dark);
}

.btn-teal {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: var(--amber);
    padding: 7px 16px;
    border-radius: 980px;
    display: inline-block;
    letter-spacing: 0;
    transition: all .2s;
    box-shadow: 0 6px 18px rgba(232, 97, 44, 0.28);
}
.btn-teal:hover {
    transform: translateY(-1px);
    background: var(--amber-dark);
    color: #fff;
}


/* Mega menu start */

nav .mega-title {
    padding: 5px 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
    font-size: 15px;
    /* text-transform: uppercase; */
    color: #515154;
}

nav .mega-links {
    list-style: none;
}

nav .mega-links li {
    padding: 0;
}

nav .mega-links a {
    text-decoration: none;
    transition: 0.3s;
    padding: 5px 0;
    display: block;
    border-bottom: 1px solid #f7f7f7;
    font-size: 14px;
    display: flex;
    justify-content: flex-start !important
}

nav .mega-links li:last-child a {
    border-bottom: 0;
}

nav .mega-links a img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    margin-left: 5px;
    flex-shrink: 0;
    opacity: 0.4;
    margin-top: 2px;
}

nav .mega-links a:hover {
    color: #5b5bff;
}


/* Mega menu end */


/* ── BUTTONS ── */

.cta-p {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: var(--ss-orange);
    border-radius: 980px;
    padding: 12px 26px;
    display: inline-block;
    letter-spacing: -.01em;
    transition: all .2s;
    box-shadow: 0 6px 18px rgba(232, 97, 44, 0.26);
}


.cta-p:hover {
     /* box-shadow: 0 6px 24px rgba(91, 91, 255, .5); */
     background: var(--ss-orange-dark);
    transform: translateY(-1px);
}

.btn-icon {
    margin-left: 8px;
}

.btn-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-w {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 980px;
    padding: 11px 24px;
    display: inline-block;
    letter-spacing: -.01em;
    transition: all .15s;
}

.cta-w:hover {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.cta-d {
    font-size: 17px;
    font-weight: 500;
    color: var(--ss-purple-dark);
    background: transparent;
    border: 2px solid var(--ss-purple);
    border-radius: 980px;
    padding: 12px 24px;
    display: inline-block;
    letter-spacing: -.01em;
    transition: all .15s;
}

.cta-d:hover {
    background: var(--ss-purple-soft) !important;
}


/* ── CHIP ── */

.chip {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #534ab7;
    background: var(--ss-purple-soft);
    border: 1px solid #cecbf6;
    padding: 5px 14px;
    border-radius: 980px;
    margin-bottom: 16px;
}

.chip-inv {
    color: #c4b5fd;
    background: rgba(139, 92, 246, .2);
    border: 1px solid rgba(139, 92, 246, .3);
}


/* ── SECTIONS ── */

.sec {
    padding: clamp(64px, 8vw, 104px) 0;
}

.sec-alt,
.bg-gray {
    background: var(--ss-mist);
}

.sec-dark {
    background: var(--dark);
}

.sec-h {
    text-align: center;
    margin-bottom: 56px;
}

.bg-transparent {
    background: transparent;
}

.sec-h .sub {
    margin: 0 auto;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -.045em;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;
    margin-top: 0;
}

h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #c4b5fd 0%, var(--ai-violet) 40%, var(--ai-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.075;
    color: var(--ink);
    margin-bottom: 14px;
}

h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--ai-indigo) 0%, var(--ai-violet) 50%, var(--ai-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2.white {
    color: #fff;
}

h2.white em {
    background: linear-gradient(135deg, #c4b5fd 0%, var(--ai-violet) 40%, var(--ai-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

h2 .ai-grad {
    font-style: normal;
    background: linear-gradient(135deg, var(--ai-indigo) 0%, var(--ai-violet) 50%, var(--ai-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

h2.white {
    color: #fff
}


/* Chips, standard + AI gradient chip */

.chip-ai {
    color: #fff;
    background: linear-gradient(135deg, var(--ai-indigo), var(--ai-violet));
    padding: 6px 14px 6px 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600
}

.chip-ai .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, .9);
    animation: aipulse 1.6s infinite
}

@keyframes aipulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.75)
    }
}

.sub {
    font-size: 17px;
    font-weight: 300;
    color: #3a4a63;
    line-height: 1.65;
    max-width: 640px;
    letter-spacing: .005em;
}

.sub-w {
    color: rgba(255, 255, 255, .5);
}

@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }
    50% {
        transform: translate(50px, 30px) scale(1.1)
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }
    50% {
        transform: translate(-40px, 50px) scale(1.15)
    }
}

@keyframes float3 {
    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }
    50% {
        transform: translate(30px, -40px) scale(1.08)
    }
}

@keyframes aipulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.4)
    }
}


/*Form*/

.form-card {
    background: #fff;
    border-radius: 20px;
    
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 2;
}

.form-card-h {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: 4px;
}

.form-note {
    font-size: 11px;
    color: var(--body);
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
}


/* ── FOOTER ── */

footer {
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    padding: 0;
}

.foot-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.foot-row1 {
    display: grid;
    grid-template-columns: minmax(100px, 160px) 1fr minmax(100px, 160px);
    align-items: center;
}

.foot-logo img {
    height: 30px;
    display: block;
    width: 200px;
}

.foot-center1 {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.foot-divider {
    width: 1px;
    height: 26px;
    background: #d2d2d7;
    flex-shrink: 0;
}

.foot-links,
.menu-footer-menu-container .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    align-items: center;
    justify-content: center;
}

.menu-footer-menu-container .menu li {
    list-style: none;
}

.foot-links a,
.menu-footer-menu-container .menu a {
    font-size: 14px;
    color: #6e6e73;
}

.foot-links a:hover,
.menu-footer-menu-container .menu a:hover {
    color: #0071e3;
}

.foot-row2 {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
}

.foot-center2 {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.foot-apps {
    display: flex;
    gap: 8px;
}

.foot-app-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #000;
    border-radius: 7px;
    padding: 5px 10px;
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
}

.foot-app-link svg {
    flex-shrink: 0;
    width: 14px;
    height: 16px;
}

.foot-app-store-label {
    display: flex;
    flex-direction: column;
}

.foot-app-store-label span:first-child {
    font-size: 8px;
    opacity: .75;
}

.foot-app-store-label span:last-child {
    font-size: 11px;
    font-weight: 600;
}

.foot-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.foot-social a {
    color: #6e6e73;
    transition: color .15s;
    display: flex;
}

.foot-social a:hover {
    color: #0071e3;
}

.foot-bottom {
    border-top: 1px solid #d2d2d7;
    padding: 10px 40px;
    /* max-width: 1120px; */
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-copy {
    font-size: 11px;
    color: #9e9ea7;
    margin-bottom: 0;
}

.foot-copy p {
    margin-bottom: 0;
}

.center {
    text-align: center;
}

.cta-row {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.cta-row.c {
    justify-content: center;
    margin-top: 28px;
}


/* ── MOBILE NAV (checkbox toggle - no JS needed) ── */

#nav-check {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 6px;
    flex-shrink: 0;
}

.nav-hamburger .hbar {
    display: block;
    width: 22px;
    height: 2px;
    background: #515154;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
    margin: 0 auto;
}

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .09);
    padding: 8px 20px 16px;
    height: 100vh;
    overflow: auto;
    padding-bottom: 70px;
}

.nav-mobile-menu a {
    font-size: 15px;
    color: #515154;
    padding: 11px 0;
    display: block;
}

.nav-mobile-menu ul {
    list-style: none;
}

.nav-mobile-menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nav-mobile-menu ul li:last-child {
    border-bottom: none;
}

.nav-mobile-menu .has-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-mobile-menu .down-arrow img {
    height: 15px;
    transition: 0.2s ease-in;
}

.nav-mobile-menu .has-submenu .submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin: 0;
}

.nav-mobile-menu .submenu li:first-child a {
    padding-top: 0;
}

.nav-mobile-menu li.has-submenu.active a .down-arrow img {
    transform: rotate(-180deg);
}

.nav-mobile-btns {
    display: flex;
    gap: 8px;
    padding-top: 12px;
}

.nav-mobile-btns a {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 0;
    color: #fff;
}
.nav-mobile-btns a.btn-ghost{
    color: var(--ai-indigo);
}
#nav-check:checked~.nav-mobile-menu {
    display: flex;
}

#nav-check:checked~.nav-bar .nav-hamburger .hbar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#nav-check:checked~.nav-bar .nav-hamburger .hbar:nth-child(2) {
    opacity: 0;
}

#nav-check:checked~.nav-bar .nav-hamburger .hbar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* 27-04-2026 */

ul,
ol {
    margin: 0;
}

.foot-apps a:hover,
.foot-apps a:focus,
.foot-apps a:active {
    color: #fff;
}

.mt8 {
    margin-top: 8px;
}

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

.pb-0 {
    padding-bottom: 0 !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}


/* blog detail start */

.page-hero {
    background: #0a0a14;
    position: relative;
    padding: 64px 0 56px;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 91, 255, 0.35) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: float1 14s ease-in-out infinite;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: float2 18s ease-in-out infinite;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
    pointer-events: none;
}

.single-post .post-tag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.single-post .post-tag .tag-item {
    /* background: linear-gradient(135deg, var(--ai-indigo), var(--ai-violet)); */
    background: var(--ai-indigo);
    padding: 6px 15px;
    border-radius: 20px;
    border: 2px solid var(--ai-indigo);
    margin: 0;
    color: #fff;
    font-family: "Raleway";
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 1px;
    cursor: pointer;
}

.single-post .post-tag .tag-item:hover {
    color: var(--ai-indigo);
    background-color: #499AFA00;
}

.single-post .post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 7% 0% 0% 0%;
}

.blog-detail-layout .post-nav-item {
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    max-width: 396px;
    transition: opacity 0.3s ease;
}

.blog-detail-layout .post-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.blog-detail-layout .post-nav-thumb {
    flex-shrink: 0;
}

.blog-detail-layout .post-nav-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.blog-detail-layout .post-nav-label {
    display: block;
    font-family: "Raleway", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.75em;
    letter-spacing: 0;
    transition: all 0.3s;
    color: #90A0B3;
}

.blog-detail-layout .post-nav-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    color: #00234B;
    font-family: "Raleway", Sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.45em;
    letter-spacing: 0;
    margin-bottom: 0;
    transition: all 0.3s;
}

.blog-detail-layout .post-nav-item:hover .post-nav-title {
    color: #90A0B3;
}

.blog-detail-layout .single-post .entry-content a {
    color: #6495ed;
    word-wrap: break-word;
}

@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, 25px) scale(1.08);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 40px) scale(1.12);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 52px;
    padding: 20px 0 50px;
    align-items: start;
}

.blog-btn-wrap .bloglink-btn {
    background-color: var(--ai-indigo);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--ai-indigo);
    border-radius: 50px 50px 50px 50px;
    padding: 9px 17px 9px 17px;
    text-align: center;
    transition: all .3s;
    font-family: "Raleway", sans-serif;
}

.blog-btn-wrap .bloglink-btn:hover,
.blog-btn-wrap .bloglink-btn:focus {
    background-color: #FFFFFF;
    color: var(--ai-indigo);
}

.blog-btn-wrap {
    display: flex;
    align-items: center;
    gap: 26px;
}

.blog-title .post-date {
    font-family: "Raleway", Sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.55em;
    letter-spacing: 0px;
    color: #90A0B3;
}

.blog-detail-layout .post-thumbnail img {
    width: 100%;
    margin-bottom: 40px;
}

.blog-detail-layout strong,
.blog-detail-layout b {
    font-weight: 700;
}

.blog-detail-layout h1,
.blog-detail-layout h2,
.blog-detail-layout h3,
.blog-detail-layout h4,
.blog-detail-layout h5,
.blog-detail-layout h6 {
    color: #00234B;
    margin: 0 0 .75rem;
    padding: 0;
}

.blog-detail-layout h1,
.blog-detail-layout h2,
.blog-detail-layout h3 {
    margin-top: 3rem;
}

.blog-detail-layout h1.entry-title {
    margin-bottom: 72px;
    margin-top: 25px;
    padding-bottom: 35px;
    border-bottom: 1px solid #D9DBDE;
}

.blog-detail-layout h1 {
    font-size: 34px;
    transition: all 0.3s;
    color: #00234B;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    line-height: 1.15em;
    letter-spacing: -1px;
    word-spacing: 0;
}

.blog-detail-layout h1.entry-title {
    font-size: 28px;
}

.blog-detail-layout h2 {
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2em;
    letter-spacing: -1px;
}

.blog-detail-layout h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 32px;
    line-height: 1.25em;
    letter-spacing: 0;
    word-spacing: 0;
}

.blog-detail-layout h4 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 24px;
    line-height: 1.3em;
    letter-spacing: 0;
    word-spacing: 0;
}

.blog-detail-layout h5 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.45em;
    letter-spacing: 0;
    word-spacing: 0;
}

.blog-detail-layout h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 16px;
    /* font-size: 14px; */
    line-height: 1.5em;
    letter-spacing: 1px;
    word-spacing: 0;
}

.blog-detail-layout .has-medium-font-size {
    font-size: 20px;
    line-height: 1.5em;
}

.blog-detail-layout,
.blog-detail-layout p,
.blog-detail-layout li {
    color: #4D6581;
    font-weight: 400;
    line-height: 1.65em;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
}

.blog-detail-layout dd,
.blog-detail-layout dl,
.blog-detail-layout dt,
.blog-detail-layout li,
.blog-detail-layout ol,
.blog-detail-layout ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.blog-detail-layout ul {
    list-style-type: disc;
}

.blog-detail-layout li {
    margin-top: 6px;
}

.blog-detail-layout ul,
.blog-detail-layout ol {
    list-style-position: outside;
    margin: 2rem 0 2rem 2rem;
}

.blog-detail-layout a {
    background-color: transparent;
    text-decoration: none;
    color: var(--ai-indigo);
    transition: color .3s ease-in-out;
}

.blog-detail-layout a:active,
.blog-detail-layout a:hover {
    color: #90A0B3;
}

.blog-detail-layout hr {
    box-sizing: content-box;
    height: 1px;
    overflow: visible;
    border: 0;
    color: #D9DBDE;
    background-color: #D9DBDE;
    margin-top: 3rem;
    margin-bottom: 3rem;
    clear: both;
    max-width: 300px;
}

.blog-detail-layout .wp-block-table {
    overflow-x: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-spacing: 0 !important;
    border-collapse: separate;
    border: 0;
    background-color: transparent;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow-wrap: normal;
}

table {
    border-spacing: 0;
}

.blog-detail-layout .wp-block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%;
    min-width: 600px;
}

.blog-detail-layout table thead {
    border-width: 0;
}

.blog-detail-layout .wp-block-table table {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.blog-detail-layout table thead td,
.blog-detail-layout table thead th {
    font-family: "Raleway", Sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 1px;
    word-spacing: 0;
    border-left-style: solid;
    color: #ffffff;
    border: solid #D9DBDE;
    border-width: 0 0 0 1px;
    background-color: #2E279D;
    padding: 24px 30px;
}

.blog-detail-layout table>td,
.blog-detail-layout table>th,
.blog-detail-layout table tbody td,
.blog-detail-layout table tbody th {
    font-family: var(--cmsmasters-table-font-family);
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.65em;
    letter-spacing: 0;
    word-spacing: 0;
    color: #4D6581;
    border-color: #D9DBDE;
    border-style: solid;
    border-width: 1px 0 0 1px;
    background-color: #ffffff;
    padding: 24px 30px;
}

.blog-detail-layout table thead td:first-child,
.blog-detail-layout table thead th:first-child {
    border-left-width: 0;
    border-left-style: solid;
}

.blog-detail-layout .wp-block-table .has-fixed-layout td,
.blog-detail-layout .wp-block-table .has-fixed-layout th {
    word-break: break-word;
}

.blog-detail-layout table>tr:first-child td,
.blog-detail-layout table>tr:first-child th,
.blog-detail-layout table tbody tr:first-child td,
.blog-detail-layout table tbody tr:first-child th {
    border-top-width: 0;
}

.blog-detail-layout table>tr:last-child td,
.blog-detail-layout table>tr:last-child th,
.blog-detail-layout table tbody:last-child tr:last-child td,
.blog-detail-layout table tbody:last-child tr:last-child th {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.blog-detail-layout table>td:last-child,
.blog-detail-layout table>th:last-child,
.blog-detail-layout table tbody td:last-child,
.blog-detail-layout table tbody th:last-child {
    border-right-width: 1px;
    border-right-style: solid;
}

.blog-detail-layout .post-tags {
    margin: 2% 0% 0% 0%;
    padding-top: 20px;
}

.blog-detail-layout .post-tags h6 {
    font-family: "Inter Local", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.65em;
    letter-spacing: 0px;
    color: #4D6581;
    margin-bottom: 0;
}

.blog-detail-layout .comparison-table-wrapper {
    overflow-x: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 20px;
    margin-bottom: 20px;
}

.blog-detail-layout .comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
    height: 8px;
}

.blog-detail-layout .comparison-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    background: #f1f1f1;
    border-radius: 4px;
    border-radius: 4px;
}

.blog-detail-layout .comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: #bbb;
    background: #bbb;
    border-radius: 4px;
    border-radius: 4px;
}

.blog-detail-layout .comparison-table {
    width: 100%;
    width: 100%;
    min-width: 700px;
    min-width: 700px;
    border-collapse: collapse;
    border-collapse: collapse;
    margin: 20px 0px !important;
    margin: 20px 0px !important;
    font-size: 16px;
    font-size: 16px;
    color: #333;
    color: #333;
}

.blog-detail-layout .comparison-table thead th {
    background-color: #2E279D;
    background-color: #2E279D;
    color: white;
    color: white;
    text-align: left;
    text-align: left;
    padding: 15px;
    padding: 15px;
    font-weight: bold;
    font-weight: bold;
}

.blog-detail-layout .comparison-table td {
    padding: 15px;
    padding: 15px;
    vertical-align: top;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.blog-detail-layout .comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
    background-color: #f9f9f9;
}

.blog-detail-layout .comparison-table .highlight {
    font-weight: bold;
    font-weight: bold;
    color: #2E279D;
    color: #2E279D;
}

.blog-detail-layout .ai-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    margin: 40px 0;
}

.blog-detail-layout .ai-table-container::-webkit-scrollbar {
    height: 8px;
}

.blog-detail-layout .ai-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.blog-detail-layout .ai-table-container::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

.blog-detail-layout .ai-comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    margin: 20px 0px !important;
    font-size: 16px;
    color: #333;
}

.blog-detail-layout .ai-comparison-table thead th {
    background-color: #2E279D;
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.blog-detail-layout .ai-comparison-table tbody td {
    padding: 14px 16px;
    vertical-align: top;
    border-top: 1px solid #e0e0e0;
}

.blog-detail-layout .ai-comparison-table tbody tr:nth-child(even) {
    background-color: #f6f9fc;
}

.blog-detail-layout .ai-label {
    font-weight: 600;
    color: #2E279D;
}


/* related post start */

.relatedpost-slider {
    margin: 0 -10px;
}

.related-col {
    padding: 0 10px;
}

.related-card {
    position: relative;
}

.related-card .post-date {
    font-size: 14px;
    font-weight: 300;
    color: var(--body);
    line-height: 1.65;
    letter-spacing: .005em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.relatedpost-content p {
    font-size: 17px;
    font-weight: 300;
    color: var(--body);
    line-height: 1.65;
    letter-spacing: .005em;
    margin-bottom: 5px;
}

.relatedpost-content .read-more {
    color: var(--ai-indigo);
    font-size: 14px;
    margin: 0;
    text-decoration: underline;
    transition: 0.5s ease-in;
}

.relatedpost-content .read-more:hover {
    color: var(--ink);
}

.relatedpost-content h4 {
    margin-bottom: 5px;
    transition: 0.5s ease-in;
}

.relatedpost-content h4:hover {
    color: var(--ai-indigo);
}

.relatedpost-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.relatedpost-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in;
}

.related-card:hover .relatedpost-img img {
    transform: scale(1.1);
}

span.calender-icon {
    display: inline-flex;
    margin-right: 6px;
}

.blog-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--ai-indigo), var(--ai-violet));
    font-size: 13px;
    font-weight: 600;
    border-radius: 15px;
    padding: 4px 12px;
    text-transform: uppercase;
    z-index: 1;
    transition: 0.5s ease-in;
}


/* Related post end */

@media (max-width: 1024px) {
    .blog-detail-layout,
    .blog-detail-layout p,
    .blog-detail-layout li {
        font-size: 15px;
    }
    .blog-detail-layout h1.entry-title {
        margin-bottom: 60px;
    }
    .blog-detail-layout .post-nav-title {
        font-size: 17px !important;
        line-height: 1.45em;
    }
}

@media (max-width: 960px) {
    .blog-detail-layout {
        display: block;
    }
    .blog-detail-layout .sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .blog-detail-layout h1.entry-title {
        font-size: 26px;
    }
    .blog-detail-layout h1 {
        font-size: 36px;
    }
    .blog-detail-layout h2 {
        font-size: 32px;
    }
    .blog-detail-layout h3 {
        font-size: 26px;
    }
    .blog-detail-layout h4 {
        font-size: 22px;
    }
    .blog-detail-layout h5 {
        font-size: 17px;
    }
    .blog-detail-layout h6 {
        font-size: 14px;
    }
    .blog-detail-layout .post-nav-title {
        font-size: 17px !important;
        line-height: 1.45em;
    }
    .blog-detail-layout .post-nav-thumb img {
        width: 80px;
        height: 80px;
    }
    .single-post .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    .relatedpost-img {
        height: 270px;
    }
}


/* blog detail end */

@media (min-width: 992px) {
    .nav-mobile-menu a:hover, .nav-mobile-btns a.btn-ghost:hover {
        color: #fff;
    }
    .nav-bar.desktop-nav .nav-links li:nth-child(2) .mega-menu .mega-col {
        width: 33.3333%;
    }
    /* Mega menu start */
    nav .has-mega-menu {
        position: static !important;
    }
    nav .mega-menu {
        position: absolute;
        top: 100%;
        min-width: 14rem;
        background: #fff;
        padding: 20px 30px;
        opacity: 0;
        visibility: hidden;
        left: 50%;
        /* width: 930px; */
        width: 930px;
        transform: translateX(-50%) translateY(20px);
        max-width: calc(100vw - 40px);
        transition: 0.35s ease;
        border: 1px solid #f1f1f1;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
        -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    }
    nav .has-mega-menu:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transform: translateX(-50%) translateY(0);
    }
    nav .mega-menu-inner {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }
    nav .mega-col {
        width: 25%;
        padding: 0 15px;
    }
    /* Mega menu end */
    .nav-links li {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    /* Mega menu start */
    nav .mega-menu {
        /* width: 1110px; */
        width: 1200px;
    }
    /* Mega menu end */
}

@media (max-width: 1099px) {
    .nav-links a {
        font-size: 13px;
    }
    .btn-teal {
        font-size: 13px;
    }
    .btn-ghost {
        font-size: 13px;
    }
}

@media (max-width: 1199px) {
    .post-navigation p.post-nav-title {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .nav-bar.wrap {
        padding: 0 20px;
    }
    .nav-logo svg {
        height: 35px;
    }
}

@media only screen and (max-width:991px) {
    /* h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br,
    p br {
        display: none;
    } */
    /* existing site rules — untouched */
    .frow,
    .frow.flip,
    .test-grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 28px;
    }
    .wrap {
        padding: 0 20px;
    }
    .sec {
        padding: 56px 0;
    }
    .frow {
        padding: 50px 0;
        gap: 34px;
    }
    .ai-row {
        grid-template-columns: 1fr;
    }
    /* h1 br,
    h2 br,
    h3 br {
        display: none;
    } */
    /* NAV mobile */
    .nav-links {
        display: none;
    }
    .nav-r {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 20px;
        height: 52px;
    }
    .nav-logo svg {
        height: 40px;
    }
    .foot-logo img {
        width: 170px;
    }
    .foot-logo .footer-logo {
        display: inline-flex;
    }
    .foot-logo .footer-logo svg {
        height: 36px;
    }
    /* FOOTER mobile */
    .foot-wrap {
        padding: 16px 20px;
        gap: 14px;
    }
    .foot-row1 {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }
    .foot-logo {
        text-align: center;
    }
    .foot-center1 {
        flex-wrap: wrap;
        gap: 8px 12px;
        justify-content: center;
    }
    .foot-divider {
        display: none;
    }
    .foot-links {
        gap: 6px 14px;
        justify-content: center;
    }
    .foot-row2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .foot-center2 {
        flex-direction: column;
        gap: 10px;
    }
    .foot-apps {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .foot-social {
        justify-content: center;
    }
    .foot-bottom {
        padding: 10px 20px;
        text-align: center;
    }
    .mt-80 {
        margin-top: 60px !important;
    }
    .mb-80 {
        margin-bottom: 60px !important;
    }
    .hero-inner,
    .sw-cols,
    .test-grid {
        grid-template-columns: 1fr;
    }
    .sec-h .sub br {
        display: none;
    }
    .sec-h {
        margin-bottom: 40px;
    }
    /* Mega menu start */
    .mega-col+.mega-col {
        margin-top: 5px;
    }
    nav .mega-menu {
        padding: 20px 30px;
        background-color: #fff;
        -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
        box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
        border-width: 1px;
        border-style: solid;
        border-color: #f1f1f1;
        border-top-color: transparent;
        margin-top: -1px;
    }
    .nav-mobile-menu .has-submenu .submenu:has(.mega-menu) {
        padding: 0;
    }
    nav .mega-links li:last-child a {
        border-bottom: 1px solid #f7f7f7;
    }
    nav .mega-title {
        padding: 15px 0 10px;
        margin-top: -10px;
    }
    nav .mega-menu-inner .mega-col:last-child ul li a {
        border-bottom: none;
    }
    nav .has-submenu.active {
        border-bottom: 0;
    }
    .hero-grid em br {
        display: none;
    }
    /* Mega menu end */
    .blog-detail-layout .post-nav-item {
        max-width: unset;
    }
}

@media (max-width: 767px) {
    .btn-icon {
        margin-left: 6px;
    }
    .single-post .post-navigation {
        /* margin: 40px 0 0; */
    }
    .nav-logo img {
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .single-post .post-tag .tag-item {
        /* padding: 6px 10px;
        font-size: 12px; */
    }
    .single-post .post-tag {
        gap: 6px;
    }
    .single-post .post-nav-thumb {
        /* display: none; */
    }
    .single-post .post-navigation {
        /* margin: 25px 0 0; */
    }
}


/* may 18  for ai page*/

.cta-ai {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    background: var(--ss-orange);
    border-radius: 980px;
    padding: 12px 26px;
    display: inline-block;
    letter-spacing: -.01em;
    transition: all .2s;
    box-shadow: 0 8px 22px rgba(232,97,44,0.34);
}
.cta-ai:hover {
    
}
.chip-ai {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 10px;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    border-radius: 980px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.chip-ai .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ai-cyan);;
    box-shadow: 0 0 8px rgba(139, 92, 246, .6);
    animation: aipulse 1.6s infinite;
}