    .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%;
        height: 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, #f0f7fd, #ebf2fa, #e4eef8);
    }

    .unique-card.even::before {
        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);
    }

    .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: #64748b;
        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;
        }
    }

    /* 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;
            top: -8px;
            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;
        color: #64748b;
    }

    .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: -8%;
            left: 48%;
        }

        .step-2 {
            top: 26%;
            right: -259px;
        }

        .step-3 {
            bottom: 17%;
            right: -40%;

        }

        .step-4 {
            bottom: -10%;
            left: 3%;
        }

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

        .step-6 {
            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-wrapper img {
        width: 350px;
        height: 350px;
        object-fit: cover;
        /* transform: rotate(-45deg); */
        border-radius: 50%;
        margin-left: 60px;
    }

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

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

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

    .circle.white2 {
        background-color: #acbdf8;
        width: 66px;
        height: 66px;
        bottom: -21%;
        left: 35%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .circle.white3 {
        background-color: #ffffff;
        width: 81px;
        height: 81px;
        top: 90%;
        left: 12%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .circle.white3 img {
        width: 60px;
        height: 60px;
        margin-left: 0px;
        margin-top: 10px;

    }

    @media (max-width: 1030px) and (min-width: 767px) {
        .image-wrapper img {
            width: 300px;
            height: 300px;
            margin-left: 40px;
        }

        .circle.white {
            top: 8px;
            right: 5%;
        }

        .circle.white3 {
            top: 76%;
            left: 4%;
        }

        .circle.white2 {
            bottom: -9%;
            left: 26%;
        }

        .circle.blue {
            bottom: -3%;
            left: 0%;
        }
    }


    @media (max-width: 650px) and (min-width: 411px) {
        .image-wrapper img {
            width: 300px;
            height: 300px;
            margin-left: 40px;
        }

        .circle.white {
            top: 8px;
            right: 5%;
        }

        .circle.white3 {
            top: 76%;
            left: 4%;
        }

        .circle.white2 {
            bottom: -9%;
            left: 26%;
        }

        .circle.blue {
            bottom: -3%;
            left: 0%;
        }
    }

    @media (max-width: 410px) {
        .image-wrapper img {
            width: 250px;
            height: 250px;
            margin-left: -12px;
        }

        .circle.white {
            top: -18px;
            right: 18%;
        }

        .circle.white3 {
            top: 65%;
            left: 4%;
        }

        .circle.white2 {
            bottom: 4%;
            left: 26%;
        }

        .circle.blue {
            bottom: 8%;
            left: 0%;
        }
    }

    /* .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: #64748b;
        margin-left: 15px;
    }

    /* why choose our comapny */
    .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);
    }

    .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 h5 {
        color: #0066ff;
        text-align: center;
    }

    .choose-company-card:nth-child(even) .service-card-flutter h5 {
        color: #ff6600;
        text-align: center;
    }

    .service-card-flutter:hover::before {
        height: 100%;
    }

    .service-card-flutter:hover {
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08),
            0 16px 30px rgba(0, 0, 0, 0.12);
    }

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

    }

    .service-bg {
        position: absolute;
        bottom: -10px;
        right: 0;
        opacity: 0.1;
        max-width: 150px;
    }

    .service-content-app {
        color: #64748b;
    }

    /* android what we do */
    .android-whychoose-card {
        max-width: none !important;
    }

    .android-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        padding: 25px;
        height: 80%;

        margin: 15px 0;
        display: flex;
        align-items: flex-start;
        transition: all 0.3s ease-in-out;
    }

    @media (max-width:380px) {
        .android-card {
            height: 90%
        }
    }

    .android-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }

    .android-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .android-icon img {
        width: 40px;
        height: 40px;
    }

    .android-content h5 {
        /* font-weight: 600; */
        /* font-size: 1.1rem; */
        margin-bottom: 8px;
    }

    .android-content p {
        color: #64748b;
        margin: 0;
        line-height: 1.5;
    }

    /* android experties */
    .blurb-card .et_pb_main_blurb_image {
        margin-bottom: 0 !important;
    }

    .blurb-card h6 {
        color: #201ddc;
        margin-top: 20px;
    }

    .blurb-card .et_pb_button {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        zoom: 1;
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .blurb-card .et_pb_blurb {
        margin-bottom: 0 !important;
    }

    .blurb-card .et_pb_column {
        position: relative;
    }

    .blurb-card .et_pb_blurb_container {
        background: #fff;
        padding: 75px 25px 25px 25px;
        border-radius: 4px;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, .08) !important;
        -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, .08) !important;
        -webkit-transition: all 0.1s linear;
        transition: all 0.1s linear;
        margin-top: -50px;
        height: 275px;
    }

    @media (max-width: 991px) and (min-width: 767px) {
        .blurb-card .et_pb_blurb_container {
            height: 220px !important;
        }
    }

    @media (max-width: 1199px) and (min-width: 992px) {
        .blurb-card .et_pb_blurb_container {
            height: 330px !important;
        }
    }

    @media (max-width: 766px)and (min-width: 575px) {
        .blurb-card .et_pb_blurb_container {
            height: 290px !important;
        }
    }

    @media (max-width: 575px) {
        .blurb-card .et_pb_blurb_container {
            height: 235px !important;
        }
    }

    .blurb-card .et_pb_column:hover .et_pb_blurb_container {
        -webkit-box-shadow: 5px 15px 15px rgba(0, 0, 0, .2) !important;
        box-shadow: 5px 15px 15px rgba(0, 0, 0, .2) !important;
        -webkit-transition: all 0.1s linear;
        transition: all 0.1s linear;
    }

    .blurb-card .et-pb-icon {
        padding: 15px;
        font-size: 35px;
        position: relative;
        z-index: 1;
        background: #d5eeff;
        border-radius: 50%;
        display: inline-block;
        color: #696be1 !important;
        -webkit-transition: all 0.1s linear;
    }

    .blurb-card .et-pb-icon:after {
        pointer-events: none;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        content: '';
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

    .blurb-card .et-pb-icon:before {
        content: '';
        display: block;
    }

    .blurb-card .et-pb-icon {
        -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
        transition: transform ease-out 0.1s, background 0.2s;
    }

    .blurb-card .et-pb-icon:after {
        top: 0;
        left: 0;
        padding: 0;
        z-index: -1;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    .blurb-card .et_pb_column:hover .et-pb-icon {
        color: #fff !important;
        -webkit-transition: all 0.1s linear;
    }

    .blurb-card .et_pb_column:hover .et-pb-icon:after {
        -webkit-animation: sonarEffect 0.5s ease-out 50ms;
        animation: sonarEffect 0.5s ease-out 75ms;
    }

    @-webkit-keyframes sonarEffect {
        0% {
            opacity: 0.3;
        }

        40% {
            opacity: 0.5;
            box-shadow: 0 0 0 1px #301ddc, 0 0 5px 5px #7664ea, 0 0 0 5px #6f76b0;
        }

        100% {
            box-shadow: 0 0 0 1px #301ddc, 0 0 5px 5px #7664ea, 0 0 0 5px #6f76b0;
            -webkit-transform: scale(1.2);
            opacity: 0;
        }
    }

    .et_pb_module_header {
        color: #2872cc;
        font-weight: 600;
    }



    /* android process */

    .android-process-container {
        position: relative;
        width: 700px;
        height: 700px;
        margin: 40px auto;
        border-radius: 50%;
    }

    .android-process-step {
        position: absolute;
        width: 220px;
        height: 220px;
        /* background: linear-gradient(135deg, #f5c9b9, #fcd7cd, #fcd7d1); */
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 3;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

    }

    .android-process-step:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .android-process-step span {
        display: block;
        font-size: 12px;
        font-weight: normal;
        margin-top: 5px;
    }

    .android-process-step h6 {
        color: orange;
    }

    /* Positioning steps in a circle */
    .android-step1 {
        top: -46px;
        left: 51%;
        transform: translate(-50%, 0);
    }

    .android-step2 {
        top: 31%;
        right: -21px;
        transform: translate(0, -50%);
    }

    .android-step3 {
        bottom: 28%;
        right: -9px;
        transform: translate(0, 50%);
    }

    .android-step4 {
        bottom: -46px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .android-step5 {
        bottom: 27%;
        left: -8px;
        transform: translate(0, 50%);
    }

    .android-step6 {
        top: 30%;
        left: -17px;
        transform: translate(0, -50%);
    }

    /* Center text */
    .android-center-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 26px;
        font-weight: bold;
        color: #444;
        width: 250px;
        z-index: 2;
        text-align: center;
    }

    .android-center-round {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 450px;
        height: 450px;
        background: #f5f5f5;
        border: 60px solid #ffc692;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    /* Arrow styling */
    .android-arrow {
        position: absolute;
        font-size: 28px;
        color: #888;
    }

    .android-arrow1 {
        top: 51px;
        left: 70%;
        transform: rotate(34deg);
    }

    .android-arrow2 {
        top: 49%;
        right: 18px;
        transform: rotate(90deg);
    }

    .android-arrow3 {
        bottom: 33px;
        left: 67%;
        transform: rotate(150deg);
    }

    .android-arrow4 {
        bottom: 34px;
        right: 68%;
        transform: rotate(-150deg);
    }

    .android-arrow5 {
        top: 48%;
        left: 18px;
        transform: rotate(-90deg);
    }

    .android-arrow6 {
        top: 46px;
        left: 24%;
        transform: rotate(-34deg);
    }

    /* Responsive */
    @media (max-width: 767px) {
        .android-process-container {
            width: 100%;
            height: auto;
            /* no circle */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Make steps stack vertically */
        .android-process-step {
            position: relative;
            width: 90%;
            /* max-width: auto; */
            height: auto;
            margin: 15px 0;
            border-radius: 15px;
            /* less circular for readability */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Reset circle positions */
        .android-step1,
        .android-step2,
        .android-step3,
        .android-step4,
        .android-step5,
        .android-step6 {
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            transform: none !important;
        }

        /* Hide arrows and center round on mobile */
        .android-arrow,
        .android-center-round,
        .android-center-text {
            display: none;
        }

        .android-process-step span {
            font-size: 15.5px;
        }

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

        .android-process-step h6 {
            font-size: 20px;
        }
    }


    /* android why choose our company */
    .android-feature-card {
        border-radius: 50px;
        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);
    }

    .android-row-2>div:nth-child(odd) .android-feature-card {
        background: linear-gradient(135deg, #e0f2ff, #f0f9ff);
    }

    /* Even cards inside .android-row-2 */
    .android-row-2>div:nth-child(even) .android-feature-card {
        background: linear-gradient(135deg, #fff3e0, #fff8f0);
    }

    .android-feature-card:hover {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

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

    .android-feature-text {
        font-weight: 500;
        margin: 0;
        color: #333;
        margin-left: 50px;

    }

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

    }


    /* ios why choose us */
    .ios-choose-subtitle {
        font-size: 14px;
        font-weight: 500;
        color: #e74c3c;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .ios-choose-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .ios-choose-text {
        color: #555;
        font-size: 16px;
        margin-bottom: 25px;
    }

    .ios-choose-image {
        position: relative;
        display: inline-block;
    }

    .ios-choose-image img {
        width: 100%;
        /* max-width: 350px; */
        border-radius: 20%;
        object-fit: cover;
    }

    .ios-choose-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 65px;
        height: 65px;
        background: #e74c3c;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ios-choose-play:hover {
        background: #c0392b;
    }

    .ios-choose-play::before {
        content: '';
        display: inline-block;
        margin-left: 4px;
        border-style: solid;
        border-width: 12px 0 12px 20px;
        border-color: transparent transparent transparent #fff;
    }

    /* Feature Card */
    .ios-choose-card {
        background: #fff;
        padding: 25px;
        text-align: left;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
    }

    .ios-choose-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .ios-choose-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #fceaea;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: #e74c3c;
        font-size: 22px;
    }

    .ios-choose-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .ios-choose-card p {
        color: #64748b;
        line-height: 1.6;
    }

    @media(max-width: 991px) {
        .ios-choose-title {
            text-align: center;
        }

        .ios-choose-subtitle,
        .ios-choose-text {
            text-align: center;
        }

        .ios-choose-image {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
    }


    /* ios why choose ios  development*/

    .ios-why-choose2-card {
        width: 100%;
        max-width: 400px;
        height: 90%;
        margin: 2rem auto 0 auto;
        border-radius: 10px 10px 10px 10px;
        padding: 25px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .ios-why-choose2-row .col-md-4:nth-child(odd) .ios-why-choose2-card {
        background: linear-gradient(135deg, #fffbe6, #fee8cc, #f8eae6);
    }

    .ios-why-choose2-row .col-md-4:nth-child(even) .ios-why-choose2-card {
        background: linear-gradient(135deg, #e8f5ff, #e5eff8, #c5e0fa);
    }

    .ios-why-choose2-card-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .ios-why-choose2-card-title {
        font-weight: bold;
        margin: 10px 0;
    }

    .ios-why-choose2-card-text {
        line-height: 1.5;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ios-why-choose2-card {
            padding: 20px;
        }
    }

    .ios-why-choose2-card-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;
    }


    /* ios process */
    .ios-process-container {
        position: relative;
        margin: 100px auto 50px auto;
        ;
    }

    .ios-process-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        background: #ccc;
        z-index: 0;
    }

    .ios-process-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: -55px 0;
        position: relative;
    }

    .ios-process-item.ios-process-left .ios-process-card {
        order: 1;
    }

    .ios-process-item.ios-process-left .ios-process-marker {
        order: 2;
        margin-right: auto;
    }

    .ios-process-item.ios-process-right .ios-process-card {
        order: 2;
    }

    .ios-process-item.ios-process-right .ios-process-marker {
        order: 1;
        margin-left: auto;
    }

    .ios-process-card {
        width: 40%;
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: flex-start;
        gap: 15px;
        z-index: 1;
        margin-bottom: 15px;

    }

    .ios-process-card:hover {
        /* transform: translateY(-6px) scale(1.03); */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: #f9faff;
        /* slight tint */
    }

    .ios-process-card img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .ios-process-card-content h3 {
        margin-bottom: 6px;
        font-weight: bold;
    }

    .ios-process-card-content p {
        color: #64748b;
    }

    .ios-process-marker {
        position: relative;
        width: 20%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ios-process-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: #999;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .ios-process-line-connector {
        position: absolute;
        width: 115px;
        height: 2px;
        background: #ccc;
        top: 50%;
        transform: translateY(-50%);
        z-index: 0;
    }

    .ios-process-item.ios-process-left .ios-process-line-connector {
        right: 50%;
        margin-right: 18px;
    }

    .ios-process-item.ios-process-right .ios-process-line-connector {
        left: 50%;
        margin-left: 18px;
    }

    .ios-process-item.ios-process-item1 .ios-process-card,
    .ios-process-item.ios-process-item4 .ios-process-card,
    .ios-process-item.ios-process-item5 .ios-process-card {
        background: linear-gradient(135deg, #e8f5ff, #e5eff8, #c5e0fa);
        color: #0d6efd;
    }

    /* Orange gradient items */
    .ios-process-item.ios-process-item2 .ios-process-card,
    .ios-process-item.ios-process-item3 .ios-process-card,
    .ios-process-item.ios-process-item6 .ios-process-card {
        background: linear-gradient(135deg, #fffbe6, #fee8cc, #f8eae6);
        color: #ff9b47;
    }


    @media (max-width: 768px) {
        .ios-process-item.ios-process-item4 .ios-process-card {
            background: linear-gradient(135deg, #fffbe6, #fee8cc, #f8eae6);
            color: #ff9b47;
        }

        /* Orange gradient items */
        .ios-process-item.ios-process-item3 .ios-process-card {
            background: linear-gradient(135deg, #e8f5ff, #e5eff8, #c5e0fa);
            color: #0d6efd;
        }

        .ios-process-container {
            margin: -30px auto 0px auto;
        }

        .ios-process-container::before {
            width: 0;
        }

        .ios-process-item {
            /* flex-direction: column;
            align-items: flex-start; */
            margin: -6px 0;
        }

        .ios-process-card,
        .ios-process-marker {
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-around;
        }


        .ios-process-card {
            width: 100%;
        }

        .ios-process-circle {
            margin: 10px 0;
        }
    }

    /* Extra Small Mobile (<=480px) */
    @media (max-width: 575px) {

        .ios-process-line-connector {
            display: none;
        }

        .ios-process-item.ios-process-left .ios-process-marker {
            order: 0;
        }

        .ios-process-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .ios-process-card {
            padding: 12px;
            font-size: 14px;
        }

        .ios-process-card img {
            display: none;

        }

        .ios-process-circle {
            width: 40px;
            height: 40px;
        }

        .ios-process-card,
        .ios-process-marker {
            text-align: center;
        }
    }

    /* ios what we do */

    .ios-whatwedo-card {
        background: #fff;
        border-radius: 50px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        padding: 25px;
        margin: 15px 0;
        height: 80%;
        display: flex;
        align-items: flex-start;
    }

    @media (max-width: 992px) {
        .ios-whatwedo-card {
            height: 90%;
        }
    }

    .ios-whatwedo-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .ios-whatwedo-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .ios-whatwedo-icon img {
        width: 40px;
        height: 40px;
    }

    .ios-whatwedo-content h5 {
        /* font-weight: 600; */
        /* font-size: 1.1rem; */
        margin-bottom: 8px;
    }

    .ios-whatwedo-content p {
        color: #64748b;
        margin: 0;
        line-height: 1.5;
    }

    /* ios hero section */

    .ios-hero-image {
        margin-left: 80px;
    }

    @media (max-width: 1100px) {
        .ios-hero-image {
            margin-left: 0px;
        }
    }



    /* section media */

    @media (max-width:577px) {

        .flutter-why-choose,
        .flutter-why-choose-section,
        .why-choose-us,
        .process-section,
        .flutter-what-we-do,
        #why-choose-us,
        .android-whychoose-section,
        .ios-why-choose,
        .ios-choose-section,
        .process,
        .android-why-choose-section,
        .android-process {
            padding-right: 10px;
            padding-left: 10px;
        }

    }