/*=====================================================
MOBILE HERO
=====================================================*/

.mobile-hero {

    background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);

    overflow: hidden;

}



/*=====================================================
MOBILE SERVICES
=====================================================*/

.mobile-services {

    background: #fff;

}

/* =====================================================
   TECHNOLOGY CARD
===================================================== */

.tech-card {

    background: #fff3f5;

    border: 1px solid #eee;

    border-radius: 18px;

    padding: 20px;

    height: auto;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);

}

.tech-card h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 10px;

}


/* =====================================================
   SWIPER
===================================================== */

.technologySwiper {

    width: 100%;

    height: 270px;

    overflow: hidden;

}

.technologySwiper .swiper-wrapper {

    align-items: flex-start;

}

.technologySwiper .swiper-slide {

    height: calc((100% - 15px) / 2) !important;

    display: flex;

}


/* =====================================================
   TECH ITEM
===================================================== */

.tech-item {

    width: 100%;

    height: 100%;

    min-height: 120px;

    background: #fff;

    border: 1px solid #f0eeee;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 15px 8px;

    transition: .3s;

}

.tech-item:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(245, 56, 109, .08);

}

.tech-item img {

    width: 45px;

    height: 45px;

    object-fit: contain;

    margin-bottom: 12px;

}

.tech-item span {

    display: block;

    font-size: 12px;

    line-height: 16px;

    font-weight: 600;

    color: var(--dark);

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tech-card {

        padding: 18px;

    }

    .technologySwiper {

        height: 250px;

    }

    .tech-item {

        min-height: 110px;

    }

    .tech-item img {

        width: 40px;

        height: 40px;

    }

}



/*=====================================================
PROJECTS
=====================================================*/

.app-project-card {

    background: #fff;

    border-radius: 24px;

    border: 1px solid #eee;

    padding: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}



.app-project-card h3 {

    font-size: 20px;

    font-weight: 700;

}



.view-project-link {

    color: var(--pink);

    font-weight: 700;

    text-decoration: none;

}



.mobile-project {

    background: #fafafa;

    border-radius: 20px;

    overflow: hidden;

    transition: .35s;

}



.mobile-project:hover {

    transform: translateY(-8px);

}



.mobile-project img {

    width: 100%;

    height: 150px;

    object-fit: cover;

}



.mobile-project-content {

    padding: 15px;

}



.mobile-project-content h5 {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 10px;

}



.mobile-project-content p {

    font-size: 13px;

    color: #666;

    margin-bottom: 10px;

}



