/*=========================================
      PORTFOLIO SECTION
      =========================================*/
#projects {
    background: #fff;
    position: relative;
}

#projects .section-heading h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

#projects .section-heading p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

/*=========================================
      FILTER BUTTONS
      =========================================*/
.portfolio-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
}

.portfolio-filter button {
    border: none;
    outline: none;
    background: #fff;
    border: 1px solid #ececec;
    color: #555;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
}

.portfolio-filter button:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff3366, #ff7b54);
    border-color: transparent;
    transform: translateY(-3px);
}

.portfolio-filter button.active {
    color: #fff;
    background: linear-gradient(135deg, #ff3366, #ff7b54);
    border: none;
}

/*=========================================
      GRID
      =========================================*/
.portfolio-grid {
    margin-top: 10px;
}

.cta-wrapper {
    background: linear-gradient(90deg, #fffafa 0%, #fff5f7 50%, #fffafa 100%);
    border: 1px solid #f7ecef;
}

.cta-wrapper h2 {
    color: #111;
}

.cta-wrapper p {
    color: #666;
}

.cloud-cta .btn{
    background: linear-gradient(90deg, #f5386d 0%, #ff8a1e 100%);
    color: #fff;
}

.mobile-services .container{
    background: #fff;
}

/*=========================================
      CARD
      =========================================*/
.mobile-project {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
    border: 1px solid #f3f3f3;
}

.mobile-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.mobile-project img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: .5s;
}

.mobile-project:hover img {
    transform: scale(1.06);
}

/*=========================================
      CONTENT
      =========================================*/
.mobile-project-content {
    padding: 15px;
}

.project-category {
    display: inline-block;
    padding: 6px 15px;
    background: #fff1f5;
    color: #ff3366;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.mobile-project-content h5 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.mobile-project-content p {
    color: #6b7280;
    margin-bottom: 20px;
    min-height: 40px;
}

.mobile-project-content a {
    text-decoration: none;
    color: #ff3366;
    font-weight: 700;
    transition: .3s;
}

.mobile-project-content a i {
    transition: .3s;
}

.mobile-project-content a:hover {
    color: #111;
}

.mobile-project-content a:hover i {
    margin-left: 8px;
}

/*=========================================
      VIEW ALL BUTTON
      =========================================*/
#projects .btn-gradient {
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
}

/*=========================================
      FILTER ANIMATION
      =========================================*/
.portfolio-item {
    transition: .4s ease;
}

.portfolio-item.hide {
    display: none;
}

.portfolio-item.show {
    display: block;
    animation: fadeIn .5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.mobile-hero {
    background: #fff;
}

.hero-buttons{
    margin: 0;
}

/*=========================================
      RESPONSIVE
      =========================================*/
@media(max-width:991px) {

    .mobile-project img {
        height: 220px;
    }
}

@media(max-width:767px) {
    .portfolio-filter {
        gap: 10px;
    }

    .portfolio-filter button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .mobile-project-content {
        padding: 15px;
    }

    .mobile-project-content h5 {
        font-size: 20px;
    }

    .mobile-project img {
        height: 200px;
    }
}

.stats-card {
    background: linear-gradient(90deg, #fffafa 0%, #fff5f7 50%, #fffafa 100%);
}

/*=========================================
PORTFOLIO STATS
=========================================*/

.portfolio-stats-section {

    padding: 80px 0;

}

.portfolio-stats-wrapper {

    background: linear-gradient(90deg, #ff7ca8 0%, #ff5b90 50%, #ff5887 100%);

    border-radius: 10px;

    padding: 22px 15px;

    overflow: hidden;

}

.portfolio-stat-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    position: relative;

    min-height: 70px;

}

/* Divider */

.portfolio-stat-item::after {

    content: "";

    position: absolute;

    top: 50%;

    right: 0;

    transform: translateY(-50%);

    width: 1px;

    height: 42px;

    background: rgba(255, 255, 255, .20);

}

.portfolio-last-item::after {

    display: none;

}

/* Icon */

.portfolio-stat-icon {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .30);

    background: rgba(255, 255, 255, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.portfolio-stat-icon i {

    color: #fff;

    font-size: 18px;

}

/* Text */

.portfolio-stat-content {

    text-align: left;

}

.portfolio-stat-content h3 {

    margin: 0;

    color: #fff;

    font-size: 34px;

    font-weight: 700;

    line-height: 1;

}

.portfolio-stat-content p {

    margin: 4px 0 0;

    color: #fff;

    font-size: 16px;

    line-height: 1.4;

    opacity: .95;

}

/* Tablet */

@media(max-width:991px) {

    .portfolio-stat-item {

        justify-content: flex-start;

        padding: 15px;

    }

    .portfolio-stat-item::after {

        display: none;

    }

}

/* Mobile */

@media(max-width:767px) {

    .portfolio-stats-wrapper {

        padding: 15px;

    }

    .portfolio-stat-item {

        min-height: auto;

    }

    .portfolio-stat-icon {

        width: 38px;

        height: 38px;

    }

    .portfolio-stat-icon i {

        font-size: 16px;

    }

    .portfolio-stat-content h3 {

        font-size: 24px;

    }

    .portfolio-stat-content p {

        font-size: 11px;

    }

}