:root {

    --color1: #5138ed;
    --color2: #fc5b05;
    --ink: #07152f;
    --text: #3d506c;
    --muted: #728197;
    --line: #dbe6f4;
    --soft: #eef6ff;
    --blue: #1257f2;
    --blue-dark: #061d61;
    --orange: #ff6a21;
    --teal: #12b981;
    --white: #fff;
    --shadow: 0 24px 70px rgba(7, 21, 47, 0.12);
    --radius: 5px;
    --container-max: 1280px;
    --accent-font: 'Sora', sans-serif;

}

* fallback */ @font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v351/kJEPBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzBwG-RpA6RzaxHMPdY40KH8nGzv3fzfVJO1Q.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.law-video-responsive iframe .watch-on-youtube-button-wrapper {
    display: none !important;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    background: #f7fbff;
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif !important;
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(7, 21, 47, 0.18);
    backdrop-filter: blur(2px);
}

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

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

:focus-visible {
    outline: 3px solid rgba(18, 87, 242, 0.45);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 999;
    transform: translateY(-150%);
    border-radius: 7px;
    background: var(--blue);
    color: white;
    padding: 10px 14px;
    font-weight: 800;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header,
main>section,
.footer {

    margin: 0 auto;
}


.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 32px;
    padding: 70px 0;
    background-color: #f7f7f7;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 22% 30%, rgba(224, 241, 255, 0.82), transparent 34%),
        radial-gradient(circle at 79% 36%, rgba(234, 242, 255, 0.86), transparent 35%),
        linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
}

.hero-copy h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
}

.hero-copy h1 {
    font-size: 60px;
    line-height: 65px;
    font-weight: 800;
    text-transform: capitalize;
}

.hero-copy h1 .nowrap {
    white-space: nowrap;
}

.hero-copy h1 .scale-mark {
    position: relative;
    display: inline-block;
    color: var(--blue);
}

.hero-copy h1 .scale-mark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 3px;
    bottom: -7px;
    height: 6px;
    border-radius: 999px;
    background: var(--orange);
    transform: rotate(-2deg);
}

.hero-copy p {
    max-width: 440px;
    margin: 22px 0 0;
    font-size: 16px;
    color: #425675;
    line-height: 1.52;
}

.hero-rating {
    width: max-content;
    max-width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 8px 13px 8px 12px;
    border: 1px solid rgba(219, 237, 231, 0.9);
    border-radius: 9px;
    background: #edf8f4;
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(7, 21, 47, 0.05);
}

.hero-rating-logos {
    width: 118px;
    height: auto;
    flex: 0 0 auto;
}

.rating-divider {
    width: 1px;
    align-self: stretch;
    background: #d3e4de;
}

.rating-copy {
    display: flex;
    gap: 3px;
}

.rating-line {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;
}

.rating-stars {
    color: #ffb400;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.hero-rating+.hero-actions {
    margin-top: 16px;
}

.button {
    padding: 0 16px;
    border: 1px solid transparent;
    font-size: 13px;
}

.button.primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 16px 34px rgba(255, 106, 33, 0.24);
}

.button.secondary {
    min-height: 40px;
    padding: 0;
    background: transparent;
    color: var(--ink);
    border-color: transparent;
    box-shadow: none;
    font-size: 13px;
}

.video-button {
    gap: 9px;
}

.play-dot {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 2px solid #9aa9be;
    border-radius: 50%;
    color: #5d6d84;
}

.play-dot svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}



.hero-media {
    position: relative;
    min-height: 350px;
}

.dashboard-card,
.floating-card,
.outcome-grid article,
.feature-grid article,
.results-grid article,
.resource-grid article,
.generator-grid article,
.service-grid a,
.comparison-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}


.hero-dashboard {
    width: 100%;
    box-shadow: 0 0 6px 0 #0002;
    border-radius: var(--radius);
}

.hero-dashboard img {
    border-radius: var(--radius);
    width: 100%;
}

.dashboard-rail {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 16px;
    background: var(--color1);
    padding: 15px 0;
}

.dashboard-rail span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.dashboard-rail .rail-logo {
    border-radius: 50%;
    background: white;
    color: #5875a5;
    font-size: 10px;
    font-weight: 900;
}

.dashboard-rail .active {
    background: rgba(18, 87, 242, 0.42)var(--color2);
}

.dashboard-rail svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dashboard-rail .active svg:first-child {
    fill: currentColor;
    stroke: none;
}

.dashboard-window {
    min-width: 0;
    background: #fbfdff;
}

.dashboard-title {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding: 0 22px;
    background: white;
}

.dashboard-title strong {
    color: #1c2c48;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-title div {
    display: flex;
    gap: 8px;
}

.dashboard-title span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7d8da5;
}

.dashboard-panels {
    height: 341px;
    display: grid;
    grid-template-columns: 0.96fr 2.04fr;
    grid-template-rows: 185px 120px;
    gap: 7px;
    padding: 10px 10px 10px;
}

.dashboard-panels article {
    min-height: 0;
    overflow: hidden;
    border: 1px solid #e3ebf6;
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 10px 24px rgba(7, 21, 47, 0.035);
}

.dashboard-panels h2 {
    margin: 0;
    color: #24334f;
    font-family: "Work Sans", system-ui, sans-serif;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
}

.builder-panel {
    padding: 13px 15px;
}

.builder-panel label {
    display: grid;
    gap: 4px;
    margin-top: 7px;
    color: #667790;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
}

.builder-panel label span {
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e3ebf6;
    border-radius: 6px;
    background: #fbfdff;
    padding: 0 10px;
    color: #495b75;
    font-size: 10px;
    font-weight: 700;
}

.builder-panel label span::after {
    content: "\2304";
    color: #94a3b8;
}

.builder-panel button {
    width: 100%;
    min-height: 25px;
    margin-top: 8px;
    border: 0;
    border-radius: 5px;
    background: var(--color1);
    color: white;
    cursor: pointer;
    font: 800 10px "Work Sans", system-ui, sans-serif;
    box-shadow: 0 10px 24px rgba(18, 87, 242, 0.18);
}

.progress-panel {
    padding: 14px 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.progress-content {
    display: grid;
    grid-template-columns: 106px 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 5px;
}

.progress-ring {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    align-content: center;
    justify-self: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, white 0 54%, transparent 55%),
        conic-gradient(var(--color1) 0 77%, #edf2f8 77% 100%);
    color: var(--ink);
    text-align: center;
}

.progress-ring strong {
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 23px;
    line-height: 1;
}

.progress-ring span {
    margin-top: 3px;
    color: #65758e;
    font-size: 8px;
    font-weight: 800;
}

.campaign-status {
    min-width: 0;
}

.campaign-status strong {
    display: block;
    color: var(--ink);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.1;
}

.campaign-status>span {
    display: block;
    max-width: 240px;
    margin-top: 6px;
    color: #5f6f86;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
}

.campaign-status div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.campaign-status b {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    border-radius: 999px;
    background: #eaf8f0;
    color: #138552;
    padding: 0 8px 0 20px;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.campaign-status b::before {
    content: "";
    position: absolute;
    left: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #13ad5c;
}

.published-panel,
.ranking-panel {
    min-height: 0;
    padding: 11px 15px;
}

.published-panel strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 22px;
    line-height: 1;
}

.published-panel span {
    display: block;
    color: #7888a0;
    font-size: 10px;
    font-weight: 800;
}

.published-panel svg {
    width: 100%;
    height: 34px;
    margin-top: 2px;
    overflow: visible;
}

.published-panel path:first-child {
    fill: none;
    stroke: rgba(18, 87, 242, 0.09);
    stroke-width: 18;
    stroke-linecap: round;
}

.published-panel path:last-child {
    fill: none;
    stroke: var(--blue);
    stroke-width: 5;
    stroke-linecap: round;
}

.ranking-panel {
    display: grid;
    gap: 6px;
}

.ranking-panel div {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #e6edf7;
    border-radius: 6px;
    padding: 0 9px;
    color: #6b7a91;
    font-size: 9px;
    font-weight: 700;
}

.ranking-panel b {
    color: var(--ink);
}

.trusted-strip {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 3.1fr);
    align-items: center;
    gap: 42px;

}

section.our-brands-sec {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f4faff;
    padding: 20px 0;
}

.trusted-strip p {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    align-items: center;
    gap: 34px;
    margin: auto;
}

.partner-logos img {
    display: block;
    width: 100%;
    height: 36px;
    object-fit: contain;
    object-position: center;
    display: flex;
    justify-content: center;
    margin: auto;
}

.partner-logos .logo-wordpress {
    max-width: 166px;
    height: 38px;
}

.partner-logos .logo-google {
    max-width: 122px;
    height: 36px;
}

.partner-logos .logo-elementor {
    max-width: 154px;
    height: 35px;
}

.partner-logos .logo-yoast {
    max-width: 110px;
    height: 36px;
}

.partner-logos .logo-rankmath {
    max-width: 142px;
    height: 34px;
}

.partner-logo {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1b253a;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.partner-logo.wordpress {
    font-family: Georgia, serif;
    font-size: 21px;
}

.partner-logo.wordpress b,
.partner-logo.elementor b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 15px;
}

.partner-logo.google {
    gap: 0;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
}

.partner-logo.google b:nth-child(1) {
    color: #4285f4;
}

.partner-logo.google b:nth-child(2) {
    color: #ea4335;
}

.partner-logo.google b:nth-child(3) {
    color: #fbbc05;
}

.partner-logo.google b:nth-child(4) {
    color: #4285f4;
}

.partner-logo.google b:nth-child(5) {
    color: #34a853;
}

.partner-logo.google b:nth-child(6) {
    color: #ea4335;
}

.partner-logo.elementor b {
    border: 0;
    background: #17213a;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.partner-logo.yoast {
    font-size: 25px;
}

.partner-logo.yoast b {
    color: #552c7d;
    font-style: italic;
}

.partner-logo.rankmath {
    font-size: 21px;
}

.partner-logo.rankmath b {
    width: 26px;
    height: 18px;
    display: inline-block;
    background:
        linear-gradient(135deg, transparent 0 44%, #5e6f90 45% 56%, transparent 57% 100%),
        linear-gradient(25deg, transparent 0 35%, #5e6f90 36% 48%, transparent 49% 100%);
    opacity: 0.9;
}

.proof-section {
    padding: 72px 0 82px;
}

.proof-section .section-heading {
    margin-bottom: 34px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.outcome-grid article {
    min-height: 280px;
    padding: 24px;
    box-shadow: 0 18px 48px rgba(7, 21, 47, 0.08);
}

.outcome-grid>article>img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.outcome-grid h3 {
    margin-top: 22px;
    font-size: 21px;
    line-height: 1.13;
}

.outcome-grid p {
    color: var(--muted);
    font-size: 14px;
}

.outcome-grid footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.outcome-grid footer img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.split-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 62px;
    align-items: center;
    padding: 86px 0;
}

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

h2 {
    font-size: 44px;
    line-height: 1.04;
}

.split-section p,
.section-heading p,
.industry-copy p,
.suite-copy p,
.cta p {
    color: #4c5f7a;
    font-size: 17px;
}

.steps {
    display: grid;
    gap: 13px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    font-weight: 800;
}

.steps span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 13px;
}

.media-composition {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.media-composition img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 16px 44px rgba(7, 21, 47, 0.08);
}

.media-composition .wide {
    grid-row: span 2;
    height: 540px;
    padding: 28px;
}

.comparison-section {
    padding: 58px 0 92px;
}

.comparison-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;

    margin: 34px auto 0;
}

.comparison-grid::after {
    content: "vs";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 8px solid #f7fbff;
    border-radius: 50%;
    background: var(--blue-dark);
    color: white;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 20px 44px rgba(7, 21, 47, 0.18);
}

.comparison-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, #d6e3f5 18%, #d6e3f5 82%, transparent);
}

.comparison-card {
    position: relative;
    min-height: 272px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    box-shadow: 0 20px 54px rgba(7, 21, 47, 0.07);
}
.comparison-grid-content {
    padding: 20px;
}
.comparison-card .top-image img, .comparison-card .top-image video {
    border-radius: var(--radius) var(--radius) 0 0;
        border-bottom: 1px solid #d4d4d454;
}


.problem-card {
    border-color: var(--color2);
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 106, 33, 0.12), transparent 28%),
        linear-gradient(180deg, #fffafa 0%, #fff1ec 100%);
}

.solution-card {
    border-color: var(--color1);
    background:
        radial-gradient(circle at 88% 12%,
            rgba(81, 56, 237, 0.18),
            transparent 35%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f5f2ff 50%,
            #ede8ff 100%);
}

.comparison-label {
    position: absolute;
    top: -13px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 999px;
    padding: 0 13px;
    color: white;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(7, 21, 47, 0.1);
}

.problem-card .comparison-label {
    background: var(--color2);
}

.solution-card .comparison-label {
    background: var(--color1);
}

.comparison-symbol {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--color1);
    color: #fff;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 21px;
    line-height: 1;
    font-weight: 800;
}

.problem-card .comparison-symbol {
    background: var(--color2);
    color: #fff;
}

.comparison-card h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;

}

.comparison-card ul {
    display: grid;
    gap: 13px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.comparison-card li {
    position: relative;
    padding-left: 28px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.comparison-card li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #c9d1dc;
}

.problem-card li::before {
    background: var(--color2);
}

.solution-card li::before {
    background: var(--color1);
}

.comparison-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}



.suite-copy {
    max-width: 700px;
    margin: 0 auto 38px;
    text-align: center;
}

.dark-suite h2,
.dark-suite h3 {
    color: white;
}

.dark-suite .suite-copy p {
    color: #c7d7f3;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-grid article {
    padding: 24px;
    background: #fff;
    border-color: #d4d4d459;
    box-shadow: none;
    box-shadow: 0 0 6px 0 #0002;
}

.feature-grid img {
    width: 70px;
    height: 48px;
    object-fit: contain;
}

.feature-grid h3 {
    margin-top: 22px;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 11px;
    color: #000;
}

.feature-grid p {
    color: #444;
    font-size: 16px;
}

.team-section {
    grid-template-columns: 1fr 1fr;
}

.team-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-photo img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.people-row {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.people-row figure {
    margin: 0;
    min-width: 118px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    padding: 12px;
}

.people-row img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.people-row figcaption {
    margin-top: 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.generator-suite {
    width: 100%;
    max-width: none;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(18, 87, 242, 0.28), transparent 34%),
        radial-gradient(circle at 84% 22%, rgba(255, 106, 33, 0.16), transparent 30%),
        linear-gradient(180deg, #061032 0%, #050b24 100%);
    color: #d6e4ff;
    padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.generator-suite h2,
.generator-suite h3 {
    color: white;
}

.generator-suite .section-heading p {
    color: #c7d7f3;
}

.generator-suite .section-kicker {
    color: #8fb3ff;
}

.generator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.generator-grid article {
    min-height: 300px;
    display: grid;
    align-content: start;
    border-color: rgba(255, 255, 255, 0.13);
    background: linear-gradient(180deg, rgba(42, 85, 235, 0.86) 0%, rgba(33, 52, 164, 0.86) 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    padding: 30px;
}

.generator-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
}

.generator-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.generator-icon.wordpress-mode img {
    width: 60px;
    height: 60px;
}

.generator-icon.html-mode {
    background: rgba(255, 255, 255, 0.18);
}

.generator-grid h3 {
    margin-top: 24px;
    font-size: 23px;
    line-height: 1.12;
}

.generator-grid p {
    color: #d9e5ff;
    font-size: 15px;
}

.spotlight-section {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 62px;
    align-items: center;
    padding: 90px 0;
}

.image-spotlight {
    grid-template-columns: 1.08fr 0.92fr;
}

.spotlight-section p {
    max-width: 570px;
    color: #4c5f7a;
    font-size: 17px;
}

.spotlight-visual {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 15% 15%, rgba(18, 87, 242, 0.09), transparent 30%),
        white;
    box-shadow: 0 24px 68px rgba(7, 21, 47, 0.1);
}

.spotlight-visual img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    padding: 26px;
}

.image-spotlight .spotlight-visual img {
    height: 390px;
}

.ppc-ui-visual,
.image-builder-visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 28px;
    background:
        radial-gradient(circle at 80% 18%, rgba(18, 87, 242, 0.12), transparent 26%),
        radial-gradient(circle at 20% 82%, rgba(255, 106, 33, 0.11), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.ad-panel {
    width: 62%;
    border: 1px solid #d9e5f4;
    border-radius: 12px;
    background: white;
    box-shadow: 0 24px 56px rgba(7, 21, 47, 0.1);
    padding: 18px;
}

.ad-panel-head {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.ad-panel-head span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff6a21;
}

.ad-panel-head span:nth-child(2) {
    background: #f6b43b;
}

.ad-panel-head span:nth-child(3) {
    background: #12b981;
}

.ad-panel strong,
.target-card strong,
.canvas-caption strong {
    display: block;
    color: var(--ink);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 20px;
    line-height: 1.1;
}

.ad-panel p,
.target-card p,
.canvas-caption span {
    margin: 8px 0 0;
    color: #596b84;
    font-size: 13px;
    font-weight: 700;
}

.ad-lines {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.ad-lines span {
    height: 10px;
    border-radius: 999px;
    background: #e8f0fb;
}

.ad-lines span:nth-child(1) {
    width: 88%;
}

.ad-lines span:nth-child(2) {
    width: 72%;
}

.ad-lines span:nth-child(3) {
    width: 56%;
}

.landing-stack {
    position: absolute;
    right: 30px;
    top: 72px;
    display: grid;
    gap: 12px;
}

.landing-stack article {
    width: 145px;
    min-height: 82px;
    border: 1px solid #d9e5f4;
    border-radius: 10px;
    background: white;
    box-shadow: 0 18px 44px rgba(7, 21, 47, 0.12);
    padding: 14px;
}

.landing-stack b,
.landing-stack span,
.ppc-metrics span {
    display: block;
}

.landing-stack b {
    color: var(--ink);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 17px;
}

.landing-stack span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.target-card {
    position: absolute;
    left: 72px;
    bottom: 34px;
    width: 220px;
    border: 1px solid #d9e5f4;
    border-radius: 12px;
    background: white;
    box-shadow: 0 22px 50px rgba(7, 21, 47, 0.12);
    padding: 18px 18px 18px 86px;
}

.target-ring {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--orange) 0 17%, white 18% 28%, var(--orange) 29% 39%, white 40% 50%, rgba(255, 106, 33, 0.18) 51% 100%);
}

.target-ring span {
    width: 42px;
    height: 2px;
    display: block;
    transform: rotate(-38deg);
    background: var(--blue-dark);
    transform-origin: right center;
}

.ppc-metrics {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: calc(100% - 340px);
}

.ppc-metrics span {
    min-height: 62px;
    border: 1px solid #d9e5f4;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    padding: 11px;
    color: #65758e;
    font-size: 10px;
    font-weight: 900;
}

.ppc-metrics strong {
    display: block;
    color: var(--blue);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 18px;
}

.builder-canvas {
    width: 62%;
    overflow: hidden;
    border: 1px solid #d9e5f4;
    border-radius: 14px;
    background: white;
    box-shadow: 0 24px 56px rgba(7, 21, 47, 0.12);
}

.canvas-toolbar {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #e2ebf7;
    padding: 0 14px;
}

.canvas-toolbar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9eb2d0;
}

