/* Page-specific layout for index; tokens + base loaded first in HTML */

a {
    text-decoration: none;
}

body {
    min-height: 100vh;
}

/* Home (index) header: match shared header placement on desktop */

body.home-page .main-header .logo img {
    height: 32px;
    width: auto;
}


/* Product-style top background layer (used by index + smart-promo) */

.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.diagonal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/banner-bg.png') no-repeat right top;
    background-size: contain;
    pointer-events: none;
}

.concentric-circles {
    display: none;
}


/* Header container */

header.header.scrolled {
    position: fixed;
    top: 0;
    background: var(--color-background);
    box-shadow: var(--shadow-header);
}

.header {
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo img {
    height: 32px;
    width: auto;
}

header.header.scrolled .nav-link {
    color: var(--color-primary);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 72px;
}


/* Logo / Brand area */

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Desktop Navigation */

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    position: relative;
}

a.nav-link.book-a-demo {
    background: var(--gradient-hero-cta);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.2s ease;
    background-color: transparent;
    font-family: var(--font-body);
}

.nav-link i {
    font-size: 13px;
    transition: transform 0.2s ease;
    color: #5b6e8c;
}

header .nav-link:hover {
    background: var(--color-primary);
    color: var(--color-on-dark) !important;
}

.nav-link:hover i {
    transform: rotate(180deg);
}


/* Dropdown menu */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.03);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 200;
    overflow: hidden;
    backdrop-filter: blur(0px);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e5c;
    text-decoration: none;
    transition: all 0.15s;
    background: white;
}

.dropdown-menu a i {
    width: 24px;
    margin-right: 8px;
    font-size: 14px;
    color: #5271a0;
}

.dropdown-menu a:hover {
    background-color: #f5f9ff;
    color: #0a2540;
    padding-left: 26px;
}


/* Mobile toggle button (hidden on desktop) */

.mobile-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
}


/* banner section css start here */

.banner {
    background-image: url('../images/background-banner.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    padding: 76px 0 29px;
}

.image-banner img {
    width: 100%;
}

.banner-wr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    gap: 50px;
}

.banner-wr .content h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-primary);
}

.banner-wr .content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 35px;
    line-height: 34px;
    letter-spacing: 0%;
    color: var(--color-primary);
    vertical-align: middle;
    padding: 18px 0;
    border-bottom: 1px solid #000;
}

.banner-wr .content h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-primary);
    padding: 20px 0 10px;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 12px 0;
}

.banner-actions a {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-family: var(--font-body);
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color var(--duration-base), color var(--duration-base), box-shadow var(--duration-base), transform var(--duration-base), opacity var(--duration-base);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.banner-actions a:hover {
    transform: translateY(-1px);
    opacity: 0.92;
    box-shadow: var(--shadow-lg);
}

.banner-wr .content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    padding-top: 16px;
}

