.triangle-card {
    position: relative;
    background: linear-gradient(to top, #ffffff, #f5f9fb);
    padding: 30px 17px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

h5 {
    font-weight: 600;
}

p {
    color: var(--gray);
}

.corner-deco {
    position: absolute;
    bottom: 5px;
    right: 15px;
    width: 40px;
    height: 16px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid;
    position: absolute;
    /* transform: rotate(180deg); */
}

.triangle.back {
    border-bottom-color: #a3d1fc;
    left: 6px;
    z-index: 1;
}

.triangle.front {
    border-bottom-color: var(--primary);
    left: 0;
    z-index: 2;
}
/* 
.uptime-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.uptime-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 14px 28px rgba(43, 43, 43, 0.2);
}

.uptime-card::before,
.uptime-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    top: 0;
    left: 0;
}

.uptime-card::before {
    background: #f8faff;
    transform: translate(8px, 8px);
    z-index: -2;
}


.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row .col-class {
    display: flex;
    flex: 1;
    min-width: 280px;
}

.cards-content {
    flex-grow: 1;
}

.cards-content h3 {
    margin-bottom: 12px;
}

.cards-content p {
    color: var(--gray);
} */

.ecom-services-section {
    background: linear-gradient(135deg, #f9fbff, #eef4ff);
    padding: 70px 0;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(200, 200, 200, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 50, 150, 0.05);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, #007bff, #0043c5);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    transform: rotate(0deg) scale(1.1);
}

.icon-circle.shopify {
    background: linear-gradient(135deg, #96bf48, #538c1f);
}

.icon-circle.mobile {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.icon-circle.headless {
    background: linear-gradient(135deg, #6f42c1, #3b1c6a);
}

.icon-circle.marketplace {
    background: linear-gradient(135deg, #008080, #004d4d);
}

.icon-circle.payment {
    background: linear-gradient(135deg, #d6336c, #8b2130);
}

.icon-circle.inventory {
    background: linear-gradient(135deg, #20c997, #117a4d);
}

.icon-circle.crm {
    background: linear-gradient(135deg, #fd7e14, #b35200);
}

.icon-circle.ai {
    background: linear-gradient(135deg, #6610f2, #3b0ca3);
}

.icon-circle.analytics {
    background: linear-gradient(135deg, #0d6efd, #083cfd);
}

.icon-circle.migration {
    background: linear-gradient(135deg, #198754, #0f5132);
}

.icon-circle.maintenance {
    background: linear-gradient(135deg, #6c757d, #343a40);
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
    .section-subtitle {
        font-size: 1.7rem;
    }

    .service-card h5 {
        font-size: 1.1rem;
    }
}

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.col-class {
    display: flex;
}

.ecom-uptime-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.ecom-uptime-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #f8f9fd;
    z-index: -2;
    border-radius: inherit;
    opacity: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ecom-uptime-card:hover::before {
    opacity: 1;
}

.ecom-uptime-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(16, 16, 17, 0.2);
}

.cards-content h5 {
    margin-bottom: 15px;
}

.content-card {
    line-height: 1.7;
}

.cards-content::before {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
    color: #0061f2;
}

@media (max-width: 768px) {
    .ecom-uptime-card {
        padding: 25px 20px;
    }

    .equal-height-row {
        flex-direction: column;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }
}

.ecom-uptime-card::before,
.ecom-uptime-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    top: 0;
    left: 0;
}

.ecom-uptime-card::before {
    background: #f8faff;
    transform: translate(8px, 8px);
    z-index: -2;
}