
        :root {
            --blue: #1E8ECE;
            --blue-dark: #146B9E;
            --yellow: #F9B127;
            --gray-bg: #F2F2F2;
            --ink: #171717;
            --gray-text: #6E6E6E;
            --dark: #0F0F0F;
            --white: #FFFFFF;
            --border: #E4E4E4;
            --radius-xl: 32px;
            --radius-lg: 24px;
            --radius-md: 16px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            color: var(--ink);
            background: var(--white);
            font-size: 16px;
            line-height: 1.55;
        }

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

        button {
            font-family: inherit;
        }

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

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

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .4px;
            text-transform: uppercase;
            color: var(--ink);
            margin-bottom: 14px;
        }

        .eyebrow svg {
            width: 13px;
            height: 13px;
        }

        h1,
        h2,
        h3 {
            margin: 0;
            font-weight: 700;
        }

        p {
            margin: 0;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            padding: 15px 26px;
            border: none;
            cursor: pointer;
            transition: all .2s ease;
        }

        .btn svg {
            width: 15px;
            height: 15px;
        }

        .btn-primary {
            background: var(--blue);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--blue-dark);
        }

        .btn-outline {
            background: transparent;
            color: var(--ink);
            border: 1.5px solid #cfcfcf;
        }

        .btn-outline:hover {
            border-color: var(--ink);
        }

        .btn-block {
            width: 100%;
            justify-content: center;
            padding: 17px 26px;
            font-size: 16px;
        }

        /* NAV */
        .landing-nav.nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(6px);
            border-bottom: 1px solid var(--border);
        }

        .nav .wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 40px;
        }

        .logo {
            display: flex;
            flex-direction: column;
            line-height: 1;
            width: 10%;
        }


        .nav-links {
            display: flex;
            gap: 36px;
        }

        .nav-links a {
            font-size: 14.5px;
            font-weight: 500;
            color: var(--ink);
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
        }

        .float-actions {
            position: fixed;
            right: 26px;
            bottom: 120px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 40;
        }

        .float-btn {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
        }

        .float-btn svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }

        .float-btn.call {
            background: var(--blue);
        }

        .float-btn.whatsapp {
            background: #25D366;
        }

        /* HERO */
        .section-pad {
            padding: 90px 0;
        }

        .hero-outer {
            padding: 36px 0 0;
        }

        .hero-card {
            background: var(--gray-bg);
            border-radius: var(--radius-xl);
            padding: 70px 60px;
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 40px;
            align-items: start;
            position: relative;
        }
        .sticky-box{
        position:sticky;
         top:90px;
        }

        .hero-card h1 {
            font-size: clamp(22px, 3.6vw, 44px);
            color: var(--ink);
            /* max-width: 14ch; */
            line-height: 60px;
        }

        .hero-sub {
            font-size: 16.5px;
            color: #4d4d4d;
            max-width: 44ch;
            margin: 22px 0 30px;
        }

        .hero-btn-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .trust-row {
            display: flex;
            gap: 34px;
            margin-top: 38px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            font-weight: 500;
        }

       

        
       

        /* ABOUT */
        .about-grid {
            display: grid;
            grid-template-columns: 1.4fr .6fr;
            gap: 40px;
            align-items: center;
        }

        .about-grid h2 {
            font-size: clamp(38px, 5vw, 58px);
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        .about-grid h3 {
            font-size: 22px;
            font-weight: 600;
            margin-top: 18px;
        }

        .about-grid .lead {
            color: var(--gray-text);
            font-size: 15.5px;
            margin-top: 14px;
        }

        .stamp {
            display: flex;
            align-items: center;
            justify-content: end;
        }


        /* STATS BAND */
        .stats-card {
            background: var(--gray-bg);
            border-radius: var(--radius-lg);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin-top: 30px;
        }

        .stats-card .stat {
        padding: 30px 36px;
        border-left: 1px solid #ddd;
        display: flex;
        align-items: center;
        gap: 30px;
        }

        .stats-card .stat:first-child {
            border-left: none;
        }

        .stats-card .num {
            font-size: clamp(24px, 2.6vw, 32px);
            font-weight: 800;
        }

        .stats-card .num b {
            color: var(--blue);
            font-weight: 800;
        }

        .stats-card .lbl {
            font-size: 13.5px;
            font-weight: 700;
            letter-spacing: .4px;
            color: #555;
            margin-top: 4px;
            text-transform: uppercase;
        }

        /* LOGO ROW */
        .logo-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 26px;
        }

        .logo-box {
            /* background: var(--gray-bg);
            border-radius: var(--radius-md);
            height: 96px; */
            display: flex;
            align-items: center;
            justify-content: center;
            /* padding: 14px; */
        }

       

        /* PARTNERS */
        .partners-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-top: 10px;
        }

        .partners-grid h2 {
        font-size: clamp(28px, 3.4vw, 42px);
        max-width: 20ch;
        line-height: 60px;
        }

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

        .badge-cell {
            
            padding: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 96px;
        }
        .bt{
            border-top: 1px solid var(--border);
        }
        .bl{
            border-left: 1px solid var(--border);
        }
        .be{
            border-right: 1px solid var(--border);
        }
        .bb{
            border-bottom: 1px solid var(--border);
        }

       


        /* PROBLEM */
        .problem-card {
            background: var(--gray-bg);
            border-radius: var(--radius-xl);
            padding: 60px;
        }

        .problem-card>.eyebrow-head {
            display: flex;
            align-items: baseline;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .problem-card h2 {
            font-size: clamp(30px, 3.6vw, 44px);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 36px;
        }

        .problem-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .problem-row {
            background: #fff;
            border-radius: 16px;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-weight: 600;
            font-size: 15px;
        }

        .problem-row.active {
            background: var(--blue);
            color: #fff;
        }


        .problem-content {
    display: none;
}

.problem-content.active {
    display: block;
}
        .circ {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #e9e9e9;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .problem-row.active .circ {
            background: rgba(255, 255, 255, .25);
        }

        .circ svg {
            width: 14px;
            height: 14px;
        }

        .problem-img {
            border-radius: 16px;
            height: 220px;
            background: linear-gradient(135deg, #2b2f38, #565f70);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .problem-img svg {
            width: 80px;
            height: 80px;
            opacity: .85;
        }

        .quote-box {
            background: #fff;
            border-left: 3px solid var(--blue);
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin-top: 16px;
            font-size: 14.5px;
            color: #3d3d3d;
        }

        .problem-card .btn {
            margin-top: 34px;
        }

        /* APPROACH */
        .approch-divide h2 {
        max-width: 31ch;
        /* margin-top: 16px; */
        font-weight: 500;
        font-size: 40px;
        line-height: 52px;
        }
        .approch-divide{
        display: grid;
        grid-template-columns: 0.2fr 1fr;
        }

        .step-row {
            display: flex;
            gap: 18px;
            margin-top: 46px;
            height: 300px;
        }

        .step {
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
            transition: flex .35s ease, background .35s ease;
            background: var(--gray-bg);
            padding: 26px;
            flex: 0 0 150px;
        }

        .step.active {
            flex: 1 1 auto;
            background: linear-gradient(160deg, #eaf5fc, #d7ecf8);
            border: 1px solid #bfe0f2;
        }

        .step .step-lbl {
            font-size: 12px;
            font-weight: 600;
            color: #8a8a8a;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .step .badge-num {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2f8fd0, #1a5f92);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            margin-top: 20px;
        }

        .step h4 {
            font-size: 26px;
            font-weight: 700;
            margin-top: 22px;
        }

        .step p {
            font-size: 14px;
            color: #555;
            margin-top: 10px;
            max-width: 34ch;
        }

        .step:not(.active) .vert {
            position: absolute;
            bottom: 26px;
            left: 50%;
            transform: translateX(-50%) rotate(180deg);
            writing-mode: vertical-rl;
            font-size: 19px;
            font-weight: 700;
            color: #333;
            white-space: nowrap;
        }

        .step.active .vert {
            display: none;
        }

        .step:not(.active) .badge-num,
        .step:not(.active) h4:not(.vert-title),
        .step:not(.active) p {
            display: none;
        }

    
/* ========================  BUSINESSES ========================= */

/* =========================
   BUSINESSES
========================= */

.biz-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
    margin-top: 36px;
    align-items: start;
}
/* .businesses-sticky {
    position: sticky;
    top: 100px;
    align-self: start;
}

.biz-cards {
    position: relative;
} */

/* =========================
   LEFT BUSINESS LIST
========================= */

.biz-list {
        position: sticky;
        top: 100px;
    display: flex;
    flex-direction: column;
}

.biz-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    border-bottom: 1px solid var(--border);

    cursor: pointer;

    font-size: 15.5px;
    color: #444;
    font-weight: 500;

    transition:
        background .25s ease,
        color .25s ease;
}

.biz-item .n {
    color: #9a9a9a;
    font-size: 13px;
    margin-right: 14px;
}

.biz-item.active {
    background: var(--gray-bg);
/*  border-radius: 14px; */
    border-bottom-color: transparent;
    color: var(--ink);
    font-weight: 700;
}

.biz-item .arrow {
    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.biz-item.active .arrow {
    opacity: 1;
    transform: translateX(0);
}


/* =========================
   RIGHT CARD AREA
========================= */

.biz-cards {
    position: relative;
}


/*
 * Each wrapper creates the scrolling
 * distance for one card.
 *
 * This is the important part that
 * creates the CodePen-like effect.
 */

.biz-card-wrap {
    position: relative;

    height: 100vh;

    /*
     * Gives the card enough room to remain
     * sticky while the next card approaches.
     */
    padding-top: 1px;
}


/*
 * The actual card is sticky.
 */

.biz-panel {
    position: sticky;

    top: 100px;

    width: 100%;

    min-height: 250px;

    box-sizing: border-box;

    background: linear-gradient(
        160deg,
        #eaf5fc,
        #dcedf7
    );

    border-radius: var(--radius-lg);

    padding: 38px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    align-items: center;


    /*
     * Shadow = depth between cards
     */

    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, .16);


    /*
     * JS changes scale + brightness
     * while scrolling.
     */

    transform-origin: center top;

    transform: scale(1);

    filter: brightness(1);

    will-change: transform, filter;
}


/*
 * Make cards progressively sit
 * over each other.
 */

.biz-card-wrap:nth-child(1) {
    z-index: 1;
}

.biz-card-wrap:nth-child(2) {
    z-index: 2;
}

.biz-card-wrap:nth-child(3) {
    z-index: 3;
}

.biz-card-wrap:nth-child(4) {
    z-index: 4;
}

.biz-card-wrap:nth-child(5) {
    z-index: 5;
}

.biz-card-wrap:nth-child(6) {
    z-index: 6;
}


/* =========================
   CARD CONTENT
========================= */

.biz-panel .icon-sq {
  margin-bottom: 20px;
}

.biz-panel .icon-sq svg {
    width: 22px;
    height: 22px;

    fill: #fff;
}

.biz-panel h4 {
    margin: 0;

    font-size: 26px;
    line-height: 1.15;

    font-weight: 700;
}

.biz-panel p {
    font-size: 14.5px;
    line-height: 1.5;

    color: #444;

    margin-top: 10px;

    max-width: 30ch;
}


/* =========================
   ART
========================= */

.biz-panel .art {
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-panel .art svg {

    width: 64px;
    height: 64px;

    opacity: .85;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .biz-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .biz-list {
        position: sticky;
        top: 70px;

        z-index: 20;

        background: #fff;
    }

    .biz-item {
        padding: 14px 16px;
    }

    .biz-card-wrap {
        height: 85vh;
    }

    .biz-panel {
        top: 90px;

        min-height: 280px;

        padding: 28px;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .biz-panel .art {
        display: none;
    }

    .biz-panel h4 {
        font-size: 23px;
    }

    .biz-panel p {
        max-width: 100%;
    }
}



        /* SERVICES */
        .services-wrap {
            position: relative;
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 30px;
            margin-top: 50px;
        }

        .svc-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .svc-col:nth-child(2) {
            margin-top: 100px;
        }

      .svc-col .svc-card:nth-child(2){
         margin-top: 100px;
      }

        .svc-card {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .svc-thumb {
            /* border-radius: 16px;
            height: 170px; */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .svc-thumb svg {
            width: 60px;
            height: 60px;
            opacity: .9;
        }

        .svc-label {
            background: #fff;
            border-radius: 999px;
            padding: 16px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
            margin-top: 15px;
        }

        .svc-label .plus {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #666;
        }








        

        /* CASE STUDY */
        .case-card {
            background: var(--dark);
            border-radius: var(--radius-xl);
            overflow: hidden;
            color: #fff;
            margin-top: 10px;
        }

        .case-tabs {
            display: flex;
            gap: 40px;
            padding: 30px 44px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            flex-wrap: wrap;
        }

        .case-tab {
            font-size: 14.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, .55);
            padding-bottom: 14px;
            border-bottom: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .case-tab.active {
            color: #fff;
            border-color: #fff;
        }

        .case-body {
            padding: 44px;
            display: grid;
            grid-template-columns: 1.3fr .7fr;
            gap: 24px;
            align-items: center;
            /* background: radial-gradient(circle at 80% 30%, rgba(120, 50, 20, .35), transparent 60%), linear-gradient(120deg, #1c1a17, #2a2420); */
            min-height: 280px;
        }

        .case-study-section .nav-link.active{
        border-bottom: 1px solid white;
        border-radius: 0px;
        background: none;
        border-radius: 0px; 
        }
        .case-study-section .nav-link{
        color: #e3e3e370;
        border-bottom: 1px solid #e3e3e342;
        border-radius: 0px; 
        }
        .case-study-section .nav-pills .nav-link{
        border-radius: 0px; 
        }

        .case-tag {
            font-size: 12.5px;
            font-weight: 700;
            color: var(--yellow);
            letter-spacing: .4px;
            margin-bottom: 16px;
        }

        .case-body h3 {
            font-size: clamp(26px, 3vw, 40px);
            max-width: 15ch;
        }

        .case-stats {
            display: flex;
            gap: 36px;
            margin: 26px 0 18px;
        }

        .case-stats .n {
            font-size: 30px;
            font-weight: 800;
        }

        .case-stats .n.up {
            color: #7fd35f;
        }

        .case-stats .n.down {
            color: #ff6a4d;
        }

        .case-stats .l {
            font-size: 11.5px;
            color: #bbb;
            margin-top: 2px;
            text-transform: uppercase;
        }

        .case-body .desc {
            font-size: 13.5px;
            color: #c9c9c9;
            max-width: 42ch;
        }

        .case-art {
         
        }

        .case-art svg {
            width: 70px;
            height: 70px;
            opacity: .9;
        }

        /* WHY US */
        .why-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 44px;
        }

        .why-row {
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 20px 26px;
            display: grid;
            grid-template-columns: 110px auto 1fr;
            gap: 45px;
            align-items: center;
        }

       .why-row {
        overflow: hidden;
        }


        .why-thumb img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

    .why-row {
    overflow: hidden;
}

.why-thumb {
    height: 90px;
    overflow: hidden;
    transition: height 0.5s ease;
}

.why-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-row:hover .why-thumb {
    height: 130px;
}

        .why-row .n {
            font-size: 12px;
             display: flex;
            align-items: center;
            justify-content: center;
            gap:20px;
        }

        .why-row h4 {
            font-size: 19px;
            font-weight: 600;
            max-width: 20ch;
        }

        .why-row .mid {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .why-row p {
            font-size: 14px;
            color: var(--gray-text);
        }

        .why-closer {
            text-align: center;
            margin-top: 56px;
        }

        .why-closer h3 {
            font-size: clamp(24px, 3vw, 36px);
            line-height: 1.3;
        }

        .why-closer .btn {
            margin-top: 28px;
        }

        /* CONTACT */
        .contact-card {
            background: var(--gray-bg);
            border-radius: var(--radius-xl);
            padding: 60px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .5fr 1.25fr;
            gap: 50px;
        }

        .contact-left h2 {
            font-size: clamp(28px, 3.4vw, 42px);
            margin-top: 14px;
        }

        .contact-sub {
            font-size: 13px;
            font-weight: 600;
            color: #555;
            text-decoration: underline;
            margin-top: 26px;
        }

        .contact-left a.clink {
            display: block;
            font-size: 15.5px;
            font-weight: 600;
            text-decoration: underline;
            margin-top: 8px;
        }

        .mascot-wrap {
            /* margin-top: 40px; */
            position: relative;
            /* width: 170px;
            height: 210px; */
        }

        .mascot-wrap svg {
            width: 100%;
            height: 100%;
        }

       .chip.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
        /* CTA BANNER */
        .cta-banner {
            border-radius: var(--radius-xl);
            padding: 80px 40px;
            text-align: center;
            background: repeating-linear-gradient(100deg, #eceded 0 24px, #e2e3e3 24px 26px), radial-gradient(ellipse at center, #f4f4f4, #d8d9d9);
        }

        .cta-banner h2 {
            font-size: clamp(30px, 4.4vw, 52px);
        }

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

        .cta-banner .btn {
            margin-top: 28px;
        }

        /* FAQ */
        .faq-head h2 {
            font-size: clamp(28px, 3.6vw, 44px);
            margin-top: 14px;
        }

        .faq-list {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 24px 28px;
            transition: background .2s;
        }

        .faq-item.open {
            background: linear-gradient(120deg, #f4fafd, #eef6fb);
            border-color: #dcecf4;
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            gap: 20px;
        }

        .faq-q span {
            font-size: 16.5px;
            font-weight: 600;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background .2s;
        }

        .faq-item.open .faq-toggle {
            background: var(--blue);
            color: #fff;
        }

        .faq-toggle svg {
            width: 13px;
            height: 13px;
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
        }

        .faq-a p {
            font-size: 14.5px;
            color: #555;
            padding-top: 16px;
            max-width: 74ch;
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: #c9c9c9;
            padding: 70px 0 26px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: 30px;
        }


        .footer-grid h6 {
            font-size: 13px;
            font-weight: 600;
            color: #8f8f8f;
            margin: 0 0 4px;
        }

        .footer-col p {
            font-size: 13px;
            color: #c9c9c9;
            line-height: 1.6;
            margin-top: 6px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: #c9c9c9;
            margin-top: 12px;
        }

        .footer-col a:hover {
            color: #fff;
        }

        .foot-block {
            margin-top: 22px;
        }

        .foot-block h6 {
            margin-bottom: 6px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }

        .social-icons a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #1e8ece;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        color: #ffffff;
        }

        .social-icons svg {
            width: 15px;
            height: 15px;
            fill: #0f0f0f;
        }

        .footer-divider {
            border: none;
            border-top: 1px solid #262626;
            margin: 50px 0 30px;
        }

        .connect-word {
            font-size: clamp(48px, 9vw, 110px);
            font-weight: 600;
            color: #fff;
            letter-spacing: -1px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: #8f8f8f;
            margin-top: 30px;
        }

        .footer-bottom a {
            margin-left: 18px;
            color: #8f8f8f;
        }

        @media(max-width:1000px) {

            .hero-card,
            .about-grid,
            .partners-grid,
            .problem-grid,
            .biz-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

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

            .stats-card .stat {
                border-left: none;
                border-top: 1px solid #ddd;
            }

            .stats-card .stat:first-child {
                border-top: none;
            }

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

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

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

            .svc-col:nth-child(2),
            .svc-col:nth-child(3) {
                margin-top: 0;
            }

            .case-body {
                grid-template-columns: 1fr;
            }

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

            .why-row .mid {
                grid-column: 2;
            }

            .why-row p {
                grid-column: 2;
            }

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

            .nav-links {
                display: none;
            }

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




















        /* SERVICES */
.services-section {
    background: var(--gray-bg);
    border-radius: var(--radius-xl);
    margin: 0 20px;
    width: auto;
}

.services-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
}

/* LEFT TITLE */
.services-heading {
    position: relative;
}

.services-heading-inner {
    position: sticky;
    top: 100px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.services-heading h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 20px 0 35px;
}


/* SERVICES GRID */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 30px;
    padding: 80px 0;
}

.svc-card {
    display: flex;
    flex-direction: column;
}

.svc-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.svc-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.svc-label {
    width: 100%;
    background: #fff;
    border-radius: 999px;
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
    margin-top: 15px;
}

.svc-label .plus {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}









/* form-classes */
.landing-form .form-control::placeholder{
    font-size: 12px;
}
.rounded-pill{
    color: var(--bs-secondary-color);
    font-size: 12px;
}
.form-control:focus, .form-select:focus{
    color: none !important;
    background-color: none !important;
    border-color: none !important;
    outline: 0;
    box-shadow: none !important;
}

.landing-form button{
display: block;
    color: white;
    font-size: 17px;
}






































































































.service-rap{
    background: var(--gray-bg);
    border-radius: var(--radius-xl);
    padding: 60px;
}

.alt-portfolio-item {
    position: relative;
    z-index: 3;
     overflow: hidden;
}

.portfolio-area {
    position: relative;
    overflow: hidden;
}

.faq-zoom-img {
    display: block;
    width: 100%;
    transform-origin: center center;
    will-change: transform;
}

.faq-zoom-img {
    display: block;
    width: 100%;
    transform-origin: center center;
}
.alt-portfolio-item {
    overflow: hidden;
}

.alt-portfolio-item img.faq-zoom-img {
    display: block;
    width: 100%;
    transform: scale(1.5);
    transform-origin: center center;
    will-change: transform;
}