/* Service Card 42172bb4 — v2.2.0 */

.sc-42172bb4-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, border-width 0.35s ease;
}

.sc-42172bb4-card:hover {
    transform: translateY(-6px);
}

/* Disable ALL hover animations when data-hover-off is set */
.sc-42172bb4-card[data-hover-off="1"]:hover {
    transform: none;
}

.sc-42172bb4-card[data-hover-off="1"]:hover .sc-42172bb4-icon-circle {
    transform: translate(-50%, -50%);
}

.sc-42172bb4-card[data-hover-off="1"] .sc-42172bb4-btn:hover .sc-42172bb4-circle-border {
    opacity: 1;
}

.sc-42172bb4-card[data-hover-off="1"] .sc-42172bb4-btn:hover .sc-42172bb4-circle-anim {
    opacity: 0;
    animation: none;
}

.sc-42172bb4-card[data-hover-off="1"] .sc-42172bb4-btn:hover .sc-42172bb4-btn-text {
    opacity: 1;
}

.sc-42172bb4-card[data-hover-off="1"] .sc-42172bb4-btn:hover .sc-42172bb4-arrow-icon {
    transform: none;
}

/* Background Overlay */
.sc-42172bb4-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 0.35s ease;
}

/* Content wrapper — sits above overlay */
.sc-42172bb4-content {
    position: relative;
    z-index: 1;
}

/* Media wrapper — flex row for alignment */
.sc-42172bb4-media {
    display: flex;
    align-items: center;
}

/* Inner wrapper groups icon/image + circle together */
.sc-42172bb4-media-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Circular background behind icon/image */
.sc-42172bb4-icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sc-42172bb4-card:hover .sc-42172bb4-icon-circle {
    transform: translate(-50%, -50%) scale(1.12);
}

.sc-42172bb4-icon-wrap,
.sc-42172bb4-image {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sc-42172bb4-image img {
    object-fit: cover;
    border-radius: 8px;
}

/* Title */
.sc-42172bb4-title {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* Subtitle */
.sc-42172bb4-subtitle {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* Description */
.sc-42172bb4-desc {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.65;
}

/* Button wrapper */
.sc-42172bb4-btn-wrap {
    display: flex;
    align-items: center;
}

.sc-42172bb4-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

.sc-42172bb4-btn-text {
    font-size: 15px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.sc-42172bb4-btn:hover .sc-42172bb4-btn-text {
    opacity: 0.85;
}

/* Arrow circle — SVG based */
.sc-42172bb4-btn-circle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-42172bb4-circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sc-42172bb4-circle-border,
.sc-42172bb4-circle-anim {
    fill: none;
    stroke-width: 1.5;
}

/* Static border circle */
.sc-42172bb4-circle-border {
    stroke: rgba(255, 255, 255, 0.35);
}

/* Animated circle — hidden by default */
.sc-42172bb4-circle-anim {
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 144.51;
    stroke-dashoffset: 144.51;
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Arrow animation triggers on BUTTON hover only */
.sc-42172bb4-btn:hover .sc-42172bb4-circle-border {
    opacity: 0.3;
}

.sc-42172bb4-btn:hover .sc-42172bb4-circle-anim {
    opacity: 1;
    animation: sc-42172bb4-dash-spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sc-42172bb4-dash-spin {
    0% {
        stroke-dashoffset: 144.51;
        transform: rotate(-90deg);
    }
    100% {
        stroke-dashoffset: 0;
        transform: rotate(270deg);
    }
}

/* Arrow icon */
.sc-42172bb4-arrow-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    line-height: 0;
}

.sc-42172bb4-arrow-icon svg {
    width: 18px;
    height: 18px;
}

.sc-42172bb4-btn:hover .sc-42172bb4-arrow-icon {
    transform: translateX(3px);
}
