/* Service Card Styles */

.service-card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color: var(--promen-services-card-bg, #DFEBD1);
    border-radius: 12px;
    padding: 30px 15px;
    min-height: 190px;
    text-decoration: none;
    text-align: left;
    margin-right: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    outline: none;
    font-size: 1.25rem;
    /* Remove outline for better appearance */
}


/* Ensure proper specificity for background colors */
.elementor .service-card {
    /* This will be overridden by the global style from Elementor */
    background-color: var(--promen-services-card-bg, #DFEBD1);
}

/* Individual card styles from repeater will have higher specificity */
.elementor-element .elementor-repeater-item.service-card {
    /* This ensures individual card colors take precedence */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--promen-services-primary-color, #002266);
}

.service-title {
    /* font-size: 18px; */
    font-weight: 600;
    color: var(--promen-services-primary-color, #002266);
    margin: 0 0 15px;
    line-height: 1.3;
}

.service-arrow {
    margin-top: auto;
    font-size: 12px;
    color: var(--promen-services-primary-color, #002266);
}