.builder-canvas img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    padding: 0;
}

.canvas-caption {
    padding: 16px;
}

.thumbnail-rail {
    position: absolute;
    right: 28px;
    top: 46px;
    width: 178px;
    display: grid;
    gap: 10px;
}

.thumbnail-rail img {
    width: 100%;
    height: 74px;
    border: 4px solid white;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 16px 38px rgba(7, 21, 47, 0.12);
    padding: 0;
}

.builder-status {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.builder-status span {
    min-height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid #d9e5f4;
    border-radius: 10px;
    background: white;
    padding: 0 12px;
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 900;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--ink);
    font-weight: 800;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 12px;
    line-height: 1;
}

.services-section {
    width: 100%;
    max-width: none;

}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-grid a {
    min-height: 58px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 12px 34px rgba(7, 21, 47, 0.06);
    padding: 0 18px 0 48px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.service-grid a::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, white 0 34%, transparent 35%),
        var(--blue);
    box-shadow: 0 0 0 5px rgba(18, 87, 242, 0.1);
}

.service-grid a:hover {
    border-color: rgba(18, 87, 242, 0.42);
    color: var(--blue);
    transform: translateY(-1px);
}

.results-section,
.resource-section {
    padding: 86px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.results-grid article {
    padding: 20px;
    box-shadow: 0 0 6px 0 #0002;
}

.case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.case-meta span {
    color: var(--color1);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.case-meta b {
    border-radius: 999px;
    background: #eef4ff;
    color: var(--color1);
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
}

.site-preview,
.search-preview {
    overflow: hidden;
    border: 1px solid #d4d4d452;
    border-radius: var(--radius);
    background: #f7fbff;
    position: relative;
}

.site-preview {
    height: 250px;
}

.search-preview {
    height: 170px;
    margin-top: 12px;
}

.site-preview img,
.search-preview img {
    width: 100%;
    display: block;
    transition: transform 6s ease;
    transform: translateY(0);
}



.results-grid h3 {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
    color:#000;
}



.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.result-stats span {
    display: grid;
    align-content: center;
    border-radius: var(--radius);
    background: #f7f7f7b5;
    padding: 9px;
    color: #000;
    font-size: 10px;
    text-align: center;
    border: 1px solid #d4d4d436;
}

.result-stats strong {
    display: block;
    color: #000;
    font-size: 13px;
    line-height: 1.1;
    font-family: "Sora", sans-serif !important;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.industries {
    width: 100%;
    max-width: none;

    text-align: center;
}

section.industires-era.section-padding {
    background: var(--color1);
}

.industries h2,
.industries .section-kicker {
    color: white;
}

.industries p {
    color: #b9c9e6;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.industry-grid figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: #14284c;
}

.industry-grid img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}

.industry-grid a {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color1);
       padding: 10px 9px;
    font-size: 14px;
    font-weight: 700;
}

.industry-grid a:hover {
   text-decoration:underline;
}
.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.resource-grid article {
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7, 21, 47, 0.08);
}

.resource-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.resource-grid div {
    padding: 18px;
}

.resource-grid span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.resource-grid h3 {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.15;
}

.faq-section {
    padding: 84px 0;
}

.faq-list {
    max-width: 920px;
    display: grid;
    gap: 12px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 14px 36px rgba(7, 21, 47, 0.06);
}

.faq-list summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.faq-list p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--text);
}

.areas-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
    align-items: center;
    padding: 78px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.area-grid a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    padding: 0 12px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.area-grid a:hover {
    border-color: rgba(18, 87, 242, 0.4);
    color: var(--blue);
}

.cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue) 0%, #0a3ec8 100%);
    padding: 46px;
    color: white;
}

.cta h2,
.cta p {
    color: white;
}

.footer {
    width: 100%;
    max-width: none;
    padding: 70px 0;
    background: #000;
    color: #fff;
}

ul.footer-info-list {
    padding-left: 0;
}

.footer-info-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-info-list li .icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-info-list li p span {
    font-weight: 700;
}

.footer-info-list li p a {
    color: #fff;
}

.footer-info-list li p {
    color: #fff;
    padding-inline-start: 10px;
    margin-bottom: 0;
}

.newsletter-box {
    display: flex;
    align-items: center;
    max-width: 317px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-box input {
    flex: 1;
    height: 45px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 15px;
    font-size: 15px;
    /* border: 1px solid #d4d4d4; */
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: 0;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-box button {
    width: 55px;
    height: 45px;
    border: none;
    cursor: pointer;
    background: var(--color1);
    color: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 0;
}

.newsletter-box button:hover {
    background: var(--color2);
}

.footer-info-list li:hover .icon {
    background-color: var(--color1);
}

.footer-column ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0px;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.45fr) repeat(3, minmax(130px, 1fr));
    gap: 42px;
    align-items: start;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
    color: #fff;
}

.footer-demo {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius);
    background: var(--color2);
    color: white;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600
}

.contact-info,
.follow-us {
    display: grid;
    gap: 20px;
}

ul.follow {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.follow-us ul.follow li a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.follow-us ul.follow li a:hover {
    background: var(--color1);
}

.follow-us ul.follow li a i {
    font-size: 18px;
    margin: 0;
}

.bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-links a:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #ccc;
    margin: 0 15px;
    vertical-align: middle;
}

.footer-column {
    display: grid;
    justify-content: start;
    gap: 20px;
}

.footer-column ul li i {
    font-size: 12px;
    margin-right: 6px;
}

.footer-info-list li .icon i {
    font-size: 18px;
    margin: 0;
}

.footer-column h2 {
    color: #fff;
    /* font-family: "Work Sans", system-ui, sans-serif; */
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.footer-column a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-contact a {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #ffffff40;
    margin-top: 30px;
    padding-top: 20px;
}

.footer-bottom .bottom-content {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    font-size: 15px;
    align-items: center;
}

.footer-bottom .bottom-content p a {
    font-weight: 700;
}

.footer-bottom .bottom-content p a:hover {
    text-decoration: underline;
}

.footer-bottom p {
    margin: 0;
}



.footer-bottom .bottom-content .bottom-links {
    display: flex;
    align-items: center;
}

.footer-main .footer-brand p {
    font-size: 15px;
}

@media (max-width: 980px) {

    .site-header,
    .hero,
    .split-section,
    .spotlight-section,
    .image-spotlight,
    .industries,
    .areas-section,
    .cta,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .primary-nav {
        position: fixed;
        inset: 68px 24px auto;
        z-index: 80;
        display: none;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: white;
        box-shadow: var(--shadow);
        padding: 14px;
    }

    .primary-nav.is-open {
        display: grid;
        gap: 4px;
    }

    .primary-nav>a,
    .nav-parent,
    .nav-dropdown a {
        min-height: 46px;
        display: flex;
        align-items: center;
        border-radius: 6px;
        padding: 0 12px;
    }

    .primary-nav>a:hover,
    .nav-parent:hover,
    .nav-dropdown a:hover {
        background: var(--soft);
    }

    .nav-item {
        display: grid;
        min-height: auto;
    }

    .nav-parent {
        justify-content: space-between;
        color: #1f2b3e;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        gap: 2px;
        padding: 0 0 8px 14px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown a {
        color: #41516a;
        font-size: 12px;
        font-weight: 700;
    }

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

    .nav-cta {
        display: none;
    }

    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .hero {
        width: min(100% - 40px, 760px);
        gap: 44px;
    }

    .hero-copy h1,
    .hero-copy p {
        max-width: 680px;
    }

    .hero-media {
        min-height: auto;
    }

    .outcome-grid,
    .comparison-grid,
    .generator-grid,
    .feature-grid,
    .results-grid,
    .resource-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .spotlight-section,
    .image-spotlight {
        gap: 34px;
    }

    .ppc-metrics {
        width: calc(100% - 320px);
    }

    .trusted-strip {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .partner-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 18px;
    }
}

@media (max-width: 1120px) {
    .site-header {
        width: min(100% - 48px, 1040px);
        height: 76px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 20px;
    }

    .brand img {
        width: 74px;
    }

    .nav-toggle {
        position: relative;
        z-index: 95;
        display: inline-flex;
        width: 48px;
        height: 48px;
        border-radius: var(--radius);
        box-shadow: 0 12px 26px rgba(7, 21, 47, 0.08);
        touch-action: manipulation;

    }

    .nav-cta {
        display: none;
    }

    .primary-nav {
        position: fixed;
        top: 10px;
        left: 50%;
        z-index: 90;
        width: min(520px, calc(100vw - 20px));
        max-height: 100%;
        display: none;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow-y: auto;
        border: 1px solid rgba(219, 230, 244, 0.92);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 28px 80px rgba(7, 21, 47, 0.2);
        padding: 100px 20px 15px 20px;
        transform: translateX(-50%);
        height: 100%;
        bottom: 50px;
    }

  

    .primary-nav.is-open {
        display: block;
    }

    nav#primary-menu a {
        font-size: 15px;
        font-weight: 500;
        color: #000;
    }

    .primary-nav>a,
    .nav-parent,
    .primary-nav .mobile-menu-cta {
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0px;
        text-transform: capitalize;
    }

    .primary-nav>a:hover,
    .primary-nav>a:focus-visible,
    .nav-parent:hover,
    .nav-parent:focus-visible,
    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
        background: var(--soft);
        color: var(--blue);
    }

    .nav-item {
        min-height: auto;
    }

    .nav-parent {
        width: 100%;
        border: 0;
        background: transparent;
    }

    .nav-item.is-expanded .nav-parent {
        color: var(--blue);
    }

    .nav-item.is-expanded .nav-chevron {
        transform: rotate(180deg);
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        display: none;
        gap: 4px;
        border: 0;
        border-radius: 12px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 6px;
        transform: none;
        transition: none;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
        transform: none;
    }

    .nav-item.is-expanded .nav-dropdown {
        display: grid;
    }

    .nav-dropdown a {
        min-height: 42px;
        display: flex;
        align-items: center;
        border-radius: 10px;
        padding: 0 12px;
        color: #40536f;
        font-size: 13px;
        font-weight: 700;
        text-transform: none;
        white-space: normal;
    }

    .primary-nav .mobile-menu-cta {
        justify-content: center;
        border: 0;
        background: var(--color1);
        color: white;
        color: #fff !important;
        padding: 15px;
        border-radius: var(--radius);
    }
}

@media (min-width: 981px) and (max-width: 1120px) {
    .hero {
        width: min(100% - 48px, 1040px);
    }
}

