/* Shared public layout styles extracted from inline markup. */
:root {
    --hai-brand-primary: #fd7801;
    --hai-brand-neutral: #3a3a3a;
    --hai-layout-max: 1320px;

    /* ── Shadow tokens ───────────────────────────────── */
    --shadow-sm:          0 4px 12px rgba(14, 27, 43, 0.07);
    --shadow-card:        0 10px 30px rgba(14, 27, 43, 0.08);
    --shadow-card-hover:  0 20px 40px rgba(14, 27, 43, 0.14);

    /* ── Border-radius tokens ────────────────────────── */
    --radius-sm:   6px;
    --radius-md:   8px;
    --radius-lg:   16px;
    --radius-xl:   20px;
    --radius-2xl:  24px;
    --radius-pill: 999px;

    /* ── Brand colour tints ──────────────────────────── */
    --brand-accent-bg-soft:  rgba(253, 120, 1, 0.10);
    --brand-accent-bg-mid:   rgba(253, 120, 1, 0.20);
    --brand-accent-border:   rgba(253, 120, 1, 0.40);

    /* ── Informational / slate palette ──────────────── */
    --color-info-bg:     #f8fbff;
    --color-info-border: #dbeafe;
    --color-slate:       #334155;
    --color-slate-dark:  #0f172a;

    /* ── Link colours ────────────────────────────────── */
    --color-link:       #1e3a8a;
    --color-link-hover: var(--brand-accent);

    /* ── Public hero standards ───────────────────────── */
    --public-hero-padding-top: 95px;
    --public-hero-padding-bottom: 82px;
    --public-hero-padding-top-mobile: 76px;
    --public-hero-padding-bottom-mobile: 62px;
    --public-hero-eyebrow-size: var(--type-overline);
    --public-hero-title-size: var(--type-h1);
    --public-hero-detail-title-size: var(--type-h2);
    --public-hero-body-size: var(--type-hero-body);
}

.text-brand {
    color: var(--hai-brand-primary) !important;
}

.bg-brand {
    background-color: var(--hai-brand-primary) !important;
}

.border-brand {
    border-color: var(--hai-brand-primary) !important;
}

.text-brand-neutral {
    color: var(--hai-brand-neutral) !important;
}

@media (min-width: 1200px) {
    .header-one .container,
    .header-main .container,
    .rts-footer-area .container {
        max-width: var(--hai-layout-max) !important;
    }
}

.hai-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.hai-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--hai-brand-primary);
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.hai-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.hai-brand-title {
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
}

.hai-brand-tagline {
    font-weight: 500;
}

.hai-brand-link--header .hai-brand-mark {
    height: 58px;
    width: 58px;
    font-size: var(--font-size-3xl);
}

.hai-brand-link--header .hai-brand-title {
    font-size: var(--type-h3);
    color: #141b4d;
}

.hai-brand-link--header .hai-brand-tagline {
    font-size: var(--type-label);
    color: #3f4764;
    letter-spacing: var(--tracking-wide);
}

.hai-brand-link--footer .hai-brand-mark {
    height: 52px;
    width: 52px;
    font-size: var(--font-size-2xl);
}

.hai-brand-link--footer .hai-brand-title {
    font-size: var(--type-h4);
    color: #ffffff;
}

.hai-brand-link--footer .hai-brand-tagline {
    font-size: var(--type-overline);
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: var(--tracking-wide);
}

.site-public-footer {
    width: 100%;
    background: #1a202c !important;
    color: #dbe4f0 !important;
    margin-top: 0 !important;
}

.site-public-footer .footer-content-row {
    padding: 34px 0 48px !important;
}

.site-public-footer .disc,
.site-public-footer .wized-title,
.site-public-footer .wized-2-body ul li a {
    color: #dbe4f0 !important;
}

.site-public-footer .wized-2-body ul li a:hover,
.site-public-footer .social-three-wrapper li a:hover {
    color: var(--hai-brand-primary) !important;
}

.site-public-footer .social-three-wrapper li a {
    color: #141b4d !important;
}

.site-public-footer .social-three-wrapper li a i {
    color: #141b4d !important;
}

.site-public-footer .social-three-wrapper li a::after {
    background: #eef2f7 !important;
    border: 1px solid rgba(28, 37, 57, 0.12);
}

.site-public-footer .social-three-wrapper li a:hover {
    color: #ffffff !important;
}

.site-public-footer .social-three-wrapper li a:hover i {
    color: #ffffff !important;
}

.site-public-footer .social-three-wrapper li a:hover::after {
    background: var(--hai-brand-primary) !important;
    border-color: var(--hai-brand-primary);
}

.site-public-footer .copyright-area {
    width: 100%;
    background: #0f1419 !important;
}

.site-public-footer .copyright-area .disc,
.site-public-footer .copyright-area a.disc {
    color: #f3f6fb !important;
}

.site-public-footer .copyright-area a.disc:hover {
    color: var(--hai-brand-primary) !important;
}

.site-public-footer .copyright-links-inline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.site-public-footer .copyright-links-inline a.disc {
    margin-right: 0 !important;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .site-public-footer .copyright-links-inline {
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 6px;
        column-gap: 10px;
    }
}

