﻿@media(min-width: 991px) {
    .container {
        padding: 0 60px
    }
}

.service-hero-sec {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url('/frontend-assets/images/services/service-hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.service-title {
    letter-spacing: -0.96px;
    margin-bottom: 8px;
}

.service-heo-content {
    margin-top: 32px;
    gap: 32px;
    align-items: end;
    padding-bottom: 54px;
}

.service-heo-content .left-col {
    max-width: 623px;
    width: 100%;
    z-index: 1;
}

.service-heo-content .right-col {
    width: 100%;
}

.service-heo-content .award-title {
    margin-top: 32px;
    margin-bottom: 24px;
}

.service-heo-content .awards-wraper {
    gap: 20px;
}

.mb_60 {
    margin-bottom: 60px;
}

.book-a-call-card {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--color-black-012);
    background: var(--color-black-0035);
    backdrop-filter: blur(6px);
    max-width: 434px;
    width: 100%;
    gap: 16px;
    z-index: 1;
    margin-left: auto;
}

.book-a-call-card .book-call-text {
    margin-top: 8px;
    margin-bottom: 24px;
}

.service-btn {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    gap: 8px;
}

.service-card-common {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-btn-dark {
    padding: 8px 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 24px;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid transparent;
}


.service-btn-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-black) !important;
    border: 1px solid var(--color-black) !important
}

.service-btn-dark:hover svg path {
    stroke: var(--color-black);
}

.service-btn:hover svg path {
    stroke: var(--color-primary);
}

.service-heo-content .bubble-image {
    right: 0;
    bottom: -27px;
    z-index: 0;
}

/* â”€â”€ Agency page variables â”€â”€ */
:root {
    --agency-card-bg: var(--color-black-300);
    --audience-card-hover-bg: var(--color-black-210);
    --agency-card-border: var(--color-white-08);
    --agency-section-gap: 48px;
    --agency-card-radius: 16px;
    --agency-icon-bg: var(--color-white-08);
    --agency-icon-size: 48px;
    --agency-signs-bg: var(--color-white);
    --agency-signs-dot: var(--color-primary);
    --agency-nav-bg: var(--color-black-200);
    --agency-nav-border: var(--color-white-08);
    --agency-cta-card-bg: var(--color-black-700);
}

/* â”€â”€ Sticky nav â”€â”€ */
.agency-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--agency-nav-bg);
    border-bottom: 1px solid var(--agency-nav-border);
}

.agency-nav-mobile-toggle {
    display: none;
}

.tools-tab-mobile-toggle {
    display: none;
}

.deliverables-tab-mobile-toggle {
    display: none;
}

.agency-nav-list {
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 24px;
}

.agency-nav-list::-webkit-scrollbar {
    display: none;
}

.agency-nav-link {
    display: block;
    padding: 8px 12px;
    color: #71717A;
    white-space: nowrap;
    transition: color .2s;
    border-radius: 6px;
}

.agency-nav-link:hover,
.agency-nav-link.active {
    color: var(--color-primary);
    background-color: #282601;
}


/* â”€â”€ Section header (title + desc side by side) â”€â”€ */
.agency-section-header {
    padding: 60px 0;
    position: relative;

}

.bg-blobe-effect {
    position: relative;
    overflow: hidden;

}

.bg-blobe-effect::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: -webkit-fill-available;
    height: 192px;
    transform: translateX(-50%);
    /* z-index: 80; */
    background-image: url('/frontend-assets/images/services/section-blob.png');
    background-size: cover;
    background-repeat: no-repeat;
}



.agency-section-title {
    max-width: 450px;
    letter-spacing: -0.72px;
    margin-top: 16px;
    font-size: 36px;
    line-height: 44px;
}

.agency-section-desc {
    max-width: 630px;
}

/* â”€â”€ Audience grid â”€â”€ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--agency-card-border);
    border-radius: 14px;
    overflow: hidden;
}

.audience-card {
    position: relative;
    min-height: 314px;
    padding: 24px;
    background: var(--agency-card-bg);
    transition: color .2s;

}

.audience-card:nth-child(2) {
    border-left: 1px solid var(--agency-card-border);
    border-right: 1px solid var(--agency-card-border);
}

.audience-card:nth-child(3) {
    border-right: 1px solid var(--agency-card-border);
}


.audience-card::before,
.service-offer-card::before,
.why-card::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;
    top: -300px;
    left: -250px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(243, 254, 0, 0.75) 0%,
            rgba(243, 254, 0, 0.35) 20%,
            rgba(243, 254, 0, 0.15) 45%,
            rgba(243, 254, 0, 0.05) 70%,
            transparent 100%);

    filter: blur(50px);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.audience-card:hover::before,
.service-offer-card:hover::before,
.why-card:hover::before {
    opacity: 1;
}

.audience-card:hover,
.why-card:hover {
    background: var(--audience-card-hover-bg);

}


.audience-card-title {
    margin-bottom: 8px;
}

/* â”€â”€ Signs section â”€â”€ */

