

/* Hardened Architecture Component Reset */
.cfx-matrix-shield-wrapper__primary * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Parent Section with Integrated Background Image Layering */
.cfx-matrix-shield-wrapper__primary {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    /* Clean linear overlay blending transparent dark over your custom image asset */
    background-image: linear-gradient(rgb(26 28 35 / 86%), rgb(61 63 69 / 55%)), url(./images/about1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* Master Inner Flex Engine Layout */
.cfx-dynamic-flex-quantum-container__center {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Left Title Node Layout Wrapper */
.cfx-alpha-anchor-heading-node__static {
    flex: 0 0 28%;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08); /* Leftmost primary border separator line */
}

.cfx-core-title-text-element__bold {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.cfx-brand-accent-text-highlight__inline {
    display: block;
    font-weight: 800;
}

/* 3-Column Pure Content Grid System with Dynamic Intersecting Border Matrix */
.cfx-omni-directional-grid-mesh__3-col {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* Grid Cell Content Structural Layout & Box Border Alignment Engine */
.cfx-grid-cell-molecule__horizontal-align {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 35px;
    cursor: pointer;
    position: relative;
}

/* Vertical and Horizontal Intersecting Border Lines tied structurally directly to grid index layout */

/* Adds internal border separating col 1 and col 2 */
.cfx-grid-cell-molecule__horizontal-align:nth-child(1),
.cfx-grid-cell-molecule__horizontal-align:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Adds internal border separating col 2 and col 3 */
.cfx-grid-cell-molecule__horizontal-align:nth-child(2),
.cfx-grid-cell-molecule__horizontal-align:nth-child(5) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Adds horizontal border line between Row 1 and Row 2 elements */
.cfx-grid-cell-molecule__horizontal-align:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Monolithic Circle Node Icon System Metrics */
[class^="cfx-spherical-icon-capsule__"] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Interaction Hover Node Scaling Matrix */
.cfx-grid-cell-molecule__horizontal-align:hover [class^="cfx-spherical-icon-capsule__"] {
    transform: scale(1.15);
}

/* Exact Chromatic Hex Palettes From Screen Capture Reference */
.cfx-spherical-icon-capsule__upwork-yellow { background-color: #E2E93D; color: #15171c; }
.cfx-spherical-icon-capsule__project-coral  { background-color: #FF8585; color: #ffffff; }
.cfx-spherical-icon-capsule__years-lavender  { background-color: #A396FF; color: #ffffff; }
.cfx-spherical-icon-capsule__clients-cyan    { background-color: #5CE1E6; color: #ffffff; }
.cfx-spherical-icon-capsule__countries-amber { background-color: #FFBD59; color: #ffffff; }
.cfx-spherical-icon-capsule__awarded-emerald { background-color: #7ED957; color: #ffffff; }

/* Text Blocks Stack Layout Engine */
.cfx-data-metric-text-block__stacked {
    display: flex;
    flex-direction: column;
}

.cfx-numerical-value-header__heavy {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #ffffff;
}

/* Strict 18px Label Typography Configuration Specs */
.cfx-descriptive-label-paragraph__18px {
    font-size: 18px;
    color: #b0b6c2;
    font-weight: 400;
    line-height: 1.35;
}

/* ==========================================================================
   Responsive Adaptability Engine Breakpoints
   ========================================================================== */

/* Tablet & Mid-Size Monitor Responsive Reflow Matrix */
@media (max-width: 1200px) {
    .cfx-dynamic-flex-quantum-container__center {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .cfx-alpha-anchor-heading-node__static {
        flex: 1;
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .cfx-omni-directional-grid-mesh__3-col {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset desktop cell grid structural line properties */
    .cfx-grid-cell-molecule__horizontal-align {
        border-right: none !important;
        border-bottom: none !important;
        padding: 30px 15px;
    }

    /* Apply custom responsive 2-column borders grid layer system */
    .cfx-grid-cell-molecule__horizontal-align:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .cfx-grid-cell-molecule__horizontal-align:nth-child(-n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
}

/* Mobile Handheld Layout Matrix Optimization */
@media (max-width: 680px) {
    .cfx-matrix-shield-wrapper__primary {
        padding: 60px 20px;
    }

    .cfx-core-title-text-element__bold {
        font-size: 28px;
    }

    .cfx-omni-directional-grid-mesh__3-col {
        grid-template-columns: 1fr;
    }

    /* Clear all grid layout line grids to favor clean single stacked blocks layout */
    .cfx-grid-cell-molecule__horizontal-align {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 25px 0;
    }

    .cfx-grid-cell-molecule__horizontal-align:last-child {
        border-bottom: none !important;
    }
}