.ifc-grid-025ae420 {
    display: grid;
    width: 100%;
    /* Grid columns are controlled dynamically via Elementor settings */
}

/* Base Wrapper Setup for responsive alignment via CSS variables */
.elementor-widget-icon_feature_cards_025ae420 {
    --ifc-align: left;
}

/* Card layout relying on alignment var */
.ifc-card-025ae420 {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: var(--ifc-align);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
    border: 1px solid #f3f4f6;
    height: 100%;
}

/* Header Alignment (Icon & Top-Right Action) */
.ifc-card-header-025ae420 {
    display: flex;
    align-items: flex-start;
    width: 100%;
    
    /* Default / Left */
    justify-content: space-between;
}

/* CSS variable states for header alignment */
.elementor-align-center .ifc-card-header-025ae420,
.elementor-tablet-align-center .ifc-card-header-025ae420,
.elementor-mobile-align-center .ifc-card-header-025ae420 {
    justify-content: center;
}

.elementor-align-right .ifc-card-header-025ae420,
.elementor-tablet-align-right .ifc-card-header-025ae420,
.elementor-mobile-align-right .ifc-card-header-025ae420 {
    flex-direction: row-reverse;
}

/* Handle Top Right Icon display during centering */
.elementor-align-center .ifc-top-right-icon-025ae420,
.elementor-tablet-align-center .ifc-top-right-icon-025ae420,
.elementor-mobile-align-center .ifc-top-right-icon-025ae420 {
    display: none;
}


/* Footer / Button Alignment */
.ifc-footer-025ae420 {
    width: 100%;
    text-align: var(--ifc-align);
}


.ifc-icon-wrapper-025ae420 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.ifc-icon-wrapper-025ae420 svg {
    fill: currentColor;
}

.ifc-icon-wrapper-025ae420 img {
    object-fit: contain;
    display: block;
}

.ifc-top-right-icon-025ae420 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ifc-content-025ae420 {
    position: relative;
    z-index: 1;
    width: 100%;
    flex-grow: 1;
}

.ifc-title-025ae420 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.ifc-desc-025ae420 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

.ifc-button-025ae420 {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ifc-button-025ae420:hover {
    opacity: 0.9;
}

/* Hover Animations */
.ifc-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ifc-hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ifc-hover-glow:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}