.signs-card {
    display: grid !important;
    grid-template-columns: minmax(100px, 508px) 1fr;
    padding: 60px 32px;
    border-radius: var(--agency-card-radius);
    background: var(--agency-signs-bg);
    gap: 48px;
    align-items: start !important;
}


.signs-heading {
    color: #27272A;
    letter-spacing: -0.72px;
}

.signs-subtitle {
    margin-top: 16px;
    margin-bottom: 12px;
    color: #52525B
}

.signs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 24px;
}

.signs-list li {
    gap: 8px;
    color: #52525B;
}

.signs-image-wrap {
    border-radius: 8px;
    height: calc(100% - 48px);
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;

}

.services-offer-header {
    padding: 0;
    padding-bottom: 48px;
}

.services-offer-heading {
    max-width: 499px;
}

.services-offer-desc {
    max-width: 447px;
}

/* â”€â”€ Services offer grid â”€â”€ */
.services-offer-grid {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--color-gray-muted);
    border-radius: 14px;
}


.service-offer-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    min-height: 253px;
    padding: 24px;
    background: var(--color-black-210);
    position: relative;
    overflow: hidden
}

.service-offer-card:nth-child(2),
.service-offer-card:nth-child(8) {
    border-left: 1px solid var(--color-gray-muted);
    border-right: 1px solid var(--color-gray-muted);
}

.service-offer-card:nth-child(5) {
    border: 1px solid var(--color-gray-muted);
}

.service-offer-card:nth-child(4),
.service-offer-card:nth-child(6) {
    border-top: 1px solid var(--color-gray-muted);
    border-bottom: 1px solid var(--color-gray-muted);
}

/* .service-offer-card:not(:nth-child(3n + 1)) {
    border-left: 1px solid var(--color-gray-muted);
}

.service-offer-card:nth-child(n + 4) {
    border-top: 1px solid var(--color-gray-muted);
} */



.service-offer-title {
    margin-bottom: 8px;
}

.service-offer-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: var(--color-white);
    border-color: var(--agency-card-border);
}

.service-offer-cta:hover {
    background: var(--color-primary);
}

.service-offer-cta h3 {
    color: #27272A;
    margin-bottom: 8px;
}

.service-offer-cta p {
    color: #52525B;
}

.service-offer-cta:hover .services-cta {
    background-color: var(--color-white) !important;
}

.service-offer-cta .services-cta:hover {
    background-color: transparent !important;
}

.service-offer-cta:hover .services-cta span {
    color: var(--color-black);
}

.service-offer-cta:hover .services-cta svg path {
    stroke: var(--color-black);
}

/* â”€â”€ Process section â”€â”€ */

.process-section {
    background-color: var(--color-cream-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--color-gray-410);
    border-radius: 14px;
    overflow: hidden;
}

.process-card {
    min-height: 399px;
    max-width: 330px;
    background-color: var(--color-white);
}

.process-card:hover {
    background-color: var(--color-gray-50);
}

.process-card:nth-child(2) {
    border-left: 1px solid var(--color-gray-410);
    border-right: 1px solid var(--color-gray-410);
}

.process-card-content {
    min-height: 208px;
}

.process-card ul {
    margin-top: 24px;
    gap: 8px;
}

.process-card ul li {
    gap: 8px;
}

.process-card-cta {
    /* height: 399px;    */
    max-width: 330px;
    background-color: var(--color-gray-950);
}

.process-img-wrapper {
    height: 193px;
}


.process-content {
    padding: 20px;
    background-color: var(--color-gray-950);
    gap: 32px;

}

.process-content h3 {
    margin-bottom: 10px;

}

.process-content a {
    padding: 8px 16px !important;

}

.process-layout {
    gap: 64px;
    margin-top: 32px;
    align-items: flex-start;
}

.process-left {
    max-width: 540px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--agency-card-border);
}

.process-step-item:first-child {
    border-top: 1px solid var(--agency-card-border);
}

.process-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--agency-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-step-title {
    margin-bottom: 10px;
}

.process-step-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.process-step-list li::before {
    content: "â€“";
    margin-right: 6px;
    color: var(--color-primary);
}

.process-right {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
}

.process-image {
    border-radius: var(--agency-card-radius);
    width: 100%;
    margin-bottom: 20px;
}

.process-cta-card {
    padding: 24px;
    border-radius: var(--agency-card-radius);
    background: var(--agency-cta-card-bg);
    border: 1px solid var(--agency-card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

/* â”€â”€ Tools section â”€â”€ */
:root {
    --tools-sidebar-bg: var(--color-gray-900);
    --tools-tab-active-bg: var(--color-primary-gradient);
    --tool-card-bg: var(--color-black-700);
    --use-case-tag-bg: var(--color-white-08);
    --win-cta-bg: var(--color-primary);
    --start-project-bg: var(--color-black-800);
    --testimonial-card-bg: var(--color-black-700);
    --deliverable-sub-bg: var(--color-white-08);
}


.tools-layout {
    gap: 24px;
    align-items: flex-start;
}

.tools-sidebar {
    width: 246px;
    padding: 12px;
    flex-shrink: 0;
    border-radius: 14px;
    background-color: var(--tools-sidebar-bg);
}

.tools-tab-list {
    display: flex;
    gap: 8px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 9px;
}

.tools-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-gray-165);
    padding: 12px 16px;
    transition: color .2s, background .2s;
    /* border-left: 2px solid transparent; */
    border-radius: 6px;
    position: relative;
}

