/* Clickable Cards Styling */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.clickable-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 166, 31, 0.2);
}

.clickable-card:hover .service-box-item-content h4 {
    color: #fca61f;
}

.read-more-text {
    color: #fca61f;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-text:hover {
    color: #e69500;
    text-decoration: none;
}

/* Add a subtle animation effect */
.clickable-card:active {
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

/* Ensure consistent styling with existing cards */
.service-box-item.clickable-card {
    border-radius: 10px;
    overflow: hidden;
}
