    /* GLOBAL */
    body {
        margin: 0;
        background: #1A1A1A;
        color: #fff;
        line-height: 1.6;
    }

    /* HEADINGS */
    h1,
    h2,
    h3,
    h4 {
        font-weight: 400;
        /* very important */
        letter-spacing: -0.5px;
        /* premium feel */
        line-height: 1.2;
    }

    /* PARAGRAPH */
    p {
        font-size: 15px;
        color: #cfcfcf;
        /* softer white */
        font-weight: 400;
    }

    /* BUTTON */
    button {
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    /* SMALL TEXT */
    span {
        font-size: 14px;
        color: #aaa;
    }

    * {
        box-sizing: border-box;
    }



    .container {
        padding: 0 20px;
    }

    section {
        padding: 40px 0;
    }

    .flex {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    /* HERO LAYOUT FIX */
    .hero {
        padding-top: 80px;
    }

    .hero-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    /* LEFT */
    .hero-left {
        width: 60%;
    }

    .partner-logo {
        width: 300px;
        height: auto;
        margin-bottom: 20px;
    }

    .hero-left h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .hero-left p {
        color: #aaa;
        margin-top: 20px;
        max-width: 685px;
        font-size: 16px;
        font-weight: 400;

    }

    .hero-btns {
        margin-top: 25px;
    }

    /* RIGHT */
    .hero-right {
        width: 40%;
        z-index: 99;
        margin-right: -20px !important;
        margin-top: 30px;
    }

    /* SLIDER */
    .hero-slider {
        position: relative;
        height: 700px;
        overflow: hidden;
        margin-top: -80px;
    }

    .hero-slider img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        visibility: hidden;
        transition: opacity .6s ease;
    }

    .hero-slider img.active {
        opacity: 1;
        visibility: visible;
    }

    .btn {
        padding: 12px 22px;
        border-radius: 30px;
        text-decoration: none;
        margin-right: 10px;
        font-size: 16px;
    }

    .btn.white {
        background: #fff;
        color: #000;
    }

    .btn.border {
        border: 1px solid #fff;
        color: #fff;
    }

    /* Logo Strip */
    .logo-strip {
        background: #1a1a1a;
        padding: 0;
        overflow: hidden;
    }

    .logo-slider {
        overflow: hidden;
        width: 100%;
    }

    /* 🔥 IMPORTANT */
    .logo-track {
        display: flex;
        gap: 5px;
        width: max-content;
        will-change: transform;
        transform: translate3d(0, 0, 0);
        animation: scroll 40s linear infinite;
    }

    /* LOGO STYLE */
    .logo-track img {
        height: 85px;
        object-fit: contain;
        white-space: nowrap;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    /* 🔥 FIXED ANIMATION */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50%));
        }
    }


    @media(max-width:992px) {
        .hero-wrap {
            flex-direction: column;
            gap: 30px;
        }

        .hero-left,
        .hero-right {
            width: 100% !important;
        }

        .hero-right {
            margin: 0 !important;
        }

        .hero-slider {
            height: 400px;
        }
    }

    @media(max-width:600px) {
        .hero-left h1 {
            font-size: 28px;
            line-height: 1.2;
        }

        .hero-slider {
            height: 280px;
        }

        .hero-slider img {
            object-fit: contain;
            background: #000;
            /* optional */
        }

        .hero-right {
            height: 380px;
        }

        .hero-slider {
            height: 100%;
        }

        .hero-slider img {
            object-fit: cover;
            object-position: center;
        }

        img {
            max-width: 100%;
            height: 35px;
        }

        .partner-logo {
            margin-bottom: 0;
        }

        section {
            padding: 20px 0;
        }
    }





    /* ABOUT SECTION */
    .about-section {
        background: #1A1A1A;
        padding: 20px 0;
        color: #FFF;
    }

    .about-wrap {
        display: flex;
        justify-content: space-between;
        gap: 60px;
    }

    /* LEFT */
    .about-left {
        width: 40%;
    }

    .about-left h2 {
        font-size: 38px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    /* RIGHT */
    .about-right {
        width: 60%;
    }

    .about-right p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 18px;
        color: #FFF;
    }

    .about-right strong {
        font-weight: 600;
        color: #FFF;
    }

    /* services */


    /* ===== SERVICES SECTION ===== */
    .services-section {
        padding: 40px 20px;
        background: #1A1A1A;
    }

    .services-wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1100px;
        margin: auto;
    }

    /* ===== ITEM ===== */
    .service-category {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
    }

    /* ===== PILL ===== */
    .category-card {
        width: 70px;
        height: 330px;
        border-radius: 60px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);

        display: flex;
        align-items: center;
        justify-content: flex-end;

        padding-bottom: 15px;
        position: relative;

        box-shadow:
            inset 0 0 10px rgba(255, 255, 255, 0.08),
            0 10px 30px rgba(0, 0, 0, 0.6);
    }

    /* ===== ICONS STACK ===== */
    .service-icons {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;

        opacity: 0;
        transition: 0.4s;
    }

    /* ACTIVE STATE */
    .service-category.active .service-icons {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* ===== ICON CIRCLE ===== */
    .service-item {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow:
            inset 0 2px 6px rgba(255, 255, 255, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.6);

        transition: 0.3s;
    }

    .service-item:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.15);
    }

    .service-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        border-radius: 50%;
    }

    /* ===== ARROW BUTTON ===== */
    .arrow-btn {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);

        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 18px;
        color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);

        transition: 0.3s;
    }

    .arrow-btn:hover {
        transform: translateX(-50%) translateY(-2px);
    }

    /* CLICK FEEL */
    .service-category.active .arrow-btn {
        transform: translateX(-50%) translateY(5px);
    }

    /* ===== HEADING ===== */
    .service-category h4 {
        margin-top: 25px;
        text-align: center;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .arrow-btn {
        transition: all 0.3s ease;
    }

    /* DEFAULT (closed) */
    .service-category .arrow-btn {
        transform: translateX(-50%) rotate(0deg);
    }

    /* ACTIVE (open) */
    .service-category.active .arrow-btn {
        transform: translateX(-50%) rotate(180deg);
    }











    /* BRANDING */
    /* ===== BRANDING SECTION ===== */
    .branding-section {
        background: #1A1A1A;
        text-align: center;
        position: relative;
    }

    /* WRAP */
    .branding-wrap {
        max-width: 800px;
        margin: auto;
    }

    /* HEADING */
    .branding-section h2 {
        font-size: 38px;
        color: #fff;
        margin-bottom: 20px;
        letter-spacing: -0.3px;
    }

    /* GREEN TEXT */
    .branding-section h2 span {
        color: #22c55e;
        font-size: 38px;
    }

    /* PARAGRAPH */
    .branding-section p {
        color: #b5b5b5;
        font-size: 16px;
        line-height: 1.5;
        max-width: 805px;
        margin: auto;
    }

    /* BOTTOM BORDER LINE */
    .branding-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
    }

    /* SPLIT SECTION */

    /* SECTION */
    .split-section {
        background: #1A1A1A;
        padding: 50px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* WRAP */
    .split-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    /* LEFT */
    .split-left {
        width: 55%;
    }

    .split-left h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .split-left p {
        color: #b5b5b5;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    /* RIGHT */
    .split-right {
        width: 35%;
    }

    /* SLIDER */
    .image-slider {
        position: relative;
        height: 320px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

    .image-slider img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out, transform 1s ease;
        transform: scale(1.1);
    }

    .image-slider img.active {
        opacity: 1;
        transform: scale(1);
    }


    @media(max-width:992px) {
        .split-wrap {
            flex-direction: column;
        }

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

        .hero {
            padding-top: 135px;
        }

        .partner-logo {
            width: 220px;
        }
    }

    @media(max-width:600px) {
        .split-left h2 {
            font-size: 24px;
        }

        .image-slider {
            height: 240px;
        }
    }


    /* ===== SECTION ===== */
    .transform-section {
        background: #1A1A1A;
        padding: 40px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* WRAP */
    .transform-wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
    }

    /* LEFT */
    .transform-left {
        width: 50%;
    }

    .transform-left h2 {
        font-size: 38px;
        line-height: 1.2;

    }

    /* RIGHT */
    .transform-right {
        width: 50%;
    }

    .transform-right p {
        color: #fff;
        font-size: 16px;
        line-height: 1.8;
        text-align: right;
    }

    @media(max-width:992px) {
        .transform-wrap {
            flex-direction: column;
        }

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

    @media(max-width:600px) {
        .transform-left h2 {
            font-size: 24px;
        }

        .transform-wrap {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 0px;
        }


    }




    /* SECTION */
    .cases-section {
        background: #fff;
        padding: 50px 0;
    }


    /* HEADER */
    .cases-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 30px 0;
    }

    .cases-header h2 {
        font-size: 38px;
        color: #111;
    }

    .cases-btn {
        background: #111;
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
    }

    /* SLIDER */
    .cases-slider {
        overflow: hidden;
        position: relative;
    }



    /* CARD */
    .case-card {
        flex: 0 0 calc(33.33% - 14px);
        overflow: hidden;
        text-decoration: none;
        color: #000;
    }

    .case-card img {
        width: 100%;
        aspect-ratio: 3/4;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    /* INFO */
    .case-info {
        display: flex;
        gap: 10px;
        padding: 15px 5px;
        align-items: center;
    }

    .case-info img {
        width: 55px;
        height: 55px;
    }

    .case-info h4 {
        font-size: 15px;
        margin-bottom: 10px !important;
    }

    .case-info p {
        font-size: 16px;
        color: #555;
    }

    /* ARROWS */
    .cases-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 10;
    }

    .cases-nav button {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: none;
        background: #fff;
        cursor: pointer;
        font-size: 18px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .case-prev {
        margin-left: 10px;
    }

    .case-next {
        margin-right: 10px;
    }

    .cases-nav button:hover {
        background: #111;
        color: #fff;
    }

    .cases-track {
        display: flex;
        gap: 20px;
        transition: 0.5s;
        will-change: transform;
    }

    .case-card {
        flex: 0 0 calc(33.33% - 14px);
    }

    /* tablet */
    @media(max-width:992px) {
        .case-card {
            flex: 0 0 calc(50% - 10px);
        }

        .cases-header h2 {
            font-size: 22px;
            color: #111;
        }
    }

    /* mobile */
    @media(max-width:600px) {
        .case-card {
            flex: 0 0 100%;
        }
    }

    @media(max-width:600px) {

        .cases-header {
            flex-direction: column;
            /* 🔥 main fix */
            align-items: flex-start;
            /* text left aligned */
            gap: 15px;
        }

        .cases-header h2 {
            font-size: 22px;
            line-height: 1.3;
        }

        .cases-btn {
            align-self: flex-start;
            /* button left me rahe */
            padding: 10px 18px;
            font-size: 14px;
        }

    }

    /* ACCORDION */
    /* ===== SECTION ===== */
    .accordion-section {
        background: #1A1A1A;
        padding: 40px 0;
        color: #fff;
    }

    /* WRAP */
    .accordion-wrap {
        display: flex;
        justify-content: space-between;
        gap: 60px;
    }

    /* LEFT */
    .acc-left {
        width: 40%;
    }

    .acc-left h2 {
        font-size: 48px;
        line-height: 1.2;
    }

    .acc-left p {
        color: #b5b5b5;
        margin: 15px 0 25px;
        line-height: 1.7;
        font-size: 16px;
    }

    .acc-btn {
        display: inline-block;
        border: 1px solid #fff;
        padding: 10px 22px;
        border-radius: 30px;
        text-decoration: none;
        color: #fff;
    }

    /* RIGHT */
    .acc-right {
        width: 55%;
    }

    /* ITEM */
    .acc-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
    }

    /* HEADER */
    .acc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    /* TITLE WRAP */
    .acc-title {
        position: relative;
        height: 100px;
        display: flex;
        align-items: center;
    }

    /* IMAGE OVERLAY */
    .acc-title img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        width: 140px;
        height: 90px;
        object-fit: cover;

        z-index: 1;
        opacity: 0.8;
    }

    /* Strategy */
    .acc-item:nth-child(1) img {
        left: 0;
    }

    /* Creative */
    .acc-item:nth-child(2) img {
        left: 120px;
    }

    /* Technology */
    .acc-item:nth-child(3) img {
        left: 220px;
    }

    /* Marketing */
    .acc-item:nth-child(4) img {
        left: 80px;
    }

    .acc-title span {
        font-size: 64px;
        font-weight: 300;

        letter-spacing: -2px;

        color: #fff;
        z-index: 2;

        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .acc-title span {
        padding-left: 40px;
    }

    /* ICON */
    .acc-icon {
        font-size: 22px;
        opacity: 0.7;
    }

    /* CONTENT */
    .acc-content {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    /* ACTIVE */
    .acc-item.active .acc-content {
        max-height: 300px;
        margin-top: 20px;
    }

    /* BUTTON */
    .acc-btn-outline {
        display: inline-block;
        margin-top: 15px;
        border: 1px solid #fff;
        padding: 8px 18px;
        border-radius: 25px;
        text-decoration: none;
        color: #fff;
    }

    /* HOVER EFFECT */
    .acc-header:hover .acc-title img {
        opacity: 1;
    }

    @media(max-width:600px) {
        .acc-title span {
            font-size: 34px;
        }

        .acc-left h2 {
            font-size: 28px;
            line-height: 1.2;
        }

        .acc-title img {
            width: 80px;
            height: 60px;
        }
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:992px) {
        .accordion-wrap {
            flex-direction: column;
        }

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

    @media(max-width:600px) {
        .acc-title h3 {
            font-size: 32px;
        }

        .acc-title img {
            width: 80px;
            height: 60px;
        }

        .cases-section {
            background: #fff;
            padding: 0;
        }

    }









    /* PARTNERS */


    /* ===== SECTION ===== */
    .partners-section {
        background: #1A1A1A;
        padding: 50px 0;
        color: #fff;
    }

    /* WRAP */
    .partners-wrap {
        display: flex;
        justify-content: space-between;
        gap: 60px;
    }

    /* LEFT */
    .partners-left {
        width: 50%;
    }

    .partners-left h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;

    }

    .partners-left p {
        color: #b5b5b5;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;

    }

    /* RIGHT GRID */
    .partners-right {
        width: 45%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 30px;
        align-items: center;
    }

    /* LOGOS */
    .partners-right img {
        max-width: 120px;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: 0.3s;
    }

    .partners-right img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    @media(max-width:992px) {
        .partners-wrap {
            flex-direction: column;
        }

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

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

        .partners-left h2 {
            font-size: 28px;
            line-height: 1.2;
            margin-bottom: 20px;
        }
    }

    /* DEFAULT (DESKTOP) */
    .partners-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 30px;
    }

    /* TABLET */
    @media(max-width:992px) {
        .partners-right {
            grid-template-columns: repeat(3, 1fr);
            /* same 3 */
        }
    }

    /* MOBILE FIX 🔥 */
    @media(max-width:600px) {
        .partners-right {
            grid-template-columns: repeat(3, 1fr);
            /* 3 logos per row */
            gap: 20px;
            text-align: center;
        }

        .partners-right img {
            max-width: 80px;
            /* size adjust */
            margin: auto;
        }
    }






    /* TESTIMONIAL */
    .testimonials {
        background: #FFFFFF;
        color: #000;
    }

    /* Container */
    .slider-container {
        overflow: hidden;
        padding: 15px 10px;
    }

    /* Slider */
    .slider {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease;
    }

    /* Card */
    .testimonial-card {
        flex: 0 0 calc((100% - 40px) / 3);
        /* 3 cards */
        box-sizing: border-box;
        margin: 20px 0 40px;
        transform: scale(0.95);
        opacity: 1;
        transition: all 0.4s ease;
    }

    /* Active Center Card */
    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        z-index: 2;
    }

    /* Card UI */
    .card {
        background: #fff;
        border-radius: 14px;
        padding: 50px 20px 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        position: relative;
        height: 100%;
    }

    /* Logo */
    .logo {
        position: absolute;
        top: -25px;
        left: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #fff;
        padding: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

    /* Stars */
    .stars {
        color: #f4c150;
        margin-bottom: 10px;
    }

    /* Text */
    .text {
        font-size: 15px;
        color: #555;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    /* Footer */
    .footer {
        border-top: 1px solid #eee;
        padding-top: 10px;
        font-size: 13px;
    }

    .footer strong {
        display: block;
    }

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

        .slider {
            gap: 0;
        }

        .testimonial-card {
            flex: 0 0 100%;
            transform: scale(1);
            opacity: 1;
        }

        .card {
            padding: 45px 16px 16px;
        }

        .text {
            font-size: 14px;
        }

        .logo {
            width: 50px;
            height: 50px;
            top: -20px;
        }
    }















    /* FOOTER CTA */
    /* SECTION */
    .cta-section {
        background: #FFF;
        border: none !important;
    }

    /* WRAP */
    .cta-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* TEXT */
    .cta-text h2 {
        font-size: 38px;
        line-height: 1.2;
        color: #111;
    }

    /* 🔥 CAPSULE FIX (MAIN CHANGE) */
    .avatar-pill {
        background: #111;
        padding: 12px 20px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        min-width: 400px;
        /* important */
        height: 200px;
        /* important */
        justify-content: center;
    }

    /* 🔥 IMAGE FIX (MAIN CHANGE) */
    .avatar-img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #111;
    }


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

        .flex,
        .about,
        .split,
        .accordion,
        .cta {
            flex-direction: column;
        }

        .hero-left,
        .hero-right,
        .split .left,
        .split .right,
        .acc-left,
        .acc-right {
            width: 100%;
        }

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

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

    @media(max-width:600px) {

        .services,
        .case-grid,
        .test-grid {
            grid-template-columns: 1fr;
        }

        .hero h1 {
            font-size: 34px;
        }

        .cta-section {
            background: #FFF;
            border: none !important;
        }
    }

    /* ===== TABLET FIX ===== */
    @media(max-width:992px) {

        /* HERO SAFE */
        .hero-wrap {
            flex-direction: column !important;
        }

        .hero-left,
        .hero-right {
            width: 100% !important;
        }

        .hero-right {
            margin-right: 0 !important;
        }

        /* ABOUT SAFE */
        .about-wrap {
            flex-direction: column !important;
        }

        .about-left,
        .about-right {
            width: 100% !important;
        }

        /* SERVICES SAFE */
        .services-wrap {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        /* tablet */
        @media(min-width:768px) {
            .services-wrap {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* desktop */
        @media(min-width:1024px) {
            .services-wrap {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .service-category {
            width: 45% !important;
        }



    }

    /* ===== MOBILE FIX ===== */
    @media(max-width:600px) {

        /* HERO */
        .hero-left h1 {
            font-size: 32px !important;
            line-height: 1.2 !important;
        }

        /* SERVICES */
        .services-wrap {
            flex-direction: column !important;
        }

        .service-category {
            width: 100% !important;
        }

        /* GRID FIX */
        .case-grid {
            grid-template-columns: 1fr !important;
        }


        /* AVATAR FIX */
        .avatar-pill {
            transform: scale(0.8);
        }

        .about-left h2 {
            font-size: 24px;
        }

        .about-wrap {
            gap: 0px;
        }

    }

    @media(max-width:600px) {
        .cta-wrap {
            flex-direction: column;
            text-align: center;
        }

        .cta-text h2 {
            font-size: 24px;

        }

        .avatar-pill {
            min-width: auto;
            height: auto;
            padding: 20px;
        }

        .about-left h2 {
            font-size: 24px !important;
        }

        .about-left h2 span {
            font-size: 24px !important;
        }

        .branding-section h2 {
            font-size: 24px !important;
        }

        .branding-section h2 span {
            font-size: 24px !important;
        }
    }

    .about-section,
    .services-section,
    .split-section,
    .cases-section,
    .accordion-section,
    .partners-section,
    .testimonials {

        contain-intrinsic-size: 1000px;
    }

    @media(max-width:768px) {

        .hero-slider,
        .image-slider {
            transform: translateZ(0);
            will-change: transform;
        }

    }


    /* =====================================================
   SERVICES
===================================================== */

    .services {
        padding: 80px 0;
    }

    .services-head {
        max-width: 900px;
        margin-bottom: 80px;
    }

    .services-head h2 {
        font-size: clamp(60px, 5vw, 130px);
        line-height: .9;
        letter-spacing: -4px;
    }

    .services-head h2 span {
        color: #5f5f5f;
        font-size: clamp(60px, 7vw, 130px);
    }

    .services-layout {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 28px;
    }

    .service-card {
        position: relative;
        overflow: hidden;
        min-height: 420px;
        border-radius: 38px;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, .08);
        background: #0d0d0f;
        transition: .6s cubic-bezier(.16, 1, .3, 1);
    }

    .service-card:hover {
        transform: translateY(-12px);
    }

    .service-card.large {
        grid-column: span 7;
    }

    .service-card.small {
        grid-column: span 5;
    }

    .service-bg {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: .6s ease;
    }

    .service-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-bg:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .2));
    }

    .service-card:hover .service-bg {
        opacity: 1;
    }

    .service-content {
        position: relative;
        z-index: 2;
    }

    .service-index {
        color: #fff;
        margin-bottom: 30px;
       font-size:26px;
    }

    .service-card h3 {
        font-size: 56px;
        line-height: .95;
        margin-bottom: 24px;
    }

    .service-card p {
        color: #fff;
        line-height: 1.9;
        padding-bottom: 40px;
    }

    .service-arrow-box {
        position: absolute;
        bottom: 40px;
        right: 40px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        color: #000 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .4s ease;
    }

    .service-arrow-box span {
        font-size: 25px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000 !important;
    }

    .service-card:hover .service-arrow-box {
        transform: rotate(45deg);
    }

    /* =====================================================
   FINAL CTA
===================================================== */

    .final-cta {
        position: relative;

        padding: 80px 0;

        overflow: hidden;

        background: #f5f5f5;
    }

    .cta-blur {
        position: absolute;

        border-radius: 50%;

        filter: blur(100px);

        opacity: .45;
    }

    .blur-1 {
        width: 420px;
        height: 420px;

        background: #dcdcdc;

        top: -150px;
        left: -120px;
    }

    .blur-2 {
        width: 500px;
        height: 500px;

        background: #e8e8e8;

        right: -200px;
        bottom: -180px;
    }

    /* BOX */

    .final-cta-box {
        position: relative;
        z-index: 2;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 120px;
        align-items: center;
    }

    /* LEFT */

    .light-tag {
        color: #555;
    }

    .final-cta-left h2 {
        font-size: clamp(60px, 7vw, 120px);

        line-height: .88;

        letter-spacing: -6px;

        color: #000;

        margin: 24px 0 30px;
    }

    .final-cta-left h2 span {
        color: #8c8c8c;
        font-size: clamp(60px, 7vw, 120px);
    }

    .final-cta-left p {
        max-width: 560px;

        font-size: 22px;

        line-height: 2;

        color: #555;

        margin-bottom: 45px;
    }

    /* BUTTONS */

    .cta-actions {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .cta-btn {
        height: 64px;

        padding: 0 34px;

        border-radius: 18px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        text-decoration: none;

        font-weight: 600;

        transition: .45s cubic-bezier(.16, 1, .3, 1);
    }

    .cta-btn:hover {
        transform: translateY(-6px);
    }

    .white-btn {
        background: #000;
        color: #fff;
    }

    .dark-btn {
        background: #fff;

        color: #000;

        border: 1px solid rgba(0, 0, 0, .08);
    }

    /* RIGHT */

    .final-cta-right {
        display: flex;
        justify-content: center;
    }

    .cta-pill-wrap {
        position: relative;
    }

    /* BG */

    .cta-circle-bg {
        position: absolute;

        width: 560px;
        height: 560px;

        border-radius: 50%;

        border: 2px dashed rgba(0, 0, 0, .08);

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);
    }

    /* PILL */

    .cta-pill {
        position: relative;
        z-index: 2;

        width: 520px;
        height: 240px;

        border-radius: 200px;

        background: #fff;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow:
            0 40px 100px rgba(0, 0, 0, .08);
    }

    .cta-pill img {
        width: 190px;
        height: 190px;

        object-fit: cover;

        border-radius: 50%;

        border: 8px solid #fff;

        transition: .6s ease;
    }

    .cta-pill:hover img:first-child {
        transform: translateX(-10px);
    }

    .cta-pill:hover img:last-child {
        transform: translateX(10px);
    }

    .cta-pill img:first-child {
        margin-right: 5px;
        z-index: 99;
    }

    .cta-pill img:last-child {
        margin-left: -34px;
    }

    /* FLOATING BADGES */

    .floating-badge {
        position: absolute;

        padding: 16px 22px;

        border-radius: 100px;

        background: #fff;

        color: #000;

        font-size: 14px;
        font-weight: 600;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, .08);
    }

    .badge-top {
        top: -66px;
        right: 20px;
    }

    .badge-bottom {
        bottom: -70px;
        left: 10px;
    }

    /* MOBILE */

    @media(max-width:992px) {

        .final-cta-box {
            grid-template-columns: 1fr;
        }

        .final-cta-right {
            margin-top: 60px;
        }

    }

    @media(max-width:768px) {

        .final-cta {
            padding: 120px 0;
        }

        .final-cta-left h2 {
            font-size: 54px;

            letter-spacing: -3px;
        }

        .final-cta-left p {
            font-size: 18px;
        }

        .cta-pill {
            width: 100%;
            max-width: 360px;

            height: 170px;
        }

        .cta-pill img {
            width: 120px;
            height: 120px;
        }

        .cta-circle-bg {
            width: 360px;
            height: 360px;
        }

        .floating-badge {
            font-size: 12px;

            padding: 12px 18px;
        }

    }