.active-tab-line {
    display: none;
    position: absolute;
    top: 11.5px;
    left: 0;
}

.tools-tab-btn.active .active-tab-line {
    display: block;
}

.tools-tab-btn:hover,
.tools-tab-btn.active {
    color: var(--color-primary);
    background: var(--tools-tab-active-bg);
    border-left-color: var(--color-primary);
}

.tools-content-area {
    background-color: var(--color-cream-200);
    border-radius: 14px;
    border: 0.6px solid #F1EFE6;
}




.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px 24px;
    transition: border-color .2s;
    max-width: 262px;
    width: 100%;
    height: 195px;
}

.tools-icon {
    height: 72px;
    width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card:nth-child(2),
.tool-card:nth-child(4),
.tool-card:nth-child(5),
.tool-card:nth-child(7) {
    background-color: var(--color-cream-300);
}


/* â”€â”€ Use Cases â”€â”€ */

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--color-white);
    border-radius: 14px;
    border: 1px solid var(--color-gray-410);
    overflow: hidden;

}

.use-case-card {
    gap: 24px;
    transition: border-color .2s;
}

.use-case-card:hover {
    background-color: var(--color-gray-50);
}


.use-case-card:first-child,
.use-case-card:nth-child(2),
.use-case-card:nth-child(4),
.use-case-card:nth-child(5),
.use-case-card:nth-child(7),
.use-case-card:nth-child(8) {
    border-right: 1px solid var(--color-gray-410);
    border-bottom: 1px solid var(--color-gray-410);
    ;
}

.use-case-card:nth-child(7),
.use-case-card:nth-child(8) {
    border-bottom: none;
}

.use-case-card:nth-child(6) {
    border-top: 1px solid var(--color-gray-410);
    border-bottom: 1px solid var(--color-gray-410);
}

.use-case-title {
    margin-bottom: 12px;
}

.use-case-link {
    gap: 6px;
}

.hidden-arrow-icon {
    opacity: 0;
    margin-top: 4px;
}

.use-case-card:hover .hidden-arrow-icon {
    opacity: 1;
}

.use-case-card:hover .use-case-link {
    text-decoration: underline;
}

/* â”€â”€ Deliverables â”€â”€ */

.deleiverable-tab {
    background-color: transparent;
    border: none;
}

.deliverables-layout {
    display: grid;
    grid-template-columns: minmax(230px, 698px) minmax(230px, 606px);
}

.deliverables-left {
    position: relative;
    border-radius: 14px 0 0 14px;
    border-top: 1px solid var(--color-gray-muted);
    border-bottom: 1px solid var(--color-gray-muted);
    border-left: 1px solid var(--color-gray-muted);
}

.deliverables-left::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;
    top: -300px;
    right: -300px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(243, 254, 0, 0.75) 0%,
            rgba(243, 254, 0, 0.35) 20%,
            rgba(243, 254, 0, 0.15) 45%,
            rgba(243, 254, 0, 0.05) 70%,
            transparent 100%);

    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.5s ease-in;
    pointer-events: none;
}

.deliverables-left:hover::before,
.deliverable-card:hover::before {
    opacity: 1;
}

.deliverables-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 0 14px 14px 0;
    border: 1px solid var(--color-gray-muted);
}

.deliverable-card:not(:nth-child(2n + 1)) {
    border-left: 1px solid var(--color-gray-muted);
    ;
}

.deliverable-card:nth-child(n + 3) {
    border-top: 1px solid var(--color-gray-muted);
    ;
}

.deliverable-card {
    position: relative;
    overflow: hidden;
}

.three-card-layout:first-child {
    grid-column: span 2;
    border-bottom: 1px solid var(--color-gray-muted);
}

.three-card-layout:first-child::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: 65%;
    left: 25%;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(243, 254, 0, 0.75) 0%,
            rgba(243, 254, 0, 0.35) 20%,
            rgba(243, 254, 0, 0.15) 45%,
            rgba(243, 254, 0, 0.05) 70%,
            transparent 100%);
    filter: blur(50px);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.three-card-layout:first-child:hover::before {
    opacity: 1;
}

.three-card-layout:last-child {
    border-left: 1px solid var(--color-gray-muted);
    border-top: none;
}

.three-card-layout:nth-child(2) {
    border-left: none;
}


.deliverable-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: 65%;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(243, 254, 0, 0.75) 0%,
            rgba(243, 254, 0, 0.35) 20%,
            rgba(243, 254, 0, 0.15) 45%,
            rgba(243, 254, 0, 0.05) 70%,
            transparent 100%);
    filter: blur(50px);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.animated-icon {
    margin-top: 72px;
}



/* â”€â”€ Why grid â”€â”€ */

