/* ========================================
   STRATEGIC ENGAGEMENT PAGE STYLES
   ======================================== */

body.strategic-engagement-page {
    background: #ffffff;
}

body.strategic-engagement-page .capabilities-main {
    padding-top: 120px;
}

body.strategic-engagement-page .services-section {
    padding: 3rem 0;
    margin: 0;
    background: transparent;
}

body.strategic-engagement-page .capability-feature {
    position: relative;
}

body.strategic-engagement-page .capability-feature .feature-content {
    background: #ffffff;
    border-radius: 32px;
    padding-left: clamp(2.25rem, 3vw, 3.5rem);
    padding-right: clamp(2.25rem, 3vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 3vw, 3.5rem);
    padding-top: 0 !important;
    min-height: min(38rem , 80vh);
    margin: 0 !important;
    margin-top: 0 !important;
}

body.strategic-engagement-page .capability-feature + .capability-feature {
    margin-top: 2rem;
}

body.strategic-engagement-page .service-card,
body.strategic-engagement-page .strategic-card {
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

body.strategic-engagement-page .service-card:hover,
body.strategic-engagement-page .strategic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 42px rgba(15, 23, 42, 0.14);
}

body.strategic-engagement-page .strategic-engagement {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.75rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body.strategic-engagement-page .feature-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Desktop: Even sections have image on left, text on right */
body.strategic-engagement-page .capability-feature:nth-of-type(even) .feature-content {
    flex-direction: row-reverse;
}

/* Desktop: Title is separate, so it appears above content */
body.strategic-engagement-page .capability-feature .containerss {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    row-gap: 0 !important;
    align-items: stretch;
}

/* Remove any spacing between title and content */
body.strategic-engagement-page .capability-feature .containerss > .feature-title + .feature-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.strategic-engagement-page .feature-title {
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    color: var(--text-dark);
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
    text-align: center;
}

/* Override section-title margin for strategic engagement page - maximum specificity */
body.strategic-engagement-page .capability-feature .containerss .feature-title.section-title,
body.strategic-engagement-page .capability-feature .feature-title.section-title,
body.strategic-engagement-page .capability-feature h2.feature-title.section-title,
body.strategic-engagement-page .capability-feature .section-title {
    margin: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    text-align: center;
}

body.strategic-engagement-page .feature-text {
    flex: 1 1 55%;
    max-width: 560px;
}

body.strategic-engagement-page .feature-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-teal);
    margin-bottom: 0.9rem;
    font-weight: 600;
}

body.strategic-engagement-page .feature-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.9rem;
    text-align: justify;
}

body.strategic-engagement-page .feature-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

body.strategic-engagement-page .feature-cta {
    background: var(--accent-teal);
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.18);
    text-decoration: none;

}

body.strategic-engagement-page .feature-cta:hover {
    background: #066f76;
}

body.strategic-engagement-page .feature-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

