/*====================================================
SOFTWARE HERO
====================================================*/

.software-hero {
    background: transparent;
}

.feature-item strong {
    font-size: 13px;
}

.hero-features {
    grid-template-columns: repeat(3, 1fr);
}

.floating-card {
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    min-width: 205px;
}

.floating-card h6 {
    margin: 0;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fff2f6;
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px; */
}

/*====================================================
SERVICES
====================================================*/

.software-services {
    background: #fff;
}



/*====================================================
TECHNOLOGY
====================================================*/

.software-technologies {
    background: #fff;
}



/*=========================================
Recent Projects
=========================================*/

.recent-projects {

    background: #fff;

}

.view-projects {

    color: var(--pink);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

}

.view-projects:hover {

    color: #ff6a00;

}

.projectSwiper {
    overflow: hidden;
    padding-bottom: 10px;
}

.recent-project-card {

    background: #fff;

    border: 1px solid #f2f2f2;

    border-radius: 18px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 18px;

    transition: .35s;

    min-height: 190px;

}

.recent-project-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.project-thumb {

    width: 180px;

    flex-shrink: 0;

}

.project-thumb img {

    width: 100%;

    border-radius: 10px;

    display: block;

}

.project-body {

    flex: 1;

}

.project-body small {

    display: block;

    color: #777;

    font-size: 13px;

    margin-bottom: 8px;

    font-weight: 600;

}

.project-body h4 {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 12px;

}

.project-body p {

    color: #666;

    font-size: 13px;

    margin-bottom: 20px;

}

.project-body a {

    color: var(--pink);

    text-decoration: none;

    font-weight: 700;

    font-size: 15px;

}

.project-body a:hover {

    color: #ff6a00;

}

@media(max-width:991px) {

    .recent-project-card {

        flex-direction: column;

        text-align: center;

    }

    .project-thumb {

        width: 100%;

    }

    .project-body {

        width: 100%;

    }

}

@media(max-width:576px) {

    .project-body h4 {

        font-size: 22px;

    }

}



/*====================================================
TECH STACK
====================================================*/

.tech-stack {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin: 25px 0;

}

.tech-stack span {

    background: #f8f8f8;

    padding: 8px 15px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}



/*====================================================
PROJECT STATS
====================================================*/

.project-stats {

    display: flex;

    justify-content: space-between;

    padding-top: 22px;

    margin-top: 25px;

    border-top: 1px solid #eee;

}

.project-stats h3 {

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 4px;

    background: var(--gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.project-stats small {

    font-size: 13px;

    color: #666;

}



/*====================================================
WHY IMAGE
====================================================*/

.stats-image {

    width: 100%;

}

.stats-card {
    background: #fff8f8;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
    padding: 20px;
}

.stat-box {
    border-right: 1px solid #eee;
    padding: 0 15px;
}

.stat-box.border-0 {
    border-right: none;
}

.stat-icon {
    width: 56px;

    height: 56px;

    margin: 0 0 18px;

    display: flex;

    align-items: center;

    justify-content: center;
    border-radius: 50%;
    background: #ffe6ec;

}

.stat-icon i {

    font-size: 24px;

    color: var(--pink);

}

@media(max-width:767px) {

    .stat-box {

        border-right: none;

        margin-bottom: 30px;
        border: 1px dashed pink !important;
        height: 145px !important;

    }

}



/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px) {

    .project-card {

        margin-bottom: 25px;

    }

    .project-image {

        height: 220px;

    }

}



@media(max-width:767px) {

    .project-content {

        padding: 22px;

    }

    .project-content h4 {

        font-size: 21px;

    }

    .project-stats {

        flex-direction: column;

        gap: 20px;

    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

}