.image-banner {
    width: 100%;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.image-banner video {
    height: 400px;
}

.content-left video {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: auto;
}


/* banner section end here */


/* too many section css start here */

.wraper .toogrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.wraper .toogrid .boxed h3 {
    transition: ease-in-out 0.5s;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 7px;
}

.wraper .toogrid .boxed p {
    font-family: var(--font-body);
}

.too-many-links .wraper {
    display: grid;
    /* grid-template-columns: 40% 60%; */
    align-items: center;
    gap: 22px;
}

.too-many-links {
    background-image: url(/assets/images/dev2image/primaryimagebg.webp);
    padding: 60px 0 70px 0;
}

.wraper .toogrid .boxed {
    background: var(--color-surface);
    padding: 30px 20px;
    border-radius: 12px;
    transition: ease-in-out 0.5s;
}

.wraper .toogrid .boxed:hover {
    background-image: url(../images/turn-every-box.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    transition: ease-in-out 0.5s;
}

.too-many-links .wraper .content {
    color: #fff;
}

.too-many-links .wraper .content p {
    font-size: 14px;
    line-height: 26px;
}

.too-many-links .wraper .content a {
    background: linear-gradient(112.26deg, #FFFFFF 0%, var(--color-accent) 83%);
    color: var(--color-text);
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color var(--duration-base), color var(--duration-base), box-shadow var(--duration-base), transform var(--duration-base), opacity var(--duration-base);
    font-weight: 600;
    display: flex;
    width: fit-content;
    margin-top: 14px;
    box-shadow: var(--shadow-md);
}

.too-many-links .wraper .content a:hover {
    transform: translateY(-1px);
    opacity: 0.92;
    box-shadow: var(--shadow-lg);
}

.too-many-links .wraper .content h2 {
    font-size: 32px;
}


/* too many section css end here */


/* The Hard Truth css start here */

.the-hard-truth .container {
    background: linear-gradient(181.59deg, #FFFFFF 1.35%, #EDFFF8 135.67%);
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px 30px;
    margin-top: -35px;
}

.the-hard-truth {
    padding: 0 15px;
}

.the-hard-truth h2 {
    font-size: 32px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    padding-bottom: 5px;
}

.the-hard-truth p {
    color: var(--color-text);
}


/* The Hard Truth css end here */


/* one system css start here */

.main-container {
    width: 100%;
    padding: 0 15px;
}

.journey-section {
    padding: 60px 0;
}

.journey-section h2 {
    font-size: 32px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-align: center;
}

.journey-section p {
    text-align: center;
    padding-top: 7px;
}

.journey-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 41px 0 20px 1px;
    padding: 0;
}

.journey-background-line {
    position: absolute;
    top: 32px;
    left: 113px;
    right: 113px;
    height: 8px;
    background: #CDCDCD;
    z-index: 0;
}

.journey-fill-line {
    position: absolute;
    top: 32px;
    left: 113px;
    height: 8px;
    background: linear-gradient(270deg, #8C84F0 14.85%, #514C8A 91.08%);
    z-index: 1;
    width: 0%;
    transition: width 0.3s ease;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    background: var(--color-surface);
    color: #999;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 1px 3px #00000066 inset;
    border-bottom: 0px solid #00000066;
}

.step-circle.active {
    background: linear-gradient(332.43deg, #28246D 12.73%, #655CE4 86.54%);
    color: white;
}

.step-cards {
    display: flex;
    gap: 16px;
}

.step-card {
    flex: 1;
    padding: 24px;
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.step-card-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.step-card-desc {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .step-cards {
        flex-wrap: wrap;
    }
    .step-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
    }
}


/* one system css end here */


/* Customer Dont Move css start here */

.warper-dont {
    display: grid;
    grid-template-columns: calc(40% - 25px) calc(60% - 25px);
    gap: 50px;
}

.dont-content-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.dont-content-1 h2 {
    text-align: center;
}

.dont-content-1 p {
    text-align: center;
}

.customer-dont {
    margin-top:0px;
    margin-bottom: 61px;
}

.dont-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.item-dont {
    background: var(--color-surface);
    box-shadow: 0px 0px 8px 0px #0000006b;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: ease-in-out 0.5s;
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
    flex-wrap: wrap;
}

.item-dont:hover {
    background-image: url('../images/item-dont-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    transition: ease-in-out 0.5s;
}

.item-dont:hover svg circle {
    fill: #fff;
}

.item-dont:hover svg path {
    stroke: #28246D;
}

.content-left h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    line-height: 34.2px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: center;
    color: var(--color-primary);
    padding-bottom: 20px;
}

.item-dont:hover h3 {
    color: #fff;
}

.item-dont h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 22px;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.boxed-dont p.first-subtitle {
    font-family: var(--font-body);
    color: #4B4B6B;
    text-align: center;
    vertical-align: middle;
    padding-bottom: 40px;
    font-weight: 600;
}

.item-dont:hover p {
    color: #fff;
}

.item-dont p {
    font-family: var(--font-body);
    width: 100%;
    margin-top: 4px;
}

.item-dont svg {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
}


/* Customer Dont Move css end here */


/* Everything You css start here */

.card-every {
    border-radius: 12px;
    border: 1px solid var(--color-accent);
    background: conic-gradient(from -51.24deg at 10% 12.56%, #FFFFFF -223.27deg, #968EE0 81.35deg, #FFFFFF 136.73deg, #968EE0 441.35deg);
    padding: 20px;
    height: 100%;
}

.card-every:hover {
    background: linear-gradient(180deg, #5a54bf 0%, #2c2973 100%);
    border-color: #5b54c8;
}

.card-every {
    transform-style: preserve-3d;
    backface-visibility: visible;
}

.card-every>* {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-every.is-flipped>* {
    transform: rotateY(180deg);
}

.every-arrow .swiper-button-next,
.every-arrow .swiper-button-prev {
    position: static;
    background-color: #61bb9b !important;
    border-radius: 50%;
    color: #fff;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.every-arrow .swiper-button-prev {
    background-color: #a8d9c8;
}

.every-arrow .swiper-button-prev i,
.every-arrow .swiper-button-next i {
    font-size: 14px;
    line-height: 1;
}

.every-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.every-arrow svg.swiper-navigation-icon {
    width: 17px;
    height: 17px;
}

.card-every a {
    background: linear-gradient(114.71deg, #292A64 -3.42%, var(--color-accent) 41.67%);
    color: #fff;
    font-size: 12px;
    padding: 6px;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    transition: ease-in-out 0.5s;
    justify-content: center;
}

.card-every a:hover {
    background: var(--color-secondary);
}

.card-every p {
    color: var(--color-text);
    font-size: 14px;
    text-align: center;
    padding: 10px 0 15px 0;
}

.card-every img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 15px;
}

.card-every h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
}

.everything-sec {
    background-image: url('../images/sades.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 50px 0 100px;
    position: relative;
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
}


/* .everything-sec::before,
.everything-sec::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    border: 2px solid #c6d4cf;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.everything-sec::before {
    top: 12px;
    height: 140px;
    border-bottom: 0;
}
.everything-sec::after {
    bottom: 10px;
    height: 140px;
    border-top: 0;
} */

.everything-sec>* {
    position: relative;
    z-index: 1;
}

.everything-sec .mySwiper {
    margin-top: 40px;
}

.everything-sec h2 {
    font-size: 32px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-align: center;
}

.everything-sec p {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}


/* Everything You css end here */


/* where scanfluncer css start here */

.where-scanfluencer video {
    width: 100%;
}

.where-scanfluencer .warper {
    display: grid;
    grid-template-columns: calc(70% - 40px) calc(30% - 40px);
    gap: 40px;
    margin-top: 30px;
    justify-content: space-between;
}

.where-scanfluencer .vider-where-bd {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    overflow: hidden;
}

.where-scanfluencer h2 {
    font-size: 32px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-align: center;
}

.where-scanfluencer p {
    text-align: center;
}

.where-grid .card,
.right-ct .boxed-rt {
    background: var(--color-surface);
    border-radius: 26px;
    padding: 20px;
    box-shadow: 0px 2px 4px 0px #00000040;
    transition: ease-in-out 0.5s;
}

.where-grid .card:hover,
.right-ct .boxed-rt:hover {
    background-image: url('../images/build-integrate-box.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.where-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.right-ct {
    display: grid;
    gap: 20px;
}

.where-grid .card:hover h3,
.right-ct .boxed-rt:hover h3 {
    color: #fff;
}

.where-grid .card h3,
.right-ct .boxed-rt h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-primary);
    transition: ease-in-out 0.5s;
}

.where-grid .card img,
.right-ct .boxed-rt img {
    width: 40px;
    height: 40px;
}

.where-grid .card:hover p,
.right-ct .boxed-rt:hover p {
    color: #fff;
}

.where-scanfluencer {
    margin-bottom: 70px;
}

.where-grid .card p,
.right-ct .boxed-rt p {
    font-size: 14px;
    text-align: left;
    padding-top: 5px;
    transition: ease-in-out 0.5s;
}


/* where scanfluncer css end here */


/* Built to Integrate css start here */

.build-to-integrate {
    background: var(--color-primary);
    padding: 47px 0;
    color: #fff;
}

.build-to-integrate h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 32px;
}

.build-to-integrate p {
    font-family: var(--font-body);
    text-align: center;
}

.grid-system-build {
    display: flex;
    gap: 15px;
    margin-top: 43px;
    flex-wrap: wrap;
    justify-content: center;
}

.plug-into {
    background: #ffffff1a;
    width: fit-content;
    margin: 0 0 0 auto;
    font-family: var(--font-body);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #c1c1c1a9;
    margin-top: 16px;
}

.grid-system-build .box {
    background: #fff;
    color: #000;
    padding: 20px;
    cursor: pointer;
    border-radius: 20px;
    width: calc(33.33% - 15px);
    transition: ease-in-out 0.5s;
}

.grid-system-build .box.box-4,
.grid-system-build .box.box-5 {
    width: calc(50% - 7.5px);
}

.grid-system-build .box:hover {
    background-image: url('../images/build-integrate-box.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.grid-system-build .box p {
    text-align: left;
    color: var(--color-text);
    font-size: 14px;
    padding-bottom: 15px;
    transition: ease-in-out 0.5s;
}

.grid-system-build .box:hover p {
    color: #fff;
}

.grid-system-build .box:hover h3 {
    color: #fff;
}

.grid-system-build .box h3 {
    color: var(--color-primary);
    transition: ease-in-out 0.5s;
    font-family: var(--font-heading);
}


/* Built to Integrate css end here */


/* Turn Every Interaction  css start here */

.box-wraper-turn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 17px;
    margin: 40px 0;
}

.box-wraper-turn .box {
    /* border: 2px solid var(--color-secondary)80; */
    border-radius: 20px;
    padding: 20px;
    background-image: url('../images/turn-every-box.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    transition: ease-in-out 0.5s;
    cursor: pointer;
}

.box-wraper-turn .box:hover {
    background-image: url('../images/turn-every-box-background.png');
    background-size: cover;
    border-color: var(--color-primary);
    background-position: center;
}

.box-wraper-turn .box:hover h3 {
    color: #fff;
}

.box-wraper-turn .box h3 {
    color: var(--color-primary);
    transition: ease-in-out 0.5s;
    font-family: var(--font-heading);
    padding-bottom: 4px;
}

.box-wraper-turn .box:hover p {
    color: #fff;
}

.box-wraper-turn .box p {
    text-align: left;
    color: var(--color-text);
    font-size: 14px;
    padding-bottom: 15px;
    transition: ease-in-out 0.5s;
}

.action-turn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.action-turn a {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-family: var(--font-body);
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color var(--duration-base), color var(--duration-base), box-shadow var(--duration-base), transform var(--duration-base), opacity var(--duration-base);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.action-turn a:hover {
    transform: translateY(-1px);
    opacity: 0.92;
    box-shadow: var(--shadow-lg);
}

.turn-every-interaction {
    padding: 50px 0 1rem 0;
    position: relative;
}

.turn-every-interaction::after {
    content: '';
    background-image: url('../images/after-icon.png');
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 40%;
}

.turn-every-interaction h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 32px;
    color: var(--color-primary);
}

.turn-every-interaction p {
    font-family: var(--font-body);
    text-align: center;
}


/* Turn Every Interaction  css end here */


/* The Connected css start here */

.the-connected {
    background-image: url('../images/the-connected-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 140px 0 70px;
}

.the-connected h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 32px;
    color: var(--color-primary);
}

.the-connected img {
    max-width: 836px;
    height: auto;
    object-fit: contain;
    margin: 40px auto 0 auto;
    display: flex;
    width: 100%;
}

.the-connected p {
    font-family: var(--font-body);
    text-align: center;
}


/* The Connected css end here */


/* why bussiness choose css start here */

.why-bussines h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 32px;
    color: var(--color-primary);
}

.why-bussines {
    padding: 50px 0 0px;
}

.why-bussines p {
    font-family: var(--font-body);
    text-align: center;
}

.why-bussines article {
    max-width: 800px;
    margin: 35px auto 0 auto;
}

.timeline {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 17px;
    left: 2em;
    width: 1px;
    height: calc(100% + -9em);
    background: #000;
}

@media screen and (min-width: 45em) {
    .timeline:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline__entry {
    position: relative;
    margin-bottom: 2em;
    color: #fff;
}

.timeline__entry:after {
    content: "";
    display: table;
    clear: both;
}

.timeline__id {
    position: absolute;
    top: 1em;
    left: 2em;
    padding: .5em 1em;
    background: #ffff;
    transform: translateX(-50%);
    border-radius: 50%;
    width: 41px;
    height: 41px;
    border: 3px solid var(--color-primary);
}

.timeline__id::after {
    content: "";
    background-color: var(--color-secondary);
    width: 28px;
    height: 28px;
    left: 4px;
    position: absolute;
    top: 4px;
    border-radius: 50%;
}

@media screen and (min-width: 45em) {
    .timeline__id {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline__content {
    position: relative;
    display: block;
    margin-left: 6em;
    background: var(--color-surface);
    transition: ease-in-out 0.5s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    cursor: pointer;
}

.timeline__content h2.timeline__heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 35px;
    line-height: 50px;
    letter-spacing: 0%;
    text-align: center;
    border-bottom: 1px solid #00000080;
    vertical-align: middle;
    background: linear-gradient(180deg, #BCE9D9 0%, #EFFDF8 100%);
    margin-bottom: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline__content h2.timeline__heading svg {
    margin: 10px 0;
}

.timeline__content h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--color-primary);
}

.timeline__content p.timeline__text {
    text-align: center;
    color: var(--color-text);
    font-size: 14px;
    line-height: 23px;
    padding: 0 24px 15px 24px;
    transition: ease-in-out 0.5s;
}

@media screen and (min-width: 45em) {
    .timeline__content {
        margin-left: 0;
        width: calc(50% - 4em);
    }
}

.timeline__content:before {
    content: "";
    position: absolute;
    display: block;
    top: 1em;
    left: -1em;
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-right: 1em solid var(--color-primary);
}

@media screen and (min-width: 45em) {
    .timeline__content:before {
        left: auto;
        right: -1em;
        border-left: 1em solid var(--color-primary);
        border-right: none;
    }
}

@media screen and (min-width: 45em) {
    .timeline__content--flipped {
        float: right;
    }
    .timeline__content--flipped:before {
        left: -1em;
        right: auto;
        border-left: none;
        border-right: 1em solid var(--color-primary);
    }
}


/* why bussiness choose css end here */


/* footer css start here */

footer .wraper-footer {
    display: grid;
    justify-content: space-between;
    background: #fff;
    padding: 50px 20px;
    border-radius: 24px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin: clamp(60px, 10vw + 20px, 210px) 0 20px 0;
}

footer .wraper-footer .box {
    border-right: 1px solid #000;
    padding-right: 30px;
}

footer .wraper-footer .box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid #000;
    width: 100%;
    padding-bottom: 5px;
    /* margin: 10px 0 20px 0; */
    margin: 20px 0 7px 0;
}

.footer-social ul {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.footer-social ul li a:hover svg,
.footer-social ul li a:hover svg rect {
    fill: #2b2766;
    transition: ease-in-out 0.5s;
}

footer .wraper-footer .box p {
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

footer .wraper-footer .box:last-child {
    border-right: 0;
    padding-right: 0;
}

footer {
    position: relative;
    width: 100%;
    font-family: var(--font-body);
    padding: 0 0 30px 0;
    overflow-y: auto;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/footer-background-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer .box.links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    line-height: 31px;
    text-decoration: none;
    transition: ease-in-out 0.5s;
}

footer .box.links a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

footer .box.links h3 {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #000;
    width: 100%;
    margin-bottom: 13px;
    color: var(--color-text);
    padding-bottom: 6px;
}

.wraper-footer .box img {
    object-fit: contain;
    width: 237px;
}

.copyrihgt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
    margin-top: 18px;
}

.copyrihgt ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyrihgt ul li a {
    font-size: 14px;
    transition: ease-in-out 0.5s;
    color: #fff;
}

.copyrihgt ul li a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}


/* footer css end here */


/* Responsive design */

@media screen and (max-width: 1024px) {
    .wraper .toogrid {
        grid-template-columns: 2fr 2fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        color: var(--color-primary);
    }
    .everything-sec .mySwiper {
        margin-top: 0px;
    }
    footer .wraper-footer {
        grid-template-columns: 1fr 1fr;
    }
    footer .wraper-footer .box {
        border-right: 0;
        padding-right: 0;
    }
    footer {
        padding: 50px 0;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    }
    .banner-wr {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .banner-actions {
        justify-content: center;
    }
    .banner-wr .content {
        order: 2;
    }
    .banner {
        padding: 15px 0 15px 0;
        background-image: none;
    }
    .image-banner video {
        height: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: left;
        transition: 0.3s ease;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        padding: 24px 24px 32px;
        gap: 12px;
        align-items: flex-start;
        z-index: 999;
        border-radius: 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 25px;
    }
    .campaign-type_wraper .item-type {
        padding: 15px 0 !important;
    }
    /* Mobile dropdown behavior */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 11px;
        margin-top: 4px;
        border-radius: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        border: 1px solid #eef2f8;
    }
    .nav-item.active-mobile .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 12px 16px;
    }
    .header-actions {
        margin-left: auto;
    }
    .dont-content-1 {
        margin-bottom: 20px;
    }
    .where-scanfluencer .warper {
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .why-bussines {
        padding: 30px 0;
    }
    .the-connected {
        padding: 4px 0 30px;
    }
    .the-hard-truth h2 {
        margin-bottom: 0;
    }
    .header-actions .btn-outline {
        display: none;
    }
    .grid-system-build .box.box-4,
    .grid-system-build .box.box-5 {
        width: calc(100% - 7.5px);
    }
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    .journey-fill-line {
        left: 92px;
        height: 4px;
        width: 60% !important;
        top: 19px;
    }
    .where-grid .card h3,
    .right-ct .boxed-rt h3 {
        font-size: 17px;
    }
    .customer-dont {
        margin: 20px 0;
    }
    .card-every h3 {
        font-size: 18px;
    }
    .timeline__content h2.timeline__heading {
        font-size: 20px;
    }
    .timeline__content h4 {
        font-size: 17px;
    }
    .timeline__content h2.timeline__heading svg {
        width: 30px;
    }
    .timeline__content:before {
        left: -12px;
        border-top: 1em solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid var(--color-primary);
    }
    .timeline__id::after {
        width: 22px;
        left: 3px;
        top: 3px;
        height: 22px;
    }
    .timeline__id {
        padding: 0;
        width: 34px;
        height: 34px;
    }
    .card-every a {
        padding: 10px;
        font-size: 13px;
    }
    .action-turn {
        gap: 9px;
    }
    .action-turn a {
        padding: 9px 15px;
        font-size: 13px;
    }
    .timeline__content p.timeline__text {
        font-size: 13px;
    }
    .timeline__entry {
        margin-bottom: 1em;
    }
    .boxed-dont p.first-subtitle {
        padding: 27px 0;
    }
    .banner-wr .content h5 {
        font-size: 18px;
    }
    .banner-actions {
        gap: 10px;
    }
    .banner-actions a {
        font-size: 13px;
    }
    .plug-into span {
        font-size: 13px;
    }
    .where-grid .card p,
    .right-ct .boxed-rt p {
        font-size: 13px;
    }
    .where-grid .card img,
    .right-ct .boxed-rt img {
        width: 33px;
        height: 33px;
    }
    .too-many-links {
        padding: 45px 0 70px 0;
    }
    .journey-background-line {
        height: 4px;
        top: 19px;
        left: 13px;
    }
    footer .wraper-footer {
        grid-template-columns: 1fr;
    }
    .copyrihgt ul li a,
    .copyrihgt {
        font-size: 10px;
    }
    .image-banner,
    .image-banner video {
        height: auto;
    }
    .where-grid {
        grid-template-columns: 1fr;
    }
    .grid-system-build {
        flex-direction: column;
    }
    .grid-system-build .box {
        width: 100%;
    }
    .box-wraper-turn {
        grid-template-columns: 1fr;
    }
    .where-scanfluencer .warper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .where-scanfluencer {
        margin-bottom: 10px;
    }
    .too-many-links .wraper {
        grid-template-columns: 1fr;
    }
    .warper-dont {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dont-grid {
        grid-template-columns: 1fr;
    }
    .content-left h2,
    .too-many-links .wraper .content h2,
    .the-hard-truth h2,
    .everything-sec h2,
    .everything-sec h2,
    .turn-every-interaction h2,
    .the-connected h2,
    .why-bussines h2,
    .journey-section h2,
    .build-to-integrate h2,
    .where-scanfluencer h2 {
        font-size: 22px;
    }
    .everything-sec {
        padding: 40px 16px;
        padding-bottom: 2rem;
        margin-top: 0rem;
        background-size: contain;
    }
    .why-bussines p,
    .the-connected p,
    .journey-section p,
    .the-hard-truth p,
    .boxed-dont p.first-subtitle,
    .turn-every-interaction p,
    .build-to-integrate p,
    .where-scanfluencer p,
    .everything-sec p {
        font-size: 14px;
        padding-top: 10px;
    }
    .content-left video {
        position: static;
        width: 100%;
        height: auto;
    }
    .wraper .toogrid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .banner-wr .content h3 {
        font-size: 26px;
        padding: 8px 0;
    }
    .banner-wr .content h3 br {
        display: none;
    }
    .banner-wr .content h2 {
        font-size: 26px !important;
        margin-bottom: 0px;
    }
    .timeline__content {
        margin-left: 4em;
    }
    .wraper .toogrid .boxed h3 {
        font-size: 17px;
    }
    .too-many-links .wraper .content a {
        font-size: 13px;
    }
    .journey-section {
        padding: 48px 0;
    }
    .step-card-title {
        font-size: 17px;
    }
    .wraper .toogrid .boxed p {
        font-size: 13px;
    }
    .item-dont h3 {
        font-size: 18px;
        padding: 0;
    }
    .item-dont p {
        font-size: 13px;
    }
}


/* Shared .btn-primary / .btn-secondary live in base.css (design system). */

/* ============================================================
   INDEX TABLET FIXES (768px – 1024px)
   Keep desktop/mobile behavior untouched.
============================================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    body.home-page .main-header {
        padding: 12px 0;
    }
    body.home-page .main-header .navbar {
        gap: 12px;
    }
    body.home-page .main-header .nav-right {
        gap: 12px;
    }
    body.home-page .main-header .nav-links {
        gap: 16px;
    }
    body.home-page .main-header .nav-links .nav-item > .nav-link {
        font-size: 13px;
    }
    body.home-page .main-header .nav-actions {
        gap: 10px;
    }
    body.home-page .main-header .btn {
        padding: 9px 14px;
        font-size: 13px;
    }
    body.home-page .main-header:not(.scrolled) .nav-links .nav-item > .nav-link,
    body.home-page .main-header:not(.scrolled) .sign-in,
    body.home-page .main-header:not(.scrolled) .accordion-arrow {
        color: #fff !important;
    }

    body.home-page .banner {
        padding: 52px 0 30px;
    }
    body.home-page .banner-wr {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 26px;
    }
    body.home-page .banner-actions {
        gap: 12px;
        flex-wrap: wrap;
    }
    body.home-page .image-banner {
        height: auto;
        min-height: 340px;
        display: flex;
        align-items: center;
    }
    body.home-page .image-banner img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    body.home-page .customer-dont {
        margin-bottom: 48px;
    }
    body.home-page .item-dont h3 {
        font-size: 20px;
    }
    body.home-page .item-dont p {
        font-size: 13px;
        line-height: 1.45;
    }

    body.home-page .too-many-links {
        padding: 56px 0 66px;
    }
    body.home-page .wraper .toogrid .boxed {
        padding: 24px 16px;
        min-height: 176px;
    }

    body.home-page .journey-section {
        padding: 52px 0;
    }
    body.home-page .journey-steps {
        margin: 30px 0 16px;
    }
    body.home-page .journey-background-line,
    body.home-page .journey-fill-line {
        left: 76px;
        right: 76px;
        top: 27px;
        height: 6px;
    }
    body.home-page .step-circle {
        width: 54px;
        height: 54px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    body.home-page .step-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    body.home-page .step-card {
        padding: 18px 14px;
    }
    body.home-page .step-card-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    body.home-page .step-card-desc {
        font-size: 13px;
        line-height: 1.45;
    }

    body.home-page .where-grid {
        grid-template-columns: 1fr 1fr;
    }
    body.home-page .where-grid .card {
        min-height: 184px;
    }

    body.home-page .grid-system-build .box {
        width: calc(50% - 8px);
    }
    body.home-page .grid-system-build .box.box-4,
    body.home-page .grid-system-build .box.box-5 {
        width: calc(50% - 8px);
    }

    body.home-page .timeline__content h2.timeline__heading {
        font-size: 30px;
        line-height: 42px;
    }
    body.home-page .timeline__content h4 {
        font-size: 20px;
        line-height: 1.35;
    }
    body.home-page .timeline__content p.timeline__text {
        font-size: 13px;
        line-height: 1.55;
        padding: 0 18px 14px;
    }

    body.home-page .box-wraper-turn {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    body.home-page .box-wraper-turn .box {
        min-height: 170px;
    }
    body.home-page .action-turn {
        flex-wrap: wrap;
        gap: 10px;
    }
}