.elementor-28 .elementor-element.elementor-element-44f6809{--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;}.elementor-28 .elementor-element.elementor-element-37413f8{--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;}/* Start custom CSS for container, class: .elementor-element-44f6809 */.elementor-28 .elementor-element.elementor-element-44f6809 {
   width: 100vw !important;
   max-width: 100% !important;
   margin: 0 !important;
   padding: 0 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-413b927 *//* Fonts & Basic Body Styles */

/* --- GENERAL SECTION STYLES --- */
html {
    /* This makes the page smoothly animate when jumping to an anchor link */
    scroll-behavior: smooth; 
}
.success-stories-section {
    font-family: 'inter', sans-serif;
   /* Very light, cool gray background */
    color: #1a1a1a;
    padding: 100px 0 100px 0;
}

.section-title {
    font-family: 'inter', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1c2e4a; /* Deep Navy Title */
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- STORY CARD STYLES --- */
.story-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef; /* Very light, subtle border */
    border-radius: 16px; /* Increased radius for a softer look */
    margin-bottom: 60px;
    padding: 50px; /* Increased padding */
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother transition curve */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.story-card:nth-child(even) {
    background-color: #ffffff; /* Uniform background for elegance */
}

.story-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #1c2e4a;
}

/* --- HEADER LAYOUT --- */
.story-header {
    display: grid;
    grid-template-columns: 80px 1fr 240px; /* Increased icon and metric width */
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0; /* Clean, light divider */
    padding-bottom: 25px;
}

.story-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c2e4a; /* Deep Navy */
    border-radius: 12px; /* Soft square icon shape */
    box-shadow: 0 5px 15px rgba(28, 46, 74, 0.3);
}

.story-icon {
    font-size: 2.2rem;
    color: #00c3ff; /* Light Sky Blue Accent */
}

.story-details {
    text-align: left;
    padding-left: 30px;
}

.solution-title {
    font-family: 'inter', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2px;
}

.company-info {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Metrics Block - Emphasis on data */
.story-metrics-block {
    display: flex;
    justify-content: flex-end; /* Align to the right */
    gap: 30px;
    text-align: right;
    border-left: 1px solid #e9ecef;
    padding-left: 30px;
}

.metric-group {
    line-height: 1.3;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00c3ff; /* Light Sky Blue for high contrast value */
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #5d737e;
    text-transform: uppercase;
}

/* --- CONTENT GRID --- */
.story-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    text-align: left;
}

.left-content {
    /* Optional: Add a subtle border to separate visually */
    border-right: 1px solid #f0f0f0;
    padding-right: 30px;
}

.content-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c2e4a; /* Deep Navy for subheadings */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.content-block p {
    font-size: 0.95rem;
    color: #3d3d3d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.content-block ul li {
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
    line-height: 1.5;
}

.content-block ul li::before {
    content: "\f270"; /* Check square icon (or use \f058 for circle) */
    font-family: "bootstrap-icons";
    color: #00c3ff;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

/* --- TECH TAGS --- */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 5px;
}

.tech-tag {
    background-color: #f7f9fc;
    color: #3d3d3d;
    padding: 7px 14px;
    border-radius: 20px; /* Pill shape for modernity */
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background-color: #1c2e4a;
    color: #ffffff;
    border-color: #1c2e4a;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .left-content {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
    }
    .story-header {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    .story-metrics-block {
        grid-column: 1 / span 2;
        justify-content: flex-start;
        border-left: none;
        padding-left: 0;
        margin-top: 15px;
        gap: 50px;
    }
    .story-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    .story-icon {
        font-size: 1.8rem;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-37413f8 */.elementor-28 .elementor-element.elementor-element-37413f8 {
   width: 100vw !important;
   max-width: 100% !important;
   margin: 0 !important;
   padding: 0 !important;
}/* End custom CSS */