@media (max-width: 620px) {

    .site-header,
    main>section,
    .footer {
        width: min(100% - 32px, 520px);
    }

    .site-header {
        height: 74px;
    }

    .proof-section {
        padding: 40px 0 0;
    }

    .brand img {
        width: 100px;
    }

    .split-section {
        padding: 40px 0;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        width: min(100% - 32px, 520px);
        gap: 28px;
        padding: 30px 0 34px;
    }

    .nav-cta {
        display: none;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(32px, 8vw, 36px);
        line-height: 1.08;
    }

    .hero-copy h1 .nowrap {
        white-space: normal;
    }

    .hero-copy h1 span::after {
        bottom: -5px;
        height: 5px;
    }

    .hero-copy p {
        max-width: 100%;
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-rating {
        width: 100%;
        max-width: 360px;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
        padding: 8px 10px;
    }

    .hero-rating-logos {
        width: 110px;
    }

    .rating-line {
        gap: 10px;
        font-size: 15px;
    }

    .rating-stars {
        font-size: 17px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-actions,
    .dashboard-grid,
    .outcome-grid,
    .comparison-grid,
    .generator-grid,
    .feature-grid,
    .results-grid,
    .resource-grid,
    .service-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
        max-width: 360px;
        display: grid;
        gap: 12px;
        margin-top: 22px;
    }

    .hero-rating+.hero-actions {
        margin-top: 14px;
    }

    .hero-actions .button.primary,
    .hero-actions .button.secondary {
        width: 100%;
        min-height: 48px;
        justify-self: stretch;
        padding: 0 16px;
    }

    .button.secondary {
        border-color: #d6e2f1;
        background: rgba(255, 255, 255, 0.74);
        box-shadow: 0 10px 26px rgba(7, 21, 47, 0.06);
    }

    .signal-row {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 24px;
    }

    .signal-row span {
        min-height: 38px;
        display: flex;
        align-items: center;
        border: 1px solid #dbe6f4;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        padding: 8px 10px 8px 32px;
        font-size: 11px;
        line-height: 1.25;
    }

    .signal-row span::before {
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }

    .hero-dashboard {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 44px 1fr;
        border-radius: 10px;
        height: auto;
        overflow: hidden;
        margin-top: 30px;
    }

    .dashboard-window,
    .dashboard-panels,
    .dashboard-panels article {
        min-width: 0;
    }

    .dashboard-rail {
        gap: 12px;
        padding: 12px 0;
    }

    .dashboard-rail span {
        width: 27px;
        height: 27px;
    }

    .dashboard-title {
        padding: 0 14px;
    }

    .dashboard-panels {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: auto;
        gap: 12px;
        padding: 14px;
    }

    .progress-content {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .published-panel {
        min-height: auto;
    }

    .trusted-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 14px;
        text-align: center;
    }

    .partner-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-logo {
        justify-content: flex-start;
        font-size: 18px;
    }

    .partner-logo.google {
        font-size: 23px;
    }

    .hero-media {
        min-height: auto;
    }

    .floating-card {
        position: static;
        margin-top: 14px;
        width: auto;
    }

    .media-composition {
        grid-template-columns: 1fr;
    }

    .media-composition .wide,
    .media-composition img {
        height: auto;
    }

    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-grid img {
        min-height: 132px;
        height: 132px;
    }

    .industry-grid figcaption {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 6px 7px;
        font-size: 11px;
    }

    .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .area-grid a {
        min-height: 38px;
        padding: 0 10px;
        font-size: 12px;
    }

    .people-row,
    .footer-bottom div {
        flex-wrap: wrap;
    }

    .generator-suite,
    .dark-suite,
    .services-section,
    .industries,
    .footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .spotlight-visual img {
        height: auto;
        min-height: 260px;
    }

    .comparison-section {
        padding: 24px 0;
    }

    .generator-suite {
        padding: 30px max(24px, calc((100vw - 1180px) / 2));
    }

    .dark-suite {
        padding: 30px max(24px, calc((100vw - 1180px) / 2));
    }

    .results-section,
    .resource-section {
        padding: 30px 0;
    }

    .industries {
        gap: 8px !important;
    }

    .faq-accordion .accordion-button::after {
        width: 30px;
        height: 30px;
    }

    .faq-section {
        padding: 30px 0;
    }

    .areas-section {
        padding: 30px 0;
    }

    .services-section {
        padding: 30px max(24px, calc((100vw - 1180px) / 2));
    }

    .spotlight-section {
        padding: 30px 0;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 28px;
    }

    .comparison-grid::after,
    .comparison-grid::before {
        display: none;
    }



    .comparison-card h3 {
        font-size: 25px;
    }

    .ppc-ui-visual,
    .image-builder-visual {
        min-height: auto;
        padding: 18px;
    }

    .image-spotlight>div {
        order: 1;
    }

    .image-spotlight>.spotlight-visual {
        order: 2;
    }

    .ad-panel,
    .builder-canvas {
        width: 100%;
    }

    .landing-stack,
    .thumbnail-rail {
        position: static;
        width: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 14px;
    }

    .landing-stack article {
        width: auto;
    }

    .target-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin-top: 14px;
    }

    .ppc-metrics,
    .builder-status {
        position: static;
        width: auto;
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .image-spotlight .builder-canvas img {
        height: 180px;
        min-height: 0;
    }

    .image-spotlight .thumbnail-rail img {
        height: 82px;
        min-height: 0;
    }



    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

span.rating-stars span {
    color: #000;
}

span.rating-line span {
    font-weight: 600;
    font-size: 16px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .footer {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .hero-rating {
        gap: 8px;
        padding-inline: 8px;
    }

    .hero-rating-logos {
        width: 98px;
    }

    .rating-line {
        gap: 8px;
        font-size: 14px;
    }

    .rating-stars {
        font-size: 16px;
    }
}















h2.sect-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 50px;
}



/* Hero Styling */
.hero-section {
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #d4d4d47a;
    /*border-bottom: 1px solid #d4d4d47a;*/

}

p.banner-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.mesh-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.signal-row {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 100%;
    FONT-WEIGHT: 600;
    flex-wrap: wrap;
}

.signal-row span {
    padding-left: 32px;
    font-size: 15px;
    position: relative;
    font-weight: 500;
    color: #444;
}

.signal-row span::before {
    content: "\2713";
    position: absolute;
    top: 1px;
    left: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 13px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

.mesh-bg .blob-1 {
    position: absolute;
    top: 0;
    left: 20%;
    width: 800px;
    height: 800px;
    background: rgba(81, 56, 238, 0.1);
    filter: blur(120px);
    border-radius: 50%;
}

.mesh-bg .blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: rgba(255, 92, 2, 0.05);
    filter: blur(100px);
    border-radius: 50%;
}

.badge-ai {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--color1);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 9999px;
    margin-bottom: 15px;
}

.display-hero {
    font-size: 55px;
    font-weight: 800;
    line-height: 65px;
    margin-bottom: 15px;
    color: #000;
    text-transform: capitalize;
}

.hero-section .row h3 {
    color: #000;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 7px;
}

section.sec-padding {
    padding: 70px 0;
}

.sec-title.text-center {
    margin-bottom: 35px;
}

section.sec-padding .brand-img-sec {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 35px;
}

section.sec-padding .brand-img-sec .img-box {
    height: 90px;
    background: #fff;
    /*border: 1px solid rgba(0,0,0,0.06);*/
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 0 6px 0 #0002;
}

section.sec-padding .brand-img-sec .img-box img {
    max-width: 155px;
    max-height: 60px;
    object-fit: contain;
}

.gradient-text {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

button.btn.btn-cta-primary:hover {
    background: #fff;
    color: var(--color1) !important;
}
button.btn.btn-cta-primary.system:hover {
    background: var(--color1);
    color: #fff !important;
}

.btn-cta-primary {
    background: var(--color2);
    color: white;
    padding: 12px 18px !important;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

a.btn.btn-cta-primary i {
    font-size: 14px;
    margin-left: 4px;
}

div#demo a.btn.btn-cta-primary {
    background: #fff;
    color: var(--color1);
}

div#demo a.btn.btn-cta-primary:hover,
div#demo a.btn.btn-cta-primary:focus,
div#demo a.btn.btn-cta-primary:active,
div#demo a.btn.btn-cta-primary.active {
    background: var(--color2) !important;
    color: #fff !important;
}

.btn:first-child:active {
    background: var(--color2) !important;
    color: #fff !important;
}

:not(.btn-check)+.btn:active {
    background: var(--color2) !important;
    color: white !important;

}

.btn-cta-primary:hover {
    color: white;
    background: var(--color1);
}

.btn-cta-outline {
    background: var(--color1);
    color: #fff;
    padding: 12px 18px !important;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    gap: 10px;
    display: flex;
    align-items: center;
}

section.engine-designed h3.title-card {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px
}

.bento-primary h3.title-card,
.bento-dark h3.title-card {
    color: #fff;
}

section.engine-designed .material-symbols-outlined {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: var(--color2);
    border-radius: var(--radius);
    border: 0;
    min-width: 60px;
    min-height: 60px;
}

section.engine-designed .material-symbols-outlined img {
    width: 35px;
    height: 35px;
    display: flex;
    filter: brightness(0) invert(1);
}

.btn-cta-outline:hover {
    background: var(--color2);
    color: white;
}

.browser-frame {
    perspective: 2000px;
}

.browser-content {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateY(-12deg) rotateX(5deg);
    transition: transform 0.7s ease-out;
}

.browser-content:hover {
    transform: rotateY(0) rotateX(0);
}

.browser-header {
    background: #dae2fdcc;
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ba1a1a66;
}

.dot-yellow {
    background: #fc5a0066;
}

.dot-green {
    background: #10b98166;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;
    transition: box-shadow 0.3s;
    box-shadow: 0 0 6px 0 #0002;
    display: flex;
    gap: 20px;
}



.bento-dark {
    background: #182033;
    color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    box-shadow: 0 0 6px 0 #0002;
}

.bento-primary {
    background: var(--color1);
    color: white;
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    box-shadow: 0 0 6px 0 #0002;
}

.section-padding {
    padding: 120px 0;
}

.bg-subtle {
    background-color: #f2f3ff;
}

.old-way-card {
    background: rgba(218, 226, 253, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
}

.new-way-card {
    background: rgba(81, 56, 238, 0.2);
    border: 2px solid #5138ee;
    box-shadow: 0 0 50px rgba(81, 56, 238, 0.3);
    border-radius: 2rem;
    padding: 2.5rem;
}

.expert-img-container {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: transform 0.5s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.expert-img-container:hover {
    transform: scale(1.05);
}

.feature-box {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.feature-box:hover img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}


.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.location-tag {
    background: white;
    padding: 10px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.85rem;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.location-tag:hover {
    background: var(--color2);
    color: white;
    border-color: var(--color2);
}

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

.section-title h2 {
    margin-bottom: 20px;
}


section.sec-padding.map {
    background: var(--color1);
    color: #fff;
}

section.sec-padding.map p {
    color: #fff;
}

section.sec-padding.map img {
    width: 100%;
    border-radius: var(--radius);
}

section.sec-padding.map h2.sect-title {
    color: #ffff;
    MARGIN-BOTTOM: 15PX;
}

h3.map-title {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

section.sec-padding.map .badge-ai {
    background: #fff;
    color: var(--color1);
}

.count-box {
    background: #fff;
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color1);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    /* margin-top: 6px; */
    min-width: 27px;
    min-height: 27px;
}

.city-wide-img {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    background: #fff;
}

.section-heading {
    margin-bottom: 35px;
}

.section-kicker {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(79, 70, 229, .1);
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.1;
}

.section-heading p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

/* SEO CARD */

.seo-card {
    position: relative;
    background: var(--color1);
    color: #fff;
    padding: 25px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(67, 56, 202, .25);
}

.seo-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -140px;
    right: -120px;
}

.seo-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -90px;
    left: -90px;
}

.seo-card>* {
    position: relative;
    z-index: 2;
}

.seo-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-card h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.seo-card p {
    line-height: 1.8;
    margin-bottom: 7px;
}

.seo-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.seo-stat span {
    font-size: 25px;
    font-weight: 500;
    font-family: "Sora", sans-serif !important;

}

.seo-progress {
    height: 10px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 25px;
}

.seo-progress-bar {
    width: 88%;
    height: 100%;
    border-radius: 50px;
    background: #22c55e;
}

.seo-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    margin-top: 24px;
}

.seo-chart .bar {
    flex: 1;
    border-radius: 10px 10px 0 0;
    background: rgba(255, 255, 255, .3);
}

.b1 {
    height: 35%;
}

.b2 {
    height: 55%;
}

.b3 {
    height: 70%;
}

.b4 {
    height: 85%;
}

.b5 {
    height: 100%;
}

/* FAQ */

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    padding: 13px 18px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #4f46e5;
    color: #fff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #eef2ff;
    background-position: center;
    background-size: 14px;
    padding: 12px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: #fff;
}

.faq-accordion .accordion-body {
    padding: 20px 15px;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    
    
}

@media (max-width:991px) {

    .faq-section {
        padding: 80px 0;
    }
    
      .navbar-link,
    .nav-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #d4d4d44d;
        padding-bottom: 14px;
    }

    .seo-card {
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 38px;
    }
}

@media (max-width:767px) {
   
    .faq-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .seo-card {
        padding: 15px;
    }

    .seo-card h3 {
        font-size: 24px;
    }

    .faq-accordion .accordion-button {
        font-size: 16px;
        padding: 10px 15px;
    }

    .faq-accordion .accordion-body {
        padding: 15px;
    }

    .faq-accordion .accordion-button::after {
        width: 15px;
        height: 15px;
    }
}


.sec-title h2.sect-title {

    color: #000;
    margin-bottom: 10px;
}

.sec-title p {
    color: #444;
    font-size: 16px;
}

/* GRID */
.location-grid {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

/* ITEM STYLE */
.location-tag {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 11px 12px;
    text-align: start;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

/* ICON VIA CSS (Font Awesome Unicode) */
.location-tag::before {
    content: "\f3c5";
    /* Font Awesome location-dot */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    background: var(--color1);
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

/* HOVER */
.location-tag:hover {
    background: var(--color1);
    color: #fff;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
    border-color: transparent;
}

.location-tag:hover::before {
    background: #fff;
    color: var(--color1);
}


section.industires-era.sec-padding {
    background: var(--color1);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .location-grid {
        grid-template-columns: repeat(4, 1fr);
    }
   
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-title h2.sect-title {
        font-size: 26px;
        line-height: normal;
    }
}

@media (max-width: 480px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 140px 0 20px;
        text-align: center;
    }
       
    .badge-ai,
    .badge.bg-light.text-dark.px-3.py-2.fw-bold.mb-4 {
        display: none;
    }

    section.hero-section .col-lg-6 {
        margin: 0px !important;
    }

    .display-hero {
        font-size: 34px;
        font-weight: 800;
        line-height: 42px;
        margin-bottom: 14px;
        color: #000;
        text-transform: capitalize;
    }

    .display-hero br {
        /* font-size: 2.5rem; */
        display: none;
    }

    p.banner-desc {
        font-size: 16px;
        color: #444;
        margin-bottom: 15px;
    }

    .btn-cta-primary {
        width: 100%;
        padding: 10px 15px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .result-stats span {
        text-align: center;
    }

    .hero-section .btn-cta-outline {
        display: none;
    }

    .drs-feature-item i {
        color: var(--color1);
    }

    .signal-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
        margin-top: 15px;
        justify-content: start;
    }

    .signal-row span {
        padding: 0 0 0 25px;
        font-size: 15px;
        position: relative;
        font-weight: 500;
        color: #444;
        text-align: start;
        background: transparent;
        border: 0;
    }

    .signal-row span::before {
        top: 20px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    section.sec-padding .brand-img-sec {
        gap: 10px;
        margin-top: 20px;

    }

    section.sec-padding .brand-img-sec .img-box {
        width: auto;
        height: auto;
        padding: 7px;


    }

    img.logo-mobile {
        width: 50px;
        height: 49px;
    }


    section.sec-padding {
        padding: 50px 0 !important;
    }

    h2.sect-title {
        font-size: 30px;
    }

    .glass-card,
    .bento-primary,
    .bento-dark {
        padding: 15px;
        display: block;
    }

    section.engine-designed h3.title-card {
        font-size: 24px !important;
    }

    section.sec-padding.map .row {
        flex-direction: column-reverse;
    }

    section.sec-padding.map .city-wide-img {
        margin-top: 20px;
    }

}

.find-feature {
    position: relative;
    margin-top: 17px;
    z-index: 2;
}

.drs-features {
    background: var(--color2);
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    z-index: 99999;
    position: relative;
    border-radius: var(--radius);
}

.drs-feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px;
    position: relative;
    justify-content: start;
}

.drs-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #d4d4d4;
}

.drs-feature-item i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color2);
    background: #fff;
}

.drs-items span {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: -2px;
}

.drs-feature-item .features-title {
    margin: -3px 0 1px;
    font-size: 13px;
    color: #fff;
}

button.btn.btn-cta-outline i {
    font-size: 17px;
    margin: 4px 5px 0px 0px;
}

.rating_banner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    background: #fff;
    max-width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    /*border: 1px solid #d4d4d4;*/
    margin-bottom: 20px !important;
    box-shadow: 0 0 6px 0 #0002;
}

.rating-img img {
    width: 100px;
}

.bnr-ul-listng ul {
    padding: 0;
    margin-bottom: 20px;
}

.star img {
    vertical-align: sub;
}

.proof-story-layout {
    /*width: min(1240px, calc(100% - clamp(40px, 7vw, 112px)));*/
    display: grid;
    grid-template-columns: minmax(390px, 0.82fr) minmax(520px, 1.18fr);
    gap: clamp(15px, 15px, 15px);
    align-items: stretch;
    margin: 0 auto;
}

.proof-story-card {
    min-height: 444px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dbe7f4;
    border-radius: var(--radius);
    background: var(--color1);
    padding: clamp(15px, 3vw, 20px);
    box-shadow: 0 24px 70px rgba(7, 21, 47, 0.08);
}

.story-avatars {
    display: flex;
    align-items: center;
}

.story-avatars img {
    width: 58px;
    height: 58px;
    border: 4px solid white;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 14px 28px rgba(7, 21, 47, 0.12);
}

.story-avatars img+img {
    margin-left: -16px;
}

.story-quote {

    color: #fff;
    font-size: clamp(24px, 2.25vw, 34px);
    line-height: 1.16;
    font-weight: 700;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding-top: 34px;
}

.story-author img {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.story-author strong,
.story-author span {
    display: block;
}

.story-author strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.story-author span {
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.story-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.story-proof span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #dce8f5;
    border-radius: 999px;
    background: #f8fbff;
    padding: 0 13px;
    color: #24405f;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.story-proof span::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 106, 33, 0.12);
}

.outcome-list {
    display: grid;
    gap: 16px;
}

.outcome-list article {
    position: relative;
    min-height: 99px;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid #dbe7f4;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    padding: 15px 22px;
    box-shadow: 0 18px 46px rgba(7, 21, 47, 0.055);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.outcome-list article::after {
    content: "";
    position: absolute;
    inset: 18px auto 18px 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color1), var(--color2));
    opacity: 0;
    transition: opacity 180ms ease;
}

.outcome-list article:hover {
    border-color: var(--color1);
    box-shadow: 0 26px 60px rgba(7, 21, 47, 0.08);
}

.outcome-list article:hover::after {
    opacity: 1;
}

.outcome-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 106, 33, 0.18);
    border-radius: var(--radius);
    background: #fff7f2;
}

.outcome-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.outcome-list h3 {
    margin: 0;
    color: #000;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    font-family: "Sora", sans-serif !important;
}

.outcome-list p {
    max-width: 560px;
    margin: 8px 0 0;
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

.ppc-landing-showcase-sec {
    position: relative;
}

.ppc-landing-showcase-wrap {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 50px;
    align-items: center;
}

.image-spotlight {
    grid-template-columns: 1.08fr 0.92fr;
    display: grid;
    gap: 40px;
}

.ppc-landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ppc-landing-image-box {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 15px;
}

.ppc-landing-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
}

.ppc-landing-checklist {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.ppc-landing-checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #1f2937;
    font-weight: 500;
}

.ppc-landing-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-services-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
}

.popular-pages-card,
.industry-directory a,
.custom-industry-cta {
    border: 1px solid rgba(201, 218, 238, 0.92);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 54px rgba(7, 21, 47, 0.07);
}

.popular-pages-card {
    border-radius: var(--radius);
    padding: 22px;
}

