/* EMERGENCY FIX FOR SECTION TITLES */
/* This ensures section titles are ALWAYS visible */

.section-title {
    font-family: var(--font-heading) !important;
    text-align: center !important;
    margin: 0 auto 1rem !important;
    color: #000000 !important;
    /* Force black color */
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    position: relative !important;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-title::after {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 3px !important;
    background-color: #5A0F1B !important;
    /* Force burgundy */
    margin: 15px auto 3rem !important;
}

/* Services section specific */
.services .section-title {
    color: #000000 !important;
    display: block !important;
}

/* Why Us section specific */
.why-us .section-title {
    color: #000000 !important;
    display: block !important;
}

/* AI Lab section specific */
.ai-lab .section-title {
    color: #000000 !important;
    display: block !important;
}