.text-desc {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
}

.clickable-card {
    position: relative;
}

.full-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.clickable-card a:not(.full-link) {
    position: relative;
    z-index: 2;
}

.clickable-card:hover {
    cursor: pointer;
}

/* View All Services Link */
.services-cta-wrap {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ff2e69;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(0, 137, 208, 0.3);
}

.btn-view-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 137, 208, 0.45);
    color: #ff2e69;
    background: linear-gradient(135deg, #fff, #f0f0f0);
}

.btn-view-services i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-view-services:hover i {
    transform: translateX(4px);
}