.mobile-project-content a {

    color: var(--pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;

}



/*=====================================================
BOTTOM CARD
=====================================================*/

.bottom-card {
    background: linear-gradient(90deg, #fffafa 0%, #fff5f7 50%, #fffafa 100%);
    border-radius: 24px;
    border: 1px solid #f7ecef;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}



.bottom-title h3 {

    font-size: 30px;

    font-weight: 700;

}



.bottom-title p {

    color: #666;

    margin-top: 10px;

    margin-bottom: 30px;

}



/* =====================================================
   INDUSTRIES + WHY CHOOSE
===================================================== */

.mobile-bottom {

    padding: 25px 0;

    background: #fff;

}

.mobile-bottom-card {

    background: linear-gradient(90deg,
            #fffafa 0%,
            #fff5f7 50%,
            #fff8fa 100%);

    border: 1px solid #f6edef;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .035);

}


/* =====================================================
   LEFT / RIGHT
===================================================== */

.industries-side,
.why-side {

    min-height: auto;

    padding: 20px;

}

.industries-side {
    border-right: 1px solid #eee5e8;
    margin-top: 12px;
}


/* =====================================================
   TITLE
===================================================== */

.mobile-bottom-title {

    text-align: center;

}

.mobile-bottom-title h3 {

    font-size: 18px;

    font-weight: 700;

    color: var(--dark);

    margin: 0 0 8px;

}

.mobile-bottom-title p {

    font-size: 12px;

    color: #555;

    margin: 0;

}


/* =====================================================
   INDUSTRIES
===================================================== */

.industry-list {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 10px;

    margin-top: 25px;

}

.industry-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 13px;

}

.industry-item i {

    width: auto;

    height: auto;

    background: transparent;

    border-radius: 0;

    font-size: 27px;

    color: var(--pink);

}

.industry-item span {

    font-size: 12px;

    font-weight: 500;

    color: var(--dark);

    white-space: nowrap;

}


/* =====================================================
   WHY CHOOSE
===================================================== */

.why-content {

    display: flex;

    align-items: center;

    margin-top: 0px;

}

.why-list-grid {

    width: 72%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.why-list-column {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.why-item {

    display: flex;

    align-items: center;

    gap: 13px;

}

.why-item i {

    color: var(--pink);

    font-size: 11px;

}

.why-item span {

    font-size: 12px;

    color: #444;

    line-height: 1.4;

}


/* =====================================================
   IMAGE
===================================================== */

.why-image-box {

    width: 28%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.why-image-box img {

    width: 145px;

    max-width: 100%;

    /* height: 160px; */

    object-fit: contain;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .industries-side {

        border-right: none;

        border-bottom: 1px solid #eee5e8;

    }

    .industry-list {

        grid-template-columns: repeat(3, 1fr);

    }

    .why-content {

        margin-top: 30px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .mobile-bottom {

        padding: 20px 12px;

    }

    .industries-side,
    .why-side {

        min-height: auto;

        padding: 20px;

    }

    .industry-list {

        grid-template-columns: repeat(3, 1fr);

        gap: 30px 10px;

    }

    .industry-item span {

        font-size: 11px;

        white-space: normal;

    }

    /* .why-content {

        flex-direction: column;

    } */

    .why-list-grid {

        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .why-list-column {

        gap: 18px;

    }

    .why-image-box {

        width: 100%;

        margin-top: 25px;

    }

    .why-image-box img {

        width: 140px;

        height: 150px;

    }

}


.hero-features {
    grid-template-columns: repeat(2, 1fr);
}

.floating-card {
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    min-width: 205px;
    padding: 10px;
}

.floating-card h6 {
    margin: 0;
}

.floating-card .icon {
    background: transparent;
}

.feature-item {
    background: #fff;
    border: 1px solid #eeeeee;
    padding: 5px 0;
    border-radius: 10px;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.feature-item img {
    height: 30px;
}

.feature-item h6 {
    margin: 0;
}

/* =====================================================
   MOBILE SERVICES - EXACT REFERENCE STYLE
===================================================== */

.mobile-services {
    padding: 25px 0 !important;
    background: #fff;
}

.mobile-services .container {
    background: linear-gradient(90deg,
            #fffafa 0%,
            #fff5f7 50%,
            #fffafa 100%);

    border: 1px solid #f7ecef;
    border-radius: 18px;

    padding: 20px 15px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
}

.mobile-services .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}


/* =====================================================
   SOLUTION ITEM
===================================================== */

.mobile-services .solution-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    min-height: 150px;

    padding: 10px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: relative;

    transition: 0.3s;
}

.solution-card:hover .solution-icon i {
    color: #fff !important;
    background: #fff;
    -webkit-background-clip: text;
}


/* Vertical Divider */

.mobile-services .col-lg-2:not(:last-child) .solution-card::after {
    content: "";

    position: absolute;

    right: 0;
    top: 5px;

    width: 1px;
    height: calc(100% - 10px);

    background: #f0e5e8;
}


/* Remove old hover */

.mobile-services .solution-card:hover {
    transform: none;
    box-shadow: none;
}


/* =====================================================
   ICON
===================================================== */

.mobile-services .solution-icon {
    width: auto;
    height: auto;

    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;

    margin: 0 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-services .solution-icon i {
    font-size: 29px;

    color: var(--pink);

    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =====================================================
   TITLE
===================================================== */

.mobile-services .solution-card h5 {
    font-size: 14px;
    font-weight: 700;

    color: var(--dark);

    margin: 0 0 8px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.mobile-services .solution-card p {
    font-size: 12px;

    color: #555;

    margin: 0;

    max-width: 155px;
}

.process-item {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-line:before {
    content: "";
    position: absolute;
    top: 51px;
    left: 6%;
    right: 6%;
    border-top: 2px dashed #f8bfd0;
    z-index: 0;
}

.process-item .step {
    margin: 0;
}

.process-item .timeline-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #f8bfd0;
    border-radius: 50%;
    top: 27px;
    right: -13%;
    z-index: 2;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .mobile-services .container {
        padding: 20px;
    }

    .mobile-services .solution-card {
        min-height: 165px;
        padding: 15px;
    }

    .mobile-services .col-lg-2:not(:last-child) .solution-card::after {
        display: none;
    }

}


@media (max-width: 767px) {

    .mobile-services {
        padding: 20px 12px !important;
    }

    .mobile-services .container {
        border-radius: 16px;
        padding: 10px;
    }

    .mobile-services .solution-card {
        min-height: 175px;
        padding: 18px 10px;

        border-bottom: 1px solid #f0e5e8;
    }

    .mobile-services .solution-icon i {
        font-size: 26px;
    }

    .mobile-services .solution-card h5 {
        font-size: 13px;
    }

    .mobile-services .solution-card p {
        font-size: 11px;
    }

}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px) {



    .bottom-card {

        padding: 30px;

    }



    .vertical-divider {

        display: none;

    }



    .why-mobile {

        margin-top: 30px;

    }



    .industry-grid {

        margin-bottom: 40px;

    }

}



@media(max-width:767px) {
    .app-project-card,

    .bottom-card {

        padding: 22px;

    }



    .industry-grid {

        grid-template-columns: 1fr;

    }



    .mobile-project img {

        height: 150px;

    }



    .mobile-project-content h5 {

        font-size: 20px;

    }



    .bottom-title h3 {

        font-size: 26px;

    }

}


/* ================================
   SOLUTION CARD
================================ */

.solution-card {
    position: relative;
    height: 100%;
    padding: 28px 18px;
    border-radius: 20px;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);

    text-align: center;

    overflow: hidden;

    transform-style: preserve-3d;

    transition:
        transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.5s ease,
        color 0.4s ease,
        box-shadow 0.5s ease,
        border-color 0.4s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ================================
   GRADIENT BACKGROUND
================================ */

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: var(--gradient);

    opacity: 0;
    transform: scale(0.7);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;

    z-index: 0;
}


/* ================================
   CARD HOVER
================================ */

.solution-card:hover {
    transform:
        perspective(1000px) translateY(-15px) rotateX(5deg) rotateY(-5deg) scale(1.03);

    background: transparent;

    border-color: transparent;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.20),
        0 10px 25px rgba(37, 117, 252, 0.25);
}


.solution-card:hover::before {
    opacity: 1;
    transform: scale(1);
}


/* ================================
   KEEP CONTENT ABOVE GRADIENT
================================ */

.solution-card>* {
    position: relative;
    z-index: 2;

    transform: translateZ(30px);
}


/* ================================
   ICON
================================ */

.solution-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--gradient);

    color: #fff;

    font-size: 25px;

    box-shadow:
        0 10px 20px rgba(37, 117, 252, 0.25);

    transition:
        transform 0.5s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


/* ICON HOVER */

.solution-card:hover .solution-icon {
    transform:
        translateZ(50px) rotateY(360deg) scale(1.12);

    background: rgba(255, 255, 255, 0.2);

    box-shadow:
        0 12px 25px rgba(255, 255, 255, 0.25);
}


/* ================================
   TITLE
================================ */

.solution-card h5 {
    margin-bottom: 12px;

    font-weight: 700;

    color: #1b1b1b;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


.solution-card:hover h5 {
    color: #ffffff;

    transform:
        translateZ(40px) translateY(-3px);
}


/* ================================
   DESCRIPTION
================================ */

.solution-card p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.6;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


.solution-card:hover p {
    color: rgba(255, 255, 255, 0.9);

    transform:
        translateZ(30px);
}


/* ================================
   SHINE EFFECT
================================ */

.solution-card::after {
    content: "";

    position: absolute;

    top: -100%;
    left: -100%;

    width: 50%;
    height: 300%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);

    transform: rotate(25deg);

    transition: left 0.8s ease;

    z-index: 3;

    pointer-events: none;
}


.solution-card:hover::after {
    left: 150%;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .solution-card {
        padding: 22px 14px;
        border-radius: 16px;
    }

    .solution-icon {
        width: 55px;
        height: 55px;
        font-size: 21px;
    }

    .solution-card h5 {
        font-size: 16px;
    }

    .solution-card p {
        font-size: 13px;
    }

    .solution-card:hover {
        transform:
            translateY(-8px) scale(1.02);
    }
}