.popular-pages-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.popular-pages-mark {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(18, 87, 242, 0.12), rgba(18, 87, 242, 0.02)),
        #ffffff;
    box-shadow: inset 0 0 0 1px rgba(18, 87, 242, 0.16);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--color1);
}

span.industry-page-icon i {
    color: #fff;
    font-size: 15px;
}

/*.popular-pages-mark::before,*/
/*.popular-pages-mark::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  border-radius: 999px;*/
/*  background: var(--color1);*/
/*}*/

.popular-pages-mark::before {
    inset: 12px 11px 12px 23px;
}

.popular-pages-mark::after {
    width: 18px;
    height: 18px;
    left: 10px;
    top: 14px;
    background:
        radial-gradient(circle at center, #ffffff 0 32%, transparent 34%),
        var(--color1);
}

.popular-pages-header h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1.05;
    font-weight: 900;
}

.popular-pages-header p {
    margin: 6px 0 0;
    color: #526782;
    font-size: 14px;
    line-height: 1.45;
}

.popular-page-list {
    display: grid;
    gap: 10px;
}

.popular-page-link,
.industry-directory a {
    color: var(--ink);
    text-decoration: none;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        color 180ms ease;
}

.popular-page-link {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 78px;
    border: 1px solid #dde9f6;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 12px 14px;
}

.popular-page-link:hover,
.popular-page-link:focus-visible,
.industry-directory a:hover,
.industry-directory a:focus-visible {
    border-color: var(--color1);
    ;
    box-shadow: 0 20px 42px rgba(18, 87, 242, 0.11);
    outline: none;
}

.industry-page-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--color1);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.popular-page-link b,
.industry-directory span {
    display: block;
    color: #000;
    font-size: 15px;
    line-height: 1.22;
    font-weight: 700;
    font-family: "Sora", sans-serif !important;
    font-family: "Sora", sans-serif !important;
}

.popular-page-link em {
    display: block;
    margin-top: 4px;
    color: #61738c;
    font-size: 12px;
    line-height: 1.3;
    font-style: normal;
    font-weight: 700;
}

.popular-page-link i,
.industry-directory i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(18, 87, 242, 0.1);
    color: var(--color1);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.industry-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.industry-directory a {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: var(--radius);
    padding: 16px 14px 16px 18px;
}

.industry-directory a::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color1);
    box-shadow: 0 0 0 5px rgba(22, 178, 114, 0.1);
}

.industry-directory span {
    flex: 1 1 auto;
}

.custom-industry-cta {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px auto 0;
    border-radius: var(--radius);
    padding: 16px 18px 16px 24px;
}

.custom-industry-cta strong {
    display: block;
    color: #000;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Sora", sans-serif !important;
}

.custom-industry-cta>div>span {
    display: block;
    margin-top: 4px;
    color: #526782;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.custom-industry-cta .button.primary {
    min-width: 220px;
    min-height: 50px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue), #4f35eb);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(18, 87, 242, 0.22);
}

.custom-industry-cta .button.primary span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--blue);
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
}

@media (max-width: 980px) {
    .industry-services-layout {
        grid-template-columns: 1fr;
    }

    .industry-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .industry-services-section {
        padding-top: 64px;
        padding-bottom: 70px;
    }

    .industry-services-heading {
        margin-bottom: 28px;
    }

    .popular-pages-card {
        padding: 14px;
        border-radius: var(--radius);
    }

    .popular-pages-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .popular-pages-mark,
    .industry-page-icon {
        width: 40px;
        height: 40px;
    }

    .popular-page-link {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        min-height: 72px;
        gap: 10px;
        padding: 10px;
    }

    .popular-page-link b,
    .industry-directory span {
        font-size: 13px;
    }

    .popular-page-link em {
        font-size: 11px;
    }

    .industry-directory {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .industry-directory a {
        min-height: 60px;
        padding: 13px 12px 13px 16px;
    }

    .custom-industry-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    .custom-industry-cta .button.primary {
        width: 100%;
        min-width: 0;
    }
}

/* Fix the suitable-industries image section after the global container pass. */
.industries {
    box-sizing: border-box;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: clamp(34px, 4vw, 56px);
}

.industries .industry-copy,
.industries .industry-grid {
    min-width: 0;
}

.industry-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}



.industry-grid img {
    display: block;
    height: 100%;
    min-height: 172px;
}

.review-icon img {
    width: 22px;
}

.review-rating-card {
    max-width: max-content;
    background: #fff;
    border: 1px solid #d4d4d478;
    border-radius: 12px;
    padding: 8px 9px;
    display: flex;
    align-items: start;
    gap: 8px;
    box-shadow: 0 20px 60px rgba(109, 92, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.review-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #6c63ff;
    border: 1px solid #d4d4d438;
    flex-shrink: 0;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1px;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #08162f;
    line-height: 1;
}

.review-rating-card .stars img {
    width: 75px;
}

.stars {
    color: #f4b400;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1;
}

.review-text {
    font-size: 13px;
    color: #000;
    margin-bottom: 0px;
    font-weight: 500;
}

.review-platforms {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #000;
    font-weight: 500;
}

.platform img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.divider {
    width: 1px;
    height: 15px;
    background: #ececec;
}

.trust-star {
    color: #00b67a;
    font-size: 18px;
}

.insight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: 18px;
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
}

.featured-insight-card,
.insight-list-card {
    overflow: hidden;
    border: 1px solid rgba(201, 218, 238, 0.92);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 52px rgba(7, 21, 47, 0.07);
}

.featured-insight-card a,
.insight-list-card a {
    color: inherit;
    text-decoration: none;
}

.featured-insight-card a {
    display: grid;
    height: 100%;
}

.featured-insight-card img {
    width: 100%;
    height: clamp(280px, 25vw, 370px);
    display: block;
    object-fit: cover;
}

.featured-insight-body {
    padding: 22px 24px 24px;
}

.insight-category {
    display: inline-flex;
    color: var(--orange);
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-insight-body h3 {
    margin: 12px 0 0;
    color: var(--ink);
    font-size: clamp(26px, 2.1vw, 34px);
    line-height: 1.08;
    font-weight: 900;
}

.featured-insight-body p {
    max-width: 640px;
    margin: 12px 0 0;
    color: #5a6d86;
    font-size: 16px;
    line-height: 1.55;
}

.insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 18px;
    color: #6d7f97;
    font-size: 13px;
    font-weight: 700;
}

.insight-meta span+span {
    position: relative;
    padding-left: 14px;
}

.insight-meta span+span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9cadc4;
    transform: translateY(-50%);
}

.featured-insight-body strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
}

.featured-insight-card,
.insight-list-card {
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.featured-insight-card:hover,
.featured-insight-card:focus-within,
.insight-list-card:hover,
.insight-list-card:focus-within {
    border-color: rgba(18, 87, 242, 0.34);
    box-shadow: 0 28px 66px rgba(18, 87, 242, 0.11);
    transform: translateY(-2px);
}

.insight-stack {
    display: grid;
    gap: 12px;
}

.insight-list-card a {
    min-height: 176px;
    display: grid;
    grid-template-columns: minmax(160px, 0.82fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 16px 14px 14px;
}

.insight-list-card img {
    width: 100%;
    height: 142px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.insight-list-card h3 {
    margin: 10px 0 0;
    color: var(--ink);
    font-size: clamp(19px, 1.45vw, 24px);
    line-height: 1.12;
    font-weight: 900;
}

.insight-list-card p {
    margin: 14px 0 0;
    color: #73849a;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.insight-list-card i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(18, 87, 242, 0.1);
    color: var(--blue);
    font-style: normal;
    font-size: 17px;
    font-weight: 900;
}

.blog-insights-section .section-action {
    margin-top: 28px;
}

.blog-insights-section .button.primary {
    min-width: 250px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue), #4f35eb);
    box-shadow: 0 22px 42px rgba(18, 87, 242, 0.24);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.blog-insights-section .button.primary span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--blue);
    line-height: 1;
}

@media (max-width: 1120px) {
    .insight-layout {
        grid-template-columns: 1fr;
    }

    .insight-list-card a {
        grid-template-columns: 220px minmax(0, 1fr) auto;
    }
}

@media (max-width: 620px) {
    .blog-insights-section {
        padding-top: 62px;
        padding-bottom: 72px;
    }

    .blog-insights-heading {
        margin-bottom: 28px;
    }

    .blog-insights-heading p {
        font-size: 16px;
    }

    .featured-insight-card img {
        height: 210px;
    }

    .featured-insight-body {
        padding: 18px;
    }

    .featured-insight-body h3 {
        font-size: 25px;
    }

    .insight-list-card a {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding: 12px;
    }

    .insight-list-card img {
        height: 158px;
    }

    .insight-list-card i {
        position: absolute;
        right: 20px;
        bottom: 20px;
    }

    .insight-list-card {
        position: relative;
    }

    .insight-list-card h3 {
        padding-right: 42px;
        font-size: 20px;
    }

    .blog-insights-section .button.primary {
        width: 100%;
        min-width: 0;
    }
}

section.cta-spacing {
    padding-bottom: 70px;
}
section.cta-spacing div#demo {
    border-radius: var(--radius)!important;
}

.spc-demo-cta-section {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;

    background: var(--color1);
    padding: 46px;
    color: #fff;
}

.spc-demo-cta-content {
    max-width: 700px;
}

.spc-demo-cta-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.spc-demo-cta-text {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.spc-demo-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #fff;
    color: var(--color1);
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all .3s ease;
    white-space: nowrap;
}

.spc-demo-cta-button i {
    font-size: 15px;
    margin-left: 10px
}

.spc-demo-cta-button:hover {
    background: var(--color2);
    color: #fff;
}


.event-gallery {
    width: min(100%, var(--event-max));
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 24px;
    margin: 0 auto;
}

.event-gallery-column {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.event-gallery-column-left {
    grid-template-rows: 477px 230px;
}

.event-gallery-column-right {
    grid-template-rows: 250px 456px;
}

.event-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}

.event-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 2px solid var(--event-white);
    border-radius: var(--radius);
    background: #eaf1fb;
    box-shadow: var(--event-shadow);
    isolation: isolate;
}

.event-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 62%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 21, 47, 0) 0%, rgba(7, 21, 47, 0.78) 100%);
    pointer-events: none;
}

.event-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 520ms ease;
}

.event-card:hover img {
    transform: scale(1.035);
}

.event-card-networking img {
    object-position: 53% 50%;
}

.event-card-awards img {
    object-position: 56% 45%;
}

.event-card-media img {
    object-position: 58% 52%;
}

.event-card-booth img {
    object-position: 50% 50%;
}

.event-card-keynote img {
    object-position: 42% 50%;
}

.event-card-copy {
    position: absolute;
    left: clamp(18px, 2vw, 28px);
    right: clamp(18px, 2vw, 28px);
    bottom: clamp(18px, 2vw, 28px);
    z-index: 2;
    color: #ffffff;
}

.event-card-copy span {
    display: inline-flex;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.event-card-copy h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.event-card-copy p {
    max-width: 620px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.43;
    font-weight: 700;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
    display: none;
}

.event-mini-grid .event-card-copy h3 {
    font-size: clamp(20px, 1.75vw, 25px);
}

.event-mini-grid .event-card-copy p,
.event-card-awards .event-card-copy p {
    font-size: 14px;
}

.event-initiative-note {
    width: min(100%, var(--event-max));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 28px auto 0;
    border: 1px solid rgba(219, 230, 244, 0.96);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    padding: 22px 24px;
    box-shadow: 0 18px 50px rgba(7, 21, 47, 0.07);
}

.event-initiative-note strong {
    display: block;
    color: var(--event-ink);
    font-size: clamp(19px, 1.5vw, 24px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.015em;
}

.event-initiative-note p {
    max-width: 820px;
    margin: 7px 0 0;
    color: #5d6e86;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.event-initiative-note a {
    min-width: 190px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--event-blue), var(--event-purple));
    box-shadow: 0 20px 38px rgba(18, 87, 242, 0.24);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}



img.logo-mobile {
    display: none;
}


.featured-blog-card {
    background: #fff;
    border: 1px solid #dce6f5;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
}

.featured-blog-image {
    overflow: hidden;
    border-bottom: 1px solid #dce6f5;
}

.featured-blog-image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

/*.featured-blog-card:hover .featured-blog-image img{*/
/*    transform:scale(1.05);*/
/*}*/

.featured-blog-content {
    padding: 20px;
}

.blog-category {
    font-size: 13px;
    font-weight: 700;
    color: var(--color2);
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0px;
}

.featured-blog-content h3 {
    margin-bottom: 12px;
    line-height: 30px;
}

.blog-title-link {
    text-decoration: none;
    color: #000;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 600;
    transition: .3s ease;
}

.blog-title-link:hover {
    color: var(--color2);
}

.featured-blog-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #73819b;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.read-more-btn {
    text-decoration: none;
    color: var(--color1);
    font-size: 18px;
    font-weight: 700;
}

a.read-more-btn i {
    font-size: 15px;
}

.small-blog-card {
    background: #fff;
    border: 1px solid #dce6f5;
    border-radius: var(--radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    min-height: 200px;
}

.small-blog-image {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid #dce6f5;
}

.small-blog-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: .4s ease;
}

.small-blog-card:hover .small-blog-image img {
    transform: scale(1.03);
}

.small-blog-content {
    flex: 1;
}

.small-category {
    display: block;
    color: #ff6b2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.small-blog-content h3 {
    margin-bottom: 12px;
    line-height: 20px;
}

.small-blog-content .blog-title-link {
    font-size: 20px;
}

.small-meta {
    color: #7b89a4;
    font-size: 15px;
    font-weight: 600;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #edf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color1);
    font-size: 18px;
    flex-shrink: 0;
}

.featured-blog-image-link,
.small-blog-image-link {
    display: block;
}

