.section-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 6px;
}



.tag {
    position: relative;
    background: white;
    padding: 10px 46px;
    margin: 8px 8px 0 0;
    display: inline-block;
    border-radius: 8px;
    font-size: 23px;
    font-weight: 200;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.12);
    transition: all 0.25s ease-in-out;
    cursor: default;
}

/* Top line effect */
.tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #213C72;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transition: width 0.25s ease-in-out;
}

.tag:hover::before {
    width: 100%;
}

/* Keep previous hover lift + shadow */
.tag:hover {
    background: #e7efff;
    transform: translateY(-3px);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.18);
}



.service-card, .service-link {
    cursor: pointer;
}






/* ===== graphic tools ====== */
.design-workflow img {
    display: block;
    margin: 0 auto;
}

/* PROCESS CARD HOVER */
.design-workflow .border {
    padding: 30px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.design-workflow .border:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #d2d2d2 !important;
}

/* ICON ANIMATION */
.design-workflow img {
    transition: 0.3s ease;
}

.design-workflow .border:hover img {
    transform: scale(1.10);
}

/* ACCENT BORDER EFFECT */
.design-workflow .border::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: 0.35s ease;
}

.design-workflow .border:hover::after {
    border-color: #4b7cff33; /* set brand */
}

/* TYPOGRAPHY TUNING */
.design-workflow h5 {
    font-size: 18px;
    font-weight: 600;
}

.design-workflow p.small {
    opacity: .85;
    line-height: 1.4;
}

/* TOOLS SPACING */
.design-workflow .row.g-3 img {
    width: 40px;
    transition: 0.3s ease;
}

.design-workflow .row.g-3 .border:hover img {
    transform: scale(1.12);
}
