    .unique-card {
        border-radius: 22px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border: none;
        backdrop-filter: blur(12px);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        color: #000;
        z-index: 1;
    }

    .unique-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        transform: rotate(15deg);
        transition: 0.6s ease-in-out;
        z-index: 0;
        opacity: 0.9;
        background-size: 200% 200%;
        animation: gradientMove 6s infinite alternate ease-in-out;
    }

    .unique-card.odd::before {
        /* background: linear-gradient(135deg, #dceeff, #a8cfff, #dceeff); */
        background: linear-gradient(135deg, #f0f7fd, #ebf2fa, #e4eef8);
    }

    .unique-card.even::before {
        /* background: linear-gradient(135deg, #ffe9e2, #ffd5cc, #ffe9e2); */
        background: linear-gradient(135deg, #f9f1ee, #fbf4f2, #faf5f4);
    }

    .unique-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        /* border: 2px solid rgba(0, 0, 0, 0.05); */
    }

    .unique-icon {
        width: 85px;
        height: 85px;
        margin: 0 auto 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        color: #fff;
        position: relative;
        z-index: 1;
        transition: all 0.4s ease-in-out;
    }

    .unique-card.odd .unique-icon {
        background: linear-gradient(135deg, #2872cc, #66a4da);
        box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
    }

    .unique-card.even .unique-icon {
        background: linear-gradient(135deg, #ff7b54, #ff3e3e);
        box-shadow: 0 8px 20px rgba(255, 94, 77, 0.3);
    }

    .unique-card:hover .unique-icon {
        /* transform: scale(1.2) rotate(8deg); */
        transform: scale(1.2);
    }

    .unique-card h5 {
        font-weight: 700;
        margin-bottom: 14px;
        color: #111;
        font-size: 22px;
        letter-spacing: 0.5px;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .unique-card.odd:hover h5 {
        color: #2872cc;
    }

    .unique-card.even:hover h5 {
        color: #ff3e3e;
    }

    .unique-card p {
        color: #444;
        font-size: 15.5px;
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    @media (max-width: 576px) {
        .unique-card {
            padding: 22px 18px;
        }

        .unique-card h5 {
            font-size: 18px;
        }

        .unique-card p {
            font-size: 14px;
        }
    }

    /* Floating Animation */
    .floating {
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    .service-timeline {
        position: relative;
        padding-left: 30px;
        border-left: 3px solid #e5e7eb;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 30px;
        padding-left: 50px;
    }

    .timeline-item .icon {
        position: absolute;
        left: -55px;
        top: 34px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }

    .timeline-item .content {
        background: #fff;
        border-radius: 15px;
        padding: 15px 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .timeline-item .content:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

    .timeline-item h5 {
        margin-bottom: 8px;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .service-timeline {
            border-left: none;
            padding-left: 0;
        }

        .timeline-item {
            padding-left: 0;
            text-align: center;
        }

        .timeline-item .icon {
            position: relative;
            left: 0;
            margin: 0 auto 10px;
        }
    }

    .expertise-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #f0f0f0;
    }

    .expertise-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }

    .expertise-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #fff;
        margin: 0 auto;
    }

    .bg-gradient-blue {
        background: linear-gradient(135deg, #36a3f7, #0066ff);
    }

    .bg-gradient-purple {
        background: linear-gradient(135deg, #a855f7, #6b21a8);
    }

    .bg-gradient-green {
        background: linear-gradient(135deg, #22c55e, #15803d);
    }

    .bg-gradient-orange {
        background: linear-gradient(135deg, #f97316, #c2410c);
    }

    .circle-process {
        width: 580px;
        height: 580px;
        border: 2px dashed #dce4f2;
        border-radius: 50%;
        margin: auto;
        position: relative;
        background: #fff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    }

    .center-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        padding: 25px 30px;
        border-radius: 50%;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .center-logo img {
        width: 70px;
        margin-bottom: 10px;
    }

    .process-step {
        position: absolute;
        /* width: 200px; */
        width: 300px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .process-step:hover {
        transform: scale(1.08);
    }

    .step-circle {
        width: 55px;
        height: 55px;
        background: #0d6efd;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        margin: auto;
        position: relative;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }

    .step-content {
        /* margin-top: 14px; */
        margin-left: 11px;
        margin-top: 7px;
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .step-content h6 {
        font-weight: bold;
        margin-bottom: 6px;
        color: #000;
        font-size: 16px;
    }

    .step-content p {
        margin: 0;
        font-size: 13.5px;
        color: #444;
    }

    .process-step::after {
        content: "";
        position: absolute;
        top: 16px;
        left: 50%;
        width: 2px;
        height: 40px;
        background: #dce4f2;
        transform: translateX(-50%);
        z-index: 0;
    }



    @media(min-width:990px) {
        .process-main {
            display: flex;
        }

        .step-1 {
            /* top: -20px;
                left: 35%; */
            top: -8%;
            left: 48%;
            /* transform: translateX(-50%); */
        }

        .step-2 {
            /* top: 18%;
                right: -50px; */
            top: 26%;
            right: -259px;
            /* width: 300px; */
        }

        .step-3 {
            /* bottom: 18%;
                right: -90px; */
            bottom: 17%;
            right: -40%;

        }

        .step-4 {
            /* bottom: -30px;
                left: 35%; */
            bottom: -10%;
            left: 3%;
            /* transform: translateX(-50%); */
        }

        .step-5 {
            /* bottom: 18%;
                left: -90px; */
            bottom: 18%;
            left: -239px;
        }

        .step-6 {
            /* top: 18%;
                 left: -50px; */
            top: 21%;
            left: -254px;
        }

        .step-1::after,
        .step-2::after,
        .step-3::after {
            top: 48px;
            left: 16%;
            width: 40px;
            height: 2px;
        }

        .step-4::after,
        .step-5::after,
        .step-6::after {
            top: 48px;
            left: 82%;
            width: 40px;
            height: 2px;
        }

        .step-1 .step-circle {
            width: 80px;
        }

        .step-2 .step-circle {
            width: 89px;
        }

        .step-3 .step-circle {
            width: 65px;
        }

        .step-4 .step-circle {
            width: 73px;
        }

        .step-5 .step-circle {
            width: 65px;
        }

        .step-6 .step-circle {
            width: 70px;
        }

        .step-4 .step-content,
        .step-5 .step-content,
        .step-6 .step-content {
            margin-right: 17px;
            margin-top: 7px;
            text-align: right;
        }

        .step-1 .step-content,
        .step-2 .step-content,
        .step-3 .step-content {
            margin-left: 11px;
            margin-top: 7px;
            text-align: left;
        }
    }

    @media (min-width: 990px) and (max-width: 1024px) {
        .step-1 {
            top: -18%;
            left: 43%
        }

        .step-2 {
            top: 16%;
            right: -251px;
        }

        .step-3 {
            bottom: 2%;
            right: -51%;
        }

        .step-4 {
            bottom: -20%;
            left: -8%;
        }

        .step-5 {
            bottom: 14%;
            left: -54%;
        }

        .step-6 {
            top: 9%;
            left: -53%;
        }

        .circle-process {
            width: 450px;
            height: 450px;
        }

        .step-circle {
            height: 50px;
        }

        .step-1::after,
        .step-2::after,
        .step-3::after {
            top: 77px;
            left: 18%;
            width: 40px;
            height: 2px;
        }

        .step-4::after,
        .step-5::after,
        .step-6::after {
            top: 49%;
            left: 80%;
            width: 40px;
            height: 2px;
        }
    }

    /* 📱 Mobile / Tablet View */
    @media (max-width: 990px) {
        .circle-process {
            background: none;
            border: none;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: static;
            box-shadow: none !important;
        }

        .center-logo {
            display: none;
        }

        .step-circle {
            height: 50px;
        }

        .process-step {
            position: relative !important;
            width: 100% !important;
            text-align: center;
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .step-1,
        .step-2,
        .step-3,
        .step-4,
        .step-5,
        .step-6 {
            all: unset;
            position: relative;
            width: 100%;
        }

        .step-circle {
            flex-shrink: 0;
            width: 45px;
            height: 45px;
            font-size: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }

        .step-content {
            margin: 0;
            width: 100%;
            text-align: center;
        }

        .step-content h6 {
            margin-bottom: 6px;
            font-size: 16px;
        }

        .step-content p {
            margin: 0;
            font-size: 14px;
            color: #555;
        }

        @media (max-width: 990px) {
            .process-main {
                display: flex;
                flex-direction: column;
                /* force vertical stack */
                align-items: center;
                text-align: center;
            }

            /* fix order for steps 4,5,6 */
            .step-4 .process-main,
            .step-5 .process-main,
            .step-6 .process-main {
                flex-direction: column-reverse;
                /* circle first, content below */
            }

            .step-content {
                margin: 0;
                width: 100%;
            }
        }
    }

    /* android hero section */
    .image-wrapper {
        position: relative;
        width: 350px;
        height: 350px;
        margin: auto;
    }

    .image-main {
        width: 330px;
        height: 330px;
        overflow: hidden;
        border-radius: 35px;
        margin-left: 86px;
        margin-top: 65px;
        transform: rotate(45deg);
    }

    .image-wrapper img {
        width: 150%;
        height: 150%;
        object-fit: cover;
    }

    .circle {
        position: absolute;
        border-radius: 50%;
    }

    .circle.blue {
        background-color: #2962ff;
        width: 110px;
        height: 110px;
        bottom: -8%;
        left: 11%;
    }

    .circle.white {
        background-color: #fff;
        width: 55px;
        height: 55px;
        top: 91px;
        border-radius: 50%;
        right: -37%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }


    /* .flutter-why-choose-section {
            padding: 60px 20px;
            text-align: center;
        } */

    .flutter-why-choose-section h2 {
        font-weight: 700;
        font-size: 32px;
    }

    .flutter-why-choose-section h2 span {
        color: #f36c21;
    }

    .flutter-why-choose-section p {
        color: #555;
        font-size: 16px;
        margin-left: 15px;

    }

    .flutter-feature-card {
        background: #fff;
        border-radius: 5px;
        padding: 25px 20px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
        height: 100%;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
        transition: 0.3s ease-in-out;
    }

    .flutter-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        /* border:1px solid #e95b ; */
        border: 1px solid rgba(0, 0, 0, 0.05);
        /* background: linear-gradient(180deg, #ffd29c, #f59764); */
    }

    .flutter-feature-icon {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #f36c21;
        flex-shrink: 0;
        position: absolute;
    }

    .flutter-feature-text {
        font-weight: 500;
        font-size: 16px;
        margin: 0;
        color: #333;
    }

    .flutter-img-icon {
        background-color: #f2d0a3;
        width: 25px;
        height: 25px;
        bottom: -8%;
        left: 11%;
        border-radius: 50%;
        margin-left: 18px;
        margin-bottom: 18px;

    }

    /* choose company */
    .service-card-flutter {
        border-radius: 15px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
        padding: 30px 20px;
        height: 100%;
        position: relative;
        overflow: hidden;
        background: #fff;
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .service-card-flutter::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        z-index: -1;
        transition: height 0.6s ease-in-out;
    }

    .choose-company-card:nth-child(odd) .service-card-flutter::before {
        background: linear-gradient(135deg, #ecf5fc, #d6e7fb, #e4eef8);
    }

    /* Even card gradient (second, fourth, etc.) */
    .choose-company-card:nth-child(even) .service-card-flutter::before {
        background: linear-gradient(135deg, #f5c9b9, #fcd7cd, #fcd7d1);
    }

    .choose-company-card:nth-child(odd) .service-card-flutter h4 {
        color: #0066ff;
        /* Blue */
    }

    /* Even card headings (2nd, 4th, 6th...) */
    .choose-company-card:nth-child(even) .service-card-flutter h4 {
        color: #ff6600;
        /* Orange */
    }

    .service-card-flutter:hover::before {
        height: 100%;
        /* Grow upwards */
    }

    /* Double shadow on hover */
    .service-card-flutter:hover {
        transform: translateY(-25px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08),
            0 16px 30px rgba(0, 0, 0, 0.12);
        /* background: linear-gradient(135deg, #7a3cff, #c15cff); */
    }

    .service-icon-flutter {
        font-size: 30px;
        margin-bottom: 10px;
        /* display: inline-block; */
    }

    /* Faded background image effect (optional) */
    .service-bg {
        position: absolute;
        bottom: -10px;
        right: 0;
        opacity: 0.1;
        max-width: 150px;
    }
     .service-card-flutter p{
        font-size: 14px;
     }