.brand-section {
    background-color: var(--color1);
    padding: 40px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-text {
    font-weight: 600;
    color: #fff;
    /* margin-bottom: 20px; */
    font-size: 28px;
    line-height: 37px;
    font-family: "Sora", sans-serif !important;
    text-transform: capitalize;
    margin-bottom: 0;
}

/* The Box Container */
.logo-box {
    width: 150px;
    height: 73px;
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Logo itself */
.logo {
    max-width: 120px;
    max-height: 83px;
    object-fit: contain;
}

.su-profile-card {
    border-radius: var(--radius);
    border: none;
}

.su-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-img {
    min-width: 140px;
    min-height: 140px;
    background: var(--color2);
    border-radius: 100%;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    margin: auto;
}

.su-role-title {
    color: var(--color1);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

h3.su-role-title-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card.shadow-sm.su-profile-card .card-body {
    padding: 24px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
}




.su-badge-pill {
    background-color: #ede9ff;
    color: var(--color1);
    border: 1px solid #f7f7f7;
    padding: 8px 14px;
    font-weight: 600;
    border-radius: 21px;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.ppc-landing-showcase-sec.sec-padding.paid-campaign {
    background: var(--color1);
    color: #fff;
}

section.ppc-landing-showcase-sec.sec-padding.paid-campaign .badge-ai,
section.ppc-landing-showcase-sec.sec-padding.paid-campaign .ppc-landing-checklist li::before,
section.ppc-landing-showcase-sec.sec-padding.human-review-section .badge-ai {
    background: #fff;
    color: var(--color1);
}

section.ppc-landing-showcase-sec.sec-padding.paid-campaign .sec-title h2.sect-title,
section.ppc-landing-showcase-sec.sec-padding.paid-campaign .sec-title p,
section.ppc-landing-showcase-sec.sec-padding.paid-campaign .ppc-landing-checklist li,
section.ppc-landing-showcase-sec.sec-padding.human-review-section .sec-title h2.sect-title,
section.ppc-landing-showcase-sec.sec-padding.human-review-section .sec-title p {
    color: #fff;
}

section.ppc-landing-showcase-sec.sec-padding.paid-campaign .ppc-landing-checklist li::before {
    color: var(--color1);
}

section.ppc-landing-showcase-sec.sec-padding.human-review-section {
    background: var(--color1);
    color: #fff;
}

.review-bullet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.review-bullet-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #dbe7f4;
    border-radius: var(--radius);
    background: #ffffff;
    padding: 10px;
    color: #000;
    box-shadow: 0 12px 30px rgba(7, 21, 47, 0.045);
}

.review-icon {
    position: relative;
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color1);
    border-radius: var(--radius);
    background: #5138ed24;
    color: var(--color1);


}

.review-icon i {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-icon::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -7px;
    width: 17px;
    height: 17px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #12a865;
    box-shadow: 0 5px 12px rgba(18, 168, 101, 0.22);
}

.review-icon::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 6px;
    height: 3px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.review-bullet-card h3 {
    margin: 0;
    color: #061934;
    font-size: 15px;
    line-height: 1.22;
}

.review-bullet-card p {
    margin: 7px 0 0;
    color: #516780;
    font-size: 14px;
    line-height: 1.45;
}

.review-trust-card {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    border: 1px solid #dbe7f4;
    border-radius: var(--radius);
    background: #ffffff;
    padding: 12px 16px 12px 12px;
    box-shadow: 0 14px 34px rgba(7, 21, 47, 0.055);
}

.review-avatars {
    display: flex;
    align-items: center;
}

.review-avatars img {
    width: 38px;
    height: 38px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(7, 21, 47, 0.12);
}

.review-avatars img+img {
    margin-left: -10px;
}

.review-trust-card p {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 15px;
}

.feature-grid article .feature-icon-wrap {
    background: var(--color2);
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;

}

.feature-grid article:hover .feature-icon-wrap {
    background: var(--color1);
}

.feature-grid article .feature-icon-wrap img {
    width: 35px;
    height: 35px;

}

.spc-demo-cta-content .sec-title h2.sect-title,
.spc-demo-cta-content .sec-title p {
    color: #fff;
}

section.cta-section .cta-spacing {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.section-badge {
    display: inline-block;
    background: #fff1e6;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 30px;
    letter-spacing: .3px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: #1e2430;
    margin-bottom: 55px;
}

.metric-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: var(--radius);
    padding: 20px 20px;
    height: 100%;
    text-align:center;
}

.massbuilder-image-wrap {
    background: #fff;
    padding: 10px;
    border-radius: var(--radius);
}

.massbuilder-image-wrap img {
    border-radius: var(--radius);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.metric-icon svg {
    width: 40px;
    height: 40px;
}

.purple-icon {
    background: #f1ecff;
    color: var(--color1);
    transition: all 0.3s ease;
        margin: 0 auto 15px;

}

.orange-icon {
    background: #fff1e6;
    color: var(--color2);
}

.metric-card h3 {
    margin: 0;
    font-size: 17px;
    color: #000;
    font-weight: 600;
}

.metric-card p {
    font-size: 14px;
    color: #444;
    margin: -5px 0 0 0;

}

.center-metric {
    background: var(--color1);
    border-radius: var(--radius);
    color: #fff;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center-metric .percentage {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;

}

.center-metric h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.center-metric p {
    color: #fff;
    margin: auto;
    line-height: 1.6;
    font-size: 16px;
}

.metric-card .title {
        font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 29px;
}

.metric-card .description {
    color: #444;
    line-height: inherit;

}

.custom-card {
    background-color: #ffffff;
    border-radius: var(--radius);
    padding: 15px;
    border: none;
    height: 100%;
}

.card.custom-card ul.ppc-landing-checklist {
    MARGIN-TOP: 1PX;
    margin-top: 0px;
}

.custom-card .card-img {
    border: 1px solid #d7d7d740;
    margin-bottom: 22px;
}

.card-img-top {
    border-radius: var(--radius);
}

section.mpb-hero-section.sec-padding .sec-title {
    padding-right: 70px;
}

p.bottom-title {
    font-size: 23px;
    font-weight: 600;
}

.mpb-cards-container {
    position: relative;
    padding: 0px 0px 0px 20px;
}

.mpb-feature-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 0 6px 0 #0002;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.mpb-feature-card .industry-page-icon {
    min-width: 50px;
    min-height: 50px;
}

.mpb-feature-card .content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mpb-feature-card .content p {
    margin-bottom: 0px;
}

.mpb-card-top {
    margin-bottom: 20px;
}


.mpb-connector-line {
    position: absolute;
    left: -34px;
    top: 0;
    bottom: 61px;
    width: 1px;
    background: #e2e8f0;
    z-index: 1;
    height: 370px;
}

.mpb-rocket-icon {
    position: absolute;
    left: -60px;
    top: 40%;
    font-size: 27px;
    background: var(--color1);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    z-index: 3;
    min-width: 30px;
    min-height: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d4d4d4;
    padding: 1px;

}

.mpb-stats-row {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 40px;
}

.mpb-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 15px 25px;
}

.mpb-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: #e5e7eb;
}

.mpb-stat-item i {
    font-size: 25px;
    color: #fff;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--color1);
}

.mpb-stat-content span {
    display: block;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--color1);
}

.mpb-stat-content p {
    margin: 0;
    color: #444;
    font-size: 14px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    border-top: 1px solid #d4d4d44f;
    padding-top: 15px
}

.metric-card.profile p.description {
    margin-bottom: 15px;
}

.metric-card.profile.items {
    min-height: auto;
}

.metric-icon.purple-icon i {
    font-size: 23px;
}

.metric-card.profile.items:hover .purple-icon {
    background: var(--color1);
    color: #fff;
}
section.performance-section.sec-padding.local-landinf-pages .metric-card.profile {
    text-align: start;
    height: 100%;
}

section.performance-section.sec-padding.local-landinf-pages .metric-card.profile .metric-icon.purple-icon, section.performance-section.sec-padding.what-i-will-get .metric-card.profile.items .metric-icon.purple-icon {
    margin: unset;
    margin-bottom: 14px;
}
section.performance-section.sec-padding.what-i-will-get .metric-card.profile.items{
     text-align: start;
}
section.performance-section.platform.sec-padding.local-landing-pages .metric-card.profile {
    min-height: auto;
}
.metric-card.profile {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-direction: column;
}

.metric-card.profile:hover .purple-icon {
    background: var(--color1);
    color: #fff;
}

section.sec-padding.map.location ul.ppc-landing-checklist li {
    color: #fff;
}
section.sec-padding.map.solution.service.main-content .sec-title h3 {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
}
section.sec-padding.map.solution.service.main-content .city-wide-img {
    padding: 15px;
}
section.sec-padding.map.solution.service.main-content .city-wide-img .single-widget h3 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
        margin-bottom: 15px;
position: relative;
padding-bottom: 15px;

}

section.sec-padding.map.solution.service.main-content .sec-title {
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    padding:15px
}

section.sec-padding.map.solution.service.main-content .city-wide-img .single-widget h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color1);
    border-radius: 10px;
    z-index: 2;
    
}

section.sec-padding.map.solution.service.main-content .city-wide-img .single-widget .sidebar-search-box.info .wikibox h3 {
    display: none;
}
section.sec-padding.map.solution.service.main-content .city-wide-img .single-widget {
    margin-bottom: 30px;
}
section.sec-padding.map.service ul.ppc-landing-checklist li::before {
    top: 6px !important;
}


section.sec-padding.map.location ul.ppc-landing-checklist li::before {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: var(--color1);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.sec-padding.map.solution {
    background: #fff;
}

section.sec-padding.map.solution h2,
section.sec-padding.map.solution p {
    color: #1e293b;
}

section.sec-padding.map.solution .badge-ai {
    color: #fff;
    background: var(--color1);
}

.profile-image {
    width: 45px;
    /* Adjust size as needed */
    height: 45px;
    border-radius: 50%;
    /* Makes the image circular */
    object-fit: cover;
}

.profile-name {
    margin: 0;
    font-size: 17px;
    color: #000;
    font-weight: 600;
}

.profile-title {
    margin: 0;
    font-size: 16px;
    color: #444;
    /* A muted blue-grey color similar to your image */
}

section.performance-section.platform.sec-padding {
    background: var(--color1);
    color: #fff;
}

section.performance-section.platform.sec-padding .badge-ai, section.industires-era.sec-padding .badge-ai {
    background: #fff;
    color: var(--color1);
}

section.performance-section.platform.sec-padding h2,
section.performance-section.platform.sec-padding p,  section.industires-era.sec-padding h2, section.industires-era.sec-padding p {
    color: #fff;
}

section.performance-section.platform.sec-padding .metric-card.profile {
    height: auto;
    text-align:start;
}
section.performance-section.platform.sec-padding .metric-card.profile .metric-icon.purple-icon{
    margin:unset;
    margin-bottom:25px
}

section.performance-section.platform.sec-padding .metric-card.profile p.description {
    color: #444;
    margin: 10px 0 0 0;
}

.law-video-box {
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .12);
    box-shadow: 0 0 6px 0 #0002;

}

.law-video-header {
    background: var(--color1);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    display: none;
}

.law-video-caption {
    display: none;
}

.law-video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.law-video-responsive {
    position: relative;
    padding-bottom: 55%;
    height: 0;
}

.law-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        border-radius: var(--radius);
}

.law-video-caption {
    color: #000;
    font-size: 11px;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
}




/* ======================
   NAVBAR
====================== */
.custom-navbar {
    background: #fff;
    padding: 2px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    z-index: 999;
    left: 0;
    right: 0;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-link {
    color: #444;
    font-weight: 500;
    padding: 29px 12px !important;
    transition: .3s;
    font-size: 15px;
}

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

.demo-btn {
    background: var(--color1);
    color: white;
    padding: 12px 18px !important;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.demo-btn:hover {
    background: var(--color2);
    color: #fff;
}

a.demo-btn.desktop-btn i {
    font-size: 13px;
    margin-left: 2px;
}

/* ======================
   DROPDOWN
====================== */
.dropdown-menu {
    border: none;
    border-radius: var(--radius);
    padding: 12px 10px;
    box-shadow: 0 0 6px 0 #0002;
}

.dropdown-item {
    padding: 7px 7px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f5f5ff;
    color: var(--color1);
}



li.nav-item.dropdown a.nav-link.dropdown-toggle i {
    font-size: 12px;
    transition: transform .3s ease;
}
ul.navbar-nav.desktop-nav li.nav-item.dropdown a.nav-link.dropdown-toggle:hover i  {
    
    transform: rotate(180deg);
}
li.nav-item.dropdown:hover a.nav-link.dropdown-toggle.active i,
li.nav-item.dropdown .dropdown-toggle.show i {
    transform: rotate(180deg);
}


/* ======================
   MOBILE MENU
====================== */
.nav-toggle {
    border: none;
    background: none;
    font-size: 20px;
    background: var(--color1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.nav-toggle:hover {
    background: var(--color2)
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9998;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}


.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    overflow-y: auto;
    transition: .45s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, .15);
}

.mobile-sidebar.show {
    right: 0;
}

.side_bar-content {
    padding: 20px;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: var(--color1);
    padding: 10px 10px 10px 0;
}

.close-menu {
    border: none;
    background: none;
    font-size: 20px;
    background: #fff;
    color: var(--color1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.mobile-sidebar .nav-link {
    color: #444;
    font-weight: 500;
    padding: 12px 0;
}

.mobile-sidebar .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: 1px solid #eee;
    margin-top: 10px;
}

.mobile-demo-btn {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    background: var(--color1);
    color: white;
    padding: 12px 18px !important;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

a.mobile-demo-btn i {
    font-size: 13px;
}

.mobile-demo-btn:hover {
    background: var(--color2);
    color: #fff;
}

.pricing-card {
    border-radius: var(--radius);
    border: 1px solid #d4d4d42c;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 6px 0 #0002;
}

.pricing-card.h-100 .bottom-text {
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 22px;
    color: var(--color1);
}

a.btn-agency {
    border: 1px solid green;
    padding: 13px 18px;
    background: transparent;
    color: green;
    font-weight: 500;
    width: 100%;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

a.btn-agency:hover {
    border: 1px solid green;
    background: green;
    color: #fff;
}

p.para-text,
p.para-text.underline {
    margin-bottom: 7px;
}

.pricing-card .list-unstyled {
    margin-top: 15px;
}

.pricing-card .list-unstyled i {
    min-width: 20px;
    min-height: 20px;
    background: var(--color1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    border-radius: var(--radius);
}

.pricing-card .list-unstyled li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 7px;

}

a.btn-nationwide {
    border: 1px solid var(--color1);
    background: transparent;
    color: var(--color1);
    padding: 12px 18px;
    font-weight: 500;
    border-radius: var(--radius);
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

a.btn-nationwide:hover {
    border: 1px solid var(--color1);
    background: var(--color1);
    color: #fff;
}

a.btn-statewide.demo-btn.desktop-btn {
    margin-top: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.pricing-card.diy .bottom-text,
.pricing-card.diy .icon-box {
    color: green;
}

p.list-top-text {
    color: #000;
    font-weight: 600;
    font-size: 23px;
    line-height: 25px;
    margin-top: 15px;
}

.highlight-card {
    border: 2px solid var(--color1);
    position: relative;
}

.badge-pop i {
    margin-right: 8px;
}

.badge-pop {
    background: var(--color1);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card .icon-box {
    background: #f7f7f7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 22px;
    color: var(--color1);
    box-shadow: 0 0 6px 0 #0002;
}

.pricing-card .price-label {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
}

.pricing-card.diy .list-unstyled i {
    list-style: lower-greek;
    background: #099509;
}

p.para-text.underline {
    text-decoration: underline;
}



.pricing-card .list-unstyled li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
}

.nav-menu-btn {
    display: none;
}



ul#seoTabs {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--radius);
    width: fit-content;
    margin: auto;
    margin-bottom: 40px;

}

.custom-tabs .nav-link {
    color: white;
    border-radius: var(--radius);
    padding: 10px 30px;
    transition: all 0.3s ease;
    box-shadow: none;
    font-weight: 600;
}

.custom-tabs .nav-link.active {
    background-color: #fff;
    color: var(--color1);
    font-weight: 600;
    border-radius: var(--radius);
}

/* SEO Items styling */
.seo-item {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 18px 25px;
    margin-bottom: 12px;
    border-radius: var(--radius);
    border-left: 3px solid var(--color2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;

}

.seo-item i {

    margin-right: 15px;
    font-size: 1.2rem;
}



.preview-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--radius);
}

.builder-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.american-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px;
    user-select: none;
}

.side-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.side-lines .line {
    display: block;
    border-radius: 30px;
}

/* Top Orange Line */
.side-lines .top {
    width: 34px;
    height: 2px;
    background: var(--color2);
}

/* Bottom Purple Line */
.side-lines .bottom {
    width: 22px;
    height: 2px;
    margin-left: 12px;
    background: var(--color1);
}

.mass-page-marketplace {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.market-place-card {
    border: 1px solid #e7e7e7;
    border-radius: var(--radius);
}

.place-img img {
    width: 100%;
    border-radius: var(--radius);
}

.place-content {
    padding: 15px 23px;
    text-align: center;
}

.place-content h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 7px;
}

a.btn.btn-secondary.disabled i {
    font-size: 14px;
}

.place-img {

    overflow: clip;
    border-bottom: 1px solid #e7e7e7;
}

.place-content .btn-cta-primary {
    padding: 9px 18px !important;
    font-size: 13px;
}

.place-content .btn-cta-disable {
    padding: 9px 18px !important;
    font-size: 13px;
    background: #474556;
}

/* Mirror Right Side */
.side-lines.right {
    transform: scaleX(-1);
}

.text {
    color: #000;
    font-size: 12px;
    font-weight: 700;
    /* font-family: Arial, sans-serif; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.star {
    color: var(--color2);
    font-size: 12px;
    line-height: 1;
}

section.hero-section.bg.fit-head .breadcrumb {
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius);
    width: fit-content;
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
}

.breadcrumb a {
    text-decoration: none;
    transition: .3s;
}

.breadcrumb a:hover {
    color: var(--color2);
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 13px;
}

.breadcrumb span {
    font-weight: 600;
}

.breadcrumb a i {
    margin-right: 5px;
}


.rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    padding: 6px 9px;
    border-radius: var(--radius);
    box-shadow: 0 0 6px 0 #0002;
    white-space: nowrap;
    margin-bottom: 15px;
    width: fit-content;
}

.platforms {
    display: flex;
    align-items: center;
    gap: 4px;
}

.platforms img {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 3 5px 15px rgba(0, 0, 0, .08);
    box-shadow: 0 0 6px 0 #0002;
    margin:0px;
}


.divider {
    width: 1px;
    height: 18px;
    background: #d4d4d4;
}

.rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.rating i {
    color: #FFC107;
    font-size: 13px;
}

.rating strong {
    font-size: 15px;
    color: #444;
}


.reviews {
    font-size: 14px;
    color: #444;
    /* font-weight: 600; */
}

.reviews strong {
    color: var(--color1);
    margin-right: 5px;
}

section.hero-section.bg.fit-head {
    padding: 85px 0 0;
}

.hero-single {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 350px;
}

.hero-single.seo.common-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: #000000c2;
    z-index: -1;
}

.hero-single.seo.common-banner .display-hero {
    text-align: center;
    color: #fff;
    margin-bottom: 11px;

}

.hero-single.seo.common-banner .hero-content {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.website-slider .item {
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.website-slider .item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.row.process .metric-card.profile {
    height: 100%;
    min-height: 100% !important;
    justify-content: flex-start;
}

.row.process .metric-card.profile .metric-icon.purple-icon {
    background: var(--color1);
    color: #fff;
    font-size: 20px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.client-logo {
    height: 115px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: all .35s ease;
    overflow: hidden;
}

.client-logo img {
    max-width: 170px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .35s ease;
}


.video-box {
    background: #ffffff21;
    padding: 10px;
    border-radius: var(--radius);
}

.video-box iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
    border-radius: var(--radius);
}
section.performance-section.platform.sec-padding.video .video-box iframe {
    height: 700px;
}
.mass-page-marketplace.case-study .place-content {
    text-align: start;
}

.business-grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.business-grid li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 15px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: var(--radius);
    text-decoration: none;
    color: #444;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
}

.business-grid li a i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color1);
    color: #fff;
    font-size: 15px;
    /* transition:.35s; */
}

.business-grid li a:hover {
    color: var(--color1);
    text-decoration: underline;
}



section.service_single_area.sec-padding.updated__map .single-sidebar {
    box-shadow: 0 0 6px 0 #0002;
    border-radius: var(--radius);
}

section.service_single_area.sec-padding.updated__map .single-sidebar .sidebar-search-box iframe {
    height:650px;
    border-radius: var(--radius);
    padding:15px
}

section.service_single_area.sec-padding.updated__map .single-sidebar .title h3 {
    font-size:27px;
    font-weight:600;
    background:var(--color1);
    color:#fff;
    padding:15px;
    border-radius:var(--radius) var(--radius) 0 0;
    text-align:center;
}
section.service_single_area.sec-padding.updated__map .single-sidebar .city-info{
    padding:15px;
}

section.service_single_area.sec-padding.updated__map .single-sidebar .city-info img{
width:100%;
    border-radius:var(--radius);
}

section.service_single_area.sec-padding.updated__map .single-sidebar .city-info .wikibox h3 {
    display:none;
}


section.sec-padding.seo-locations ul.ul3 {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

section.sec-padding.seo-locations ul.ul3 li {
background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 11px 12px;
    text-align: start;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}
section.sec-padding.seo-locations ul.ul3 li::before {
    content: "\f3c5";
    /* Font Awesome location-dot */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    background: var(--color1);
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

section.sec-padding.seo-locations ul.ul3 li:hover {
    background: var(--color1);
    color: #fff;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
    border-color: transparent;

}
section.sec-padding.seo-locations ul.ul3 li:hover::before {
    background: #fff;
    color: var(--color1);
}
div#city_section h3 {
    background: var(--color1);
    color: #fff;
    padding: 10px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 20px;
}
/* GRID */
div#city_section ul.ul3 {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
section.ul-manage.clients-section2.sec-padding.btm-cities div#city_section ul.ul3 {
    margin: 20px 0;
}
/* ITEM STYLE */
div#city_section ul.ul3 li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 11px 12px;
    text-align: start;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

/* ICON VIA CSS (Font Awesome Unicode) */
div#city_section ul.ul3 li::before {
    content: "\f3c5";
    /* Font Awesome location-dot */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    background: var(--color1);
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

/* HOVER */
div#city_section ul.ul3 li:hover {
    background: var(--color1);
    color: #fff;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
    border-color: transparent;
}

div#city_section ul.ul3 li:hover::before {
    background: #fff;
    color: var(--color1);
}