.hai-legacy-footer-shell .social-three-wrapper li a {
    color: #dbe4f0 !important;
}

.hai-legacy-footer-shell .social-three-wrapper li a i {
    color: inherit !important;
}

.hai-legacy-footer-shell .social-three-wrapper li a::after {
    background: #eef2f7 !important;
    border: 1px solid rgba(28, 37, 57, 0.12);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    font-size: 29px;
    box-shadow: 0 10px 24px rgba(9, 125, 57, 0.35);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px);
    background: #1fb455;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(9, 125, 57, 0.42);
}

.progress-wrap {
    display: none !important;
}

@media (max-width: 767px) {
    .whatsapp-float {
        right: 16px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

.hai-legacy-footer-shell .social-three-wrapper li a:hover {
    color: #ffffff !important;
}

.hai-legacy-footer-shell .social-three-wrapper li a:hover::after {
    background: var(--hai-brand-primary) !important;
    border-color: var(--hai-brand-primary);
}

.hai-mm-collapsed {
    height: 0;
}

.brand-logo-img {
    max-height: 60px;
    width: auto;
}

.progress-path-seed {
    transition: stroke-dashoffset 10ms linear 0s;
    stroke-dasharray: 307.919, 307.919;
    stroke-dashoffset: 307.919;
}

.mega-menu-item.with-list li a i {
    color: inherit !important;
}

.hai-honeypot {
    display: none;
    visibility: hidden;
}

.hai-form-messages {
    margin-top: 15px;
}

.hai-form-alert {
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.hai-form-alert--success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.hai-form-alert--warning {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.hai-map-embed {
    border: 0;
}

.hai-legacy-footer-shell {
    background: #1a202c;
    width: 100%;
}

.hai-legacy-footer-row {
    padding: 60px 0;
}

.hai-footer-disc-muted {
    color: rgba(255, 255, 255, 0.7);
}

.hai-contact-map-section {
    padding-bottom: 48px;
}

.hai-contact-map-section .google-map {
    line-height: 0;
}

.hai-contact-map-section .hai-map-embed {
    display: block;
}

.hai-contact-footer-fix {
    clear: both;
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hai-contact-map-section {
        padding-bottom: 28px;
    }
}

.hai-solutions-spacing {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.hai-solutions-spacing .title-style-one {
    margin-bottom: 34px;
}

/* Shared hero rhythm across public pages */
.services-hero,
.service-hero,
.industries-hero,
.industry-hero,
.projects-hero,
.about-hero,
.about-hero-modern {
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
}

.services-hero .eyebrow,
.service-hero .eyebrow,
.industries-hero .eyebrow,
.industry-hero .eyebrow,
.projects-hero .eyebrow,
.about-hero .eyebrow,
.about-hero-modern .eyebrow {
    font-size: var(--public-hero-eyebrow-size);
}

.services-hero h1,
.service-hero h1,
.industries-hero h1,
.industry-hero h1,
.projects-hero h1,
.about-hero h1,
.about-hero-modern h1 {
    font-size: var(--public-hero-title-size);
}

.services-hero p,
.service-hero p,
.industries-hero p,
.industry-hero p,
.projects-hero p,
.about-hero p,
.about-hero-modern p {
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

@media (max-width: 991px) {
    .services-hero,
    .service-hero,
    .industries-hero,
    .industry-hero,
    .projects-hero,
    .about-hero,
    .about-hero-modern {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }
}

@media (max-width: 991px) {
    .hai-solutions-spacing {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }
}

.services-hero {
    position: relative;
    overflow: hidden;
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
    background: radial-gradient(circle at 88% 16%, rgba(253, 120, 1, 0.24), transparent 35%), linear-gradient(120deg, var(--hero-bg-start) 0%, #2a2a2a 50%, var(--hero-bg-end) 100%);
}

.services-hero .eyebrow {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-overline);
    font-size: var(--public-hero-eyebrow-size);
    font-weight: 700;
}

.services-hero h1 {
    margin-top: 18px;
    color: #fff;
    font-size: var(--public-hero-title-size);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
    max-width: 820px;
}

.services-hero p {
    margin-top: 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

.services-cards {
    padding: 75px 0 85px;
}

.service-card {
    position: relative;
    display: block;
    border-radius: 20px;
    padding: 26px;
    min-height: 220px;
    background: linear-gradient(165deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(58, 58, 58, 0.09);
    box-shadow: 0 14px 30px rgba(19, 38, 84, 0.08);
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(253, 120, 1, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(16, 32, 75, 0.14);
    border-color: rgba(253, 120, 1, 0.4);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    height: 33px;
    min-width: 33px;
    padding: 0 12px;
    background: rgba(253, 120, 1, 0.12);
    color: var(--brand-accent-hover);
    font-size: var(--type-micro);
    font-weight: 700;
    letter-spacing: var(--tracking-wide-strong);
    text-transform: uppercase;
}

.service-card h3 {
    margin-top: 16px;
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: clamp(1.4rem, 1.9vw, 1.6rem);
    line-height: 1.3;
    font-weight: 800;
}

.service-card p {
    color: var(--color-body);
    margin-bottom: 18px;
    font-size: var(--type-body);
    line-height: 1.8;
}

.service-card .link {
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .link::after {
    content: "->";
    transition: transform 0.2s ease;
}

.service-card:hover .link::after {
    transform: translateX(4px);
}

.services-bottom-note {
    margin-top: 40px;
    border-left: 4px solid var(--brand-accent);
    padding: 16px 20px;
    background: #fff4e8;
    color: #3d4353;
    border-radius: 10px;
}

/* Homepage latest services: keep hover clean (no photo background), use brand-light surface */
.rts-latest-service-area section.main-wrapper-sticky .sticky-statement {
    border: 1px solid rgba(58, 58, 58, 0.08);
    border-radius: 12px;
    background-image: none;
}

.rts-latest-service-area section.main-wrapper-sticky .sticky-statement:hover {
    background-image: none;
    background-color: #fff4ea;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    border-color: rgba(253, 120, 1, 0.35);
}

.rts-latest-service-area section.main-wrapper-sticky .sticky-statement:hover * {
    color: #1e293b;
}

.rts-latest-service-area section.main-wrapper-sticky .sticky-statement:hover .left-side img {
    filter: none;
}

.rts-latest-service-area section.main-wrapper-sticky .sticky-statement:hover .right .arrow {
    background: var(--brand-accent);
}

.rts-latest-service-area section.main-wrapper-sticky .sticky-statement:hover .right .arrow i {
    color: #fff;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
    background: radial-gradient(circle at 12% 18%, rgba(253, 120, 1, 0.2), transparent 38%), linear-gradient(135deg, #0f172a 0%, #1f2a44 52%, #273b68 100%);
}

.service-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: var(--public-hero-eyebrow-size);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
}

.service-hero .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fd7801;
}

.service-hero h1 {
    margin-top: 20px;
    color: #fff;
    font-size: var(--public-hero-title-size);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
}

.service-hero p {
    margin-top: 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

.service-grid-section {
    padding: 75px 0;
}

.service-page-nav-wrap {
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 0 10px;
    font-size: var(--type-label);
    color: #64748b;
}

.service-breadcrumb a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}

.service-breadcrumb a:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

.service-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 16px;
}

.service-section-nav a {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe4ef;
    background: #f8fbff;
    color: #334155;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--type-label);
    padding: 7px 14px;
}

.service-section-nav a:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    background: #fff7ee;
}

.service-overview-summary {
    padding-top: 24px;
}

.service-block {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(58, 58, 58, 0.1);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(10, 26, 70, 0.07);
}

.service-block--challenge {
    border-left: 4px solid #f59e0b;
    background: #fffbf3;
}

.service-block--solution {
    border-left: 4px solid #f97316;
    background: #fff8ef;
}

.service-block--why {
    border-left: 4px solid #1d4ed8;
    background: #f8fbff;
}

.service-block--facts {
    border-left: 4px solid #0ea5e9;
}

.service-block--outcomes {
    border-left: 4px solid #16a34a;
}

.service-block h2,
.service-block h3 {
    color: var(--brand-dark);
    font-weight: 800;
    font-size: var(--type-title-md);
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    color: #44506e;
    line-height: 1.7;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 3px;
    background: linear-gradient(135deg, #fd7801, #ffaf4b);
}

.service-process {
    background: #f7f9ff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(58, 58, 58, 0.09);
}

.service-process ol {
    margin: 0;
    padding-left: 22px;
    color: #2f3b59;
}

.service-process li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-cta {
    margin: 70px 0 10px;
    border-radius: 24px;
    background: linear-gradient(140deg, var(--brand-accent) 0%, #ff9541 35%, var(--hero-bg-end) 100%);
    color: #fff;
    padding: 44px 38px;
}

.service-cta h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: var(--type-h3);
    font-weight: 800;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.service-cta .rts-btn.btn-primary {
    background: #fff;
    color: var(--brand-dark);
    border-color: #fff;
}

.service-cta .rts-btn.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.service-why-copy {
    color: #44506e;
    line-height: 1.8;
}

/* Shared FAQ typography across public templates */
.hai-faq-question {
    position: relative;
    padding-left: 18px;
    font-size: clamp(1.08rem, 1.5vw, 1.2rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.45;
}

.hai-faq-question::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, #fd7801, #ffaf4b);
    transform: translateY(-50%);
}

.hai-faq-answer {
    margin: 0 0 0 18px;
    color: #475569;
    font-size: var(--type-body);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .services-hero {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }

    .services-cards {
        padding: 56px 0 66px;
    }

    .service-grid-section {
        padding: 55px 0;
    }

    .service-hero {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }

    .service-cta {
        padding: 32px 24px;
    }

    .service-hero p {
        font-size: var(--type-body);
        line-height: 1.75;
    }

    .service-section-nav {
        gap: 8px;
    }

    .service-section-nav a {
        padding: 6px 12px;
    }

    .service-breadcrumb {
        padding: 12px 0 8px;
    }
}

@media (max-width: 767px) {
    .service-section-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-section-nav a {
        justify-content: center;
        text-align: center;
        min-height: 38px;
        padding: 8px 10px;
    }

    .service-faq-accordion .service-faq-item {
        padding: 0 12px;
    }

    .service-faq-accordion .service-faq-item summary {
        padding: 12px 0;
    }

    .service-related-link-card {
        padding: 11px 12px;
    }
}

/* ============================================================================
   ABOUT-US.PHP STYLES
   ============================================================================ */

.about-hero-modern {
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
    background:
    radial-gradient(circle at top left, rgba(253, 120, 1, 0.16), transparent 36%),
    linear-gradient(135deg, #fff7ef 0%, #ffffff 58%, #fff4e8 100%);
}

.about-hero-modern .eyebrow,
.about-section .eyebrow {
    display: inline-block;
    font-size: var(--type-overline);
    font-weight: 700;
    letter-spacing: var(--tracking-ultra);
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 1rem;
}

.about-hero-modern .rts-btn,
.about-section .rts-btn {
    font-size: var(--type-button);
    line-height: 1.2;
    font-weight: 600;
}

.about-hero-modern h1,
.about-section h2 {
    color: #132238;
}

.about-hero-modern p,
.about-section p,
.about-feature-card p,
.about-service-list li,
.about-industry-list li {
    color: #53657d;
}

.about-hero-card,
.about-feature-card,
.about-contact-card {
    background: #fff;
    border: 1px solid #f3deca;
    border-radius: 22px;
    box-shadow: 0 20px 44px rgba(94, 57, 17, 0.1);
}

.about-hero-card {
    padding: 28px;
}

.about-section {
    padding: 84px 0;
}

.about-feature-card {
    height: 100%;
    padding: 26px;
}

.about-feature-card h4,
.about-contact-card h4 {
    color: #132238;
    margin-bottom: 0.75rem;
}

.about-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff2e4;
    color: var(--brand-accent);
    font-size: var(--type-title-md);
    margin-bottom: 1rem;
}

.about-service-list,
.about-industry-list,
.about-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-service-list li,
.about-industry-list li,
.about-contact-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1e1d0;
}

.about-service-list li:last-child,
.about-industry-list li:last-child,
.about-contact-list li:last-child {
    border-bottom: 0;
}

.about-statement {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #132238 0%, #1d3b63 100%);
    color: #fff;
}

.about-statement p,
.about-statement li,
.about-statement h2 {
    color: #fff;
}

.about-contact-card {
    padding: 28px;
    height: 100%;
}

.about-contact-list strong {
    display: block;
    color: #132238;
    font-size: var(--type-micro);
    text-transform: uppercase;
    letter-spacing: var(--tracking-overline);
    margin-bottom: 0.25rem;
}

@media (max-width: 991.98px) {
    .about-hero-modern {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }

    .about-section {
        padding: 64px 0;
    }
}

/* ============================================================================
   INDUSTRIES.PHP STYLES
   ============================================================================ */

.industries-hero {
    position: relative;
    overflow: hidden;
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
    background: radial-gradient(circle at 88% 16%, rgba(253, 120, 1, 0.24), transparent 35%), linear-gradient(120deg, var(--hero-bg-start) 0%, #2a2a2a 50%, var(--hero-bg-end) 100%);
}

.industries-hero .eyebrow {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-overline);
    font-size: var(--public-hero-eyebrow-size);
    font-weight: 700;
}

.industries-hero h1 {
    margin-top: 18px;
    color: #fff;
    font-size: var(--public-hero-title-size);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
    max-width: 820px;
}

.industries-hero p {
    margin-top: 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

.industries-cards {
    padding: 75px 0 85px;
}

.industry-card {
    position: relative;
    display: block;
    border-radius: 20px;
    padding: 26px;
    min-height: 210px;
    background: linear-gradient(165deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(58, 58, 58, 0.09);
    box-shadow: 0 14px 30px rgba(19, 38, 84, 0.08);
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(253, 120, 1, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(16, 32, 75, 0.14);
    border-color: rgba(253, 120, 1, 0.4);
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-card .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    height: 33px;
    min-width: 33px;
    padding: 0 12px;
    background: rgba(253, 120, 1, 0.12);
    color: var(--brand-accent-hover);
    font-size: var(--type-micro);
    font-weight: 700;
    text-transform: uppercase;
}

.industry-card h3 {
    margin-top: 16px;
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: clamp(1.4rem, 1.9vw, 1.6rem);
    line-height: 1.3;
    font-weight: 800;
}

.industry-card p {
    color: var(--color-body);
    font-size: var(--type-body);
    line-height: 1.8;
}

.industry-card .link {
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.industry-card .link::after {
    content: "->";
    transition: transform 0.2s ease;
}

.industry-card:hover .link::after {
    transform: translateX(4px);
}

.industries-bottom-note {
    margin-top: 40px;
    font-size: var(--type-body);
    line-height: 1.75;
    padding: 16px 20px;
    background: #fff4e8;
    color: #3d4353;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .industries-hero {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }

    .industries-cards {
        padding: 56px 0 66px;
    }
}

/* ============================================================================
   INDUSTRIES/_TEMPLATE.PHP STYLES
   ============================================================================ */

.industry-hero {
    position: relative;
    overflow: hidden;
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
    background: radial-gradient(circle at 12% 18%, rgba(253, 120, 1, 0.2), transparent 38%), linear-gradient(135deg, #0f172a 0%, #1f2a44 52%, #273b68 100%);
}

.industry-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: var(--public-hero-eyebrow-size);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
}

.industry-hero .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fd7801;
}

.industry-hero h1 {
    margin-top: 20px;
    color: #fff;
    font-size: var(--public-hero-title-size);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
}

.industry-hero p {
    margin-top: 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

.industry-grid-section {
    padding: 75px 0;
}

.industry-block {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(58, 58, 58, 0.1);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(10, 26, 70, 0.07);
}

.industry-block h2,
.industry-block h3 {
    color: var(--brand-dark);
    font-weight: 800;
    font-size: var(--type-title-md);
    margin-bottom: 16px;
}

.industry-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.industry-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    color: #44506e;
    line-height: 1.7;
}

.industry-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 3px;
    background: linear-gradient(135deg, #fd7801, #ffaf4b);
}

.industry-process {
    background: #f7f9ff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(58, 58, 58, 0.09);
}

.industry-process ol {
    margin: 0;
    padding-left: 22px;
    color: #2f3b59;
}

.industry-process li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.industry-cta {
    margin: 70px 0 10px;
    border-radius: 24px;
    background: linear-gradient(140deg, var(--brand-accent) 0%, #ff9541 35%, var(--hero-bg-end) 100%);
    color: #fff;
    padding: 44px 38px;
}

.industry-cta h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: var(--type-h3);
    font-weight: 800;
}

.industry-cta p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.industry-cta .rts-btn.btn-primary {
    background: #fff;
    color: var(--brand-dark);
    border-color: #fff;
}

.industry-cta .rts-btn.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.industry-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-chip {
    background: #eef2ff;
    border: 1px solid #d8e0ff;
    color: #334155;
    border-radius: 999px;
    font-size: var(--type-micro);
    padding: 7px 12px;
}

.industry-facts li::before {
    content: "\2022";
    color: #fd7801;
    font-weight: 700;
    margin-right: 10px;
}

.industry-faq-item + .industry-faq-item {
    border-top: 1px dashed #d6dbe8;
    margin-top: 14px;
    padding-top: 14px;
}

.industry-related-links {
    margin-top: 24px;
}

.industry-related-card {
    background: #f8fbff;
    border: 1px solid #dbe9ff;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
}

.industry-related-title {
    margin: 0 0 12px;
    font-size: var(--type-title-sm);
    font-weight: 800;
    color: #0f172a;
}

.industry-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-related-list li + li {
    margin-top: 10px;
}

.industry-related-link {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.industry-related-link-card {
    display: block;
    border: 1px solid #e4ebf5;
    border-radius: 12px;
    padding: 12px 14px;
    background: #ffffff;
}

.industry-related-link-card:hover {
    border-color: #cddcf0;
    background: #f8fbff;
    text-decoration: none;
}

.industry-related-link-title {
    display: block;
    color: #0f172a;
    font-weight: 700;
    font-size: var(--type-body);
}

.industry-related-link-meta {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: var(--type-micro);
    line-height: 1.6;
}

.industry-related-link-cta {
    display: inline-block;
    margin-top: 7px;
    color: var(--brand-accent);
    font-size: var(--type-label);
    font-weight: 700;
}

.industry-related-link:hover {
    color: #fd7801;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .industry-grid-section {
        padding: 55px 0;
    }

    .industry-hero {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }

    .industry-cta {
        padding: 32px 24px;
    }

    .industry-hero p {
        font-size: var(--type-body);
        line-height: 1.75;
    }
}

/* ============================================================================
   UTILITY CLASSES FOR INLINE STYLE MIGRATION
   ============================================================================ */

/* Footer wrapper background */
.footer-wrapper-bg {
    background: #1a202c;
    width: 100%;
}

/* Footer list and link styles */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
}

/* Compact footer list (8px spacing, 13px font) */
.footer-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-compact li {
    margin-bottom: 8px;
}

.footer-list-compact li:last-child {
    margin-bottom: 0;
}

.footer-list-compact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--type-label);
    transition: color 0.3s ease;
}

.footer-list-compact a:hover {
    color: #ffffff;
}

/* Footer section titles */
.footer-section-title {
    color: #ffffff;
}

/* Styled body padding for centered content */
.body-centered {
    padding: 40px;
    text-align: center;
}

/* Helper class for display none (complements Bootstrap d-none) */
.is-hidden {
    display: none;
}

/* ============================================================================
   SERVICE DETAIL PAGE STYLES (FROM INLINE CONSOLIDATION)
   ============================================================================ */

.service-facts,
.service-terms {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-facts li,
.service-terms li {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 10px;
}

.service-facts li::before {
    content: "\2022";
    color: #fd7801;
    font-weight: 700;
    margin-right: 10px;
}

.service-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-chip {
    background: #f6f8ff;
    border: 1px solid #e5e9f5;
    color: #334155;
    border-radius: 999px;
    font-size: var(--type-micro);
    padding: 7px 12px;
}

.service-knowledge-card {
    background: #fff8ef;
    border: 1px solid #ffe2bf;
    border-radius: 16px;
    padding: 22px;
}

.service-faq-item + .service-faq-item {
    border-top: 1px dashed #d6dbe8;
    margin-top: 14px;
    padding-top: 14px;
}

.service-faq-accordion {
    display: grid;
    gap: 12px;
}

.service-faq-accordion .service-faq-item {
    border: 1px solid #e6edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 0 14px;
    margin: 0;
}

.service-faq-accordion .service-faq-item + .service-faq-item {
    border-top: 1px solid #e6edf5;
    margin-top: 0;
    padding-top: 0;
}

.service-faq-accordion .service-faq-item[open] {
    border-color: #ffd6ab;
    background: #fffdf9;
}

.service-faq-accordion .service-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 0;
}

.service-faq-accordion .service-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-faq-accordion .service-faq-item summary.hai-faq-question {
    margin-bottom: 0;
}

.service-faq-accordion .service-faq-item[open] .hai-faq-answer {
    margin-bottom: 14px;
}

.service-related-links {
    margin-top: 24px;
}

.service-related-card {
    background: #f8fbff;
    border: 1px solid #dbe9ff;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
}

.service-related-title {
    margin: 0 0 12px;
    font-size: var(--type-title-sm);
    font-weight: 800;
    color: #0f172a;
}

.service-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-related-list li + li {
    margin-top: 10px;
}

.service-related-link {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

.service-related-link-card {
    display: block;
    border: 1px solid #e4ebf5;
    border-radius: 12px;
    padding: 12px 14px;
    background: #ffffff;
}

.service-related-link-card:hover {
    border-color: #cddcf0;
    background: #f8fbff;
    text-decoration: none;
}

.service-related-link-title {
    display: block;
    color: #0f172a;
    font-weight: 700;
    font-size: var(--type-body);
}

.service-related-link-meta {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: var(--type-micro);
    line-height: 1.6;
}

.service-related-link-cta {
    display: inline-block;
    margin-top: 7px;
    color: var(--brand-accent);
    font-size: var(--type-label);
    font-weight: 700;
}

.service-related-link:hover {
    color: #fd7801;
    text-decoration: underline;
}

/* Quick related link on service hub cards */
.quick-related-link {
    font-size: var(--type-body);
    font-weight: 600;
    color: #1e3a8a;
    text-decoration: none;
}

.quick-related-link:hover {
    color: #fd7801;
    text-decoration: underline;
}

/* Service detail section headings */
.service-section-h4 {
    font-size: var(--type-body);
    font-weight: 700;
    color: #0f172a;
}

.service-section-h3-main {
    font-size: var(--type-title-md);
    color: #0f172a;
}

.service-section-h3-sub {
    font-size: var(--type-title-sm);
    color: #0f172a;
}

.service-section-description {
    color: #475569;
}

/* Industry detail section headings */
.industry-section-h4 {
    font-size: var(--type-body);
    font-weight: 700;
    color: #0f172a;
}

.industry-section-description {
    color: #44506e;
    line-height: 1.8;
}

/* AI/LLM direct-answer summary block */
.ai-answer-block {
    background: linear-gradient(140deg, #fff8ef 0%, #fff 100%);
    border: 1px solid #ffe2bf;
    border-left: 4px solid #fd7801;
    border-radius: 12px;
    padding: 16px 18px;
}

.ai-answer-block--hero {
    margin-top: 20px;
    max-width: 840px;
}

.ai-answer-block__title {
    margin: 0 0 6px;
    font-size: clamp(0.95rem, 1.1vw, 1.08rem);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    font-weight: 800;
    color: var(--brand-accent);
}

.ai-answer-block__text {
    margin: 0;
    color: var(--color-title) !important;
    line-height: 1.75;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    font-weight: 500;
}

.ai-answer-block p,
.ai-answer-block li,
.ai-answer-block span {
    color: #111827;
}

.citation-readiness-card {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 16px 18px;
}

.citation-readiness-card h4,
.citation-readiness-card h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: var(--type-title-sm);
    font-weight: 800;
}

.citation-readiness-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.citation-readiness-card li {
    margin-bottom: 8px;
    color: #334155;
    line-height: 1.65;
}

.citation-readiness-card li::before {
    content: "\2022";
    color: #fd7801;
    font-weight: 700;
    margin-right: 10px;
}

.citation-readiness-card a {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 600;
}

.citation-readiness-card a:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.blog-back-link {
    color: #fd7801;
    font-weight: 600;
    text-decoration: none;
}

.blog-back-link:hover {
    color: #1e3a8a;
}

.author-profile-card {
    border: 1px solid #dbeafe;
    background: #f8fbff;
    border-radius: 12px;
    padding: 14px;
}

.author-profile-card h6 {
    margin: 0 0 6px;
    font-size: var(--type-body);
    font-weight: 800;
    color: #0f172a;
}

.author-profile-role {
    color: #1e3a8a;
    font-weight: 600;
    font-size: var(--type-body);
}

.author-profile-bio {
    color: #475569;
    line-height: 1.65;
    font-size: var(--type-body);
}

.author-expertise-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.author-expertise-chip {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: var(--type-micro);
    color: #334155;
    font-weight: 600;
}

.author-linkedin-link {
    color: #0a66c2;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--type-body);
}

.author-linkedin-link:hover {
    text-decoration: underline;
}

/* Legacy About Hero (kept for compatibility if route uses .about-hero) */
.about-hero .eyebrow {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-overline);
    font-size: var(--type-overline);
    font-weight: 700;
}

.about-hero h1 {
    margin-top: 18px;
    color: #fff;
    font-size: var(--public-hero-title-size);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
    max-width: 820px;
}

.about-hero p {
    margin-top: 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

/* Projects Hero Section - standardized with services/industries */
.projects-hero {
    position: relative;
    overflow: hidden;
    padding: var(--public-hero-padding-top) 0 var(--public-hero-padding-bottom);
    background: radial-gradient(circle at 88% 16%, rgba(253, 120, 1, 0.24), transparent 35%), linear-gradient(120deg, var(--hero-bg-start) 0%, #2a2a2a 50%, var(--hero-bg-end) 100%);
}

.projects-hero .eyebrow {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-overline);
    font-size: var(--public-hero-eyebrow-size);
    font-weight: 700;
}

.projects-hero h1 {
    margin-top: 18px;
    color: #fff;
    font-size: var(--public-hero-title-size);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: var(--tracking-tight-strong);
    max-width: 820px;
}

.projects-hero p {
    margin-top: 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--public-hero-body-size);
    line-height: 1.75;
}

.projects-hero .rts-btn,
.project-section .rts-btn,
.project-detail-hero .rts-btn {
    font-size: var(--type-button);
    line-height: 1.2;
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-hero,
    .projects-hero {
        padding: var(--public-hero-padding-top-mobile) 0 var(--public-hero-padding-bottom-mobile);
    }
}

/* ── Blog Pagination ── */
.pagination a.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    padding: 15px;
    border: 1px solid #EBEBEB;
    border-radius: 15px;
    margin-right: 10px;
    color: #1C2539;
    font-weight: 700;
    height: 50px;
    width: 50px;
    line-height: 1.35;
    font-size: var(--type-button);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.pagination a.page-btn.active {
    background: var(--color-primary);
    color: #fff;
}
.pagination a.page-btn:hover {
    background: var(--color-primary);
    color: #fff;
}
.pagination a.page-btn:last-child {
    margin-right: 0;
    font-size: var(--font-size-2xl);
}

/* ============================================================================
   LEGAL PAGES
   ============================================================================ */

.legal-page-content .legal-summary {
    background: var(--color-info-bg);
    border: 1px solid var(--color-info-border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 22px;
}

.legal-page-content .legal-summary h2 {
    font-size: var(--type-title-sm);
    margin: 0 0 10px 0;
    color: var(--color-slate-dark);
}

.legal-page-content .legal-summary p {
    margin: 0;
    color: var(--color-slate);
    line-height: 1.75;
}

.legal-page-content .legal-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-page-content .legal-points li {
    color: var(--color-slate);
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-page-content .legal-points li::before {
    content: "\2022";
    color: var(--brand-accent);
    font-weight: 700;
    margin-right: 10px;
}

.legal-page-content .legal-rights {
    background: #fff8ef;
    border: 1px solid #ffe2bf;
    border-radius: 14px;
    padding: 18px;
    margin-top: 24px;
}

.legal-page-content .legal-rights h3 {
    font-size: var(--type-title-sm);
    margin: 0 0 10px 0;
    color: var(--color-slate-dark);
}

/* ============================================================================
   PUBLIC TYPOGRAPHY LOCK
   ============================================================================ */

body.color-yellow-demo,
body.demo-seo,
body.account-page-body {
    font-family: var(--font-family-body);
    font-size: var(--type-body);
    line-height: var(--line-height-normal);
    color: var(--color-body-text);
}

body.color-yellow-demo h1,
body.color-yellow-demo h2,
body.color-yellow-demo h3,
body.color-yellow-demo h4,
body.color-yellow-demo h5,
body.color-yellow-demo h6,
body.demo-seo h1,
body.demo-seo h2,
body.demo-seo h3,
body.demo-seo h4,
body.demo-seo h5,
body.demo-seo h6,
body.account-page-body h1,
body.account-page-body h2,
body.account-page-body h3,
body.account-page-body h4,
body.account-page-body h5,
body.account-page-body h6 {
    font-family: var(--font-family-heading);
    color: var(--color-heading);
    letter-spacing: var(--tracking-tight);
}

body.color-yellow-demo h1,
body.demo-seo h1,
body.account-page-body h1 {
    font-size: var(--type-h1);
    line-height: var(--line-height-tight);
}

body.color-yellow-demo h2,
body.demo-seo h2,
body.account-page-body h2 {
    font-size: var(--type-h2);
    line-height: var(--line-height-snug);
}

body.color-yellow-demo h3,
body.demo-seo h3,
body.account-page-body h3 {
    font-size: var(--type-h3);
    line-height: var(--line-height-snug);
}

body.color-yellow-demo h4,
body.demo-seo h4,
body.account-page-body h4 {
    font-size: var(--type-h4);
    line-height: var(--line-height-snug);
}

body.color-yellow-demo h5,
body.demo-seo h5,
body.account-page-body h5 {
    font-size: var(--type-h5);
    line-height: var(--line-height-snug);
}

body.color-yellow-demo h6,
body.demo-seo h6,
body.account-page-body h6 {
    font-size: var(--type-h6);
    line-height: var(--line-height-normal);
}

.header-top-one-wrapper,
.header-top-one-wrapper a,
.header-main .nav-area a,
.rts-btn,
.project-cta,
.back-link,
.pagination a.page-btn {
    font-size: var(--type-button);
}

@media (max-width: 767px) {
    .header-main .nav-area a,
    .header-top-one-wrapper,
    .header-top-one-wrapper a,
    .rts-btn,
    .project-cta,
    .back-link,
    .pagination a.page-btn {
        font-size: var(--type-label);
    }
}

/* Keep headings white on dark hero surfaces after global typography lock */
body.color-yellow-demo .services-hero h1,
body.color-yellow-demo .service-hero h1,
body.color-yellow-demo .industries-hero h1,
body.color-yellow-demo .industry-hero h1,
body.color-yellow-demo .projects-hero h1,
body.color-yellow-demo .project-detail-hero h1,
body.color-yellow-demo .about-statement h2,
body.demo-seo .services-hero h1,
body.demo-seo .service-hero h1,
body.demo-seo .industries-hero h1,
body.demo-seo .industry-hero h1,
body.demo-seo .projects-hero h1,
body.demo-seo .project-detail-hero h1,
body.demo-seo .about-statement h2,
body.account-page-body .services-hero h1,
body.account-page-body .service-hero h1,
body.account-page-body .industries-hero h1,
body.account-page-body .industry-hero h1,
body.account-page-body .projects-hero h1,
body.account-page-body .project-detail-hero h1,
body.account-page-body .about-statement h2 {
    color: var(--hero-text-title);
}

/* Breadcrumb Area Layout & Style Lock - Compact & Dark Heading */
.rts-breadcrumb-area {
    height: 260px !important;
}
@media (max-width: 768px) {
    .rts-breadcrumb-area {
        height: 200px !important;
    }
}
.rts-breadcrumb-area .title-area-left .title {
    color: #1C2539 !important;
}

/* ── UI/UX & Responsive Modernization Standards ──────── */

/* 1. Header & Navigation Refinements */
@media (min-width: 1200px) {
    .header-one .menu-bar,
    .header-main .menu-bar {
        display: none !important;
    }
}

.header--sticky.sticky {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
}

.header-one .thumbnail a.hai-brand-link img {
    transition: transform 0.2s ease;
}

.header-one .thumbnail a.hai-brand-link:hover img {
    transform: scale(1.02);
}

/* 2. Contact Us Mobile Layout & Overlap Resolution */
@media (max-width: 991px) {
    .rts-breadcrumb-area {
        height: auto !important;
        min-height: 240px !important;
        padding: 55px 0 35px !important;
    }
    .rts-breadcrumb-area .title-area-left {
        margin-top: 0 !important;
    }
    .rts-contact-area-in-page {
        margin-top: 0 !important;
        padding-top: 1.5rem !important;
    }
    .contact-info-area-wrapper-p.new {
        margin-top: 0 !important;
        margin-bottom: 2rem !important;
        padding: 30px 24px !important;
    }
    .contact-info-area-wrapper-p .single-contact-info .info-wrapper a {
        font-size: 1.15rem !important;
        word-break: break-word !important;
    }
}

/* 3. Footer Floating WhatsApp Widget Safety Buffer */
@media (min-width: 768px) {
    .copyright-area .copyright-links-inline {
        padding-right: 110px !important;
    }
}

@media (max-width: 767px) {
    .site-public-footer .copyright-area {
        padding-bottom: 84px !important;
    }
    .copyright-links-inline {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    .copyright-links-inline a {
        margin-right: 0 !important;
    }
}

/* 4. Form Inputs & Interactive Focus States */
.contact-form-p form input,
.contact-form-p form textarea,
.contact-form-p form select {
    border-radius: var(--radius-md) !important;
    border: 1px solid #CBD5E1 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.contact-form-p form input:focus,
.contact-form-p form textarea:focus,
.contact-form-p form select:focus {
    border-color: var(--hai-brand-primary) !important;
    box-shadow: 0 0 0 3px rgba(253, 120, 1, 0.15) !important;
    outline: none !important;
    background-color: #FFFFFF !important;
}

/* 5. Mobile Touch Target Compliance */
@media (max-width: 767px) {
    .rts-btn,
    .menu-icon.menu-btn,
    .whatsapp-float {
        min-height: 44px;
    }
    .header-main-one-wrapper {
        padding: 12px 0;
    }
}