body.strategic-engagement-page .feature-visual {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

body.strategic-engagement-page .feature-image-frame {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); */
    background: linear-gradient(135deg, rgba(7, 143, 153, 0.08), rgba(104, 181, 60, 0.08));
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

body.strategic-engagement-page .feature-image-wrapper {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: #f7f8fa;
    border-radius: 8px;
    padding: 0;
    box-sizing: border-box;
}

body.strategic-engagement-page .feature-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

body.strategic-engagement-page .highlight-text {
    color: var(--accent-teal);
}

@media (max-width: 1100px) {
    body.strategic-engagement-page .feature-content {
        flex-direction: column;
        text-align: center;
    }

    body.strategic-engagement-page .capability-feature:nth-of-type(even) .feature-content {
        flex-direction: column;
    }

    body.strategic-engagement-page .feature-text {
        max-width: 100%;
    }

    body.strategic-engagement-page .feature-actions {
        justify-content: center;
    }

    body.strategic-engagement-page .feature-visual {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body.strategic-engagement-page .capabilities-main {
        padding-top: 100px;
    }

    body.strategic-engagement-page .services-section {
        padding: 2rem 0;
    }

    body.strategic-engagement-page .capability-feature .feature-content {
        padding: 1.5rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    body.strategic-engagement-page .capability-feature + .capability-feature {
        margin-top: 1.5rem;
    }

    /* Title appears first naturally (it's before feature-content in DOM) */
    body.strategic-engagement-page .feature-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.3;
    }

    /* Within feature-content: Image first (order: 1), then Content (order: 2) */
    body.strategic-engagement-page .feature-content .feature-visual {
        order: 1;
        width: 100%;
        margin-bottom: 0;
    }

    body.strategic-engagement-page .feature-content .feature-text {
        order: 2;
        max-width: 100%;
    }

    body.strategic-engagement-page .feature-text p {
        font-size: 0.95rem;
        text-align: justify;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    body.strategic-engagement-page .feature-content {
        text-align: left;
    }

    body.strategic-engagement-page .feature-actions {
        justify-content: flex-start;
        margin-top: 1.25rem;
    }

    /* Optimized image sizing for mobile */
    body.strategic-engagement-page .feature-image-frame {
        min-height: 280px;
        max-width: 100%;
        border-radius: 10px;
    }

    body.strategic-engagement-page .feature-image-wrapper {
        min-height: 280px;
        padding: 0;
    }

    body.strategic-engagement-page .feature-image-frame img {
        width: 100%;
        height: 100%;
        min-height: 280px;
        object-fit: cover;
        border-radius: 8px;
    }

    body.strategic-engagement-page .containerss {
        padding: 0 16px;
    }

    /* Reset row-reverse for mobile */
    body.strategic-engagement-page .capability-feature:nth-of-type(even) .feature-content {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    body.strategic-engagement-page .capabilities-main {
        padding-top: 90px;
    }

    body.strategic-engagement-page .services-section {
        padding: 1.5rem 0;
    }

    body.strategic-engagement-page .capability-feature .feature-content {
        padding: 1.25rem;
        border-radius: 20px;
        gap: 1.25rem;
    }

    body.strategic-engagement-page .capability-feature + .capability-feature {
        margin-top: 1.25rem;
    }

    body.strategic-engagement-page .feature-title {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }

    body.strategic-engagement-page .feature-text p {
        font-size: 0.9rem;
        text-align: justify;
        margin-bottom: 0.875rem;
        line-height: 1.7;
    }

    body.strategic-engagement-page .feature-content {
        gap: 1.25rem;
    }

    body.strategic-engagement-page .feature-actions {
        margin-top: 1rem;
    }

    body.strategic-engagement-page .feature-cta {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Optimized image sizing for smaller mobile screens */
    body.strategic-engagement-page .feature-image-frame {
        min-height: 240px;
        border-radius: 8px;
    }

    body.strategic-engagement-page .feature-image-wrapper {
        min-height: 240px;
        padding: 0;
    }

    body.strategic-engagement-page .feature-image-frame img {
        width: 100%;
        height: 100%;
        min-height: 240px;
        object-fit: cover;
        border-radius: 8px;
    }

    body.strategic-engagement-page .containerss {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    body.strategic-engagement-page .capabilities-main {
        padding-top: 80px;
    }

    body.strategic-engagement-page .services-section {
        padding: 1.25rem 0;
    }

    body.strategic-engagement-page .capability-feature .feature-content {
        padding: 1rem;
        border-radius: 16px;
        gap: 1rem;
    }

    body.strategic-engagement-page .capability-feature + .capability-feature {
        margin-top: 1rem;
    }

    body.strategic-engagement-page .feature-title {
        font-size: clamp(1.35rem, 7vw, 1.65rem);
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    body.strategic-engagement-page .feature-text p {
        font-size: 0.85rem;
        text-align: justify;
        margin-bottom: 0.75rem;
        line-height: 1.7;
    }

    body.strategic-engagement-page .feature-actions {
        margin-top: 0.875rem;
    }

    /* Optimized image sizing for very small mobile screens */
    body.strategic-engagement-page .feature-image-frame {
        min-height: 200px;
        border-radius: 8px;
    }

    body.strategic-engagement-page .feature-image-wrapper {
        min-height: 200px;
        padding: 0;
    }

    body.strategic-engagement-page .feature-image-frame img {
        width: 100%;
        height: 100%;
        min-height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }

    body.strategic-engagement-page .containerss {
        padding: 0 10px;
    }
}

.feature-text ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 1rem 0 0;
}
.feature-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 0.9rem;
    text-align: justify;
}
strong{
    font-weight: bolder;
}