/* Basic styles for the service card */
.service-card-wrapper {
    margin-bottom: 30px;
}

.service-card-container {
    transition: transform 0.3s ease;
}

.service-card-container:hover {
    transform: translateY(-5px);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card-shadow {
    transition: background-color 0.3s ease;
}

.service-card-content {
    box-sizing: border-box;
}

/* Title styles */
.service-card-title {
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Number styles */
.service-card-number {
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Icon styles */
.service-card-icon i,
.service-card-icon svg {
    transition: color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}

/* Arrow styles */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover .arrow-container {
    transform: translateX(5px);
}

.arrow-circle {
    transition: all 0.3s ease;
}

.arrow-circle-border {
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.arrow-icon {
    overflow: visible;
    position: relative; 
    z-index: 1;
    transition: stroke 0.3s ease;
}

.service-card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Footer styles */
.service-card-footer {
    width: 100%;
}

/* Custom SVG icon container */
.service-card-icon svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}