.blog-grid{
    grid-template-columns: repeat(3, 1fr);
    display:grid;
    gap:15px;
}
.relevant-blog-grid{
    grid-template-columns: repeat(4, 1fr);
    display:grid;
    gap:15px;
}
.relevant-blog-grid .vs-blog__style1 .blog-cate{
    padding: 10px 25px 10px 10px;
        font-size: 13px;
}

.relevant-blog-grid .vs-blog__style1 .blog-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
}
section#resources .home-blog .vs-blog__style1 .blog-content .blog-inner-author .blog-date, section#resources .home-single-blog .vs-blog__style1 .blog-inner-author .blog-date {
    color: #000;
    text-transform: capitalize;
    font-size: 13px;
    border-right: 1px solid #d4d4d4;
    padding-right: 20px;
        margin-left: 0;

}

section#resources .home-blog .vs-blog__style1 .blog-content .blog-inner-author .blog-date:nth-child(2), section#resources .home-single-blog .vs-blog__style1 .blog-inner-author .blog-date:last-child {
        border-right: none;
        padding-right: 0;
        margin-left: 0px !important;
    }
    section#resources .home-blog .vs-blog__style1 .blog-content .blog-inner-author.d-flex, section#resources .home-single-blog .blog-inner-author  {
    border-bottom: none;
    padding-bottom: 0;
        justify-content: start;
    gap: 15px;

}
.relevant-blog-grid .vs-blog__style1 .blog-inner-author .blog-date {
    font-size: 13px;
}
.relevant-blog-grid .vs-blog__style1 .blog-content {
    padding: 10px 5px 0px 5px;
}
.vs-blog__style1 {
  border-radius: var(--radius);
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 6px 0 #0002;
}
.vs-blog__style1 .blog-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
    /*aspect-ratio: 390/ 211;*/
    background: #f7f7f7;
        border: 1px solid #d4d4d421;
}

.vs-blog__style1 .blog-img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.5s ease;
  position: relative;
}
.vs-blog__style1 .blog-cate {
  position: absolute;
  bottom: 0;
  background-color: var(--color1);
  left: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: initial;
  color: #fff;
  padding: 12px 40px 12px 22px;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
  transition: all 0.5s ease;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
.blog-inner-author .blog-date:not(:first-child) {
    margin-left: 14px;
}

.vs-blog__style1 .blog-cate a {
  color:#fff;
}
.vs-blog__style1 .blog-cate a:hover {
    color: var(--color2);
}
.vs-blog__style1 .blog-inner-author .blog-date {
  color: #000;
  text-transform: capitalize;
      font-size: 15px;
}
.vs-blog__style1 .blog-title a:hover {
    color: var(--color2);
}
.vs-blog__style1 .blog-inner-author i {
  color: var(--color1);
}
.vs-blog__style1 .blog-title {
      font-size: 20px;
    font-weight: 600;
    line-height: 29px;
    margin: 15px 0;
}
.vs-blog__style1 .blog-content p {
    margin-bottom:0px;
}
.vs-blog__style1 .blog-content {
  padding: 27px 5px 15px 5px;
}
.vs-blog__style1:hover .blog-img img {
  transform: scale(1.05);
}
.vs-blog__style1:hover .blog-btn::before {
  background-color: var(--color1);
}
.vs-blog__style1.style2 {
  padding: 16px;
}
.vs-blog__style1.style2 .blog-content {
  padding: 25px 20px 25px 0px;
}

.blog-btn {
  position: relative;
}
.blog-btn .link-btn .icon {
  border: 1.9px dashed var(--color1);
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  transition: all 0.5s ease;
}
.blog-btn .link-btn i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--color1);
  color: #fff;
  border-radius: 50%;
  margin: 1.5px;
  text-align: center;
  transition: all 0.5s ease;
}
.blog-btn .link-btn:hover .icon {
  border-color: var(--color2);
}
.blog-btn .link-btn:hover i {
  background-color: var(--color2);
}
.blog-single-page.sec-padding {
    padding: 70px 0;
}

.blog-single .blog-meta i {
    margin-right: 8px;
        color: var(--color1);
}
.blog-meta span, .blog-meta a {
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: all 0.5s ease;
}
.blog-meta span:last-child, .blog-meta a:last-child {
    margin-right: 0;
}
share-links.clearfix .blog-meta a.author:hover {
    color: var(--color1);
    text-decoration: underline;
}

.blog-inner-author {
        justify-content: space-between;
    border-bottom: 1px solid #d4d4d421;
    padding-bottom: 15px;
}

.share-links-title {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin: 0 15px 0 0;
    display: inline-block;
}
.share-links .th-social {
    display: inline-block;
}
.share-links .th-social a {
    font-size: 40px;
    font-size: 14px;
    border-radius: 100px;
}
.share-links.clearfix {
    padding: 0px 0 15px;
}
.service-details__content.inner_content .blog-content {
    background: #fff;
    padding: 20px;
}
.service-details__content.inner_content .blog-content a {
    font-weight: 700;
    color: var(--color1);
}
.service-details__content.inner_content .blog-content a:hover {
    text-decoration:underline;
}
.share-links.clearfix .blog-meta.col-lg-6 {
    font-weight: 400;
        margin-bottom: 0;
}
span.by {
    margin: 0;
    color: #444;
}
.th-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--color1);
    color: #fff !important;
    font-size: 18px !important;
    text-align: center;
    margin-right: 5px;
    border-radius: var(--radius) !important;
    transition: all 0.3s;
}

.share-links .th-social a:hover {
    background: var(--color2);
    color: #fff;
}
.main-content-image.blog-img img {
   border-radius: var(--radius) var(--radius) 0 0;
    /*border-bottom: 1px solid #d4d4d47d;*/
}
.service-details__content.inner_content {
    border: 1px solid #d4d4d47d;
    border-radius: var(--radius);
    overflow: hidden;
}
.service-details__content.inner_content ul {
    padding-left: 0px;
    list-style: none;
}

.service-details__content.inner_content ul li {
    list-style: none;
    padding-left: 33px;
    position: relative;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.7;
}

.service-details__content.inner_content ul li::before {
    content: "\f105"; /* fa-angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: var(--color1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
aside.sidebar-area.widget .bg-light {
    padding: 20px;
    background: #fff!important;
    /* box-shadow: 0 0 6px 0 #0002; */
    border: 1px solid #d4d4d46b;
    border-radius: var(--radius);
}
.sidebar-area widget .tag-list  {
    background: #f7f7f7;
    color: #444;
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s;

}
aside.sidebar-area.widget .tag-list {
    padding-left: 0;
    list-style: none;
    margin-top:30px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

aside.sidebar-area.widget .tag-list a {
border: 1px solid #d4d4d42e;
    padding: 8px 8px;
    border-radius: var(--radius);
    background-color: #f4f4f4;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}
aside.sidebar-area.widget .tag-list a:hover {

   background-color: var(--color1);
    color:#fff;

}

.bg-light.tags {
    margin-top: 20px;
}

aside.sidebar-area.widget .bg-light ul.categories-list {
    padding-left: 0px;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0px;

}

aside.sidebar-area.widget .bg-light ul.categories-list li {
    list-style: none;
    padding-left: 17px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 600;
}
aside.sidebar-area.widget .bg-light ul.categories-list li:last-child {
    margin-bottom: 0;
}
aside.sidebar-area.widget .bg-light ul.categories-list li a:hover {
    transition: all 0.3s;
}

aside.sidebar-area.widget .bg-light ul.categories-list li a:hover {
    color:var(--color2);
}
aside.sidebar-area.widget .bg-light ul.categories-list li:not(:last-child) {
    border-bottom: 1px solid #d4d4d473;
    padding-bottom: 12px;
}

aside.sidebar-area.widget .bg-light ul.categories-list li::before {
content: "\f105"; /* fa-angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.widget_title {
    position: relative;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    margin: 0 0 10px;
    padding: 0 0 13px;
}

.widget_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px; 
    background: var(--color2); 
    border-radius: var(--radius);
}
.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.recent-post .media-img {
    margin-right: 15px;
     width: 100px; 
    /* height: 100px; */
}
.recent-post .media-img img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}
.media-body {
    flex: 1;
}
.recent-post .recent-post-meta {
    margin: -0.15em 0 0 0;
}
.recent-post .recent-post-meta a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: var(--color1);
}
.recent-post .recent-post-meta a i {
    margin-right: 5px;
    color: var(--color1);
}
.recent-post .post-title {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    /* margin: 0 0 -0.1em 0; */
}

.recent-post .post-title a:hover {
color:var(--color2);
text-decoration:underline;
}
.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-box2 {
  background-color: var(--color2);
  border-radius: var(--radius);
  text-align: center;
  padding: 60px 40px;
  margin-top:20px;
  border-bottom: 6px solid var(--color1);
}
.contact-box2 .portfolio-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 auto 20px;
}
.contact-box2 .icon-btn {
  display: inline-block;
  background-color:#fff;
  color: #fff;
  width: 50%;
  height: auto;
  line-height: 95px;
  margin-bottom: 32px;
      border-radius: var(--radius);
}

.contact-box2 .icon-btn img {
    display: flex;
    justify-content: center;
    margin: 10px auto 10px 22px;
}
.contact-box2 .icon-btn:hover {
  background-color: #fff;
}
.contact-box2 .contact-title {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 2px;
}
.contact-box2 .contact-text {
  font-size: 30px;
  font-weight: 600;
      margin-bottom: 0;

}
.contact-box2 .contact-text a {
  color: #fff;
}
.contact-box2 .contact-text a:hover {
 text-decoration:underline;
}
.contact-box2 .contact-content {
  padding: 0;
}

.list-box1 {
  display: flex;
  gap: 30px;
}
.service-details__content.inner_content .blog-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: normal;
}
.service-details__content.inner_content .blog-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}
.sec-title.blog-detail {
    text-align: center;
    margin-top: 30px;
}
.sec-title.blog-detail .badge-ai {
    margin-bottom: 0px;
}

.faqs .faq-accordion .accordion-item{
    border: 1px solid #d4d4d473;
    box-shadow:none!important;
}
.faqs h2.accordion-header {
    margin-bottom: 0 !important;
        line-height: 25px;
}
.main-content-image.blog-img {
    aspect-ratio: 854 / 463;
    background: #f7f7f7;
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: 1px solid #d4d4d47d;
}
.faqs .faq-accordion .accordion-button{
    padding:10px 15px;
}

.faqs .faq-accordion .accordion-button::after{
    width: 35px;
    height: 35px;
}
.table-responsive {
    overflow: hidden;
    /*border: 1px solid #ddd;*/
    border-radius: var(--radius); 
        margin: 15px 0;
}
.service-details__content.inner_content .blog-content img {
    height: auto;
    width: 100%;
    margin: 20px 0;
    border-radius: var(--radius);
    border: 1px solid #d4d4d48f;
}

.service-details__content.inner_content .blog-content table {
    width: 100%;
    border-spacing: 0;
    margin-bottom:0px;
}

.service-details__content.inner_content .blog-content table tbody tr:first-child td {
    background: var(--color2);
    color: #fff;
    font-weight: 700;
}

/* Top Left */
.service-details__content.inner_content .blog-content table tbody tr:first-child td:first-child {
    border-top-left-radius: var(--radius);
}

/* Top Right */
.service-details__content.inner_content .blog-content table tbody tr:first-child td:last-child {
    border-top-right-radius: var(--radius);
}

/* Bottom Left */
.service-details__content.inner_content .blog-content table tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius);
}

/* Bottom Right */
.service-details__content.inner_content .blog-content table tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius);
}

.service-details__content.inner_content .blog-content tbody tr:nth-of-type(odd):not(:first-child) {
    background: rgba(0,0,0,.05);
}

.service-details__content.inner_content .blog-content td,
.service-details__content.inner_content .blog-content th {
    border: 1px solid #dee2e6;
    padding: 12px 16px;
}

section#resources .home-single-blog .blog-inner-author {
    gap: 25px;
    width: 100%;
    justify-content: start;

}
section#resources .home-blog .vs-blog__style1 {
    display: flex;
    align-items: center;
    gap:15px;
    margin-bottom:15px;
}
section#resources .home-blog .vs-blog__style1:last-child {
    margin-bottom:0px!important;
}
section#resources .home-blog .vs-blog__style1 .blog-img {
    width: 250px;
    height: 160px;
    min-width: 250px;
}

section#resources .home-blog .vs-blog__style1 .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#resources .home-blog .vs-blog__style1 .blog-content p, section#resources .home-blog .vs-blog__style1 .blog-cate {
   display:none
}
section#resources .home-blog .vs-blog__style1 .blog-content {
    padding: 0px;
}

section#resources .home-blog .vs-blog__style1 .blog-content .blog-inner-author{
    border-bottom: 1px solid #d4d4d46b;
    padding-bottom: 7px;
}
section#resources .home-blog .vs-blog__style1 .blog-content h3 {
  font-size:19px;
  line-height:25px;
  color:#000
}
.home-single-blog h3.blog-title {
    font-size: 26px;
    line-height: 25px;
    color: #000;
}

section#resources .home-blog .vs-blog__style1 .blog-inner-author .blog-date:last-child {
    display: none;
}
.home-single-blog img {
    height: 397px;
    object-fit: cover;
}

/* Slow modal animation */
.modal.fade .modal-dialog {
    transform: translateY(-40px);
    opacity: 0;
    transition: all 0.45s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}
div#_builder-form {
    padding: 15px !important;
    box-shadow: none !important;
}
div#seoAuditModal .modal-header {
    border: 0;
    padding: 0;
}
button.btn-close {
    position: absolute;
    top: -3px;
    right: -6px;
    width: 15px;
    height: 15px;
    padding: 0;
    background-color: #fff;
    /* border: 2px solid #000; */
    border-radius: var(--radius);
    opacity: 1;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;

    box-shadow: 0 0 6px 0 #0002;
}

button.btn-close:hover {
    background-color: #fff;
}