.why-wrapper {
    background-color: var(--color-rich-black);
    border-radius: 14px;
    padding: 60px 32px;
}

.why-card-wrapper {
    background-color: var(--color-black-300);
    border: 0.6px solid var(--color-gray-muted);
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.why-card {
    position: relative;
    overflow: hidden;
    max-width: 418px;
    min-height: 272px;
    gap: 64px;
    transition: border-color .2s;
}

.why-card:first-child,
.why-card:nth-child(2),
.why-card:nth-child(3) {
    border-bottom: 0.6px solid var(--color-gray-muted);
}

.why-card:nth-child(2),
.why-card:nth-child(5) {
    border-left: 0.6px solid var(--color-gray-muted);
    border-right: 0.6px solid var(--color-gray-muted);
}


/* â”€â”€ Win CTA â”€â”€ */
.win-cta-wrapper {
    background-image: url('/frontend-assets/images/services/win-cta-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 64px;
    margin-top: 64px;
    border-radius: 14px;
    margin-left: 32px;
    margin-right: 32px;
}

.win-cta-wrapper-left {
    max-width: 779px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px
}


/* â”€â”€ FAQ section â”€â”€ */

.faq-center-wrap {
    /* max-width: 880px; */
    margin: 0 auto;
}

.faqs-wrapper {
    border-radius: 14px;
    border: 1px solid var(--color-gray-250);
    overflow: hidden;
    background-color: var(--color-white);
}

.faq-item {
    border-bottom: 1px solid #E4E4E7;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-btn {
    padding: 24px;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: padding 0.3s ease;
}

.faq-item.active .faq-btn {
    padding: 24px 24px 7px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.faq-item .minus-icon {
    display: none;
}

.faq-item.active .plus-icon {
    display: none;
}

.faq-item.active .minus-icon {
    display: block;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    max-width: 665px;
    width: 100%;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px;
}


/* start project section */
.start-gradient-section {
    padding-top: 48px;
    padding-bottom: 48px;
    background-image: url('../images/gradient-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%
}


/* â”€â”€ Testimonial + Contact layout â”€â”€ */
.testimonial-contact-layout {
    gap: 64px;
    align-items: flex-start;
}

.testimonial-col {
    max-width: 400px;
    flex-shrink: 0;
}

.testimonial-card {
    padding: 28px;
    border-radius: var(--agency-card-radius);
    border: 1px solid var(--agency-card-border);
    background: var(--testimonial-card-bg);
}

.contact-col {
    min-width: 0;
}

.insights-wraper {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.insight {
    border: 1px solid var(--color-gray-250);
    border-radius: 12px;
    text-decoration: none
}

.thumbnail-wraper {
    height: 196px
}

.insight-content {
    background: var(--color-white);
    /* backdrop-filter: blur(6px); */
    padding: 24px;
    height: calc(100% - 196px);
}

/* @media (max-width: 768px) { */


.stacke-holder-left {
    z-index: -1;
    width: calc(100% - 48px);
    left: 24px;
    right: 24px;
    bottom: 24px;
    opacity: 0;
    transform: scale(0);
    transition: all .8s ease;
    transition-property: opacity, transform;
}

.deliverables-left:hover .stacke-holder-left {
    opacity: 1;
    transform: scale(1);
}

.stacke-holder-left .animated-img {
    width: 100%;
}

.stacke-holder {
    inset: 0;
    z-index: -1;
}

.stacke-holder1 {
    opacity: 0;
    transform: scale(0);
    transition: all .5s ease;
    transition-property: opacity, transform;
}

.deliverable-card:hover .stacke-holder1 {
    opacity: 1;
    transform: scale(1);
}

.deliverable-card svg path {
    transition: all .5s ease;
    transition-property: fill;
}

.deliverable-card:hover svg path {
    fill: var(--color-primary);
}

.stacke-holder1 .horizontal-line {
    width: 120px;
    height: 2px;
    background: var(--color-primary-dull);
}

.stacke-holder1 .horizontal-line:nth-child(2) {
    width: 100px;
}

.stacke-holder .stack-center {
    gap: 12px;
}

.stacke-holder1 .stack-center {
    transform: translateY(-17px);
}

.stacke-holder2 .stack-center {
    transform: translate(-20px, -10px);
}

.stacke-holder2 .stack-center {
    gap: 14px;
}

.stacke-holder2 .bar {
    width: 20px;
    background: var(--color-primary-dull-022);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.5);
    transition: all .5s ease;
    transition-property: opacity, transform;
    transform-origin: bottom right;
}

.stacke-holder2 .bar:first-child {
    transform-origin: bottom left;
}

.deliverable-card:hover .stacke-holder2 .bar {
    opacity: 1;
    transform: scale(1);
}

.stacke-holder2 .bar:nth-child(even) {
    background: var(--color-primary);
}

.stacke-holder2 .bar:nth-child(odd) {
    filter: blur(1px);
}

.stacke-holder2 .bar:first-child {
    height: 22px;
}

.stacke-holder2 .bar:nth-child(2) {
    height: 36px;
}

.stacke-holder2 .bar:nth-child(3) {
    height: 16px;
}

.stacke-holder2 .bar:nth-child(4) {
    height: 30px;
}

.stacke-holder2 .bar:nth-child(5) {
    height: 20px;
}

.stacke-holder3 .journy-grid {
    max-width: 140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 18px 1fr;
    gap: 6px;
}

.stacke-holder3 .journy-grid .small-ball,
.stacke-holder4 .ball {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
}

.stacke-holder3 .journy-grid .small-ball {
    opacity: 0;
    transition: opacity .5s ease;
}

.stacke-holder4 .ball.ball-14 {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    margin-right: 11px;
    transform: translateY(-27px) scale(0.3);
}

.stacke-holder3 .journy-grid .small-ball-18,
.stacke-holder4 .ball.ball-18 {
    width: 18px;
    height: 18px;
}

.stacke-holder4 .ball.ball-18 {
    margin-left: 9px;
    margin-right: 10px;
    transform: translateY(-30px) scale(0.3);
}

.stacke-holder3 .journy-grid .small-ball-18 {
    background-color: var(--color-primary-dull);
    filter: blur(1px);
    opacity: 0;
    transform: translateX(-35px) scale(0.5);
    transform-origin: center;
    transition: all .5s ease;
    transition-property: opacity, transform;
}

.stacke-holder3 .journy-grid .small-ball-10,
.stacke-holder4 .ball.ball-10 {
    width: 10px;
    height: 10px;
}

.ball_10_2 {
    margin-left: 7px;
    transform: translateY(-20px) scale(0.3);

}

.stacke-holder3 .journy-grid .small-ball-10 {
    opacity: 0;
    transform: translateX(-120px) scale(0.5);
    transform-origin: center;
    transition: all .5s ease;
    transition-property: opacity, transform;
}

.stacke-holder3 .journy-grid .horizontal-line {
    width: 45px;
    height: 1.6px;
    background: var(--color-primary-dull);
}

.stacke-holder3 .journy-grid .horizontal-line.line1 {
    opacity: 0;
    transform: translateX(-10px) scaleX(0);
    transform-origin: center left;
    transition: all .5s ease;
    transition-property: opacity, transform;
}

.stacke-holder3 .journy-grid .horizontal-line.line2 {
    opacity: 0;
    transform: translateX(-120px) scale(0.3);
    transform-origin: center right;
    transition: all .5s ease;
    transition-property: opacity, transform;
}

.deliverable-card:hover .stacke-holder3 .journy-grid .small-ball,
.deliverable-card:hover .stacke-holder3 .journy-grid .horizontal-line {
    opacity: 1;
    transform: translateX(0) scaleX(1);
}

.deliverable-card .stacke-holder4 {
    left: -19%;
    bottom: 16%;
}

.stacke-holder4 .ball.ball-12:first-child {
    transform: translateY(-20px) scale(0.3);
}

.stacke-holder4 .ball {
    opacity: 0;
    transition: all .7s ease;
    transition-property: opacity, transform;
}

.stacke-holder4 .ball:nth-child(even) {
    background: var(--color-primary-dull);
    filter: blur(1px);
}

.deliverable-card:hover .stacke-holder4 .ball {
    opacity: 1;
}

.deliverable-card:hover .stacke-holder4 .ball.ball-12:first-child {
    transform: translateY(0) scale(1);
}

.deliverable-card:hover .stacke-holder4 .ball:nth-child(5) {
    transform: translateY(10px) scale(1);
}

.deliverable-card:hover .stacke-holder4 .ball.ball-12:first-child {
    transform: translateY(15px) scale(1);
}

.deliverable-card:hover .stacke-holder4 .ball.ball_10_2 {
    transform: translateY(30px) scale(1);
}

.deliverable-card:hover .stacke-holder4 .ball.ball_10_1 {
    transform: translateY(7px) scale(1);
}

.deliverable-card:hover .stacke-holder4 .ball.ball-18 {
    transform: translateY(25px) scale(1);
}

.deliverable-card:hover .stacke-holder4 .ball.ball-14 {
    transform: translateY(27px) scale(1);
}

.service-navigation .services-header {
    position: sticky;
    top: 36px;
    z-index: 5;
    background: var(--color-black-300);
    padding-top: 60px;
}


/* Updated styles after new design */

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;

}

.card-icon.primary-icon {
    border: 0.8px solid rgba(243, 254, 0, 0.20);
    background: rgba(243, 254, 0, 0.10);
}

.card-icon.gray-icon {
    border: 0.8px solid #E7E7E4;
    background: #FAF9F4;
}

.card-icon.black-icon {
    border: 0.8px solid #2A2A27;
    background: #FAF9F4;
}

.card-icon.cta-card-icon {
    border: 0.8px solid rgba(243, 254, 0, 0.20);
    background: #000;
}

.tool-section-header {
    padding-bottom: 48px;
}

.col-span-2 {
    grid-column: span 2 !important;
}



/* â”€â”€ Responsive additions â”€â”€ */

@media (max-width: 1200px) {

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

    .audience-card:first-child {
        border-right: 1px solid var(--agency-card-border);
        border-bottom: 1px solid var(--agency-card-border);
    }

    .audience-card:nth-child(4) {
        border-top: 1px solid var(--agency-card-border);
        border-left: 1px solid var(--agency-card-border);
    }


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



    .use-case-card:first-child,
    .use-case-card:nth-child(3),
    .use-case-card:nth-child(5),
    .use-case-card:nth-child(7) {
        border-right: 1px solid var(--color-gray-410);
        border-bottom: 1px solid var(--color-gray-410);
    }

    .use-case-card:nth-child(8) {
        border-bottom: 1px solid var(--color-gray-410);
    }

    .use-case-card:nth-child(6) {
        border-top: none;
        border-bottom: none;
    }

    .tool-card:nth-child(2),
    .tool-card:nth-child(4),
    .tool-card:nth-child(6),
    .tool-card:nth-child(8) {
        background-color: var(--color-cream-300);
    }

    .tool-card:nth-child(5),
    .tool-card:nth-child(7) {
        background-color: transparent;
    }

    .tool-card {
        max-width: 100%;
    }


    .use-case-card:nth-child(2),
    .use-case-card:nth-child(4) {
        border-right: none;
    }

    .use-case-card:nth-child(8) {
        border-right: none;
        border-top: 1px solid var(--color-gray-410);
    }

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


    .insights-wraper {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .deliverables-sub-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        justify-content: start;
        gap: 40px;
    }
}

@media (max-width: 991px) {

    .sm_py_24 {
        padding: 40px 0;
    }

    .agency-section-header {
        padding: 30px 0;
    }

    .service-heo-content {
        flex-direction: column;
    }

    .agency-section-header {
        flex-direction: column;
        gap: 16px;
    }

    .service-hero-sec {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .agency-section-title,
    .agency-section-desc {
        max-width: 100%;
    }

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

    .service-offer-card:nth-child(1),
    .service-offer-card:nth-child(3),
    .service-offer-card:nth-child(5),
    .service-offer-card:nth-child(7) {
        border-bottom: 1px solid var(--color-gray-muted);
        border-right: 1px solid var(--color-gray-muted);
    }

    .service-offer-card:nth-child(2),
    .service-offer-card:nth-child(4),
    .service-offer-card:nth-child(6),
    .service-offer-card:nth-child(8) {
        border-bottom: 1px solid var(--color-gray-muted);
    }


    .service-offer-card:nth-child(2),
    .service-offer-card:nth-child(8) {
        border-left: none;
        border-right: none;
    }

    .service-offer-card:nth-child(4) {
        border-top: none;
    }

    .service-offer-card:nth-child(5) {
        border-left: none;
        border-top: none;
    }


    .service-offer-card:last-child {
        width: 100% !important;
        grid-column: span 2;
    }





    .process-layout {
        flex-direction: column;
        gap: 40px;
    }

    .process-left,
    .process-right {
        max-width: 100%;
        width: 100%;
    }

    .signs-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .book-a-call-card {
        margin-left: unset;
    }



    .deliverables-left {
        max-width: 100%;
    }

    .testimonial-contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-col {
        max-width: 100%;
    }

    .tools-layout {
        flex-direction: column;
        gap: 24px;
    }

    .tools-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--agency-card-border);
        display: flex;
        overflow-x: auto;
    }

    .tools-tab-btn {
        border-left: none;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
    }

    .tools-tab-btn.active {
        border-left-color: transparent;
        border-bottom-color: var(--color-primary);
    }

    .tools-content-area {
        padding-left: 0;
    }

    .win-cta-inner {
        flex-direction: column;
    }

    .start-project-inner {
        flex-direction: column;
    }

    .why-card-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .why-card:nth-child(3) {
        border-right: 0.6px solid var(--color-gray-muted);
    }

    .why-card:nth-child(2) {
        border-left: 0.6px solid var(--color-gray-muted);
        border-right: none;
    }

    .why-card:nth-child(5) {
        border-left: none;
        border-right: 0.6px solid var(--color-gray-muted);
    }

    .why-card:nth-child(4) {
        border-bottom: 0.6px solid var(--color-gray-muted);
    }

    .md_items_start {
        align-items: start;
    }

    .agency-section-header {
        flex-direction: column;
        gap: 16px;
    }

    .services-offer-header,
    .tool-section-header {
        flex-direction: column;
        gap: 16px;
    }

    .process-card {
        justify-content: start;
        gap: 20px;
        max-width: 100%;
        min-height: auto;
    }

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

    .process-card:first-child {
        border-bottom: 1px solid var(--color-gray-410);
        border-right: 1px solid var(--color-gray-410);
    }

    .process-card:nth-child(3) {
        border-right: 1px solid var(--color-gray-410);
    }

    .process-card:nth-child(2) {
        border-left: none;
        border-right: none;
    }

    .process-card-cta {
        max-width: 100%;
    }

    .tools-tab-list {
        flex-direction: row;
    }

    .tools-sidebar::-webkit-scrollbar {
        display: none;
    }

    .md-col-span-1 {
        grid-column: span 1 !important;
    }

     .signs-image-wrap{
        width: 100%;
        height: auto;
    }




}

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

    .process-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .deliverables-layout {
        grid-template-columns: 1fr;
    }

    .deliverables-left {
        height: 250px;
        border-radius: 14px 14px 0 0;
        border-right: 1px solid var(--color-gray-muted);
        border-bottom: none;
    }

    .deliverables-right {
        border-radius: 0 0 14px 14px;
    }


    .insights-wraper {
        grid-template-columns: repeat(2, 1fr)
    }

    .win-cta-wrapper {
        margin-top: 24px;
        margin-left: 0;
        margin-right: 0;
    }



}

@media (max-width: 575px) {
    .sm_pb_24 {
        padding-bottom: 24px;
    }

    .sm_py_24 {
        padding: 24px 0;
    }

    .sm_mb_24 {
        margin-bottom: 24px;
    }

    .sm-mt-24 {
        margin-top: 24px;
    }

    .sm-mt-0 {
        margin-top: 0;
    }

    .sm-gap-32 {
        gap: 32px;
    }

    .agency-section-header {
        padding: 24px 0;
        justify-content: start;
    }

    .process-header {
        padding: 0;
    }

    .services-offer-header {
        padding-bottom: 24px;
        flex-direction: column;
        gap: 16px;

    }

    .audience-card {
        min-height: auto;
        gap: 40px;
        padding: 24px;

    }

    .audience-card:nth-child(2) {
        border-top: 1px solid var(--agency-card-border);
        border-bottom: 1px solid var(--agency-card-border);
    }

    .service-offer-card:last-child {
        width: 100% !important;
        grid-column: span 1;
    }

    .signs-subtitle {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .tool-section-header {
        flex-direction: column;
        padding-bottom: 24px;
    }

    .hidden-arrow-icon {
        opacity: 1;
        margin-top: 4px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .tool-card {
        gap: 12px;
        padding: 18px 24px;
        max-width: 100%;
        height: auto;
    }

    .tools-icon {
        width: 34px;
        height: 34px;
    }

    .tools-icon img {
        width: 34px;
        height: 34px;
    }

    .agency-nav-list {
        margin-bottom: 16px;
    }

    .win-cta-sec {
        padding: 40px 0;
    }

    .start-project-sec {
        padding: 48px 0;
    }

    .insights-wraper {
        grid-template-columns: 1fr
    }

    .agency-section-title {
        max-width: 100%;
        margin-top: 8px;
        font-size: 24px;
        line-height: 32px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .services-offer-grid {
        grid-template-columns: 1fr;
    }

    .signs-card {
        padding: 24px 16px;
        gap: 24px;

    }

    .signs-image-wrap{
        width: 100%;
        height: 229px;
    }

    .signs-image-wrap img{
        height: 229px !important;
    }

    .agency-nav-link {
        padding: 14px 14px;
    }

    .service-title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -0.72px;
    }

    .service-heo-content {
        margin-top: 0;
        padding-bottom: 0;
    }

    .service-offer-card {
        justify-content: start;
        min-height: fit-content;
        padding: 24px;
        gap: 32px;
        position: relative;
        overflow: hidden;
        padding: 20px;
    }


    .service-heo-content .award-title,
    .faqs-wrapper {
        margin-top: 24px;
    }


    .service-offer-card:nth-child(1),
    .service-offer-card:nth-child(3),
    .service-offer-card:nth-child(5),
    .service-offer-card:nth-child(7) {
        border-bottom: none;
        border-right: none;
    }

    .service-offer-card:nth-child(2),
    .service-offer-card:nth-child(4),
    .service-offer-card:nth-child(6),
    .service-offer-card:nth-child(8) {
        border-top: 1px solid var(--color-gray-muted);
    }


    .process-card {
        max-width: 100%;
        flex-direction: column;
        justify-content: start;
        gap: 32px;
        min-height: fit-content;
    }

    .process-card-content {
        height: auto;
    }

    .process-card:nth-child(2) {
        border-top: 1px solid var(--color-gray-410);
        border-bottom: 1px solid var(--color-gray-410);
    }



    .process-card:last-child {
        border-top: 1px solid var(--color-gray-410);
    }

    .process-card:first-child {
        border-bottom: none;
        border-right: none;
    }

    .process-card:nth-child(3) {
        border-right: none;
    }

    .use-case-card:nth-child(2),
    .use-case-card:nth-child(4),
    .use-case-card:nth-child(6),
    .use-case-card:nth-child(8) {
        border-top: 1px solid var(--color-gray-410);
        border-bottom: 1px solid var(--color-gray-410);
        ;
    }


    .use-case-card:first-child,
    .use-case-card:nth-child(3),
    .use-case-card:nth-child(5),
    .use-case-card:nth-child(7) {
        border-right: none;
        border-bottom: none;
    }

    .award-title {
        font-size: 12px;
    }

    .book-a-call-card {
        flex-wrap: wrap;
    }

    .book-call-img,
    .book-call-img img {
        width: 100%;
        height: auto;
    }

    .book-a-call-card .service-btn {
        width: 100%;
    }

    .service-heo-content .bubble-image {
        top: -2px;
        bottom: unset;
        right: -23px;
        width: 176px;
        height: 174px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .win-cta-sec {
        padding: 40px 0;
    }

    .start-project-sec {
        padding: 48px 0;
    }

    .insights-wraper {
        grid-template-columns: 1fr
    }

    .sm_mb_40 {
        margin-bottom: 40px;
    }

    .deliverables-left {
        border-radius: 14px 14px 0 0;
        border-top: 1px solid var(--color-gray-muted);
        border-right: 1px solid var(--color-gray-muted);
        border-left: 1px solid var(--color-gray-muted);
    }

    .deliverables-left {
        height: auto;
    }

    .deliverables-right {
        grid-template-columns: 1fr;
    }

    .deliverables-right {
        border-radius: 0 0 14px 14px;
        border: 1px solid var(--color-gray-muted);
    }

    .deliverable-card:not(:nth-child(2n + 1)) {
        border-left: none;
        ;
    }

    .deliverable-card:nth-child(n + 2) {
        border-top: 1px solid var(--color-gray-muted);
        ;
    }

    .why-wrapper {
        padding: 24px 16px;
    }

    .why-card-wrapper {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
        max-width: 100%;
    }

    .why-card:nth-child(n + 2) {
        border-top: 0.6px solid var(--color-gray-muted);
        ;
    }

    /* .why-card:not(:nth-child(3n + 1)) {
        border-left: none;
    } */

    .blogs-section {
        background-color: var(--color-cream-white) !important;
    }

    .start-gradient-section {
        padding: 24px 8px;
    }

    .agency-section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .win-cta-wrapper {
        padding: 24px;
    }

    .win-cta-wrapper-right {
        margin: 0 auto;
    }

    .why-card-wrapper {
        grid-template-columns: 1fr;
    }

    .why-card {
        border-left: none !important;
        border-right: none !important;
    }

    .why-card:last-child {
        border-bottom: none;
    }

    .tool-card:nth-child(2),
    .tool-card:nth-child(3),
    .tool-card:nth-child(6),
    .tool-card:nth-child(7) {
        background-color: var(--color-cream-300);
    }

    .tool-card:nth-child(4),
    .tool-card:nth-child(8) {
        background-color: transparent;
    }

    .service-navigation .services-header {
        padding-top: 45px;
        top: 58px;
        padding-bottom: 8px;
    }

    /* Mobile dropdown nav */
    .agency-nav-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        background: transparent;
        border: 1px solid #3f3f46;
        border-radius: 10px;
        color: #fff;
        cursor: pointer;
        margin-bottom: 0;
    }

    .agency-nav-chevron {
        transition: transform 0.25s ease;
        flex-shrink: 0;
        color: #71717a;
    }

    .agency-nav-mobile-toggle[aria-expanded="true"] .agency-nav-chevron {
        transform: rotate(180deg);
    }

    .agency-nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #1a1a1a;
        border: 1px solid #3f3f46;
        border-top: none;
        border-radius: 0 0 10px 10px;
        padding: 8px;
        margin-bottom: 0;
    }

    .agency-nav-list.agency-nav-list--open {
        display: flex;
    }

    .agency-nav-list li {
        width: 100%;
    }

    .agency-nav-link {
        width: 100%;
        border-radius: 6px;
        white-space: normal;
        padding: 12px 14px;
    }

    /* Tools sidebar mobile dropdown */
    .tools-tab-mobile-toggle {
        display: flex;
    }

    .tools-tab-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        z-index: 10;
        background: #1a1a1a;
        border: 1px solid #3f3f46;
        border-radius: 0 0 10px 10px;
        padding: 8px;
        gap: 2px;
    }

    .tools-sidebar {
        position: relative;
        overflow: visible;
    }

    .tools-sidebar--open .tools-tab-list {
        display: flex;
    }

    .tools-tab-btn {
        padding: 12px 14px;
        border-radius: 6px;
        text-align: left;
    }

    /* Deliverables tab list mobile */
    .deliverables-tab-mobile-toggle {
        display: flex;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .deliverables-tab-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #1a1a1a;
        border: 1px solid #3f3f46;
        border-top: none;
        border-radius: 0 0 10px 10px;
        padding: 8px;
        margin-bottom: 0;
    }

    .deliverables-tab-list.agency-nav-list--open {
        display: flex;
    }

    .deliverables-tab-list li {
        width: 100%;
    }

    .tool-card:nth-child(2),
    .tool-card:nth-child(3),
    .tool-card:nth-child(6),
    .tool-card:nth-child(7) {
        background-color: var(--color-cream-300);
    }

    .tool-card:nth-child(4),
    .tool-card:nth-child(8) {
        background-color: transparent;
    }

    .three-card-layout:first-child {
        grid-column: span 1;
        border-bottom: none
    }

    .three-card-layout:last-child {
        border-left: none;
    }

}