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

/* Extra Small (default) */
.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.333333%;
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.666667%;
}

/* sm ≥576px */
@media (min-width: 576px) {
    .row-cols-sm-1>* {
        width: 100%;
    }

    .row-cols-sm-2>* {
        width: 50%;
    }

    .row-cols-sm-3>* {
        width: 33.333333%;
    }

    .row-cols-sm-4>* {
        width: 25%;
    }

    .row-cols-sm-5>* {
        width: 20%;
    }

    .row-cols-sm-6>* {
        width: 16.666667%;
    }
}

/* md ≥768px */
@media (min-width: 768px) {
    .row-cols-md-1>* {
        width: 100%;
    }

    .row-cols-md-2>* {
        width: 50%;
    }

    .row-cols-md-3>* {
        width: 33.333333%;
    }

    .row-cols-md-4>* {
        width: 25%;
    }

    .row-cols-md-5>* {
        width: 20%;
    }

    .row-cols-md-6>* {
        width: 16.666667%;
    }
}

/* lg ≥992px */
@media (min-width: 992px) {
    .row-cols-lg-1>* {
        width: 100%;
    }

    .row-cols-lg-2>* {
        width: 50%;
    }

    .row-cols-lg-3>* {
        width: 33.333333%;
    }

    .row-cols-lg-4>* {
        width: 25%;
    }

    .row-cols-lg-5>* {
        width: 20%;
    }

    .row-cols-lg-6>* {
        width: 16.666667%;
    }
}

/* xl ≥1200px */
@media (min-width: 1200px) {
    .row-cols-xl-1>* {
        width: 100%;
    }

    .row-cols-xl-2>* {
        width: 50%;
    }

    .row-cols-xl-3>* {
        width: 33.333333%;
    }

    .row-cols-xl-4>* {
        width: 25%;
    }

    .row-cols-xl-5>* {
        width: 20%;
    }

    .row-cols-xl-6>* {
        width: 16.666667%;
    }
}

/* xxl ≥1400px */
@media (min-width: 1400px) {
    .row-cols-xxl-1>* {
        width: 100%;
    }

    .row-cols-xxl-2>* {
        width: 50%;
    }

    .row-cols-xxl-3>* {
        width: 33.333333%;
    }

    .row-cols-xxl-4>* {
        width: 25%;
    }

    .row-cols-xxl-5>* {
        width: 20%;
    }

    .row-cols-xxl-6>* {
        width: 16.666667%;
    }
}

.tech-section-wrapper {
    padding: 0px 0 80px 0;
}

.section-heading-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.tech-card-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.tech-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.tech-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-card-item:hover::before {
    opacity: 1;
}

.icon-box-circle {
    height: 80px;
    width: 80px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    transition: transform 0.4s ease, background 0.4s ease;
    position: relative;
    z-index: 2;
}

.tech-card-item:hover .icon-box-circle {
    transform: scale(1.1) rotate(5deg);
}

.icon-box-circle i {
    font-size: 2.8rem;
}

.card-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.tech-card-item:hover .card-label {
    color: #2563eb;
}

.tech-card-item[data-theme="wordpress"] .icon-box-circle {
    background: #e0f2fe;
}

.tech-card-item[data-theme="wordpress"] i {
    color: #0284c7;
}

.tech-card-item[data-theme="shopify"] .icon-box-circle {
    background: #dcfce7;
}

.tech-card-item[data-theme="shopify"] i {
    color: #16a34a;
}

.tech-card-item[data-theme="woocommerce"] .icon-box-circle {
    background: #fae8ff;
}

.tech-card-item[data-theme="woocommerce"] i {
    color: #a21caf;
}

.tech-card-item[data-theme="php"] .icon-box-circle {
    background: #ede9fe;
}

.tech-card-item[data-theme="php"] i {
    color: #7c3aed;
}

.tech-card-item[data-theme="html"] .icon-box-circle {
    background: #ffedd5;
}

.tech-card-item[data-theme="html"] i {
    color: #ea580c;
}

.tech-card-item[data-theme="css"] .icon-box-circle {
    background: #dbeafe;
}

.tech-card-item[data-theme="css"] i {
    color: #2563eb;
}

.tech-card-item[data-theme="js"] .icon-box-circle {
    background: #fef9c3;
}

.tech-card-item[data-theme="js"] i {
    color: #ca8a04;
}

.tech-card-item[data-theme="elementor"] .icon-box-circle {
    background: #ffe4e6;
}

.tech-card-item[data-theme="elementor"] i {
    color: #e11d48;
}

.tech-card-item[data-theme="mysql"] .icon-box-circle {
    background: #ecfeff;
}

.tech-card-item[data-theme="mysql"] i {
    color: #0891b2;
}

.tech-card-item[data-theme="google"] .icon-box-circle {
    background: #fee2e2;
}

.tech-card-item[data-theme="google"] i {
    color: #dc2626;
}