.contact-page__left {
height: 100%;
}
.appoinment-one__form {
position: relative;
display: block;
width: 100%;
border-top: 5px solid var(--color2);
padding: 40px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
/* border: 1px solid #e5e7eb; */
height: 100%;
z-index: 1;
border-radius: var(--radius);
}

.appoinment-one__form .title-box {
position: relative;
display: block;
margin-bottom: 35px;
}

.appoinment-one__form .title-box h2 {
font-size: 30px;
line-height: 40px;
font-weight: 700;
text-transform: capitalize;
letter-spacing: -0.02em;
margin-bottom: 3px;
color:#000;
}
.appoinment-one__form form {
position: relative;
}
form#ewebcontact_id .input-group {
margin-bottom: 20px;
border-radius: var(--radius);
}
.input-group-text {
border-top-left-radius: var(--radius) !important;
border-bottom-left-radius: var(--radius) !important;
}
form#ewebcontact_id .cus_input {
padding: 16px 30px 16px 15px;
border-top-right-radius: var(--radius);
border-bottom-right-radius: var(--radius);
}
.contact-one__btn-box {
/* margin: auto; */
display: flex;
justify-content: center;
}
.contact-page__contact-info {
position: relative;
display: block;
background: #fff;
position: relative;
display: block;
width: 100%;
border-top: 5px solid var(--color2);
padding: 40px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
/* border: 1px solid #e5e7eb; */
height: 100%;
z-index: 1;
border-radius: var(--radius);
}

.contact-page__contact-info .title-box {
margin-bottom: 30px !important;
}
.contact-page__contact-info .title-box h3 {
font-size: 30px;
line-height: 40px;
font-weight: 700;
text-transform: capitalize;
color:#000;
}
.contact-page__contact-info-box {
position: relative;
display: block;
}
.contact-page__contact-info-single {
position: relative;
display: flex;
align-items: center;
margin-bottom: 49px;
}
.contact-page__contact-info-single {
margin-bottom: 16px !important;
}

.contact-page__contact-info-single .icon-box {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 55px !important;
height: 55px !important;
background: #f7f7f7 !important;
border-radius: var(--radius) !important;
overflow: hidden;
transition: all 200ms linear;
transition-delay: 0.1s;
min-width: 70px;
min-height: 70px;
font-size: 25px;
    color: var(--color1);
}

.contact-page__contact-info-single .content-box {
position: relative;
display: block;
margin-left: 20px;
flex: 1;
}

.contact-page__contact-info-single .content-box h3 {
font-size: 18px;
line-height: 25px;
font-weight: 600;
text-transform: capitalize;
margin-bottom: 2px;
}

.contact-page__contact-info-bottom .text-box .socail {
font-size: 22px;
line-height: 34px;
font-weight: 600;
text-transform: capitalize;
margin-bottom: 5px;
color: var(--color1);
}
.blog-details__content-text3-share {
position: relative;
display: flex;
align-items: center;
}
.blog-details__content-text3-share ul {
position: relative;
display: flex;
align-items: center;
margin-top: 25px;
}
.blog-details__content-text3-share.social-icons ul {
margin: 0;
}
.blog-details__content-text3-share ul li {
position: relative;
display: block;
margin-right: 10px;
}

.contact-page__contact-info .contact-page__contact-info-bottom .blog-details__content-text3-share ul li a {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
color: var(--color1) !important;
border: 1px solid var(--color1) !important;
border-radius: 50%;
overflow: hidden;
}

.contact-page__contact-info .follow-us ul.follow li a {
    border: 1px solid var(--color1);
    color: var(--color1);
}

form#ewebcontact_id .input-group span#basic-addon1 i {
    color: var(--color1);
}

span.input-group-text.text_area i {
    color: var(--color1);
    margin-top: 5px;
}


section.error-page-area.sec-padding .error-content.text-center .ttm-big-icon i {
    font-size: 100px;
    color: var(--color1);
    margin-bottom: 29px;
}

section.error-page-area.sec-padding .error-content.text-center h2 {
    color: #000;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
}
section.error-page-area.sec-padding .error-content.text-center .demo-btn.desktop-btn {
    width: fit-content!important;
    margin: auto;
}




.contact-page__left {
    height: 100%;
}
.metrics-section{
    background:#fff;
}

.metric-card{
    background:#fff;
    border:1px solid #ececf4;
    border-radius: var(--radius);
    padding: 20px;
    /* transition:.35s; */
    height:100%;
}

.metric-card:hover{
    /* transform:translateY(-6px); */
    /* box-shadow:0 18px 45px rgba(0,0,0,.08); */
}

.metric-icon{
    width:42px;
    height:42px;
    border-radius: var(--radius);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    font-size:18px;
    margin: 0 auto 20px;
}

.metric-purple{
    background:rgba(81,56,237,.12);
    color:var(--color1);
}

.metric-orange{
    background:rgba(252,91,5,.12);
    color:var(--color2);
}

.metric-card h3{
    font-size:34px;
    font-size:18px;
    font-weight:700;
    color:#1b1f2b;
    margin-bottom:14px;
}

.metric-card p{
    margin:0;
    color:#666c7a;
    line-height:1.8;
    font-size:16px;
}

/* Center Card */

.metric-dark{
    background: var(--color1);
    border:none;
    border-radius: var(--radius);
    padding: 35px 25px;
    /* box-shadow:0 28px 50px rgba(0,0,0,.18); */
}

.metric-number{
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height:1;
    margin-bottom:10px;
}

.metric-number span{
    font-size:58px;
}

.metric-dark h2{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
}

.metric-dark p{
    color: #fff;
    /* font-size:17px; */
    line-height:1.6;
    max-width:290px;
    margin:auto;
}



section#results .case-meta.result {
    display: block;
}

section#results .case-meta.result .result-content h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

section#results .case-meta.result .result-content .result-bedge {
        background-color: #ede9ff;
        color: var(--color1);
        border: 1px solid #f7f7f7;
        padding: 4px 14px;
        font-weight: 700;
        border-radius: 20px;
        margin-bottom: 10px;
        width: fit-content;
        font-size: 12px;
}



section#results .case-meta.result .result-header {
    border-bottom: 1px solid #d4d4d45c;
    display:flex;
    gap:20px;
}

section#results .case-meta.result span.results-icon i {
    background: var(--color1);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    border-radius: var(--radius);
}
.logo-container.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-stage-outer {
    margin-right: -10px !important;
}

ul.follow.ceo-links li a {
    background: var(--color1);
    color: #fff;
    min-width: 35px;
    width: 35px;
    display: flex;
    height: 35px;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
        transition: all 0.3s;
}

ul.follow.ceo-links li a:hover {
    background: var(--color2);
}

.ceo-social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}


.spc-badge {
    display: inline-block;
    background: #5636f5;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
  }

  .spc-section-title {
    color: #050505;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .spc-section-text {
    color: #4b4f63;
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 45px;
  }

  .spc-pillar-card {
    background: #ffffff;
    border: 1px solid #e4e6f5;
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;

    transition: all 0.3s ease;
  }


  .spc-pillar-inner {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }

  .spc-icon-box {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 26px;
  }

  .spc-icon-purple {
    background: #f1edff;
    color: var(--color1);
    border: 1px solid #ded6ff;
  }

  .spc-icon-orange {
    background: #fff2eb;
    color: #ff5b12;
    border: 1px solid #ffd9c8;
  }

  .spc-icon-dark {
    background: #f3f4f8;
    color: #2c3042;
    border: 1px solid #dfe2ec;
  }

  .spc-pillar-title {
     margin-bottom: 10px;
    color: #000!important;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    font-family: "Sora", sans-serif !important;
  }

  .spc-pillar-text {
    /* color: #4b4f63; */
    /* font-size: 17px; */
    /* line-height: 1.6; */
    /* margin-bottom: 26px; */
  }

  .spc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
        margin-top: 20px;
  }

  .spc-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
  }

  .spc-tag-purple {
    background: #f0ebff;
    color: #5636f5;
  }

  .spc-tag-orange {
    background: #fff0e8;
    color: #ff5b12;
  }

  .spc-tag-dark {
    background: #f1f2f7;
    color: #2c3042;
  }

  .spc-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
  }

  .spc-dot-purple {
    background: #5636f5;
  }

  .spc-dot-orange {
    background: #ff5b12;
  }

  .spc-dot-dark {
    background: #2c3042;
  }

  .spc-cta-box {
    background: #ffffff;
    border: 1px solid #dde1f2;
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 28px;
    box-shadow: 0 10px 30px rgba(26, 31, 70, 0.06);
  }

  .spc-cta-icon {
   width: 60px;
    height: 60px;
    border: 2px solid var(--color1);
    color: var(--color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .spc-cta-text {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
  }


  .spc-divider {
    width: 1px;
    height: 55px;
    background: #d7dbea;
  }

  @media (max-width: 991px) {
    .spc-section-title {
      font-size: 34px;
    }

    .spc-pillar-inner {
      flex-direction: column;
      gap: 20px;
    }



    .spc-pillar-title {
      font-size: 24px;
    }

    .spc-cta-box {
      text-align: center;
      padding: 15px 15px;
          margin-top: 17px;

    }

    .spc-divider {
      display: none;
    }

    .spc-cta-icon {
      margin: 0 auto;
    }
  }
  
  section.performance-section.platform.sec-padding.bg-white h2, section.performance-section.platform.sec-padding.bg-white p {
    color: #000!important;
}
section.performance-section.platform.sec-padding.bg-white .video-box {
    background: var(--color1);
    padding: 10px;
    border: 1px solid #f2f3ff;
    border-radius:var(--radius);
}
section.performance-section.platform.sec-padding.bg-white .video-box iframe {
       width: 100%;
    height: 700px;
}
section.comparison-section.sec-padding.bg-subtle article.comparison-card .top-image img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    object-position: top center;
}

section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .metric-card.profile {
    min-height: auto;
}

/* 1. Target the row that holds your cards */
section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* This forces all children (your cards) to equal height */
}

/* 2. Ensure the cards fill the height */
section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .metric-card.profile {
    height: 100%; 
    display: flex;
    flex-direction: column;
        justify-content: flex-start;
}

section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .metric-card.profile .metric-icon {
    width: 60px;
    height: 60px;
}

.section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .metric-card.profile .metric-icon i{
    font-size: 27px!important;
}
/* Responsive */

@media (max-width:991px){

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

.metric-icon{
    margin:0 auto 20px;
}

.metric-number{
    font-size:58px;
}

.metric-number span{
    font-size:44px;
}
section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .row .col-lg-4, section.performance-section.bg-subtle.sec-padding.local-landinf-pages .row .col-lg-3 {
    margin-bottom: 20px;
}


section.performance-section.bg-subtle.sec-padding.local-landinf-pages.multiple .row .col-lg-4:last-child,section.performance-section.bg-subtle.sec-padding.local-landinf-pages .row .col-lg-3:last-child {
    margin-bottom: 0px;
}
section.sec-padding.map.solution.team .row {
    flex-direction: column;
}
section.sec-padding.map.solution.team .row .city-wide-img.mt-0 {
    margin-top: 10px!important;
    margin-bottom:0px!important;
}
}







































/* Responsive */

/* Desktop Hover */

@media(max-width:1199px) {
     section.ul-manage.clients-section2.sec-padding.btm-cities div#city_section ul.ul3{
            grid-template-columns: repeat(4, 1fr);
    }
}
@media(min-width:992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        position: absolute;
        left: 50%;
        right: auto;

        transform: translateX(-50%);
        width: max-content;
        border-top: 3px solid var(--color1);
        border-radius: 0 0 var(--radius) var(--radius);
    }
    
}


@media(max-width:991px) {
    .mass-page-marketplace {
        grid-template-columns: repeat(3, 1fr);
    }
 section.ul-manage.clients-section2.sec-padding.btm-cities div#city_section ul.ul3{
            grid-template-columns: repeat(3, 1fr);
    }
    .desktop-nav,
    .desktop-btn {
        display: none !important;
    }

    .nav-menu-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .nav-menu-btn a.demo-btn.desktop-btn.mbil {
        display: block !important;
        padding: 14px 10px ! Important;
        font-size: 15px;
    }

    .nav-menu-btn a.demo-btn.desktop-btn.mbil i {
        margin-right: 5px;
    }

    .navbar-nav .nav-link {
        padding: 0 !important;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-weight: 700;
        color: #000;
    }

    .mobile-sidebar .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: navajowhite;
        margin-top: 10px;
        padding: 10px 10px 0;
        color: #444;
    }

    .dropdown-item {
        padding: 11px 0 13px;
        border-radius: inherit;
        font-weight: 500;
        font-size: 14px;
        border-bottom: 1px solid #d4d4d46b;
    }

    .dropdown-item:hover {
        background: transparent;
    }

    /* Ensure the first item shows a top border */
    .dropdown-menu li:first-child .dropdown-item {
        border-top: 1px solid #d4d4d46b;
    }

    .dropdown-menu li:last-child .dropdown-item {
        border-bottom: none;
        padding-bottom: 0;
        background: transparent;
    }

    .mobile-header .logo img {
        filter: brightness(0) invert(1);
    }

    .side-bar-footer {
        position: absolute;
        bottom: 10px;
        width: 95%;
        left: 10px;
        right: 10px;
    }

    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -1000px;
        width: 100%;
        max-width: 100%;

    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    ul#seoTabs .nav-item {
        min-height: auto;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;

    }

section#resources .home-blog .vs-blog__style1 .blog-content .blog-inner-author .blog-date:nth-child(2) {
    border-right: 1px solid #d4d4d4;
    padding-right: 15px;
}
section#resources .home-blog .vs-blog__style1 .blog-content .blog-inner-author .blog-date:last-child {
    border-right: none;
    padding-right: 0;
    margin-left: 0px !important;
}
.vs-blog__style1 .blog-content {
    padding: 15px 5px 15px 5px;
}
    ul#seoTabs {
        margin-bottom: 25px;
    }

    .mass-page-marketplace {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-content .tab-pane .row {
        flex-direction: column !important;
    }

    .builder-team {
        grid-template-columns: repeat(2, 1fr);
    }

    li.nav-item.dropdown .dropdown-toggle i {
        font-size: 12px;
        transition: transform .3s ease;
        transform: rotate(-90deg) !important;
    }

    li.nav-item.dropdown .dropdown-toggle.show i {
        transform: rotate(0deg) !important;
    }

    .breadcrumb {
        margin: 0 auto 10px;
    }
section.hero-section.bg.fit-head .breadcrumb {
    color: #fff;
    justify-content: center;
}
    .city-wide-img.mt-0 {
        margin-bottom: 20px;
    }
}

@media (max-width:767px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo {
        height: 110px;
        padding: 15px;
    }

    .client-logo img {
        max-width: 140px;
        max-height: 55px;
    }
    .home-single-blog img {
    height: 100%;
    width:100%;
}
section#resources .home-blog .vs-blog__style1 {
    display: block;
}
section#resources .home-blog .vs-blog__style1 .blog-img{
    width:100%;
}
section#resources .home-blog .vs-blog__style1 .blog-content {
    padding: 10px 0 0 0;
}
section#resources .home-single-blog .blog-inner-author{
    gap:20px!important;
            justify-content: space-between;
}
section#resources .home-blog .vs-blog__style1 .blog-content p, section#resources .home-blog .vs-blog__style1 .blog-cate, section#resources .home-blog .vs-blog__style1 .blog-inner-author .blog-date:last-child{
    display:block;
}
 section#resources .home-single-blog .vs-blog__style1 .blog-inner-author .blog-date{
         padding-right: 12px;
 }
 .home-single-blog h3.blog-title {
    font-size: 19px;
    line-height: 25px;
    color: #000;
}
}

@media (max-width: 576px) {
    .builder-team {
        grid-template-columns: repeat(1, 1fr);
    }
 section.ul-manage.clients-section2.sec-padding.btm-cities div#city_section ul.ul3{
            grid-template-columns: repeat(2, 1fr);
    }
    .mass-page-marketplace {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .hero-single {

    height: 190px!important;
}
.hero-single.seo.common-banner .hero-content .breadcrumb {
    display: none;
}

    .mass-page-marketplace {
        margin-top: 20px;
    }

    .center-metric {
        padding: 30px 20px;
    }

    .center-metric .percentage {
        font-size: 45px;
    }

    .center-metric h3 {
        font-size: 19px;
    }

    .center-metric p {
        max-width: 100%;
    }

    .seo-item {
        padding: 15px 13px;
    }

    .metric-card.profile {
        min-height: auto!important;
    }


    .platforms img {
        width: 30px;
        height: 30px;
    }
        .client-logo {
        height: 95px;
        padding: 10px;
    }
        .client-logo img {
        max-width: 148px;
        max-height: 51px;
    }
    .business-grid li a {
    gap: 10px;
    padding: 12px 12px;
    font-size: 15px;
    font-weight: 500;

}
section.service_single_area.sec-padding.updated__map .single-sidebar .title h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
}
section.sec-padding.seo-locations ul.ul3 {
        grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:480px) {
    .brands-grid {
        grid-template-columns: 1fr 1fr;
                gap: 7px;
    }
}


