.elementor-18 .elementor-element.elementor-element-89a14a2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-e2a7d4a *//* Talnexa Enterprise Solutions Section */
.talnexa-enterprise-solutions {
    background-color: #0F172A;
    padding: 80px 5%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.ent-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ent-header {
    text-align: center;
    margin-bottom: 60px;
}

.ent-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #3f73b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ent-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.ent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.ent-card {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.ent-card:hover {
    transform: translateY(-10px);
    border-color: #3f73b7;
    box-shadow: 0 15px 35px rgba(63, 115, 183, 0.2);
}

.ent-image-box {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ent-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ent-card:hover .ent-image-box img {
    transform: scale(1.1);
}

/* Card Content */
.ent-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ent-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.4;
}

.ent-content p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Feature Tag */
.ent-tag {
    background: rgba(63, 115, 183, 0.1);
    border: 1px solid rgba(63, 115, 183, 0.2);
    color: #3f73b7;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    transition: 0.3s ease;
}

.ent-card:hover .ent-tag {
    background: rgba(63, 115, 183, 0.2);
    border-color: #3f73b7;
}

.ent-status-dot {
    height: 8px;
    width: 8px;
    background-color: #3f73b7;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    box-shadow: 0 0 10px #3f73b7;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .ent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .ent-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */