:root {
    --bl-navy: #06264a;
    --bl-navy-dark: #001f3f;
    --bl-navy-deep: #041b36;
    --bl-orange: #ff5b14;
    --bl-blue: #53afff;
    --bl-green: #18a765;
    --bl-text: #0c2747;
    --bl-muted: #607084;
    --bl-line: #dce6f0;
    --bl-soft: #f6f9fc;
    --bl-shadow: 0 16px 34px rgba(1, 25, 51, 0.16);
    --bl-container: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--bl-text);
    background: #ffffff;
    font-family: "Outfit", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    width: 1em;
    height: 1em;
    stroke-width: 2.2;
}

.bl-container,
.bl-header-container {
    width: min(var(--bl-container), calc(100% - clamp(28px, 5vw, 96px)));
    margin: 0 auto;
}

.bl-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-top: 8px solid #163239;
}

.bl-topbar {
    background: #ffffff;
}

.bl-topbar__inner {
    min-height: clamp(72px, 5.2vw, 92px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.bl-logo {
    flex: 0 0 auto;
}

.bl-logo img {
    width: clamp(205px, 16vw, 292px);
    height: auto;
}

.bl-contact-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 2.2vw, 42px);
}

.bl-contact {
    min-width: clamp(150px, 12vw, 190px);
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid var(--bl-line);
    color: #203954;
}

.bl-contact > svg {
    color: var(--bl-orange);
    width: 22px;
    height: 22px;
}

.bl-contact strong,
.bl-contact small {
    display: block;
    line-height: 1.15;
}

.bl-contact strong {
    font-size: 13px;
    font-weight: 800;
}

.bl-contact small {
    margin-top: 4px;
    color: #627388;
    font-size: 12px;
}

.bl-navband {
    background: var(--bl-navy-deep);
}

.bl-navband__inner {
    min-height: clamp(46px, 3vw, 52px);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
}

.bl-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin: 7px 0;
    border: 0;
    border-radius: 2px;
    background: var(--bl-orange);
    color: #ffffff;
    place-items: center;
}

.bl-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.bl-nav {
    display: flex;
    align-items: stretch;
    min-width: 0;
    flex-grow: 1;
    justify-content: space-between;
}

.bl-nav__item {
    position: relative;
}

.bl-nav__link {
    position: relative;
    min-height: clamp(46px, 3vw, 52px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 clamp(13px, 1.45vw, 24px);
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bl-nav__link svg {
    width: 14px;
    height: 14px;
}

.bl-nav__link.is-active,
.bl-nav__item.is-active > .bl-nav__link {
    position: relative;
}

.bl-nav__link:hover,
.bl-nav__link:focus-visible,
.bl-nav__item:hover > .bl-nav__link,
.bl-nav__item:focus-within > .bl-nav__link,
.bl-nav__item.is-open > .bl-nav__link {
    background: rgba(255, 91, 20, 0.12);
    color: #ffffff;
    outline: 0;
}

.bl-nav__link:hover::after,
.bl-nav__link:focus-visible::after,
.bl-nav__item:hover > .bl-nav__link::after,
.bl-nav__item:focus-within > .bl-nav__link::after {
    content: "";
    position: absolute;
    left: clamp(12px, 1.1vw, 21px);
    right: clamp(12px, 1.1vw, 21px);
    bottom: 0;
    height: 3px;
    background: var(--bl-orange);
    transform-origin: left center;
    animation: blUnderlineIn 220ms ease both;
}

.bl-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 20;
    width: 270px;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.98);
    background: #ffffff;
    border-top: 3px solid var(--bl-orange);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 18px 34px rgba(0, 20, 40, 0.24);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    overflow: hidden;
}

.bl-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 18px 24px;
    color: #808890;
    border-bottom: 1px solid #edf0f3;
    font-size: 16px;
    font-weight: 700;
    transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.bl-dropdown a::before {
    content: "";
    width: 0;
    height: 2px;
    margin-right: 0;
    background: var(--bl-orange);
    transition: width 180ms ease, margin-right 180ms ease;
}

.bl-dropdown a:hover {
    color: var(--bl-orange);
    background: #fbfcfd;
    padding-left: 28px;
}

.bl-dropdown a:hover::before {
    width: 16px;
    margin-right: 10px;
}

.has-mega .bl-dropdown {
    width: min(640px, calc(100vw - 28px));
    border-radius: 0 0 6px 6px;
}

.bl-mega-menu {
    padding: 8px;
}

.bl-mega-menu__all {
    min-height: 42px;
    margin-bottom: 8px;
    padding: 8px 10px;
    border: 1px solid #e8eef5;
    border-radius: 6px;
    background: #f8fbff;
    color: var(--bl-navy-dark);
}

.bl-mega-menu__all span,
.bl-mega-menu__item span {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 91, 20, 0.1);
    color: var(--bl-orange);
}

.bl-mega-menu__all svg,
.bl-mega-menu__item svg {
    width: 17px;
    height: 17px;
}

.bl-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.bl-mega-menu__item {
    min-height: 58px;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border: 1px solid #edf1f6;
    border-radius: 6px;
    color: var(--bl-text);
}

.bl-mega-menu__item::before,
.bl-mega-menu__all::before {
    display: none;
}

.bl-mega-menu__item:hover,
.bl-mega-menu__all:hover {
    padding-left: 10px;
    border-color: rgba(255, 91, 20, 0.35);
    background: #fff8f4;
}

.bl-mega-menu__item strong,
.bl-mega-menu__all strong {
    display: block;
    color: var(--bl-text);
    font-size: 13px;
    line-height: 1.18;
}

.bl-mega-menu__item small {
    display: block;
    margin-top: 3px;
    color: var(--bl-muted);
    font-size: 11px;
    line-height: 1.32;
    font-weight: 600;
}

.has-dropdown:hover .bl-dropdown,
.has-dropdown:focus-within .bl-dropdown,
.has-dropdown.is-open .bl-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.has-dropdown:hover .bl-dropdown a,
.has-dropdown:focus-within .bl-dropdown a,
.has-dropdown.is-open .bl-dropdown a {
    animation: blDropdownItemIn 260ms ease both;
}

.has-dropdown:hover .bl-dropdown a:nth-child(2),
.has-dropdown:focus-within .bl-dropdown a:nth-child(2),
.has-dropdown.is-open .bl-dropdown a:nth-child(2) {
    animation-delay: 35ms;
}

.has-dropdown:hover .bl-dropdown a:nth-child(3),
.has-dropdown:focus-within .bl-dropdown a:nth-child(3),
.has-dropdown.is-open .bl-dropdown a:nth-child(3) {
    animation-delay: 70ms;
}

.has-dropdown:hover .bl-dropdown a:nth-child(4),
.has-dropdown:focus-within .bl-dropdown a:nth-child(4),
.has-dropdown.is-open .bl-dropdown a:nth-child(4) {
    animation-delay: 105ms;
}

.has-dropdown:hover .bl-dropdown a:nth-child(5),
.has-dropdown:focus-within .bl-dropdown a:nth-child(5),
.has-dropdown.is-open .bl-dropdown a:nth-child(5) {
    animation-delay: 140ms;
}

.has-dropdown:hover .bl-dropdown a:nth-child(6),
.has-dropdown:focus-within .bl-dropdown a:nth-child(6),
.has-dropdown.is-open .bl-dropdown a:nth-child(6) {
    animation-delay: 175ms;
}

.bl-inquiry {
    min-width: clamp(156px, 12vw, 190px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    background: var(--bl-orange);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.bl-inquiry:hover,
.bl-inquiry:focus-visible {
    background: #ff6d2f;
    box-shadow: 0 14px 28px rgba(255, 91, 20, 0.24);
    transform: translateY(-1px);
    outline: 0;
}

.bl-hero {
    position: relative;
    min-height: clamp(430px, 31vw, 565px);
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background: var(--bl-navy-dark);
}

.bl-hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 31, 63, 0.98) 0%, rgba(0, 31, 63, 0.191) 30%, rgba(0, 31, 63, 0) 50%),
        var(--bl-hero-image, url("../images/slides/main-slider-v3-img1.jpg")) center right / auto 100% no-repeat;
}

.bl-hero__content {
    position: relative;
    z-index: 2;
    width: min(var(--bl-container), calc(100% - clamp(28px, 5vw, 96px)));
    min-height: clamp(430px, 31vw, 565px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(34px, 4vw, 62px) 0 clamp(76px, 6vw, 104px);
    color: #ffffff;
}

.bl-eyebrow {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bl-hero h1 {
    max-width: clamp(440px, 34vw, 610px);
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 3.45vw, 56px);
    line-height: 1.03;
    letter-spacing: 0;
}

.bl-hero h1 span {
    color: var(--bl-orange);
}

.bl-hero p:not(.bl-eyebrow) {
    max-width: clamp(430px, 34vw, 570px);
    margin: 18px 0 24px;
    color: #eef6ff;
    font-size: clamp(13px, 0.92vw, 15px);
    font-weight: 600;
    line-height: 1.65;
}

.bl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bl-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 3px;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.bl-btn--orange {
    background: var(--bl-orange);
    color: #ffffff;
}

.bl-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

.bl-btn:hover,
.bl-btn:focus-visible {
    transform: translateY(-2px);
    outline: 0;
}

.bl-btn--orange:hover,
.bl-btn--orange:focus-visible {
    background: #ff6d2f;
    box-shadow: 0 14px 28px rgba(255, 91, 20, 0.26);
}

.bl-btn--outline:hover,
.bl-btn--outline:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.bl-feature-strip {
    position: relative;
    z-index: 4;
    margin-top: -45px;
}

.bl-feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 7px;
    background: var(--bl-navy-deep);
    color: #ffffff;
    box-shadow: var(--bl-shadow);
}

.bl-feature-strip article {
    min-height: 88px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    padding: clamp(15px, 1.45vw, 22px) clamp(16px, 1.75vw, 26px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bl-feature-strip article.has-no-media {
    grid-template-columns: 1fr;
}

.bl-feature-strip article:last-child {
    border-right: 0;
}

.bl-feature-strip svg,
.bl-feature-strip__image {
    color: var(--bl-orange);
    width: 50px;
    height: 50px;
}

.bl-feature-strip__image {
    border-radius: 8px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.bl-feature-strip article:nth-child(2) svg,
.bl-feature-strip article:nth-child(4) svg {
    color: var(--bl-blue);
}

.bl-feature-strip h3,
.bl-feature-strip p {
    margin: 0;
}

.bl-feature-strip h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.bl-feature-strip p {
    margin-top: 4px;
    color: #d9e8f8;
    font-size: 12px;
    line-height: 1.35;
}

.bl-section {
    padding: 58px 0;
}

.bl-section--services {
    padding-top: 76px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
        url("../images/pattern/thm-pattern.png") center / 360px auto;
}

.bl-section-title {
    margin-bottom: 30px;
    text-align: center;
}

.bl-section-title span {
    color: var(--bl-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bl-section-title span::before,
.bl-section-title span::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    margin: 0 8px 4px;
    background: var(--bl-orange);
}

.bl-section-title h2 {
    margin: 3px 0 0;
    color: var(--bl-text);
    font-size: 28px;
    line-height: 1.1;
    text-transform: uppercase;
}

.bl-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.bl-service-grid article {
    min-height: 238px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 18px 24px;
    border: 1px solid #e7edf4;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(5, 39, 74, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.bl-service-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 91, 20, 0.32);
    box-shadow: 0 18px 34px rgba(5, 39, 74, 0.14);
}

.bl-service-card__media {
    display: block;
    width: calc(100% + 36px);
    height: 118px;
    margin: 0 -18px 18px;
    overflow: hidden;
    background: #e9f0f7;
}

.bl-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.bl-service-grid article:hover .bl-service-card__media img {
    transform: scale(1.06);
}

.bl-service-grid svg {
    width: 42px;
    height: 42px;
    color: var(--bl-blue);
    margin: 28px 0 16px;
}

.bl-service-grid article.has-no-media {
    justify-content: center;
    padding-top: 24px;
}

.bl-service-grid article:nth-child(2) svg,
.bl-service-grid article:nth-child(4) svg {
    color: var(--bl-orange);
}

.bl-service-grid h3 {
    margin: 0 0 10px;
    color: var(--bl-text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bl-service-grid h3 a {
    color: inherit;
}

.bl-service-grid p {
    max-width: 210px;
    margin: 0 auto 18px;
    color: #536274;
    font-size: 12px;
    line-height: 1.45;
}

.bl-service-grid article::after {
    content: "";
    width: 42px;
    height: 2px;
    margin-top: auto;
    background: var(--bl-blue);
}

.bl-service-grid article:nth-child(2)::after,
.bl-service-grid article:nth-child(4)::after {
    background: var(--bl-orange);
}

.bl-projects {
    padding: 82px 0 124px;
    background: var(--bl-navy-dark);
    color: #ffffff;
}

.bl-projects__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.bl-projects__intro span {
    color: var(--bl-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bl-projects__intro h2 {
    margin: 8px 0 12px;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.08;
}

.bl-projects__intro p {
    margin: 0 0 18px;
    color: #dbe8f8;
    font-size: 14px;
    line-height: 1.55;
}

.bl-project-card {
    overflow: hidden;
    border-radius: 7px;
    background: #ffffff;
    color: var(--bl-text);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.bl-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.bl-project-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.bl-project-card:hover img {
    transform: scale(1.055);
}

.bl-project-card div {
    min-height: 100px;
    position: relative;
    padding: 18px 52px 18px 18px;
}

.bl-project-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.bl-project-card p {
    margin: 0;
    color: var(--bl-orange);
    font-size: 12px;
}

.bl-project-card svg {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 31px;
    height: 31px;
    padding: 8px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--bl-orange);
}

.bl-project-card:nth-child(3) p {
    color: var(--bl-blue);
}

.bl-project-card:nth-child(3) svg {
    background: var(--bl-blue);
    color: #ffffff;
}

.bl-project-card:nth-child(4) p {
    color: var(--bl-green);
}

.bl-project-card:nth-child(4) svg {
    background: var(--bl-green);
    color: #ffffff;
}

.bl-stats {
    position: relative;
    z-index: 4;
    margin-top: -48px;
}

.bl-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 7px;
    background: #ffffff;
    box-shadow: var(--bl-shadow);
}

.bl-stats article {
    min-height: 98px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px;
    border-right: 1px solid var(--bl-line);
}

.bl-stats article:last-child {
    border-right: 0;
}

.bl-stats svg,
.bl-stats__image {
    color: var(--bl-orange);
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.bl-stats__image {
    border-radius: 7px;
    object-fit: cover;
}

.bl-stats article:nth-child(2) svg,
.bl-stats article:nth-child(4) svg {
    color: var(--bl-blue);
}

.bl-stats article:nth-child(5) svg {
    color: var(--bl-green);
}

.bl-stats strong {
    display: block;
    color: var(--bl-text);
    font-size: 24px;
    line-height: 1;
}

.bl-stats span {
    color: #536274;
    font-size: 13px;
    margin-top: 10px;

}

.bl-clients {
    padding: 64px 0 72px;
    overflow: hidden;
}

.bl-clients .bl-section-title {
    margin-bottom: 12px;
}

.bl-clients .bl-section-title h2 {
    font-size: 20px;
    text-transform: none;
}

.bl-client-grid {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 12px;
    animation: bl-client-scroll 24s linear infinite;
    will-change: transform;
}

.bl-client-grid:hover {
    animation-play-state: paused;
}

.bl-client-grid .bl-client-grid__clone {
    display: grid;
}

.bl-client-grid strong {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 1px solid #e6edf5;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(5, 39, 74, 0.06);
    color: #0a3d78;
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    width: clamp(160px, 15vw, 220px);
    flex: 0 0 auto;
}

.bl-client-grid strong:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 126, 230, 0.28);
    box-shadow: 0 16px 28px rgba(5, 39, 74, 0.12);
}

@keyframes bl-client-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 6px));
    }
}

.bl-footer {
    margin-top: 0;
    background: var(--bl-navy-dark);
    color: #dbe8f8;
}

.bl-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(120px, 0.8fr) minmax(140px, 1fr) minmax(190px, 1.15fr);
    gap: 24px;
    padding: 20px 0 18px;
}

.bl-footer img {
    width: 178px;
    margin-bottom: 8px;
}

.bl-footer__brand img {
    filter: grayscale(1) brightness(0) invert(1);
}

.bl-footer h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
}

.bl-footer p,
.bl-footer a,
.bl-footer span {
    color: #dbe8f8;
    font-size: 12px;
    line-height: 1.55;
}

.bl-footer__links,
.bl-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bl-footer__contact a,
.bl-footer__contact span {
    display: flex;
    gap: 8px;
}

.bl-footer svg {
    flex: 0 0 auto;
    color: var(--bl-orange);
}

.bl-social {
    display: flex;
    gap: 8px;
}

.bl-social a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

.bl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bl-footer__bottom .bl-container {
    min-height: 28px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.bl-footer__credit {
    flex: 1 1 auto;
    text-align: center;
}

.bl-footer__credit a {
    color: var(--bl-blue);
    font-weight: 800;
}

.page-shell {
    padding: 60px 0;
    background: var(--bl-soft);
}

.page-hero {
    padding: 72px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(0, 31, 63, 0.94), rgba(0, 31, 63, 0.7)),
        url("../images/backgrounds/page-header-bg.jpg") center / cover no-repeat;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #e7f1fc;
    font-size: 17px;
    line-height: 1.6;
}

.container,
.auto-container {
    width: min(var(--bl-container), calc(100% - clamp(28px, 5vw, 96px)));
    margin: 0 auto;
}

.row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.col-xl-3 {
    grid-column: span 3;
}

.col-xl-4 {
    grid-column: span 4;
}

.col-xl-6,
.col-lg-6,
.col-md-6 {
    grid-column: span 6;
}

.col-xl-8 {
    grid-column: span 8;
}

.text-center {
    text-align: center;
}

.page-header {
    position: relative;
    min-height: 270px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--bl-navy-dark);
}

.page-header__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.page-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 31, 63, 0.96), rgba(0, 31, 63, 0.72));
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header__inner h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    color: #fff;
}

.thm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    color: #e7f1fc;
    font-size: 14px;
    font-weight: 800;
}

.thm-breadcrumb a {
    color: #fff;
}

.sec-title {
    margin-bottom: 30px;
}

.sec-title h2 {
    margin: 0;
    color: var(--bl-text);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: var(--bl-orange);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.services-one {
    padding: 50px 0;
    background: #fff;
}

.services-one--services {
    background: var(--bl-soft);
}

.services-one__single {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(5, 39, 74, 0.06);
}

.services-one__single-img {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bl-navy-dark);
}

.services-one__single-img .inner,
.services-one__single-img img {
    width: 100%;
    height: 100%;
}

.services-one__single-img img {
    object-fit: cover;
    transition: transform 280ms ease;
}

.services-one__single:hover img {
    transform: scale(1.05);
}

.services-one__single-img .icon-box {
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--bl-orange);
    color: #fff;
}

.services-one__single-img .icon-box svg {
    width: 22px;
    height: 22px;
}

.services-one__single-title {
    padding: 32px 16px 18px;
}

.services-one__single-title h2 {
    margin: 0;
    color: var(--bl-text);
    font-size: 18px;
    line-height: 1.2;
}

.services-one__single-title p {
    margin: 9px 0 0;
    color: var(--bl-muted);
    font-size: 14px;
    line-height: 1.5;
}

.about-one {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    background: #fff;
}

.about-one__bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-position: center;
    background-size: cover;
}

.about-one .container {
    position: relative;
}

.about-one__img .inner,
.template-split__media {
    overflow: hidden;
    border-radius: 8px;
}

.about-one__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-one__content-text,
.about-one__content-text2 .text {
    color: var(--bl-muted);
    line-height: 1.65;
}

.about-one__content-text2-single {
    padding: 14px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    background: #fff;
}

.about-one__content-text2-single ul {
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
}

.about-one__content-text2-single li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
}

.about-one__content-text2-single .icon-box {
    color: var(--bl-orange);
}

.about-one__content-bottom {
    margin-top: 20px;
}

.contact-page {
    padding: 50px 0;
    background: var(--bl-soft);
}

.contact-page__top {
    margin-bottom: 26px;
}

.contact-page__top-single,
.contact-page__form,
.contact-page__map {
    height: 100%;
    padding: 24px;
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(5, 39, 74, 0.06);
}

.contact-page__top-single .icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(255, 91, 20, 0.1);
    color: var(--bl-orange);
}

.contact-page__top-single h2,
.contact-page__form h2 {
    margin: 0 0 8px;
    color: var(--bl-text);
}

.contact-page__top-single p {
    margin: 0;
    color: var(--bl-muted);
}

.comment-form__input-box {
    margin-bottom: 14px;
}

.comment-form__input-box input,
.comment-form__input-box select,
.comment-form__input-box textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d7e2ee;
    border-radius: 7px;
    background: #fff;
    color: var(--bl-text);
}

.comment-form__input-box textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-page__google-map {
    width: 100%;
    min-height: 470px;
    border: 0;
    border-radius: 8px;
}

.services-details {
    padding: 58px 0;
    background: var(--bl-soft);
}

.services-details__sidebar {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.services-details__single,
.services-details__content {
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(5, 39, 74, 0.06);
}

.services-details__single {
    padding: 18px;
}

.sidebar__title {
    margin: 0 0 14px;
    color: var(--bl-text);
}

.sidebar__category-list,
.sidebar__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar__category-list a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
    color: var(--bl-text);
    font-weight: 800;
}

.sidebar__category-list li.active a,
.sidebar__category-list a:hover {
    color: var(--bl-orange);
}

.sidebar__contact-list .inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sidebar__contact-list .icon-box {
    color: var(--bl-orange);
}

.services-details__content {
    display: grid;
    gap: 20px;
    padding: 22px;
    overflow: hidden;
}

.services-details__content-img1 img,
.services-details__content-text-box3 .img-box img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    min-height: 280px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .services-details__content-img1 img,
    .services-details__content-text-box3 .img-box img {
        min-height: 360px;
    }
}

.services-details__content-text-box1,
.services-details__content-text-box2,
.services-details__content-text-box3,
.services-details__content-text-box4 {
    padding: 24px;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    background: #fff;
}

.services-details__content-text-box1 h2 {
    margin: 0 0 12px;
    color: var(--bl-text);
    font-size: clamp(26px, 2.8vw, 40px);
}

.services-details__content-text-box1 .text1,
.services-details__content-text-box4 p {
    color: var(--bl-muted);
    line-height: 1.7;
}

.services-details__content-text-box1-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.services-details__content-text-box1-list li {
    padding: 12px 14px;
    border-radius: 7px;
    background: #f8fafc;
    color: var(--bl-text);
    font-weight: 700;
}

.services-details__content-text-box1-list p {
    margin: 0;
}

.services-details__content-text-box2 .row {
    row-gap: 16px;
}

.services-details__content-text-box2 .single-box {
    height: 100%;
    padding: 22px 18px;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(5, 39, 74, 0.06);
}

.services-details__content-text-box2 .single-box .icon-box {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 91, 32, 0.11);
    color: var(--bl-orange);
}

.services-details__content-text-box2 .single-box svg {
    width: 24px;
    height: 24px;
}

.services-details__content-text-box2 .single-box h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.services-details__content-text-box2 .single-box h3 a {
    color: var(--bl-text);
}

.services-details__content-text-box2 .single-box p {
    margin: 0;
    color: var(--bl-muted);
    font-size: 14px;
    line-height: 1.6;
}

.services-details__content-text-box3 {
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) 1fr;
    gap: 22px;
    align-items: stretch;
    background: #fbfdff;
}

.services-details__content-text-box3 .img-box {
    overflow: hidden;
    border-radius: 8px;
}

.services-details__content-text-box3 .img-box img {
    height: 100%;
    min-height: 250px;
    aspect-ratio: auto;
}

.services-details__content-text-box3 .content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0;
    border-radius: 8px;
    background: transparent;
}

.services-details__content-text-box3 .content-box > p {
    margin: 0 0 16px;
    color: var(--bl-muted);
    line-height: 1.7;
}

.services-details__content-text-box3 .content-box ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-details__content-text-box3 .content-box li {
    display: flex;
    min-width: 0;
    gap: 10px;
    align-items: flex-start;
}

.services-details__content-text-box3 .content-box .icon-box {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 2px;
    place-items: center;
    border-radius: 50%;
    background: var(--bl-orange);
    color: #fff;
}

.services-details__content-text-box3 .content-box .icon-box svg {
    width: 14px;
    height: 14px;
}

.services-details__content-text-box3 .content-box p {
    margin: 0;
    overflow-wrap: anywhere;
}

.services-details__content-text-box3 .content-box .text-box {
    min-width: 0;
}

/* ── Custom Section Alignments ── */
@media (min-width: 981px) {
    .services-details__content-text-box3.align-right-image {
        grid-template-columns: 1fr minmax(210px, 0.8fr);
    }
    .services-details__content-text-box3.align-right-image .img-box {
        order: 2;
    }
    .services-details__content-text-box3.align-right-image .content-box {
        order: 1;
    }
}

.services-details__content-text-box3.align-full-width {
    grid-template-columns: 1fr;
}

.services-details__content-text-box3.align-full-width .content-box {
    width: 100%;
    max-width: none;
}

.services-details__content > .services-details__content-text-box3 .content-box {
    padding: 0;
}

.service-detail-gallery.portfolio-detail-gallery {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.service-detail-gallery.portfolio-detail-gallery img {
    width: 100%;
    min-height: 210px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.content-card {
    padding: 26px;
    border: 1px solid #e6edf5;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(5, 39, 74, 0.07);
}

.content-card svg {
    width: 34px;
    height: 34px;
    color: var(--bl-orange);
    margin-bottom: 14px;
}

.content-card h2,
.content-card h3 {
    margin: 0 0 10px;
    color: var(--bl-text);
}

.content-card p {
    margin: 0;
    color: var(--bl-muted);
    line-height: 1.65;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--bl-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.page-kicker::before,
.page-kicker::after {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.service-archive-hero,
.service-detail-hero {
    padding: 74px 0;
    overflow: hidden;
}

.service-archive-hero {
    background:
        linear-gradient(90deg, rgba(0, 31, 63, 0.98), rgba(0, 31, 63, 0.76)),
        url("../images/slides/main-slider-v3-img1.jpg") center / cover no-repeat;
}

.service-archive-hero__grid,
.service-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
    align-items: center;
}

.service-archive-hero h1,
.service-detail-hero h1 {
    max-width: 790px;
    margin: 0;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 0.98;
}

.service-archive-hero p,
.service-detail-hero p {
    max-width: 680px;
}

.service-hero-panel,
.service-detail-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 21, 43, 0.76);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.service-hero-panel strong,
.service-detail-card strong {
    display: block;
    color: #fff;
    font-size: 24px;
}

.service-hero-panel span,
.service-detail-card span {
    display: block;
    margin-top: 8px;
    color: #d9e8f6;
    line-height: 1.55;
}

.service-hero-panel__icons {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.service-hero-panel__icons svg,
.service-detail-card svg {
    width: 42px;
    height: 42px;
    color: var(--bl-orange);
}

.service-archive,
.service-detail-main,
.service-related {
    padding: 52px 0;
    background: var(--bl-soft);
}

.service-section-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.service-section-head h2,
.service-process h2,
.service-detail-content h2 {
    margin: 0;
    color: var(--bl-text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.service-section-head p {
    margin: 10px 0 0;
    color: var(--bl-muted);
}

.service-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.service-filter-row a {
    padding: 10px 14px;
    border: 1px solid #dfe8f2;
    border-radius: 7px;
    background: #fff;
    color: var(--bl-text);
    font-size: 13px;
    font-weight: 800;
}

.service-filter-row a:hover {
    border-color: var(--bl-orange);
    color: var(--bl-orange);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.service-page-card {
    overflow: hidden;
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(5, 39, 74, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(5, 39, 74, 0.12);
}

.service-page-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 8.6;
    overflow: hidden;
    background: var(--bl-navy-dark);
}

.service-page-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.service-page-card:hover img {
    transform: scale(1.05);
}

.service-page-card__image span {
    position: absolute;
    left: 14px;
    bottom: -20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--bl-orange);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 91, 20, 0.28);
}

.service-page-card__image svg {
    width: 21px;
    height: 21px;
}

.service-page-card__body {
    padding: 28px 16px 16px;
}

.service-page-card__body p {
    margin: 0 0 6px;
    color: var(--bl-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-page-card__body h3 {
    margin: 0 0 10px;
    color: var(--bl-text);
    font-size: 18px;
    line-height: 1.2;
}

.service-page-card__body h3 a {
    color: inherit;
}

.service-page-card__body div {
    color: var(--bl-muted);
    line-height: 1.5;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--bl-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-link svg {
    width: 15px;
    height: 15px;
}

.service-category-band {
    scroll-margin-top: 90px;
    margin-top: 34px;
}

.service-category-band__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfe8f2;
}

.service-category-band__head span {
    color: var(--bl-text);
    font-size: 22px;
    font-weight: 900;
}

.service-category-band__head strong {
    color: var(--bl-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-card-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
}

.service-related .service-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 290px));
    align-items: start;
}

.service-related .service-page-card__image {
    aspect-ratio: 16 / 8;
}

.service-related .service-page-card__body {
    padding: 26px 15px 15px;
}

.service-process {
    padding: 58px 0;
    color: #fff;
    background: var(--bl-navy-dark);
}

.service-process__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: start;
}

.service-process h2 {
    color: #fff;
}

.service-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-process__steps article {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.service-process__steps span {
    color: var(--bl-orange);
    font-weight: 900;
}

.service-process__steps h3 {
    margin: 10px 0 8px;
    color: #fff;
}

.service-process__steps p {
    margin: 0;
    color: #dce9f7;
    line-height: 1.6;
}

.service-stats {
    margin-top: 0;
}

.service-empty {
    padding: 34px;
    border: 1px dashed #cbd8e6;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.service-empty svg {
    width: 40px;
    height: 40px;
    color: var(--bl-orange);
}

.service-detail-hero {
    background:
        linear-gradient(90deg, rgba(0, 31, 63, 0.98), rgba(0, 31, 63, 0.76)),
        var(--service-hero-image) center / cover no-repeat;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.service-detail-content,
.service-sidebar-card,
.service-sidebar-cta {
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(5, 39, 74, 0.07);
}

.service-detail-content {
    overflow: hidden;
}

.service-detail-content section {
    padding: 28px;
}

.service-detail-image {
    aspect-ratio: 16 / 7;
    background: var(--bl-navy-dark);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-lead {
    margin: 14px 0;
    color: var(--bl-muted);
    font-size: 18px;
    line-height: 1.65;
}

.service-rich-content {
    color: var(--bl-muted);
    line-height: 1.75;
}

.service-rich-content > :last-child {
    margin-bottom: 0;
}

.service-feature-panel {
    border-top: 1px solid #e9eff5;
    background: #fbfdff;
}

.service-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.service-check-grid div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 7px;
    background: #fff;
    color: var(--bl-text);
    font-weight: 700;
}

.service-check-grid svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--bl-orange);
}

.service-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-top: 1px solid #e9eff5;
    background: var(--bl-navy-dark);
    color: #fff;
}

.service-note svg {
    width: 28px;
    height: 28px;
    color: var(--bl-orange);
}

.service-note p {
    margin: 0;
    color: #e6f0fa;
    line-height: 1.7;
}

.service-detail-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.service-sidebar-card {
    padding: 18px;
}

.service-sidebar-card h3,
.service-sidebar-cta h3 {
    margin: 0 0 14px;
    color: var(--bl-text);
}

.service-sidebar-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 7px;
    color: var(--bl-text);
    font-weight: 800;
}

.service-sidebar-card a:hover,
.service-sidebar-card a.active {
    background: var(--bl-orange);
    color: #fff;
}

.service-sidebar-card svg {
    width: 18px;
    height: 18px;
}

.service-sidebar-cta {
    padding: 22px;
    background: var(--bl-navy-dark);
    color: #fff;
}

.service-sidebar-cta > svg {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    color: var(--bl-orange);
}

.service-sidebar-cta h3 {
    color: #fff;
}

.service-sidebar-cta p {
    color: #dce9f7;
    line-height: 1.6;
}

.service-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.template-hero {
    padding: 82px 0;
}

.template-hero--about {
    background:
        linear-gradient(90deg, rgba(0, 31, 63, 0.96), rgba(0, 31, 63, 0.72)),
        url("../images/about/about-v2-img1.jpg") center / cover no-repeat;
}

.template-hero--contact {
    background:
        linear-gradient(90deg, rgba(0, 31, 63, 0.96), rgba(0, 31, 63, 0.72)),
        url("../images/contact/contactbanner3.webp") center / cover no-repeat;
}

.template-hero h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
}

.template-section {
    padding: 64px 0;
    background: #fff;
}

.template-section--soft {
    background: var(--bl-soft);
}

.cms-page-sections {
    padding: 34px 0;
    background: #fff;
}

.cms-page-sections__grid {
    display: grid;
    gap: 18px;
}

.cms-page-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 20px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(5, 39, 74, 0.06);
}

.cms-page-section > * {
    min-width: 0;
}

.cms-page-section:nth-child(even) {
    grid-template-columns: minmax(0, 0.58fr) minmax(220px, 0.42fr);
}

.cms-page-section:nth-child(even) .cms-page-section__image {
    order: 2;
}

.cms-page-section.align-full-width,
.cms-page-section.align-full-width:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
}

.cms-page-section.align-full-width .cms-page-section__body {
    width: 100%;
    max-width: none;
}

.cms-page-section__image {
    min-height: 220px;
    border-radius: 7px;
    overflow: hidden;
    background: var(--bl-navy-dark);
}

.cms-page-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cms-page-section__body {
    padding: 8px 4px;
    align-self: center;
    min-width: 0;
}

.cms-page-section__body h2 {
    margin: 0 0 10px;
    color: var(--bl-text);
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.12;
}

.about-services {
    padding: clamp(40px, 5vw, 68px) 0 clamp(34px, 4vw, 56px);
    background: #fff;
}

.about-services .sec-title {
    max-width: 860px;
    margin: 0 auto 34px;
}

.about-services .sec-title span,
.page-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--bl-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-services .sec-title h2,
.about-story__content h2,
.about-why__content h2,
.about-testimonials__top h2,
.about-cta h2 {
    margin: 0;
    color: var(--bl-text);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-service-card {
    position: relative;
    display: block;
    min-height: 340px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bl-navy-dark);
    box-shadow: 0 18px 38px rgba(3, 31, 59, 0.13);
}

.about-service-card__image,
.about-service-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-service-card__image img {
    object-fit: cover;
    transition: transform 420ms ease;
}

.about-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 21, 43, 0.02), rgba(0, 21, 43, 0.86));
}

.about-service-card:hover .about-service-card__image img {
    transform: scale(1.06);
}

.about-service-card__icon {
    position: absolute;
    left: 22px;
    bottom: 76px;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--bl-orange);
}

.about-service-card__icon svg {
    width: 28px;
    height: 28px;
}

.about-service-card strong {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    font-size: 23px;
    line-height: 1.12;
}

.about-story {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 96px) 0;
    background: #fff;
}

.about-story__ghost {
    position: absolute;
    right: -16px;
    bottom: 70px;
    width: min(360px, 24vw);
    height: min(420px, 29vw);
    opacity: 0.08;
    pointer-events: none;
    background:
        linear-gradient(#111 0 0) 72% 20% / 8px 72% no-repeat,
        linear-gradient(#111 0 0) 22% 86% / 30% 30% no-repeat,
        linear-gradient(#111 0 0) 58% 86% / 28% 30% no-repeat,
        linear-gradient(#111 0 0) 92% 86% / 16% 30% no-repeat;
}

.about-story__ghost::before {
    content: "";
    position: absolute;
    right: 18%;
    top: 0;
    width: 35%;
    aspect-ratio: 0.6;
    border: 18px solid #111;
    border-radius: 50%;
    transform: rotate(-14deg);
}

.about-story__grid,
.about-why__grid,
.about-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
}

/* ── Custom About Story Alignments ── */
@media (min-width: 981px) {
    .about-story__grid.align-right-image {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }
    .about-story__grid.align-right-image .about-story__media {
        order: 2;
    }
    .about-story__grid.align-right-image .about-story__content {
        order: 1;
    }
}

.about-story__grid.align-full-width {
    grid-template-columns: 1fr;
}

.about-story__media {
    position: relative;
    min-height: clamp(380px, 43vw, 580px);
    display: grid;
    place-items: center;
    isolation: isolate;
}

.about-story__media::before {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    bottom: 0;
    width: 56%;
    z-index: -2;
    background:
        linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
        url("../images/backgrounds/about-v1-bg.jpg") center / cover no-repeat;
}

.about-story__media::after {
    content: "";
    position: absolute;
    left: 8%;
    bottom: 20%;
    width: clamp(150px, 16vw, 238px);
    aspect-ratio: 1;
    z-index: 1;
    border-radius: 50%;
    background: rgba(232, 37, 35, 0.88);
    mix-blend-mode: multiply;
}

.about-story__media-frame {
    width: min(82%, 530px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 10px solid #16191d;
    border-radius: 50%;
    background: #111;
    box-shadow: none;
}

.about-story__media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__content .service-rich-content,
.about-why__content .service-rich-content,
.about-cta .service-rich-content {
    margin-top: 18px;
    color: #536274;
    font-size: 17px;
    line-height: 1.7;
}

.about-story__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 26px;
}

.about-story__points div {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 13px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.about-story__points svg {
    flex: 0 0 auto;
    color: #e72927;
    width: 28px;
    height: 28px;
}

.about-story__points strong {
    color: #17191d;
    font-size: 20px;
    line-height: 1.35;
}

.about-story__points small {
    flex-basis: 100%;
    margin-left: 41px;
    color: #7b858d;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.about-why__list article {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
}

.about-why__list svg {
    flex: 0 0 auto;
    color: var(--bl-orange);
    width: 23px;
    height: 23px;
}

.about-story__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
}

.about-story__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bl-text);
    font-weight: 900;
}

.about-story__phone > svg {
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 50%;
    color: #fff;
    background: var(--bl-blue);
}

.about-story__phone small {
    display: block;
    margin-top: 2px;
    color: #68798d;
    font-size: 12px;
    font-weight: 700;
}

.about-team,
.about-blog {
    padding: clamp(58px, 7vw, 96px) 0;
    background: #fff;
}

.about-team .sec-title,
.about-blog .sec-title {
    margin-bottom: clamp(30px, 4vw, 52px);
}

.about-team .sec-title h2,
.about-blog .sec-title h2 {
    margin: 0;
    color: #17191d;
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 1.05;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.about-team-card {
    position: relative;
    min-height: clamp(340px, 31vw, 445px);
    overflow: hidden;
    background: #111;
}

.about-team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity 240ms ease;
}

.about-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.about-team-card:hover img,
.about-team-card:first-child img {
    transform: scale(1.04);
}

.about-team-card:hover::before,
.about-team-card:first-child::before {
    opacity: 1;
}

.about-team-card__overlay {
    position: absolute;
    left: clamp(18px, 2vw, 34px);
    right: clamp(18px, 2vw, 34px);
    bottom: 0;
    z-index: 2;
    min-height: 126px;
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 28px 22px 24px;
    text-align: center;
    background: #fff;
    clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
    transform: translateY(66%);
    transition: transform 280ms ease;
}

.about-team-card:hover .about-team-card__overlay,
.about-team-card:first-child .about-team-card__overlay {
    transform: translateY(0);
}

.about-team-card__socials {
    position: absolute;
    top: -26px;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.about-team-card__socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17191d;
    background: #f1f6f7;
    transition: color 180ms ease, background-color 180ms ease;
}

.about-team-card__socials a:hover {
    color: #fff;
    background: #e72927;
}

.about-team-card__socials svg {
    width: 16px;
    height: 16px;
}

.about-team-card h3 {
    margin: 10px 0 4px;
    color: #17191d;
    font-size: 22px;
    line-height: 1.15;
}

.about-team-card p {
    margin: 0;
    color: #7b858d;
    font-size: 17px;
    font-weight: 700;
}

.about-vision {
    padding: clamp(58px, 7vw, 96px) 0;
    background: #fff;
}

.about-vision .sec-title {
    max-width: 820px;
    margin: 0 auto 22px;
}

.about-vision .sec-title span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--bl-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-vision .sec-title h2 {
    margin: 0;
    color: #17191d;
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 1.05;
}

.about-vision__intro {
    max-width: 780px;
    margin: 0 auto 34px;
    color: #657486;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}

.about-vision__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.about-vision-card {
    min-height: 260px;
    padding: clamp(26px, 3vw, 42px);
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(3, 31, 59, 0.09);
}

.about-vision-card span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #fff;
    background: #e72927;
}

.about-vision-card svg {
    width: 30px;
    height: 30px;
}

.about-vision-card h3 {
    margin: 0 0 12px;
    color: #17191d;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.1;
}

.about-vision-card p {
    margin: 0;
    color: #657486;
    font-size: 17px;
    line-height: 1.72;
}

.portfolio-page-modern,
.portfolio-detail-modern,
.portfolio-related {
    padding: clamp(56px, 6vw, 84px) 0;
    background: #fff;
}

.page-header + .portfolio-page-modern,
.page-header + .services-one,
.page-header + .contact-page,
.page-header + .about-services,
.page-header + .cms-page-sections {
    padding-top: clamp(34px, 4vw, 52px);
}

.portfolio-page-modern__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(42px, 5vw, 60px);
}

.portfolio-page-modern__top .sec-title h2 {
    margin: 0;
    color: #17191d;
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 1.05;
}

.portfolio-page-modern__top .service-rich-content {
    max-width: 720px;
    margin-top: 14px;
    color: #6a7888;
    font-size: 17px;
    line-height: 1.65;
}

.portfolio-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -22px 0 34px;
}

.portfolio-filter-pills span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    color: #667586;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.portfolio-filter-pills span:first-child {
    color: #fff;
    background: #e72927;
}

.portfolio-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.portfolio-project-card {
    min-width: 0;
    margin-bottom: 0;
}

.portfolio-project-card__image {
    position: relative;
    height: clamp(360px, 31vw, 400px);
    min-height: 0;
    overflow: hidden;
    background: #111;
    z-index: 1;
}

.portfolio-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 500ms ease;
}

.portfolio-project-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(15, 17, 20, 0.5);
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s linear;
}

.portfolio-project-card:hover .portfolio-project-card__image img,
.portfolio-project-card:first-child .portfolio-project-card__image img {
    transform: scale(1.05);
}

.portfolio-project-card:hover .portfolio-project-card__image::after,
.portfolio-project-card:first-child .portfolio-project-card__image::after {
    transform: scaleX(1);
}

.portfolio-project-card__plus {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #e72927;
    opacity: 0;
    transform: scale(0);
    transition: all 700ms ease;
}

.portfolio-project-card:first-child .portfolio-project-card__plus,
.portfolio-project-card:hover .portfolio-project-card__plus {
    opacity: 1;
    transform: scale(1);
    transition-delay: 500ms;
}

.portfolio-project-card__plus svg {
    width: 20px;
    height: 20px;
}

.portfolio-project-card__plus:hover {
    color: #e72927;
    background: #fff;
}

.portfolio-project-card__overlay {
    position: absolute;
    left: 0;
    right: 40px;
    bottom: 0;
    z-index: 2;
    min-height: 116px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 30px 25px;
    background: #fff;
    transform: perspective(1200px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 700ms ease 100ms;
}

.portfolio-project-card:first-child .portfolio-project-card__overlay,
.portfolio-project-card:hover .portfolio-project-card__overlay {
    transform: perspective(1200px) rotateX(0deg);
    transition: all 700ms ease 200ms;
}

.portfolio-project-card__overlay h3 {
    margin: 0;
    color: #17191d;
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    text-transform: capitalize;
}

.portfolio-project-card__overlay p {
    margin: 0;
    color: #7b858d;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.portfolio-project-card__overlay > a:last-child {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #e72927;
    transition: all 200ms linear;
}

.portfolio-project-card__overlay > a:last-child:hover {
    background: #17191d;
}

.portfolio-project-grid--related .portfolio-project-card__image {
    min-height: 330px;
}

.portfolio-detail-modern {
    background: #fff;
}

.portfolio-detail-modern__grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.portfolio-detail-sidebar {
    display: grid;
    gap: 22px;
}

.portfolio-detail-sidebar__card,
.portfolio-detail-quote,
.portfolio-detail-content {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.portfolio-detail-sidebar__card {
    padding: 41px 30px 50px;
    background: #f1f3f8;
}

.portfolio-detail-sidebar__card h3,
.portfolio-detail-quote h3 {
    margin: 0 0 20px;
    color: #17191d;
    font-size: 25px;
    line-height: 1.15;
}

.portfolio-detail-sidebar dl {
    display: grid;
    gap: 15px;
    margin: 0;
}

.portfolio-detail-sidebar dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 20px 14px;
    border-bottom: 0;
    background: #fff;
    transition: all 200ms linear;
}

.portfolio-detail-sidebar dl div:hover {
    background: #e72927;
}

.portfolio-detail-sidebar dt {
    color: #17191d;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 200ms linear;
}

.portfolio-detail-sidebar dd {
    min-width: 0;
    margin: 0;
    color: #17191d;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-align: right;
    text-transform: capitalize;
    overflow-wrap: anywhere;
    transition: all 200ms linear;
}

.portfolio-detail-sidebar dl div:hover dt,
.portfolio-detail-sidebar dl div:hover dd {
    color: #fff;
}

.portfolio-detail-cats {
    display: grid;
    gap: 10px;
}

.portfolio-detail-cats a {
    min-width: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    color: #667586;
    background: #f5f8fb;
    font-weight: 900;
    transition: color 180ms ease, background-color 180ms ease;
}

.portfolio-detail-cats a:hover {
    color: #fff;
    background: #e72927;
}

.service-rich-content,
.cms-page-section__body,
.portfolio-detail-copy,
.portfolio-detail-checks,
.services-details__content,
.services-one__single-title {
    overflow-wrap: anywhere;
}

.portfolio-detail-quote {
    padding: 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--bl-navy-deep), var(--bl-navy));
}

.portfolio-detail-quote > svg {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: #ff5b14;
}

.portfolio-detail-quote h3 {
    color: #fff;
}

.portfolio-detail-quote p {
    margin: 0 0 22px;
    color: #d7e5f4;
    line-height: 1.6;
}

.portfolio-detail-content {
    overflow: hidden;
}

.portfolio-detail-hero-img {
    margin: 0;
    aspect-ratio: 16 / 8;
    background: #111;
    min-height: 300px;
}

@media (min-width: 768px) {
    .portfolio-detail-hero-img {
        min-height: 450px;
    }
}

.portfolio-detail-hero-img img,
.portfolio-detail-split__image img,
.portfolio-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-detail-copy,
.portfolio-detail-split,
.portfolio-detail-note,
.portfolio-detail-gallery {
    padding: 30px;
}

.portfolio-detail-copy span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #e72927;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.portfolio-detail-copy h1 {
    margin: 0 0 16px;
    color: #17191d;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.portfolio-detail-copy p,
.portfolio-detail-note p {
    margin: 0 0 16px;
    color: #667586;
    font-size: 17px;
    line-height: 1.75;
}

.portfolio-detail-split {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
    align-items: stretch;
    padding-top: 0;
}

.portfolio-detail-split__image {
    min-height: 280px;
    overflow: hidden;
    background: #111;
}

.portfolio-detail-checks {
    display: grid;
    align-content: center;
    gap: 14px;
}

.portfolio-detail-checks div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f5f8fb;
}

.portfolio-detail-checks svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: #e72927;
}

.portfolio-detail-checks p {
    margin: 0;
    color: #17191d;
    font-weight: 800;
    line-height: 1.45;
}

.portfolio-detail-note {
    padding-top: 0;
}

.portfolio-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 20px;
    padding-top: 0;
}

.portfolio-detail-gallery img {
    min-height: 260px;
    background: #111;
}

.portfolio-related {
    padding-top: 0;
    background: #fff;
}

.about-blog {
    padding-top: clamp(34px, 5vw, 70px);
}

.about-blog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.about-blog-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.52fr);
    min-height: 330px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(3, 31, 59, 0.1);
}

.about-blog-card__image {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.about-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-blog-card__image span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #e72927;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-blog-card__image strong {
    display: block;
    margin-bottom: -12px;
    font-size: 26px;
    line-height: 1;
}

.about-blog-card__body {
    align-self: center;
    padding: clamp(24px, 3vw, 36px);
}

.about-blog-card__body small {
    display: inline-flex;
    margin-bottom: 14px;
    color: #e72927;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-blog-card__body h3 {
    margin: 0 0 12px;
    color: #17191d;
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: 1.12;
}

.about-blog-card__body p {
    margin: 0 0 18px;
    color: #7b858d;
    font-size: 16px;
    line-height: 1.65;
}

.about-blog-card__body em {
    color: #7b858d;
    font-style: normal;
    font-weight: 700;
}

.about-blog-card__body b {
    color: #17191d;
}

.about-metrics {
    padding: 0 0 clamp(54px, 7vw, 90px);
    background: var(--bl-soft);
}

.about-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 8px;
    background: var(--bl-navy-deep);
    box-shadow: var(--bl-shadow);
}

.about-metrics article {
    min-height: 132px;
    display: grid;
    place-items: center;
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-metrics article:last-child {
    border-right: 0;
}

.about-metrics strong {
    display: block;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
}

.about-metrics span {
    display: block;
    margin-top: 8px;
    color: #c8d6e5;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-why,
.about-testimonials {
    padding: clamp(58px, 7vw, 96px) 0;
    background: #fff;
}

.about-why__grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.about-why__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-testimonials {
    background: var(--bl-soft);
}

.about-testimonials__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.about-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-testimonial-card {
    min-height: 230px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(3, 31, 59, 0.08);
}

.about-testimonial-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.about-testimonial-card__head > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--bl-orange);
}

.about-testimonial-card strong,
.about-testimonial-card small {
    display: block;
}

.about-testimonial-card strong {
    color: var(--bl-text);
    font-size: 20px;
}

.about-testimonial-card small {
    margin-top: 4px;
    color: var(--bl-blue);
    font-weight: 800;
    text-transform: capitalize;
}

.about-testimonial-card p {
    margin: 0;
    color: #536274;
    font-size: 17px;
    line-height: 1.72;
}

.about-cta {
    padding: clamp(48px, 6vw, 76px) 0;
    color: #fff;
    background: linear-gradient(90deg, var(--bl-navy-deep), var(--bl-navy));
}

.about-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
}

.about-cta span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ffb38f;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-cta h2 {
    color: #fff;
}

.about-cta .service-rich-content {
    max-width: 760px;
    color: #d7e4f2;
}

.template-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
}

.template-split__media {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 5 / 4;
    box-shadow: 0 20px 42px rgba(5, 39, 74, 0.12);
}

.template-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-split__content h2 {
    margin: 0;
    color: var(--bl-text);
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.05;
}

.template-split__content p {
    margin: 16px 0 0;
    color: var(--bl-muted);
    font-size: 17px;
    line-height: 1.7;
}

.template-check-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
}

.template-check-list span,
.template-check-list li {
    display: flex;
    min-width: 0;
    gap: 10px;
    align-items: flex-start;
    color: var(--bl-text);
    font-weight: 800;
}

.template-check-list svg,
.template-check-list .icon-box svg {
    width: 20px;
    height: 20px;
    color: var(--bl-orange);
}

.template-check-list .text-box p {
    margin: 0;
    overflow-wrap: anywhere;
}

.template-check-list .text-box {
    min-width: 0;
}

.template-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.template-info-card,
.contact-panel {
    border: 1px solid #e3ebf4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(5, 39, 74, 0.07);
}

.template-info-card {
    padding: 28px;
}

.template-info-card svg {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: var(--bl-orange);
}

.template-info-card h2 {
    margin: 0 0 10px;
    color: var(--bl-text);
}

.template-info-card p {
    margin: 0;
    color: var(--bl-muted);
    line-height: 1.65;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 24px;
    align-items: start;
}

.contact-panel {
    padding: 28px;
}

.contact-panel--info {
    background: var(--bl-navy-dark);
    color: #fff;
}

.contact-panel--info h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.contact-panel--info a,
.contact-panel--info div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel--info svg {
    width: 22px;
    height: 22px;
    color: var(--bl-orange);
}

.contact-panel--info strong,
.contact-panel--info small {
    display: block;
}

.contact-panel--info small {
    margin-top: 2px;
    color: #d9e8f6;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--bl-text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid #d7e2ee;
    border-radius: 7px;
    color: var(--bl-text);
    background: #fff;
    text-transform: none;
    font-weight: 600;
}

.contact-form textarea {
    min-height: 128px;
    resize: vertical;
}

.contact-form__full {
    grid-column: 1 / -1;
}

.contact-form .bl-btn {
    margin-top: 16px;
}

.form-message {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 7px;
    font-weight: 800;
}

.form-message--success {
    background: #dcfce7;
    color: #166534;
}

.form-message--error {
    background: #fee2e2;
    color: #991b1b;
}

.bl-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--bl-delay, 0ms);
    will-change: opacity, transform;
}

.bl-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes blUnderlineIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes blDropdownItemIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .bl-animate {
        opacity: 1;
        transform: none;
    }

    .bl-client-grid {
        width: auto;
        overflow-x: auto;
        animation: none !important;
    }

    .bl-client-grid .bl-client-grid__clone {
        display: none !important;
    }
}

@media (min-width: 1680px) {
    .bl-hero h1 {
        max-width: 610px;
    }

    .bl-hero p:not(.bl-eyebrow) {
        max-width: 570px;
    }
}

@media (max-width: 1366px) {
    .bl-container,
    .bl-header-container,
    .bl-hero__content {
        width: min(var(--bl-container), calc(100% - 64px));
    }

    .bl-nav__link {
        padding: 0 15px;
        font-size: 12px;
    }

    .bl-contact {
        grid-template-columns: 24px 1fr;
        gap: 8px;
        padding-left: 16px;
    }

    .bl-contact strong {
        font-size: 12px;
    }

    .bl-contact small {
        font-size: 11px;
    }

    .bl-hero h1 {
        max-width: 500px;
        font-size: clamp(34px, 3.55vw, 50px);
    }

    .bl-hero p:not(.bl-eyebrow) {
        max-width: 470px;
    }
}

@media (max-width: 1180px) {
    .bl-contact {
        min-width: auto;
    }

    .bl-nav__link {
        padding: 0 14px;
    }

    .bl-contact-row {
        gap: 14px;
    }

    .has-mega .bl-dropdown {
        width: min(600px, calc(100vw - 28px));
    }

    .bl-mega-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bl-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bl-projects__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bl-projects__intro {
        grid-column: 1 / -1;
        max-width: 640px;
    }

    .bl-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .bl-header-container,
    .bl-container {
        width: calc(100% - 32px);
    }

    .bl-hero__content {
        width: calc(100% - 32px);
    }

    .bl-topbar__inner {
        min-height: 78px;
    }

    .bl-contact-row {
        display: none;
    }

    .bl-navband__inner {
        display: grid;
        grid-template-columns: 52px 1fr;
        align-items: center;
        gap: 10px;
        padding: 7px 0;
    }

    .bl-menu-toggle {
        display: grid;
        grid-column: 1;
        grid-row: 1;
    }

    .bl-inquiry {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        min-height: 44px;
        min-width: 0;
    }

    .bl-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: none;
        flex-direction: column;
        max-height: calc(100dvh - 150px);
        overflow-y: auto;
        background: #ffffff;
        box-shadow: var(--bl-shadow);
    }

    .bl-nav.is-open {
        display: flex;
    }

    .bl-nav__link {
        min-height: 48px;
        width: 100%;
        justify-content: space-between;
        padding: 0 18px;
        color: var(--bl-text);
        background: #ffffff;
        border-bottom: 1px solid #edf0f4;
    }

    .bl-nav__link.is-active,
    .bl-nav__item.is-active > .bl-nav__link,
    .bl-nav__item.is-open > .bl-nav__link {
        color: var(--bl-text);
        background: #fff1eb;
        border-bottom-color: rgba(255, 91, 20, 0.28);
    }

    .bl-nav__link.is-active svg,
    .bl-nav__item.is-active > .bl-nav__link svg,
    .bl-nav__item.is-open > .bl-nav__link svg {
        color: var(--bl-orange);
    }

    .bl-nav__link:hover::after,
    .bl-nav__link:focus-visible::after,
    .bl-nav__item:hover > .bl-nav__link::after,
    .bl-nav__item:focus-within > .bl-nav__link::after {
        left: 0;
        right: auto;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
    }

    .bl-dropdown {
        position: static;
        display: none;
        width: 100%;
        max-height: none;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: #f8fafc;
        border-top-width: 2px;
        transform: none;
    }

    .bl-dropdown a {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .has-mega .bl-dropdown {
        width: 100%;
    }

    .bl-mega-menu {
        padding: 8px;
    }

    .bl-mega-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .bl-mega-menu__item,
    .bl-mega-menu__all {
        min-height: 0;
        padding: 9px;
        background: #ffffff;
        color: var(--bl-text);
    }

    .bl-mega-menu__item:hover,
    .bl-mega-menu__all:hover {
        padding-left: 9px;
    }

    .bl-mega-menu__item strong,
    .bl-mega-menu__all strong {
        color: var(--bl-text);
    }

    .bl-mega-menu__item small {
        display: none;
    }

    .has-dropdown:hover .bl-dropdown,
    .has-dropdown:focus-within .bl-dropdown {
        display: none;
    }

    .has-dropdown.is-open .bl-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .bl-hero,
    .bl-hero__content {
        min-height: 560px;
    }

    .bl-hero__media {
        background:
            linear-gradient(90deg, rgba(0, 31, 63, 0.98), rgba(0, 31, 63, 0.72)),
            var(--bl-hero-image, url("../images/slides/main-slider-v3-img1.jpg")) center / cover no-repeat;
    }

    .bl-hero h1 {
        max-width: 560px;
        font-size: clamp(36px, 5.2vw, 44px);
    }

    .bl-hero p:not(.bl-eyebrow) {
        max-width: 560px;
    }

    .bl-feature-strip {
        margin-top: 0;
        background: var(--bl-navy-deep);
    }

    .bl-feature-strip__grid,
    .bl-projects__grid,
    .bl-stats__grid,
    .bl-footer__grid,
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-details__content-text-box3 {
        grid-template-columns: 1fr;
    }

    .services-details__content-text-box3 .img-box img {
        min-height: 220px;
    }

    .bl-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-services__grid,
    .about-metrics__grid,
    .about-why__list,
    .about-testimonials__grid,
    .about-team__grid,
    .about-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-blog-card {
        grid-template-columns: 1fr;
    }

    .portfolio-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-detail-modern__grid {
        grid-template-columns: 1fr;
    }

    .about-story__grid,
    .about-why__grid,
    .about-cta__inner {
        grid-template-columns: 1fr;
    }

    .about-story__media {
        min-height: 420px;
    }

    .about-story__media::before {
        right: 5%;
        width: 50%;
    }

    .about-testimonials__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-page-modern__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .bl-section-title h2 {
        font-size: clamp(24px, 4vw, 30px);
    }

    .bl-stats__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bl-stats article {
        min-height: 86px;
        padding: 14px 12px;
    }

    .bl-client-grid strong {
        width: clamp(160px, 30vw, 220px);
    }
}

@media (max-width: 640px) {
    .bl-header-container,
    .bl-container,
    .bl-hero__content {
        width: calc(100% - 28px);
    }

    .bl-logo img {
        width: min(244px, 72vw);
    }

    .bl-topbar__inner {
        min-height: 78px;
    }

    .bl-hero,
    .bl-hero__content {
        min-height: 600px;
    }

    .bl-hero__content {
        padding: 44px 0 62px;
    }

    .bl-hero h1 {
        max-width: min(100%, 340px);
        font-size: clamp(30px, 8.2vw, 36px);
        line-height: 1.04;
    }

    .bl-hero p:not(.bl-eyebrow) {
        max-width: min(100%, 360px);
        font-size: clamp(14px, 4vw, 15px);
        line-height: 1.55;
    }

    .bl-actions {
        width: 100%;
        flex-direction: column;
    }

    .bl-actions .bl-btn {
        width: min(100%, 280px);
        min-height: 48px;
    }

    .bl-mega-menu__grid {
        grid-template-columns: 1fr;
    }

    .bl-mega-menu__all span,
    .bl-mega-menu__item span {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .bl-feature-strip__grid,
    .bl-service-grid,
    .bl-projects__grid,
    .bl-footer__grid,
    .about-services__grid,
    .about-vision__grid,
    .about-story__points,
    .about-metrics__grid,
    .about-why__list,
    .about-testimonials__grid,
    .about-team__grid,
    .about-blog__grid,
    .portfolio-project-grid,
    .portfolio-detail-split,
    .portfolio-detail-gallery,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .bl-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .bl-stats article {
        min-height: 96px;
        padding: 14px 10px;
    }

    .bl-stats strong {
        font-size: 22px;
    }

    .bl-clients {
        padding: 48px 0 56px;
    }

    .bl-clients .bl-section-title h2 {
        font-size: clamp(20px, 6.2vw, 25px);
        line-height: 1.18;
    }

    .bl-client-grid {
        margin-top: 18px;
        animation-duration: 20s;
    }

    .bl-client-grid strong {
        width: clamp(150px, 58vw, 210px);
        min-height: 56px;
    }

    .about-service-card {
        min-height: 300px;
    }

    .about-vision {
        padding: 42px 0;
    }

    .about-vision-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .about-vision-card span {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .about-vision-card h3 {
        font-size: clamp(24px, 8vw, 30px);
    }

    .about-vision-card p {
        font-size: 15px;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .about-story__media {
        min-height: 320px;
    }

    .about-story__media::after {
        left: 5%;
        bottom: 18%;
        width: 135px;
    }

    .about-story__media-frame {
        width: min(88%, 360px);
        border-width: 7px;
    }

    .about-story__points small {
        margin-left: 0;
    }

    .about-story__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-metrics article {
        min-height: 112px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-metrics article:last-child {
        border-bottom: 0;
    }

    .about-cta__inner .bl-btn {
        width: fit-content;
    }

    .about-team-card {
        min-height: 420px;
    }

    .about-team-card__overlay {
        transform: translateY(0);
    }

    .about-blog-card {
        min-height: 0;
    }

    .portfolio-filter-pills {
        margin-top: -10px;
    }

    .portfolio-project-card__image {
        height: 340px;
        min-height: 0;
    }

    .portfolio-project-card__plus,
    .portfolio-project-card__overlay {
        opacity: 1;
        transform: none;
    }

    .portfolio-project-card__overlay {
        right: 0;
        min-height: 104px;
        padding: 18px;
    }

    .portfolio-detail-sidebar__card,
    .portfolio-detail-quote,
    .portfolio-detail-copy,
    .portfolio-detail-split,
    .portfolio-detail-note,
    .portfolio-detail-gallery {
        padding: 20px;
    }

    .portfolio-detail-hero-img {
        aspect-ratio: 4 / 3;
    }

    .portfolio-detail-sidebar dl div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px;
    }

    .portfolio-detail-sidebar dd {
        text-align: left;
    }

    .services-details__content-text-box1,
    .services-details__content-text-box2,
    .services-details__content-text-box3,
    .services-details__content-text-box4 {
        padding: 18px;
    }

    .services-details__content-text-box3 .content-box {
        padding: 18px;
    }

    .bl-feature-strip article,
    .bl-stats article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .bl-stats article {
        border-bottom-color: var(--bl-line);
    }

    .bl-stats article:nth-child(2n) {
        border-right: 0;
    }

    .bl-projects {
        padding: 58px 0 78px;
    }

    .bl-stats {
        margin-top: 0;
    }

    .bl-footer__bottom .bl-container {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .bl-navband__inner {
        grid-template-columns: 48px 1fr;
        gap: 8px;
    }

    .bl-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .bl-inquiry {
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .bl-hero,
    .bl-hero__content {
        min-height: 590px;
    }

    .bl-eyebrow {
        font-size: 13px;
    }

    .bl-feature-strip article {
        grid-template-columns: 44px 1fr;
        gap: 16px;
        padding: 22px 20px;
    }

    .bl-feature-strip svg {
        width: 36px;
        height: 36px;
    }

    .bl-service-grid article,
    .content-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1180px) {
    .service-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-archive-hero__grid,
    .service-detail-hero__grid,
    .service-detail-layout,
    .service-process__grid,
    .template-split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .col-xl-3 {
        grid-column: span 6;
    }

    .col-xl-4,
    .col-xl-6,
    .col-xl-8 {
        grid-column: span 12;
    }

    .services-details__sidebar {
        position: static;
    }
}

@media (max-width: 980px) {
    .service-archive,
    .service-detail-main,
    .service-related {
        padding: 46px 0;
    }

    .service-process__steps,
    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        aspect-ratio: 16 / 10;
    }

    .service-check-grid {
        grid-template-columns: 1fr;
    }

    .template-card-grid {
        grid-template-columns: 1fr;
    }

    .cms-page-section,
    .cms-page-section:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .cms-page-section:nth-child(even) .cms-page-section__image {
        order: 0;
    }
}

@media (max-width: 640px) {
    .container,
    .auto-container {
        width: calc(100% - 28px);
    }

    .page-careers .page-hero .bl-container,
    .page-careers .page-shell .bl-container,
    .page-careers .careers-openings .bl-container {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        overflow: hidden;
    }

    .page-careers .page-hero h1,
    .page-careers .page-hero p,
    .page-careers .content-card,
    .page-careers .content-card p,
    .page-careers .sec-title,
    .page-careers .sec-title h2,
    .page-careers .sec-title p,
    .page-careers .career-card,
    .page-careers .career-card h3 {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .page-careers .career-card__header {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }

    .page-careers .career-card__loc {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .col-xl-3,
    .col-xl-4,
    .col-xl-6,
    .col-xl-8,
    .col-lg-6,
    .col-md-6 {
        grid-column: auto;
    }

    .page-header {
        min-height: 220px;
    }

    .page-header__inner h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .services-one,
    .about-one,
    .contact-page,
    .services-details {
        padding: 42px 0;
    }

    .contact-page__top-single,
    .contact-page__form,
    .contact-page__map,
    .services-details__content-text-box1,
    .services-details__content-text-box4 {
        padding: 18px;
    }

    .contact-page__google-map {
        min-height: 320px;
    }

    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .service-archive-hero,
    .service-detail-hero {
        padding: 48px 0;
    }

    .service-archive-hero h1,
    .service-detail-hero h1 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .page-hero-actions {
        flex-direction: column;
    }

    .page-hero-actions .bl-btn {
        width: min(100%, 290px);
    }

    .service-hero-panel,
    .service-detail-card,
    .service-detail-content section,
    .service-sidebar-card,
    .service-sidebar-cta {
        padding: 20px;
    }

    .service-process__steps article {
        padding: 18px;
    }

    .template-section {
        padding: 46px 0;
    }

    .template-hero {
        padding: 50px 0;
    }

    .template-hero h1 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 20px;
    }

    .cms-page-sections {
        padding: 34px 0;
    }

    .cms-page-sections .bl-container {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .cms-page-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 12px;
        gap: 14px;
    }

    .cms-page-section__image {
        min-height: 180px;
    }
}

/* ── Careers Page Open Positions & Apply Form ── */
.careers-openings {
    padding: clamp(56px, 7vw, 96px) 0;
    background: #f8fafc;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
    margin-top: 40px;
}

.career-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 118px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    appearance: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-card:hover,
.career-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--bl-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    outline: 0;
}

.career-card__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 16px;
    font-size: 13px;
}

.career-card__dept {
    font-weight: 600;
    color: var(--bl-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-card__loc {
    color: var(--bl-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.career-card__loc svg {
    width: 14px;
    height: 14px;
}

.career-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bl-navy);
    margin: 0 0 18px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.career-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--bl-orange);
    font-size: 13px;
    font-weight: 700;
}

.career-card__more svg {
    width: 15px;
    height: 15px;
}

.career-detail-modal {
    width: min(760px, calc(100vw - 28px));
    max-height: min(82vh, 760px);
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 31, 63, 0.24);
}

.career-detail-modal::backdrop {
    background: rgba(0, 31, 63, 0.58);
}

.career-detail-modal__panel {
    position: relative;
    max-height: min(82vh, 760px);
    overflow-y: auto;
}

.career-detail-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dbe5ef;
    border-radius: 50%;
    background: #ffffff;
    color: var(--bl-navy);
    cursor: pointer;
    z-index: 2;
}

.career-detail-modal__close svg {
    width: 18px;
    height: 18px;
}

.career-detail-modal__head {
    padding: 34px 72px 26px 34px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.career-detail-modal__head > span {
    display: block;
    margin-bottom: 10px;
    color: var(--bl-orange);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.career-detail-modal__head h2 {
    margin: 0;
    color: var(--bl-navy);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.career-detail-modal__head p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 14px 0 0;
    color: var(--bl-muted);
    font-weight: 600;
}

.career-detail-modal__head p svg {
    width: 16px;
    height: 16px;
}

.career-detail-modal__body {
    padding: 30px 34px 36px;
    color: #334155;
    font-size: 16px;
    line-height: 1.75;
}

.career-detail-modal__body :is(h1, h2, h3, h4, h5, h6) {
    color: var(--bl-navy);
    margin: 22px 0 10px;
    line-height: 1.25;
}

.career-detail-modal__body :first-child {
    margin-top: 0;
}

.career-detail-modal__body ul,
.career-detail-modal__body ol {
    padding-left: 22px;
    margin: 12px 0 18px;
}

.career-detail-modal__body li + li {
    margin-top: 7px;
}

@media (max-width: 767px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }

    .career-detail-modal__head {
        padding: 28px 62px 22px 24px;
    }

    .career-detail-modal__body {
        padding: 24px;
    }
}