@media (max-width: 992px) {
    .mpb-card-bottom {
        margin-left: 0;
    }

    .mpb-connector-line,
    .mpb-rocket-icon {
        display: none;
    }


}

@media(max-width:991px) {

    .section-title {
        font-size: 40px;
    }
    li.nav-item.dropdown:hover a.nav-link.dropdown-toggle.active i {
    transform: rotate(0deg) !important;
}


}

@media(max-width:767px) {

    .performance-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .center-metric .percentage {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .brand-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .logo-container {
        justify-content: center !important;
        gap: 10px;

    }

    .logo-box {
        width: 100%;
    }
}

@media (max-width: 1120px) {
    .event-gallery {
        grid-template-columns: 1fr;
    }

    .event-gallery-column-left {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 340px;
    }

    .event-gallery-column-right {
        grid-template-rows: 250px 420px;
    }
}

@media (max-width: 760px) {
    .event-initiative-section {
        padding-top: 66px;
        padding-bottom: 72px;
    }

    .event-initiative-heading {
        margin-bottom: 30px;
    }

    .event-gallery-column-left,
    .event-gallery-column-right,
    .event-mini-grid,
    .event-initiative-note {
        grid-template-columns: 1fr;
    }

    .event-gallery-column-left,
    .event-gallery-column-right {
        grid-template-rows: none;
    }

    .event-card {
        min-height: 285px;
    }

    .event-card-keynote {
        min-height: 330px;
    }

    .event-initiative-note {
        align-items: start;
        padding: 20px;
    }

    .event-initiative-note a {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .event-initiative-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .event-gallery,
    .event-gallery-column,
    .event-mini-grid {
        gap: 16px;
    }

    .event-card {
        min-height: 270px;
    }

    .event-card-copy p {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .spc-demo-cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spc-demo-cta-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .spc-demo-cta-section {
        padding: 15px;
    }

    .spc-demo-cta-title {
        font-size: 28px;
    }

    .spc-demo-cta-text {
        font-size: 16px;
    }
}

@media (max-width: 1120px) {
    .industries {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .industries .industry-copy {
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .industries {
        padding: initial;
    }

    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (max-width: 420px) {

    .industry-grid img {
        min-height: 128px;
        height: 128px;
    }
}

@media (max-width: 991px) {
    .ppc-landing-showcase-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        ;
    }

    .ppc-landing-image-box img {
        height: auto;
    }
}

@media (max-width: 1120px) {
    .proof-story-layout {
        /*width: min(100% - 48px, 760px);*/
        grid-template-columns: 1fr;
    }

    .proof-story-card {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .proof-section {
        padding: 58px 0 64px;
    }

    .proof-section .section-heading,
    .proof-story-layout {
        width: 100%;
    }

    .proof-section h2 {
        font-size: clamp(30px, 9.2vw, 38px);
        line-height: 1.08;
    }

    .proof-section .section-heading p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .proof-story-card {
        padding: 15px;
    }

    .story-avatars img {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }

    .story-quote {
        font-size: 24px;
        line-height: 1.18;
    }

    .story-author {
        padding-top: 28px;
    }

    .story-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .story-proof span {
        width: 100%;
        justify-content: flex-start;
    }

    .outcome-list article {
        grid-template-columns: 52px 1fr;
        gap: 10px;
        min-height: auto;
        padding: 13px;
    }

    .outcome-icon {
        width: 50px;
        height: 50px;
    }

    .outcome-icon img {
        width: 28px;
        height: 28px;
    }

    .outcome-list h3 {
        font-size: 18px;
    }

    .outcome-list p {
        font-size: 14px;
    }
}

@media(max-width:991px) {

    .small-blog-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .small-blog-image {
        width: 100%;
    }

    .small-blog-image img {
        width: 100%;
        height: 220px;
    }

    .featured-blog-image img {
        height: auto;
    }

    .blog-title-link {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    section#resources .col-lg-7 {
        margin-bottom: 15px
    }
.spc-team-img-wrap {
    border: 1px solid #d4d4d44a;
}
.spc-team-img-wrap img{
    margin:auto!important;
    height:auto!important;
}
    .drs-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        /* 2 columns */
        gap: 10px;
        /* Adjust spacing between boxes */
        background: transparent !important;
        padding: 0;
    }

    .drs-feature-item {
        border: 1px solid #d4d4d4 !important;
        /* The border you want */
        border-radius: var(--radius);
        padding: 10px;
        margin: 0;
        flex-direction: column;
        /* Stacks content */
        align-items: center;
        text-align: center;
        min-height: 170px;
    }

    .drs-feature-item:not(:last-child)::after {
        display: none !important;
    }

    h3.map-title {
        font-size: 22px;
        font-weight: 600;
        /* color: #fff; */
        margin-bottom: 5px;
    }

    img.logo-mobile {
        display: block !important;
    }

    img.logo-dektop {
        display: none;
    }

    .review-rating-card {
        margin: auto;
    }

    .law-video-header,
    .law-video-caption {
        display: none;
    }

    .footer-bottom {

        padding-bottom: 75px;
    }

    .bottom_sticky {
        background: var(--color2);
        z-index: 99999;
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 10px 10px;
        gap: 5px;
        border-top: 1px solid #ffffff21
    }


    .buttons__2 {
        flex: 1;
    }

    .buttons__2:not(:last-child) {
        /*border-right: 1px solid #fff9;*/
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .buttons__2 a {
        justify-content: center;
        color: var(--color2);
        text-decoration: none;
        padding: 12px 8px;
        display: flex;
        font-size: 14px;
        font-weight: 700;
        background: #fff;
        width: 100%;
        border-radius: var(--radius);
        align-items: center;
        gap: 10px;
        line-height: 14px;
        transition: all 0.3s;
    }
    
    .buttons__2 .custom-btn-design {
        justify-content: center;
        color: var(--color2);
        text-decoration: none;
        padding: 12px 8px;
        display: flex;
        font-size: 14px;
        font-weight: 700;
        background: #fff;
        width: 100%;
        border-radius: var(--radius);
        align-items: center;
        gap: 10px;
        line-height: 14px;
        transition: all 0.3s;
    }

    .buttons__2 a:hover {
        background: var(--color1);
        color: #fff;
    }

    .buttons__2 a i {
        font-size: 17px;
    }

    span.btn-b-text {
        display: contents;
        font-size: 10px;
    }

    .primary-nav {
        top: -1px;
        width: 100%;
    }
    .business-grid ul{
    grid-template-columns: repeat(2, 1fr);

    }
    .blog-grid {
    grid-template-columns: repeat(2, 1fr);

}
section.hero-section.bg.fit-head {
    padding: 75px 0 0!important;
}
    .drs-feature-item i {
        color: #fff;
        background: var(--color1);
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
        .drs-items span {
        color: var(--color1);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: -2px;
        font-family: "Sora", sans-serif !important;
    }
    .drs-feature-item .features-title {
        margin: -3px 0 1px;
        font-size: 13px;
        color: #000;
    }
            .drs-feature-item {
            background: #fff;
            border: 1px solid #dbe7f4 !important;
            }
}
@media (max-width: 620px) {
    
  .nav-menu-btn a.demo-btn.desktop-btn.mbil {
        padding: 10px 8px ! Important;
        font-size: 13px!important;
    }   
}

@media (max-width: 576px) {

    .review-rating-card .review-icon,
    .rating-row,
    .review-text {
        display: none;
    }
section.performance-section.platform.sec-padding.video .video-box iframe {
    height: 200px;
}
.spc-founder-img-wrap {
    width: 160px!important;
    height: 160px!important;
}
ul.spc-check-list.list-unstyled.mb-0 {
    text-align: start;
}
.spc-profile-card{
        text-align: center;
}
.spc-small-line{
        margin: 0 auto 18px;
}
    .rating_banner {
        gap: 5px;
        padding: 5px 5px;
        margin-bottom: 10px;
        margin: auto;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .star img {
        vertical-align: sub;
        width: 75px;
    }

    .rating-img img {
        width: 80px;
    }

    star img {
        width: 80px;
    }

    .feature-grid article {
        padding: 15px;
    }


    .review-bullet-card {
        min-height: auto !important
    }

    .review-bullet-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .arrow-btn {
        display: none;
    }

    section.cta-spacing {
        padding-bottom: 50px;
    }

    .footer {
        padding: 50px 0;
    }

    .ppc-landing-showcase-wrap {
        gap: 15px;
    }

    figure.ppc-landing-image-box.d-block.d-md-none {
        margin-top: 30px;
    }

    .industry-services-layout {
        gap: 10px;
    }

    .card.shadow-sm.su-profile-card .card-body {
        padding: 15px;
        text-align: center;
    }

    .sec-title.text-center {
        margin-bottom: 20px;
    }

    .profile-header {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .profile-header {
        display: grid;
    }

    .su-profile-img {
        margin: auto;


    }

    .drs-items span {
        color: var(--color1);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: -2px;
        font-family: "Sora", sans-serif !important;
    }

    .drs-feature-item .features-title {
        margin: -3px 0 1px;
        font-size: 13px;
        color: #000;
    }

    .drs-feature-item i {
        color: #fff;
        background: var(--color1);
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;

    }

    .drs-feature-item {
        justify-content: center;
    }

    .find-feature {
        margin-top: 10px;
    }

    .drs-feature-item {
        background: #fff;
        border: 1px solid #dbe7f4 !important;

    }

    .outcome-list {
        gap: 10px
    }

    .seo-stat span {
        font-size: 22px;
        font-family: "Sora", sans-serif !important;

    }

    .accordion-header {
        margin-bottom: 0;
        line-height: 25px;
    }
    section.performance-section.platform.sec-padding.bg-white .video-box iframe{
        height:200px;
    }
    
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }

    .spc-demo-cta-section {
        gap: 8px;
    }

    section.cta-section .cta-spacing {
        display: block;
    }

    section.mpb-hero-section.sec-padding .sec-title {
        padding-right: 0;
    }

    .mpb-cards-container {
        padding: 0;
        margin-top: 20px;
    }

    .mpb-feature-card {
        display: grid;
    }

    .mpb-stat-item {
        gap: 10px;
        padding: 11px 15px;
    }

    .mpb-stat-item i {
        font-size: 20px;
        width: 37px;
        height: 37px;
    }

    .mpb-stat-content span {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .custom-card {
        padding: 15px;
    }

    .law-video-wrapper {
        margin-top: 15px;

    }

    .footer-bottom .bottom-content {
        gap: 7px;
        justify-content: center;

    }

    .review-trust-card {
        padding: 10px 10px 10px 8px;

    }

    .review-trust-card p {
        font-size: 13px;
        font-weight: 500;
    }

    feature-grid article {
        padding: 15px;
    }
     .business-grid ul{
    grid-template-columns: repeat(1, 1fr);

    }
    .breadcrumb i {
    font-size: 10px;
}
.breadcrumb {
    gap: 6px;
    font-size: 13px;
    line-height: 16px;
            justify-content: center;
}
.breadcrumb a {
    text-decoration: none;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.breadcrumb a i {
    margin-right: 4px;
}
.breadcrumb span {
    font-weight: 600;
    line-height: 23px;
}
.service-details__content.inner_content .blog-content h2 {
    font-size: 28px;
    line-height: 35px;
}
.service-details__content.inner_content .blog-content h3 {
    font-size: 22px;
    line-height: 30px;
}
.service-details__content.inner_content ul li {
    margin-bottom: 3px;
}
.service-details__content.inner_content ul li::before {
    top: 4px;
    width: 20px;
    height: 20px;
    font-size: 10px;
}
.th-blog.blog-single {
    margin-bottom: 20px;
}
.blog-grid {
    grid-template-columns: repeat(1, 1fr);
}

.service-details__content.inner_content .blog-content, .contact-page__contact-info {    padding: 15px;
}
 .review-trust-card p {
        margin-left: 30px;
    }
    section.error-page-area.sec-padding .error-content.text-center .ttm-big-icon i {
    font-size: 65px;
}
section.error-page-area.sec-padding .error-content.text-center h2 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}
.appoinment-one__form {

    padding: 15px;
}
section.dark-suite.sec-padding.bg-subtle.local-growth .spc-tags {
    justify-content: center;
        gap: 9px;
    margin-top: 5px;
}
section.dark-suite.sec-padding.bg-subtle.local-growth .spc-pillar-card {
    text-align: center;
}
.spc-icon-box{
        margin: auto;
}
 .brand-text {
        text-align: center;
        margin-bottom: 10px;
            font-size: 16px;
    line-height: 20px;
    }
    .logo-box{
        height:55px;
    }
.brand-section {
    padding: 20px 0;
}
.logo-box .logo{
        max-width: 100px;
}
ul.follow{
        justify-content: start;
}
.ceo-social-links{
    display: grid;
}
.law-video-responsive{
    height: 220px;
    padding:0;
}
}

@media (max-width: 400px) {
    .buttons__2 a {
        padding: 12px 7;
        font-size: 12px;
    }

    .review-trust-card p {
        margin-left: 40px;
    }
     .drs-feature-item {
        min-height: 205px;
    }
}

@media (max-width: 370px) {

    .review-trust-card p {
        margin-left: 40px;
    }

   
}

















      .spc-team-section {
            background:#fff;
            position: relative;
            overflow: hidden;
        }

        .spc-section-badge {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 22px;
            border: 1px solid rgba(88, 59, 255, 0.35);
            border-radius: 50px;
            color: #5635e8;
            background: rgba(88, 59, 255, 0.06);
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .spc-section-title {
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1.08;
            font-weight: 800;
            color: #101828;
            margin-bottom: 18px;
        }

        .spc-section-title span {
            color: #5536ee;
        }

        .spc-section-title::after {
            content: "";
            display: block;
            width: 90px;
            height: 4px;
            background: #ff6a00;
            margin: 18px auto 0;
            border-radius: 50px;
        }

        .spc-section-desc {
            max-width: 860px;
            color: #24324b;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .spc-profile-card {
            background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: 0 0 6px 0 #0002;
    position: relative;
        border: 1px solid #5138ed6e
        }



        .spc-team-card {
            border: 1px solid rgba(255, 104, 0, 0.35);
            background: linear-gradient(135deg, #ffffff 0%, #fff7f0 100%);
        }

        .spc-founder-img-wrap {
            width: 180px;
            height: 180px;
            margin: 0 auto;
            border-radius: 50%;
            background: #ff6a00;
            overflow: hidden;
            border: 8px solid #fff;
            box-shadow: 0 16px 35px rgba(88, 59, 255, 0.18);
        }

        .spc-founder-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .spc-mini-badge {
             display: inline-flex;
    align-items: center;
    padding: 4px 12px;

    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 9999px;
    margin-bottom: 15px;
        }

        .spc-mini-badge.purple {
                background: var(--color1);
        }

        .spc-mini-badge.orange {
               background: var(--color2);
        }

        .spc-profile-card h3 {
                color: #000;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 4px;
        }

        .spc-profile-card .designation {
                color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
        }

        .spc-team-card .designation {
            color: #ff6a00;
        }

        .spc-profile-card p {
            margin-bottom: 0;
        }

        .spc-small-line {
            width: 46px;
            height: 3px;
            border-radius: 50px;
            margin-bottom: 18px;
        }

        .purple-line {
            background: var(--color1);
        }

        .orange-line {
            background: var(--color2);
        }

        .spc-card-divider {
            height: 1px;
            background: rgba(16, 24, 40, 0.12);
            margin: 32px 0 24px;
        }

        .spc-social-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .spc-social-row strong {
            color: #000;
            font-size: 18px;
        }

        .spc-social-row a {
            width: 40px;
            height: 40px;
            border-radius: var(--radius);
            background: var(--color1);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            transition: 0.25s ease;
        }

        .spc-social-row a:hover {
            background: var(--color2);
        }

        .spc-team-img-wrap {
            border-radius: var(--radius);
            /* overflow: hidden; */
            margin-bottom: 5px;
        }

        .spc-team-img-wrap img {
           width: 100%;
           height: 320px;
           object-fit: cover;
           object-position: top center;
           margin-top: -170px;
               border-radius: var(--radius);
        }
        .spc-check-list li {
            display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    /* color: #182236; */
    /* font-size: 16px; */
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 104, 0, 0.18);
        }

        .spc-check-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

        .spc-check-list i {
            color: #ff6a00;
            font-size: 20px;
            margin-top: 1px;
        }

      

      

section.performance-section.sec-padding.demo {
    margin-top: 60px;
}
section.performance-section.sec-padding.demo .sec-title p span {
    /* color: #444; */
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
}
