:root {
    --brand-primary: #e00c0c;
    --brand-primary-dark: #b10808;
    --brand-dark: #151515;
    --brand-soft: #f8f8f8;
    --brand-navy: #0f1f5c;
    --brand-navy-strong: #192d7a;
    --brand-teal: #4aa8bc;
    --brand-teal-soft: #5dbdd2;
    --brand-light-gray: #eef2f8;
    --text-body: #2b2b2b;
    --text-soft: #5f6672;
    --radius-base: 6px;
    --radius-lg: 8px;
    --card-shadow: 0 4px 14px rgba(20, 20, 20, 0.05);
    --card-shadow-hover: 0 8px 18px rgba(20, 20, 20, 0.08);
}

body {
    font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-body);
    background: #ffffff;
    line-height: 1.58;
    font-size: 1rem;
    overflow-x: hidden;
}

.section-block {
    padding: clamp(3rem, 4.6vw, 4.2rem) 0;
}

.btn {
    border-radius: var(--radius-base);
}

.btn-sm {
    border-radius: var(--radius-base);
}

.topbar {
    background: linear-gradient(90deg, #111111, #252525);
}

.topbar-cta {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.topbar-cta:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-base);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transition: all .25s ease;
}

.social-link:hover {
    color: #fff;
    background: var(--brand-primary);
    transform: translateY(-2px);
}

.site-navbar {
    background: var(--brand-navy);
    border-bottom: 0;
    box-shadow: 0 2px 20px rgba(15, 31, 92, .3);
}

.site-navbar .container {
    min-height: 68px;
}

.brand-logo {
    height: 35px;
    width: auto;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .97);
    border-radius: 2px;
    padding: .18rem .35rem;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: .62rem;
}

.nav-badge {
    width: 34px;
    height: 34px;
    background: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: .94rem;
    font-weight: 700;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.nav-name {
    font-family: "DM Mono", monospace;
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    white-space: nowrap;
}

.nav-links {
    gap: 0;
    align-items: stretch;
    min-height: 68px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .64);
    font-family: "DM Mono", monospace;
    font-weight: 500;
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0 1rem;
    line-height: 1;
    min-height: 68px;
    display: inline-flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
}

.navbar .nav-link:hover {
    color: #fff;
    border-bottom-color: var(--brand-teal);
    background: rgba(255, 255, 255, .05);
}

.navbar .nav-link.active {
    color: #fff;
    border-bottom-color: var(--brand-primary);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .3);
    border-radius: 2px;
    padding: .36rem .48rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-hire {
    padding: .55rem 1.45rem;
    background: var(--brand-primary);
    color: #fff;
    font-family: "DM Mono", monospace;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

.nav-hire:hover {
    background: #ff2020;
    color: #fff;
    transform: scale(1.04);
}

.services-dropdown {
    position: relative;
}

.services-trigger-wrap {
    display: flex;
    align-items: center;
    gap: .2rem;
}

.services-trigger-wrap .nav-link {
    background: transparent;
}

.services-trigger-wrap .nav-link:hover,
.services-trigger-wrap .nav-link.active {
    background: transparent;
}

.services-mobile-toggle,
.services-parent-toggle {
    width: 1.8rem;
    height: 1.8rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .68);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.services-mobile-toggle:hover,
.services-parent-toggle:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.services-mobile-toggle[aria-expanded="true"] i,
.services-parent-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.services-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    min-width: 250px;
    background: #1a6f80;
    border: 1px solid rgba(93, 189, 210, .28);
    border-radius: 2px;
    box-shadow: 0 12px 24px rgba(5, 12, 36, .35);
    padding: .45rem;
    display: none;
    z-index: 1040;
}

.services-parent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-parent-item {
    position: relative;
}

.services-parent-row {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.services-parent-link {
    flex: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
    color: rgba(255, 255, 255, .84);
    padding: .5rem .58rem;
    border-radius: 2px;
    font-size: .82rem;
    line-height: 1.3;
    font-family: "DM Mono", monospace;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.services-parent-link:focus-visible,
.services-parent-link.is-current {
    background: rgba(93, 189, 210, .2);
    color: #fff;
}

@media (hover: hover) {
    .services-parent-link:hover {
        background: var(--brand-primary);
        color: #fff;
    }
}

.dropdown-submenu {
    position: absolute;
    top: -.45rem;
    left: calc(100% - 1px);
    min-width: 280px;
    max-width: min(46vw, 360px);
    background: rgba(15, 31, 92, .98);
    border: 1px solid rgba(93, 189, 210, .28);
    border-radius: 2px;
    box-shadow: 0 12px 24px rgba(5, 12, 36, .35);
    padding: .45rem;
    display: none;
}

.services-parent-item:hover > .dropdown-submenu,
.services-parent-item:focus-within > .dropdown-submenu {
    display: block;
}

.service-child-link {
    border-radius: 2px;
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
    padding: .46rem .6rem;
    white-space: normal;
    font-family: "DM Mono", monospace;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.service-child-link:hover,
.service-child-link:focus-visible {
    background: var(--brand-primary);
    color: #fff;
}

@media (min-width: 992px) {
    .dropdown-submenu {
        background: #1a6f80;
    }

    .dropdown-submenu .service-child-link:hover,
    .dropdown-submenu .service-child-link:focus-visible {
        background: var(--brand-primary);
        color: #fff;
    }

    .services-dropdown:hover > .services-menu,
    .services-dropdown:focus-within > .services-menu {
        display: block;
    }
}

.dropdown-heading {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #666;
    margin-bottom: .5rem;
    font-weight: 600;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section-compact {
    min-height: 52vh;
}

.hero-photo,
.hero-ov1,
.hero-ov2,
.hero-accent {
    position: absolute;
    inset: 0;
}

.hero-photo {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center 60%;
    animation: kbzoom 20s ease-in-out infinite alternate;
}

.hero-ov1 {
    background: linear-gradient(100deg, rgba(15, 31, 92, .88) 0%, rgba(15, 31, 92, .75) 45%, rgba(15, 31, 92, .35) 70%, transparent 100%);
}

.hero-ov2 {
    background: linear-gradient(to top, rgba(15, 31, 92, .62) 0%, transparent 50%);
}

.hero-accent {
    right: auto;
    width: 5px;
    background: linear-gradient(var(--brand-primary), var(--brand-teal));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 8rem 2.25rem 4.5rem;
    color: #fff;
}

.hero-section-compact .hero-inner {
    padding-top: 5.8rem;
    padding-bottom: 2.8rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-family: "DM Mono", monospace;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--brand-teal-soft);
    margin-bottom: 1.5rem;
    animation: slideUp .72s ease;
}

.hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand-teal);
}

.hero-h1 {
    display: flex;
    flex-direction: column;
    gap: .64rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5.2vw, 4.7rem);
    font-weight: 900;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 1rem;
    animation: slideUp .84s ease;
}

.hero-h1 .italic-sub {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: .26em;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--brand-teal);
    padding: .38rem 1.1rem .38rem .9rem;
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    line-height: 1;
    align-self: flex-start;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .74);
    max-width: 54ch;
    border-left: 3px solid var(--brand-primary);
    padding-left: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.72;
    animation: slideUp .9s ease;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
    animation: slideUp 1s ease;
}

.hst {
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-right: none;
    text-align: center;
    transition: background .2s;
}

.hst:hover {
    background: rgba(74, 168, 188, .16);
}

.hst:first-child {
    border-left: 3px solid var(--brand-teal);
    border-radius: 4px 0 0 4px;
}

.hst:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0 4px 4px 0;
}

.hst-n {
    font-family: "Playfair Display", serif;
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--brand-teal-soft);
    line-height: 1.08;
}

.hst-l {
    font-family: "DM Mono", monospace;
    font-size: .55rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .56);
    margin-top: .28rem;
}

.hero-btns {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    animation: slideUp 1.05s ease;
}

.btn-red {
    padding: .86rem 2.2rem;
    background: var(--brand-primary);
    color: #fff;
    font-family: "DM Mono", monospace;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(224, 12, 12, .35);
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-red:hover {
    background: #ff2020;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(224, 12, 12, .45);
}

.btn-teal {
    padding: .86rem 2.2rem;
    background: rgba(74, 168, 188, .15);
    color: var(--brand-teal-soft);
    font-family: "DM Mono", monospace;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1.5px solid var(--brand-teal);
    backdrop-filter: blur(8px);
    transition: background .2s, color .2s, transform .15s;
}

.btn-teal:hover {
    background: var(--brand-teal);
    color: #fff;
    transform: translateY(-3px);
}

.section-title {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--brand-navy);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .74rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-navy);
}

.section-kicker::before {
    content: "";
    width: 1.55rem;
    height: 1px;
    background: rgba(74, 168, 188, .7);
}

.lead {
    color: var(--text-soft);
}

.home-intro-section {
    position: relative;
    background:
        radial-gradient(circle at 10% 18%, rgba(74, 168, 188, 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.home-intro-shell {
    background: #fff;
    border: 1px solid #d6e0f0;
    border-left: 4px solid var(--brand-navy);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: clamp(1.15rem, 3vw, 1.8rem);
}

.home-intro-title {
    max-width: 14ch;
}

.home-intro-lead {
    max-width: 46ch;
    font-size: clamp(1.08rem, 1.9vw, 1.18rem);
    margin-bottom: 1.05rem;
}

.home-intro-points li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: #324470;
    font-size: .96rem;
    margin-bottom: .52rem;
}

.home-intro-points li:last-child {
    margin-bottom: 0;
}

.home-intro-points i {
    color: var(--brand-primary);
    margin-top: .18rem;
    font-size: .86rem;
}

.home-intro-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #d6e0f0;
    box-shadow: var(--card-shadow);
}

.home-intro-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.home-intro-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 92, 0.06), rgba(15, 31, 92, 0.4));
}

.home-intro-media-badge {
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .85rem;
    z-index: 1;
    border-radius: var(--radius-base);
    background: rgba(15, 31, 92, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: .6rem .72rem;
    color: rgba(255, 255, 255, 0.94);
}

.home-intro-media-badge p {
    font-size: .73rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .84;
}

.home-intro-media-badge strong {
    display: block;
    font-size: .95rem;
    line-height: 1.3;
    font-weight: 600;
}

.home-intro-metrics {
    margin-top: .7rem;
}

.home-intro-metric {
    border-radius: var(--radius-base);
    border: 1px solid #d6e0f0;
    background: linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
    padding: .66rem .72rem;
}

.home-intro-metric-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #4a5d8f;
    font-weight: 600;
}

.home-intro-metric h3 {
    font-size: .9rem;
    margin: 0;
    line-height: 1.35;
    color: var(--brand-navy);
}

.stat-panel,
.contact-info-box,
.contact-form-box,
.service-intro-box,
.service-list-box,
.project-sidebar-box,
.project-content-box,
.category-filter {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #eceff3;
    padding: 1.25rem;
    box-shadow: var(--card-shadow);
}

.project-details-panel {
    background: linear-gradient(180deg, #1a1f7d 0%, #191d74 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 1.35rem 1.2rem;
}

.project-details-panel h3 {
    color: #fff;
    font-size: clamp(1.28rem, 2.4vw, 1.7rem);
    font-weight: 600;
    margin-bottom: 1.15rem;
}

.project-details-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.project-details-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: .8rem;
    padding: .86rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.project-details-label {
    color: rgba(226, 231, 255, 0.72);
    font-size: .93rem;
    font-weight: 500;
}

.project-details-value {
    color: #fff;
    font-size: .96rem;
    font-weight: 500;
    line-height: 1.45;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .project-details-row {
        grid-template-columns: 1fr;
        gap: .28rem;
    }
}

.stat-panel {
    background: linear-gradient(160deg, #ffffff 0%, #fcfcfd 100%);
}

.stat-panel-kicker {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #5f6672;
    font-weight: 600;
}

.stat-panel h3 {
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    margin-bottom: .55rem;
}

.stat-panel p {
    color: #4d535f;
}

.stat-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    padding: .22rem .56rem;
    border: 1px solid #ebd0cf;
    border-radius: var(--radius-base);
    font-size: .74rem;
    font-weight: 600;
    color: #6d2422;
    background: #fff8f7;
}

.contact-cta {
    background: linear-gradient(126deg, var(--brand-navy) 0%, var(--brand-navy-strong) 45%, var(--brand-primary) 100%);
}

.contact-cta .section-title {
    margin-bottom: .75rem;
}

.contact-cta p {
    max-width: 760px;
    margin-inline: auto;
}

.home-services-section {
    background: linear-gradient(180deg, #e9f0fb 0%, #f5f8ff 100%);
}

.home-services-subtitle {
    max-width: 56ch;
}

.home-services-btn {
    border-width: 1px;
}

.home-services-grid .service-card-home {
    position: relative;
    border-color: #d6e0f0;
    border-width: 1px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 31, 92, 0.08);
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease, background .34s ease, outline-color .34s ease;
    outline: 1px solid transparent;
    outline-offset: 0;
}

.home-services-grid .service-card-home::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, var(--brand-primary), var(--brand-teal)) left top / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-primary), var(--brand-teal)) left bottom / 0 2px no-repeat,
        linear-gradient(180deg, var(--brand-primary), var(--brand-teal)) right bottom / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-primary), var(--brand-teal)) right top / 0 2px no-repeat;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 3;
    pointer-events: none;
}

.home-services-grid .service-card-home:hover {
    transform: translateY(-6px);
    border-color: var(--brand-primary);
    outline-color: rgba(74, 168, 188, .52);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 18px 30px rgba(15, 31, 92, 0.18) !important;
}

.home-services-grid .service-card-home:hover::before,
.home-services-grid .service-card-home:focus-within::before {
    opacity: 1;
    animation: serviceBorderTrace .78s linear forwards;
}

@keyframes serviceBorderTrace {
    0% {
        background-size: 2px 0, 0 2px, 2px 0, 0 2px;
    }

    25% {
        background-size: 2px 100%, 0 2px, 2px 0, 0 2px;
    }

    50% {
        background-size: 2px 100%, 100% 2px, 2px 0, 0 2px;
    }

    75% {
        background-size: 2px 100%, 100% 2px, 2px 100%, 0 2px;
    }

    100% {
        background-size: 2px 100%, 100% 2px, 2px 100%, 100% 2px;
    }
}

.service-card-media {
    position: relative;
    overflow: hidden;
}

.service-image-link:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: -2px;
}

.home-services-grid .service-card-home .card-img-top {
    height: 236px;
    transition: transform .5s ease, filter .5s ease;
}

.home-services-grid .service-card-home:hover .card-img-top {
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.04);
}

.service-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 92, 0.02) 0%, rgba(15, 31, 92, 0.35) 100%);
    transition: background .4s ease;
    pointer-events: none;
}

.home-services-grid .service-card-home:hover .service-card-media::after {
    background: linear-gradient(180deg, rgba(15, 31, 92, 0.03) 0%, rgba(15, 31, 92, 0.54) 100%);
}

.home-services-grid .service-card-home .service-badge {
    position: absolute;
    left: .85rem;
    top: .85rem;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    color: #111111 !important;
    border: 1px solid #d6e0f0;
    box-shadow: 0 4px 12px rgba(15, 31, 92, 0.1);
    transition: background .32s ease, color .32s ease, border-color .32s ease, transform .32s ease;
}

.home-services-grid .service-card-home:hover .service-badge {
    background: var(--brand-teal);
    color: #fff !important;
    border-color: var(--brand-teal);
    transform: translateY(-2px);
}

.home-services-grid .service-card-home .card-body {
    padding: 1.05rem 1.1rem 1.15rem;
    min-height: auto;
}

.home-services-grid .service-card-home h3 {
    font-size: clamp(1.32rem, 2.1vw, 1.56rem);
    line-height: 1.22;
    color: var(--brand-navy);
    transition: color .3s ease;
}

.service-title-link {
    position: relative;
    display: inline-block;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--brand-navy);
    line-height: 1.16;
    transition: color .34s ease, transform .34s ease, text-shadow .34s ease;
}

.service-title-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.16em;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-teal));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .34s ease;
}

.service-title-link:hover,
.service-title-link:focus-visible {
    color: var(--brand-primary-dark);
    transform: translateX(2px);
    text-shadow: 0 2px 8px rgba(15, 31, 92, .15);
}

.service-title-link:hover::after,
.service-title-link:focus-visible::after {
    transform: scaleX(1);
}

.home-services-grid .service-card-home:hover h3,
.home-services-grid .service-card-home:hover .service-title-link {
    color: var(--brand-primary-dark);
}

.home-services-grid .service-card-home:hover .service-title-link {
    transform: translateX(2px);
    text-shadow: 0 2px 8px rgba(15, 31, 92, .14);
}

.home-services-grid .service-card-home:hover .service-title-link::after {
    transform: scaleX(1);
}

.service-enter-wrap {
    min-height: 1.6rem;
}

.service-enter-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: "DM Mono", monospace;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-primary-dark);
    opacity: 1;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
}

.service-enter-link i {
    transition: transform .28s ease;
}

.home-services-grid .service-card-home:hover .service-enter-link,
.home-services-grid .service-card-home:focus-within .service-enter-link {
    opacity: 1;
    transform: translateY(-1px);
}

.service-enter-link:hover,
.service-enter-link:focus-visible {
    color: var(--brand-primary);
}

.service-enter-link:hover i,
.service-enter-link:focus-visible i {
    transform: translateX(2px);
}

.service-card-copy {
    color: #415685;
    font-size: .95rem;
    line-height: 1.55;
    transition: color .3s ease;
}

.home-services-grid .service-card-home:hover .service-card-copy {
    color: #2f4a7f;
}

.home-services-grid .service-card-home .service-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--brand-navy);
    transition: color .28s ease;
}

.home-services-grid .service-card-home:hover .service-link {
    color: var(--brand-primary);
}

.service-link-icon {
    width: 1.72rem;
    height: 1.72rem;
    border-radius: var(--radius-base);
    background: var(--brand-light-gray);
    color: var(--brand-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .26s ease, background .26s ease, color .26s ease;
}

.home-services-grid .service-card-home:hover .service-link-icon {
    transform: translateX(4px) scale(1.06);
    background: var(--brand-primary);
    color: #fff;
}

.home-projects-grid .project-card-home {
    position: relative;
    border-color: #b8c8e8;
    border-width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(243, 248, 255, .96) 100%);
    box-shadow: 0 10px 22px rgba(9, 24, 72, .16);
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease, background .34s ease, outline-color .34s ease;
    outline: 1px solid transparent;
    outline-offset: 0;
}

.home-projects-grid .project-card-home::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, var(--brand-teal), var(--brand-navy)) left top / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-teal), var(--brand-navy)) left bottom / 0 2px no-repeat,
        linear-gradient(180deg, var(--brand-teal), var(--brand-navy)) right bottom / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-teal), var(--brand-navy)) right top / 0 2px no-repeat;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 3;
    pointer-events: none;
}

.home-projects-grid .project-card-home:hover {
    transform: translateY(-6px);
    border-color: var(--brand-teal);
    outline-color: rgba(15, 31, 92, .45);
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 20px 34px rgba(9, 24, 72, .24) !important;
}

.home-projects-grid .project-card-home:hover::before,
.home-projects-grid .project-card-home:focus-within::before {
    opacity: 1;
    animation: serviceBorderTrace .78s linear forwards;
}

.home-projects-grid .project-card-home .project-card-media {
    position: relative;
    overflow: hidden;
}

.project-image-link:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: -2px;
}

.home-projects-grid .project-card-home .card-img-top {
    height: 236px;
    transition: transform .52s ease, filter .52s ease;
}

.home-projects-grid .project-card-home:hover .card-img-top {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.06);
}

.home-projects-grid .project-card-home .project-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 55, .06) 0%, rgba(7, 18, 55, .44) 100%);
    transition: background .4s ease;
    pointer-events: none;
}

.home-projects-grid .project-card-home:hover .project-card-media::after {
    background: linear-gradient(180deg, rgba(7, 18, 55, .1) 0%, rgba(7, 18, 55, .56) 100%);
}

.home-projects-grid .project-card-home .project-category {
    position: absolute;
    left: .85rem;
    top: .85rem;
    z-index: 1;
    background: rgba(15, 31, 92, .88);
    color: #fff;
    border: 1px solid rgba(93, 189, 210, .36);
    box-shadow: 0 4px 12px rgba(9, 24, 72, .18);
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.home-projects-grid .project-card-home:hover .project-category {
    background: var(--brand-teal);
    color: #fff;
    border-color: var(--brand-teal);
    transform: translateY(-2px);
}

.home-projects-grid .project-card-home .card-body {
    padding: 1.05rem 1.1rem 1.15rem;
    min-height: auto;
}

.home-projects-grid .project-card-home .project-title-link {
    display: inline-block;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 1.9vw, 1.4rem);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.2;
    color: var(--brand-navy);
    transition: color .34s ease, transform .34s ease;
}

.home-projects-grid .project-card-home:hover .project-title-link {
    color: #0e3c7d;
    transform: translateX(2px);
}

.project-card-copy {
    color: #3f547f;
    font-size: .95rem;
    line-height: 1.55;
    transition: color .3s ease;
}

.home-projects-grid .project-card-home:hover .project-card-copy {
    color: #2f4671;
}

.project-enter-wrap {
    min-height: 1.6rem;
}

.project-enter-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: "DM Mono", monospace;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-navy-strong);
    transition: color .3s ease, transform .3s ease;
}

.project-enter-link i {
    transition: transform .28s ease;
}

.home-projects-grid .project-card-home:hover .project-enter-link,
.home-projects-grid .project-card-home:focus-within .project-enter-link {
    color: var(--brand-primary-dark);
    transform: translateY(-1px);
}

.project-enter-link:hover,
.project-enter-link:focus-visible {
    color: var(--brand-primary);
}

.project-enter-link:hover i,
.project-enter-link:focus-visible i {
    transform: translateX(2px);
}

.service-card,
.project-card,
.project-service-card,
.about-card,
.partner-card,
.service-detail-card {
    border-radius: var(--radius-lg);
    border: 1px solid #eceff3;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover,
.project-card:hover,
.project-service-card:hover,
.about-card:hover,
.partner-card:hover,
.service-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover) !important;
}

.service-card .card-img-top,
.project-card .card-img-top,
.project-service-card .card-img-top,
.about-card .card-img-top,
.partner-card .card-img-top,
.service-detail-card .card-img-top {
    height: 224px;
    object-fit: cover;
}

.about-overview-section {
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 107, 53, .12), transparent 35%),
        radial-gradient(circle at 84% 8%, rgba(59, 130, 246, .12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding-bottom: 1.25rem !important;
}

.about-overview-header .section-title {
    color: #163a6b;
}

.about-story-section {
    position: relative;
    padding: clamp(2rem, 4vw, 3.3rem) 0;
    background: linear-gradient(132deg, var(--about-bg-start, #f3f8ff) 0%, var(--about-bg-end, #fff7f0) 100%);
    overflow: hidden;
}

.about-story-section + .about-story-section {
    margin-top: .9rem;
}

.about-story-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: var(--about-accent, #ff6b35);
    opacity: .12;
    pointer-events: none;
}

.about-story-section::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #ffffff;
    opacity: .42;
    pointer-events: none;
}

.about-story-inner {
    position: relative;
    z-index: 1;
}

.about-story-media {
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, .9);
    box-shadow: 0 16px 34px rgba(18, 24, 40, .14);
}

.about-story-media img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-story-content {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(15, 31, 92, .1);
    border-left: 5px solid var(--about-accent, #ff6b35);
    border-radius: 16px;
    padding: 1.25rem 1.2rem;
    box-shadow: 0 10px 28px rgba(18, 24, 40, .08);
}

.about-story-title {
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    line-height: 1.24;
    margin: 0 0 .7rem;
    color: #162f57;
}

.about-story-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: var(--about-accent, #ff6b35);
    border: 1px solid rgba(255, 255, 255, .7);
    color: #ffffff;
    font-family: "DM Mono", monospace;
    font-size: .74rem;
    letter-spacing: .09em;
    margin-bottom: .8rem;
}

.about-story-text {
    color: #4f5968;
    font-size: 1.02rem;
    line-height: 1.74;
}

@media (max-width: 991.98px) {
    .about-story-section {
        padding: 1.7rem 0;
    }

    .about-story-media img {
        height: 270px;
    }

    .about-story-content {
        padding: 1.05rem 1rem 1.1rem;
    }
}

.service-card .card-body,
.project-card .card-body,
.project-service-card .card-body {
    padding: 1.05rem 1rem 1rem;
    min-height: 220px;
}

.service-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
}

.service-link:hover {
    color: var(--brand-primary);
}

.service-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .34rem;
    padding: .32rem .72rem .34rem;
    border-radius: 999px;
    font-family: "DM Mono", monospace;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
    background: linear-gradient(120deg, rgba(19, 46, 102, .94), rgba(13, 159, 176, .92));
    color: #ffffff !important;
    border: 1px solid rgba(201, 224, 255, .34);
    box-shadow: 0 6px 14px rgba(7, 21, 59, .26);
    text-shadow: 0 1px 1px rgba(0, 0, 0, .24);
}

.service-badge::before {
    content: "";
    width: .36rem;
    height: .36rem;
    border-radius: 999px;
    background: #fff;
    opacity: .82;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .16);
}

.project-category {
    display: inline-flex;
    align-items: center;
    padding: .24rem .62rem;
    border-radius: var(--radius-base);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .03em;
    background: #fce8e8;
    color: var(--brand-primary-dark);
}

.project-btn {
    font-weight: 600;
    padding: .42rem .85rem;
    align-self: flex-start;
}

.blog-list-card {
    position: relative;
    border: 1px solid #d6e0f0;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(15, 31, 92, 0.08);
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease, background .34s ease, outline-color .34s ease;
    outline: 1px solid transparent;
    outline-offset: 0;
    overflow: hidden;
}

.blog-list-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, var(--brand-primary), var(--brand-teal)) left top / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-primary), var(--brand-teal)) left bottom / 0 2px no-repeat,
        linear-gradient(180deg, var(--brand-primary), var(--brand-teal)) right bottom / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-primary), var(--brand-teal)) right top / 0 2px no-repeat;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 3;
    pointer-events: none;
}

.blog-list-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-primary);
    outline-color: rgba(74, 168, 188, .52);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 18px 30px rgba(15, 31, 92, 0.18);
}

.blog-list-card:hover::before,
.blog-list-card:focus-within::before {
    opacity: 1;
    animation: serviceBorderTrace .78s linear forwards;
}

.blog-list-image-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #dde5f3;
}

.blog-list-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 92, 0.04) 0%, rgba(15, 31, 92, 0.38) 100%);
    transition: background .4s ease;
    pointer-events: none;
}

.blog-list-card:hover .blog-list-image-wrap::after,
.blog-list-card:focus-within .blog-list-image-wrap::after {
    background: linear-gradient(180deg, rgba(15, 31, 92, 0.08) 0%, rgba(15, 31, 92, 0.58) 100%);
}

.blog-list-image-wrap:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: -2px;
}

.blog-list-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease, filter .5s ease;
}

.blog-list-card:hover .blog-list-image,
.blog-list-card:focus-within .blog-list-image {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.blog-list-body {
    padding: 1.02rem 1.05rem .72rem;
}

.blog-list-title {
    font-size: clamp(1.18rem, 1.35vw, 1.75rem);
    line-height: 1.24;
    font-weight: 700;
}

.blog-list-title-link {
    position: relative;
    display: inline-block;
    color: var(--brand-navy);
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    letter-spacing: .01em;
    line-height: 1.16;
    transition: color .34s ease, transform .34s ease, text-shadow .34s ease;
}

.blog-list-title-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.16em;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-teal));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .34s ease;
}

.blog-list-card:hover .blog-list-title-link,
.blog-list-card:focus-within .blog-list-title-link,
.blog-list-title-link:hover,
.blog-list-title-link:focus-visible {
    color: var(--brand-primary-dark);
    transform: translateX(2px);
    text-shadow: 0 2px 8px rgba(15, 31, 92, .14);
}

.blog-list-card:hover .blog-list-title-link::after,
.blog-list-card:focus-within .blog-list-title-link::after,
.blog-list-title-link:hover::after,
.blog-list-title-link:focus-visible::after {
    transform: scaleX(1);
}

.blog-list-excerpt {
    font-size: .95rem;
    line-height: 1.5;
    color: #415685 !important;
    transition: color .3s ease;
}

.blog-list-card:hover .blog-list-excerpt,
.blog-list-card:focus-within .blog-list-excerpt {
    color: #2f4a7f !important;
}

.blog-list-footer {
    margin-top: auto;
    border-top: 1px solid #e6e8ec;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: .7rem;
    padding: .8rem 1.05rem .9rem;
    background: linear-gradient(180deg, #fbfcff 0%, #f3f7ff 100%);
}

.blog-list-date {
    font-size: .75rem;
    color: #2f4a7f;
    font-family: "DM Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-list-action {
    color: var(--brand-primary-dark);
    font-weight: 600;
    font-size: .74rem;
    font-family: "DM Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .28s ease, transform .28s ease;
}

.blog-list-action:hover,
.blog-list-action:focus-visible {
    color: var(--brand-primary);
    transform: translateX(2px);
}

.blog-share-menu {
    border-radius: var(--radius-base);
    border-color: #dae0ea;
    min-width: 12rem;
}

.blog-share-menu .dropdown-item {
    font-size: .92rem;
}

.blog-detail-hero-shell {
    background: linear-gradient(180deg, #182a68 0%, #1f2f70 100%);
}

.blog-detail-hero-inner {
    max-width: 1080px;
    margin-inline: auto;
}

.blog-detail-title {
    color: #fff;
    font-size: clamp(1.55rem, 2vw, 2.35rem);
    line-height: 1.25;
}

.blog-detail-update {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    font-size: .95rem;
}

.blog-detail-share-icons a {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}

.blog-detail-share-icons a:hover,
.blog-detail-share-icons a:focus-visible {
    background: rgba(255, 255, 255, .3);
    transform: translateY(-1px);
}

.blog-detail-hero-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: 0 16px 34px rgba(6, 15, 44, .35);
}

.blog-detail-hero-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.blog-detail-content-section {
    background: #f3f5fb;
}

.blog-detail-article {
    border-color: #dce2ee;
}

.blog-detail-body {
    font-size: 1rem;
    line-height: 1.75;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-base);
    margin: .8rem 0 1.1rem;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}

.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4 {
    margin-top: 1.3rem;
    margin-bottom: .7rem;
}

.blog-detail-body a {
    color: var(--brand-primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-detail-body blockquote {
    border-left: 4px solid #d3daea;
    padding: .25rem 0 .25rem .9rem;
    color: #475166;
    margin: 1rem 0;
}

.blog-latest-sidebar {
    position: sticky;
    top: 90px;
    border-color: #d7deeb;
}

.blog-latest-item {
    padding: .55rem 0;
    border-bottom: 1px solid #edf1f7;
    align-items: flex-start;
}

.blog-latest-item:last-child {
    border-bottom: 0;
}

.blog-latest-thumb {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.blog-latest-meta strong {
    display: block;
    color: #1d2433;
    font-size: .92rem;
    line-height: 1.4;
    margin-bottom: .2rem;
}

.blog-latest-meta small {
    color: #656f80;
    font-size: .78rem;
}

.project-category-tile {
    display: block;
    height: 100%;
}

.project-category-card {
    position: relative;
    height: 100%;
    min-height: 280px;
    border-radius: 0;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 24px rgba(10, 15, 30, .14);
}

.project-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .5) 100%);
    z-index: 1;
    transition: background .28s ease;
}

.project-category-card::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255, 255, 255, .95);
    opacity: 0;
    transform: scale(.97);
    z-index: 3;
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}

.project-category-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform .38s ease, filter .38s ease;
}

.project-category-image-base {
    position: relative;
    z-index: 0;
}

.project-category-image-focus {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    clip-path: inset(20px);
    transition: opacity .28s ease, transform .38s ease;
    pointer-events: none;
}

.project-category-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.project-category-title {
    color: #fff;
    font-size: clamp(1.4rem, 1.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
    transition: color .28s ease, text-shadow .28s ease, transform .28s ease;
}

.project-category-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-family: "DM Mono", monospace;
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(0, 0, 0, .28);
}

.project-category-tile:hover .project-category-card,
.project-category-tile:focus-visible .project-category-card {
    box-shadow: 0 16px 36px rgba(10, 15, 30, .22);
}

.project-category-tile:hover .project-category-card::after,
.project-category-tile:focus-visible .project-category-card::after {
    opacity: 1;
    transform: scale(1);
}

.project-category-tile:hover .project-category-card::before,
.project-category-tile:focus-visible .project-category-card::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .62) 100%);
}

.project-category-tile:hover .project-category-image,
.project-category-tile:focus-visible .project-category-image {
    transform: scale(1.06);
}

.project-category-tile:hover .project-category-image-base,
.project-category-tile:focus-visible .project-category-image-base {
    filter: blur(1.6px) brightness(.84);
}

.project-category-tile:hover .project-category-image-focus,
.project-category-tile:focus-visible .project-category-image-focus {
    opacity: 1;
}

.project-category-tile:hover .project-category-title,
.project-category-tile:focus-visible .project-category-title {
    color: #ffe4a8;
    text-shadow: 0 0 20px rgba(255, 228, 168, .45), 0 2px 10px rgba(0, 0, 0, .8);
    transform: scale(1.02);
}

.category-filter .category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: .55rem .65rem;
    border-radius: var(--radius-base);
    margin-top: .35rem;
    border: 1px solid #ececec;
    transition: .2s ease;
}

.category-filter .category-link.active,
.category-filter .category-link:hover {
    background: #fee8e7;
    border-color: #fac3c0;
    color: var(--brand-primary-dark);
}

.project-category-top-filter .category-link {
    margin-top: 0;
    height: 100%;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    min-width: 290px;
    flex: 0 0 auto;
    color: rgba(240, 246, 255, .9);
    padding: .5rem .2rem;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.project-category-top-band {
    width: 100%;
    background:
        radial-gradient(1200px 360px at 15% 0%, rgba(74, 168, 188, .24) 0%, rgba(74, 168, 188, 0) 58%),
        radial-gradient(900px 300px at 85% 10%, rgba(224, 12, 12, .2) 0%, rgba(224, 12, 12, 0) 62%),
        linear-gradient(112deg, #0f1f5c 0%, #132a73 48%, #0e234f 100%);
}

.project-category-top-filter {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 1rem 0;
}

.project-category-top-filter .project-category-scroll {
    display: flex;
    gap: .55rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .15rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(68, 77, 100, .36) transparent;
}

.project-category-top-filter .project-category-scroll::-webkit-scrollbar {
    height: 4px;
}

.project-category-top-filter .project-category-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.project-category-top-filter .project-category-scroll::-webkit-scrollbar-thumb {
    background: rgba(68, 77, 100, .36);
    border-radius: 999px;
}

.project-category-top-filter .category-link.active,
.project-category-top-filter .category-link:hover {
    background: transparent;
    color: #ffffff;
    border-bottom-color: var(--brand-teal-soft);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .6rem;
}

.service-list-link {
    color: #2f3440;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.service-list-link:hover,
.service-list-link:focus-visible {
    color: var(--brand-primary-dark);
    border-color: rgba(196, 48, 43, .35);
}

.service-list i {
    color: var(--brand-primary);
    margin-top: .2rem;
}

.service-item-arrow {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-base);
    background: #fdf0ef;
    color: var(--brand-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-logo-card,
.partner-logo-card {
    background: #fff;
    border: 1px solid #d6e0f0;
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    min-height: 156px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.client-logo-card img,
.partner-logo-card img {
    height: 72px;
    width: 100%;
    object-fit: contain;
    margin-inline: auto;
}

.client-logo-card:hover,
.partner-logo-card:hover {
    border-color: rgba(74, 168, 188, .52);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.partner-list-section {
    background: #f8fafc;
}

.partner-list-card {
    border-color: #c9d5e5;
    background: #f2f5f9;
    min-height: 154px;
    padding: .9rem .75rem;
}

.partner-list-card:hover {
    border-color: #b8c7dc;
    transform: translateY(-1px);
}

.partner-list-logo-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .6rem;
}

.partner-list-logo-wrap img {
    max-height: 64px;
    width: auto;
}

.partner-list-name {
    font-size: 1.03rem;
    line-height: 1.2;
    font-weight: 500;
    color: #2a2f36;
}

.dcon-slider {
    position: relative;
    padding-inline: 2.6rem;
}

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    transition: transform .45s ease;
    will-change: transform;
}

.slider-item {
    flex: 0 0 auto;
    display: flex;
}

.slider-item > * {
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.1rem;
    height: 2.1rem;
    border-radius: var(--radius-base);
    border: 0;
    background: var(--brand-navy);
    color: #fff;
    box-shadow: 0 8px 16px rgba(15, 31, 92, .26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--brand-teal);
    color: #fff;
    transform: translateY(-50%) scale(1.04);
}

.slider-arrow:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.slider-arrow-prev {
    left: .15rem;
}

.slider-arrow-next {
    right: .15rem;
}

.testimonial-card {
    border: 1px solid #d6e0f0;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    padding: 1.25rem;
    box-shadow: var(--card-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f3f3f3;
    flex-shrink: 0;
}

.testimonial-rating {
    color: var(--brand-teal);
    letter-spacing: .08rem;
    font-size: .85rem;
}

.site-footer {
    background: #101113;
    color: #d8dbe0;
}

.footer-heading {
    color: #f6f7f8;
    font-weight: 600;
}

.footer-copy {
    color: #c6cad1;
}

.footer-copy-soft {
    color: #a5acb8;
    max-width: 260px;
    line-height: 1.45;
}

.footer-cta-btn {
    padding-inline: 1rem;
}

.why-choose-grid {
    margin-top: 1.1rem;
}

.why-choose-head {
    max-width: 820px;
    margin-inline: 0;
    text-align: left;
}

.why-choose-subtitle {
    font-size: 1.08rem;
}

.why-choose-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 12%, rgba(74, 168, 188, .26), transparent 42%),
        radial-gradient(circle at 88% 22%, rgba(224, 12, 12, .2), transparent 40%),
        linear-gradient(128deg, #10276f 0%, #0f1f5c 55%, #153a8d 100%);
}

.why-choose-section .section-kicker {
    color: #9be3f2;
}

.why-choose-section .section-kicker::before {
    background: #9be3f2;
}

.why-choose-section .section-title {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .16);
}

.why-choose-section .why-choose-subtitle {
    color: rgba(242, 248, 255, .96) !important;
}

.home-clients-section {
    background: #fff;
}

.home-partners-section {
    background: var(--brand-light-gray);
}

.home-testimonials-section {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-strong) 100%);
}

.home-testimonials-section .section-title,
.home-testimonials-section .h6,
.home-testimonials-section .text-muted,
.home-testimonials-section p {
    color: rgba(255, 255, 255, .9) !important;
}

.home-testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(93, 189, 210, .3);
}

.home-testimonials-section .testimonial-avatar {
    border-color: rgba(93, 189, 210, .45);
}

.home-testimonials-section .slider-arrow {
    background: #fff;
    color: var(--brand-navy);
}

.home-testimonials-section .slider-arrow:hover {
    background: var(--brand-primary);
    color: #fff;
}

.home-projects-section {
    background: linear-gradient(118deg, rgb(134 140 161 / 70%) 0%, rgb(192 195 202 / 58%) 52%, rgb(167 170 171 / 46%) 100%), url(/assets/legacy/images/Project/Ongoing%20Construction.png) center center / cover no-repeat;

}

.home-projects-section .section-kicker {
    color: #b7ebf6;
}

.home-projects-section .section-kicker::before {
    background: #9be3f2;
}

.home-projects-section .section-title {
    color: #fff;
}

.home-projects-section .btn-danger {
    --bs-btn-bg: #ffffff;
    --bs-btn-color: var(--brand-navy);
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-bg: var(--brand-teal);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-border-color: var(--brand-teal);
    --bs-btn-active-bg: var(--brand-primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-border-color: var(--brand-primary);
}

.home-intro-section,
.why-choose-section,
.home-services-section,
.home-clients-section,
.home-partners-section,
.home-testimonials-section,
.home-projects-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(15, 31, 92, .12);
}

.home-intro-section > .container,
.why-choose-section > .container,
.home-services-section > .container,
.home-clients-section > .container,
.home-partners-section > .container,
.home-testimonials-section > .container,
.home-projects-section > .container {
    position: relative;
    isolation: isolate;
}

.home-intro-section > .container::after,
.why-choose-section > .container::after,
.home-services-section > .container::after,
.home-clients-section > .container::after,
.home-partners-section > .container::after,
.home-testimonials-section > .container::after,
.home-projects-section > .container::after {
    content: "";
    position: absolute;
    top: clamp(.75rem, 1.8vw, 1.2rem);
    right: clamp(.75rem, 2vw, 1.1rem);
    width: min(170px, 24vw);
    height: min(170px, 24vw);
    background: radial-gradient(circle at 100% 0, rgba(74, 168, 188, .18), transparent 68%);
    pointer-events: none;
    z-index: -1;
}

.home-intro-section > .container::before,
.why-choose-section > .container::before,
.home-services-section > .container::before,
.home-clients-section > .container::before,
.home-partners-section > .container::before,
.home-testimonials-section > .container::before,
.home-projects-section > .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(180px, 28vw);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-teal));
}

.home-testimonials-section .section-kicker,
.contact-cta .section-kicker {
    color: var(--brand-teal-soft);
}

.home-testimonials-section .section-kicker::before,
.contact-cta .section-kicker::before {
    background: var(--brand-teal-soft);
}

.home-testimonials-section .section-title {
    color: #fff;
}

.btn-danger {
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-navy);
    --bs-btn-hover-border-color: var(--brand-navy);
    --bs-btn-active-bg: var(--brand-navy-strong);
    --bs-btn-active-border-color: var(--brand-navy-strong);
}

.btn-outline-danger {
    --bs-btn-color: var(--brand-navy);
    --bs-btn-border-color: var(--brand-navy);
    --bs-btn-hover-bg: var(--brand-navy);
    --bs-btn-hover-border-color: var(--brand-navy);
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: var(--brand-navy-strong);
    --bs-btn-active-border-color: var(--brand-navy-strong);
    --bs-btn-active-color: #fff;
}

.btn-cta-home {
    background: #fff;
    color: var(--brand-navy);
    border: 1.5px solid var(--brand-teal);
    padding: .7rem 1.6rem;
    border-radius: 2px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .78rem;
}

.btn-cta-home:hover {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.why-choose-card {
    --card-accent: var(--brand-navy);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .14) 55%, rgba(255, 255, 255, .1) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2.25rem 1.5rem 1.65rem;
    min-height: 240px;
    box-shadow: none;
    transition: border-color .42s ease, transform .3s ease, background .42s ease;
}

.why-choose-grid > div:nth-child(3n + 2) .why-choose-card {
    --card-accent: var(--brand-teal);
}

.why-choose-grid > div:nth-child(3n) .why-choose-card {
    --card-accent: var(--brand-primary);
}

.why-choose-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--card-accent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 3;
}

.why-choose-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--card-accent) 0%, rgba(15, 31, 92, .92) 100%);
    transform: scale(0);
    transform-origin: 0 0;
    transition: transform .56s cubic-bezier(.22, .61, .36, 1);
    z-index: 1;
    pointer-events: none;
}

.why-choose-card:hover {
    border-color: var(--card-accent);
    transform: translateY(-3px);
}

.why-choose-card:hover::after {
    transform: scale(1);
}

.why-choose-icon {
    display: none;
}

.why-choose-card h3 {
    position: relative;
    z-index: 2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: .8rem;
    transition: color .36s ease, transform .36s ease;
}

.why-choose-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: rgba(246, 250, 255, .98);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 1rem;
    line-height: 1.58;
    transition: color .36s ease, transform .36s ease;
}

.why-choose-watermark {
    position: absolute;
    right: 1rem;
    bottom: -1.35rem;
    color: rgba(255, 255, 255, .14);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.9rem;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
    transition: color .36s ease, transform .36s ease;
}

.why-choose-watermark-icon {
    position: absolute;
    right: 1.1rem;
    top: 1.05rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .72);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: color .36s ease, transform .36s ease, background .36s ease, border-color .36s ease;
}

.why-choose-card:hover h3,
.why-choose-card:hover p {
    color: #fff;
}

.why-choose-card:hover h3,
.why-choose-card:hover p {
    transform: translateX(2px);
}

.why-choose-card:hover .why-choose-watermark {
    color: rgba(255, 255, 255, .24);
    transform: translateY(-4px);
}

.why-choose-card:hover .why-choose-watermark-icon {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .52);
    transform: scale(1.07) rotate(-6deg);
}

.whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.62rem;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .26);
    z-index: 1030;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .31);
}

.footer-logo {
    height: 88px;
    max-width: 100%;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #adb4bf;
}

.pagination .page-item.active .page-link {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.pagination .page-link {
    color: var(--brand-primary-dark);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kbzoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@media (max-width: 991.98px) {
    .site-navbar .container {
        min-height: 68px;
    }

    .nav-name {
        display: none;
    }

    .nav-links {
        min-height: 0;
        margin-top: .5rem;
    }

    .navbar .navbar-nav {
        padding-bottom: .45rem;
    }

    .navbar .navbar-nav .nav-link {
        min-height: auto;
        font-size: .72rem;
        padding: .68rem .5rem;
        border-bottom-width: 0;
        border-left: 3px solid transparent;
        border-radius: 2px;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        border-left-color: var(--brand-primary);
        border-bottom-color: transparent;
    }

    .nav-hire {
        display: inline-flex;
        align-self: flex-start;
        margin-left: .5rem;
    }

    .services-menu {
        position: static;
        min-width: auto;
        max-width: 100%;
        width: 100%;
        margin-top: .35rem;
        border-radius: var(--radius-base);
        border-color: rgba(93, 189, 210, .24);
        background: #1a6f80;
        box-shadow: none;
        max-height: 52vh;
        overflow-y: auto;
        display: none;
    }

    .services-parent-row {
        align-items: flex-start;
    }

    .services-parent-link {
        white-space: normal;
        line-height: 1.4;
    }

    .services-dropdown.is-open > .services-menu {
        display: block;
    }

    .services-parent-item .dropdown-submenu {
        position: static;
        min-width: 100%;
        max-width: 100%;
        border: 0;
        border-top: 1px dashed rgba(93, 189, 210, .28);
        border-radius: 0;
        background: transparent;
        padding: .45rem 0 0 .2rem;
        margin-left: .25rem;
        margin-top: .2rem;
        box-shadow: none;
        display: none;
    }

    .services-parent-item.is-open > .dropdown-submenu {
        display: block;
    }

    .services-parent-item:not(.is-open):hover > .dropdown-submenu,
    .services-parent-item:not(.is-open):focus-within > .dropdown-submenu {
        display: none;
    }

    .hero-section {
        min-height: 66vh;
    }

    .hero-section-compact {
        min-height: 44vh;
    }

    .hero-inner {
        padding-top: 6.8rem;
        padding-bottom: 3.4rem;
    }

    .hero-section-compact .hero-inner {
        padding-top: 4.8rem;
        padding-bottom: 2.1rem;
    }

    .hero-h1 {
        font-size: clamp(1.85rem, 5.2vw, 3rem);
    }

    .hero-stats {
        gap: .38rem;
    }

    .hst {
        border-right: 1px solid rgba(255, 255, 255, .15);
        border-radius: 4px;
    }

    .dcon-slider {
        padding-inline: 2rem;
    }

    .blog-list-image {
        height: 205px;
    }

    .blog-list-footer {
        grid-template-columns: 1fr 1fr;
        row-gap: .4rem;
    }

    .blog-list-footer .dropdown {
        justify-self: end;
    }

    .blog-list-footer .blog-list-action:last-child {
        justify-self: end;
    }

    .blog-latest-sidebar {
        position: static;
        top: auto;
    }

    .blog-detail-hero-image {
        max-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .section-block {
        padding: 2.5rem 0;
    }

    .site-navbar .container {
        min-height: 62px;
    }

    .brand-logo {
        height: 31px;
    }

    .nav-badge {
        width: 30px;
        height: 30px;
        font-size: .84rem;
    }

    .hero-section {
        min-height: 58vh;
    }

    .hero-section-compact {
        min-height: 38vh;
    }

    .hero-inner {
        padding: 6.2rem 1rem 2.8rem;
    }

    .hero-section-compact .hero-inner {
        padding-top: 4.2rem;
        padding-bottom: 1.9rem;
    }

    .hero-eyebrow {
        font-size: .58rem;
        letter-spacing: .14em;
        margin-bottom: 1rem;
    }

    .hero-h1 {
        font-size: clamp(1.5rem, 8vw, 2.1rem);
        margin-bottom: .75rem;
        white-space: normal;
    }

    .hero-h1 .italic-sub {
        font-size: .38em;
        letter-spacing: .1em;
    }

    .hero-tagline {
        font-size: .92rem;
        padding-left: .8rem;
        margin-bottom: 1.3rem;
    }

    .hero-stats {
        margin-bottom: 1.3rem;
    }

    .hst {
        flex: 1 1 44%;
        padding: .72rem .8rem;
    }

    .hst-n {
        font-size: 1rem;
    }

    .hst-l {
        font-size: .5rem;
    }

    .section-title {
        font-size: clamp(1.25rem, 6vw, 1.68rem);
    }

    .home-intro-title {
        max-width: 100%;
    }

    .home-intro-lead {
        max-width: 100%;
        font-size: 1.03rem;
    }

    .home-intro-shell {
        padding: 1rem;
    }

    .home-services-subtitle {
        max-width: 100%;
    }

    .home-services-grid .service-card-home .card-img-top {
        height: 214px;
    }

    .home-services-grid .service-card-home .card-body {
        min-height: auto;
    }

    .home-services-grid .service-card-home h3 {
        font-size: 1.28rem;
    }

    .home-intro-media-badge {
        left: .6rem;
        right: .6rem;
        bottom: .6rem;
        padding: .5rem .6rem;
    }

    .home-intro-media-badge strong {
        font-size: .86rem;
    }

    .home-intro-metric {
        padding: .58rem .6rem;
    }

    .home-intro-metric h3 {
        font-size: .82rem;
    }

    .why-choose-subtitle {
        font-size: .98rem;
    }

    .why-choose-card {
        min-height: 190px;
        padding: 2rem 1.1rem 1.35rem;
    }

    .why-choose-watermark-icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1rem;
        right: .82rem;
        top: .82rem;
    }

    .why-choose-watermark {
        font-size: 4.5rem;
        bottom: -1rem;
    }

    .service-card .card-img-top,
    .project-card .card-img-top,
    .project-service-card .card-img-top,
    .about-card .card-img-top,
    .partner-card .card-img-top,
    .service-detail-card .card-img-top {
        height: 192px;
    }

    .project-category-image {
        height: 190px;
    }

    .home-services-grid .service-card-home .card-img-top {
        height: 214px;
    }

    .contact-info-box,
    .contact-form-box,
    .service-intro-box,
    .service-list-box,
    .project-sidebar-box,
    .project-content-box,
    .category-filter {
        padding: 1rem;
    }

    .client-logo-card,
    .partner-logo-card {
        min-height: 146px;
    }

    .slider-arrow {
        width: 1.9rem;
        height: 1.9rem;
    }

    .slider-arrow-prev {
        left: .05rem;
    }

    .slider-arrow-next {
        right: .05rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .service-card .card-body,
    .project-card .card-body,
    .project-service-card .card-body {
        min-height: auto;
    }

    .blog-list-image {
        height: 190px;
    }

    .blog-list-body {
        padding: .85rem .8rem .55rem;
    }

    .blog-list-footer {
        padding: .72rem .8rem .82rem;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .blog-list-footer .dropdown,
    .blog-list-footer .blog-list-action:last-child {
        justify-self: start;
    }

    .blog-detail-hero-inner {
        text-align: left !important;
    }

    .blog-detail-share-icons {
        justify-content: flex-start !important;
    }

    .blog-detail-hero-image {
        max-height: 300px;
    }

    .blog-latest-thumb {
        width: 66px;
        height: 44px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        right: 10px;
        bottom: 10px;
        font-size: 1.45rem;
    }
}

@media (min-width: 1400px) {
    .hero-section {
        min-height: calc(100vh - 68px);
    }

    .hero-section-compact {
        min-height: 56vh;
    }

    .service-card .card-img-top,
    .project-card .card-img-top,
    .project-service-card .card-img-top,
    .about-card .card-img-top,
    .partner-card .card-img-top,
    .service-detail-card .card-img-top {
        height: 236px;
    }
}

/* Feedback Round 2 overrides */
:root {
    --brand-red-bright: #e21d2f;
    --brand-teal-bright: #0d9fb0;
    --brand-navy-deep: #132e66;
}

.site-navbar {
    box-shadow: 0 6px 18px rgba(15, 31, 92, .18);
}

.hero-photo {
    background-position: center center;
    animation: kbzoom 18s ease-in-out infinite alternate;
}

.hero-ov1 {
    background: linear-gradient(100deg, rgba(15, 31, 92, .62) 0%, rgba(15, 31, 92, .42) 46%, rgba(15, 31, 92, .18) 72%, rgba(15, 31, 92, .08) 100%);
}

.hero-h1 {
    text-shadow: 0 10px 24px rgba(5, 15, 42, .35);
}

.hero-tagline {
    color: rgba(255, 255, 255, .88);
    border-left-color: rgba(226, 29, 47, .9);
}

.hero-stats {
    gap: .45rem;
}

.hst {
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
}

.hst:first-child,
.hst:last-child {
    border-radius: 6px;
}

.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    letter-spacing: -.01em;
}

.section-kicker {
    font-size: .72rem;
}

.fade-in-up,
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .62s ease, transform .62s ease;
}

.fade-in-up.is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.image-soft-zoom {
    overflow: hidden;
}

.image-soft-zoom img {
    transition: transform .7s ease;
}

.image-soft-zoom:hover img {
    transform: scale(1.04);
}

.home-intro-shell {
    border-left-color: var(--brand-red-bright);
}

.home-intro-media-badge {
    transition: transform .32s ease, background .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.home-intro-media:hover .home-intro-media-badge,
.home-intro-media:focus-within .home-intro-media-badge {
    transform: translateY(-3px);
    background: rgba(19, 46, 102, .88);
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 10px 22px rgba(10, 20, 50, .24);
}

.home-intro-metric {
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.home-intro-metric::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red-bright), var(--brand-teal-bright), var(--brand-navy-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.home-intro-metric h3,
.home-intro-metric-label {
    transition: color .28s ease, transform .28s ease;
}

.home-intro-metric:hover,
.home-intro-metric:focus-within {
    transform: translateY(-4px);
    border-color: rgba(19, 46, 102, .25);
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    box-shadow: 0 12px 22px rgba(11, 29, 69, .14);
}

.home-intro-metric:hover::before,
.home-intro-metric:focus-within::before {
    transform: scaleX(1);
}

.home-intro-metric:hover .home-intro-metric-label,
.home-intro-metric:focus-within .home-intro-metric-label {
    color: #3a4f80;
    transform: translateY(-1px);
}

.home-intro-metric:hover h3,
.home-intro-metric:focus-within h3 {
    color: #0f326a;
}

.home-intro-metrics .col-6:nth-child(1) .home-intro-metric {
    animation: metricFadeUp .5s ease both .06s;
}

.home-intro-metrics .col-6:nth-child(2) .home-intro-metric {
    animation: metricFadeUp .5s ease both .14s;
}

.home-intro-metrics .col-6:nth-child(3) .home-intro-metric {
    animation: metricFadeUp .5s ease both .22s;
}

.home-intro-metrics .col-6:nth-child(4) .home-intro-metric {
    animation: metricFadeUp .5s ease both .3s;
}

@keyframes metricFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-card::after,
.home-services-grid .service-card-home::before,
.home-projects-grid .project-card-home::before {
    display: none !important;
}

.why-choose-card {
    border-color: rgba(255, 255, 255, .34);
    background: linear-gradient(165deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .12) 100%);
    backdrop-filter: blur(3px);
}

.why-choose-card:hover {
    transform: translateY(-4px);
}

.why-choose-watermark {
    display: none;
}

.home-services-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 0 !important;
    background: linear-gradient(122deg, #132e66 0%, #0d9fb0 50%, #e21d2f 100%);
}

.home-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/optimized/section/Building-1-1280.jpg') center center / cover no-repeat;
    opacity: .22;
    z-index: 0;
}

.home-services-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 58, .46) 0%, rgba(10, 22, 58, .34) 100%);
    z-index: 0;
}

.home-services-section > .container {
    position: relative;
    z-index: 1;
}

.home-services-section .section-title,
.home-services-section .section-kicker,
.home-services-section .home-services-subtitle {
    color: #fff !important;
}

.home-services-section .section-kicker::before {
    background: rgba(255, 255, 255, .65);
}

.home-services-section .btn-outline-danger {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, .72);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-hover-color: #17386c;
}

.service-department-grid {
    display: grid;
    gap: 1rem;
}

.service-department-block {
    background: rgba(10, 26, 68, .34);
    border: 1px solid rgba(193, 214, 247, .18);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 14px 30px rgba(8, 20, 51, .24);
}

.service-department-head {
    border-radius: 10px;
    padding: .85rem 1rem;
    margin-bottom: 1rem;
}

.service-department-head h3 {
    margin: 0;
    font-size: 1.1rem;
}

.service-department-head-consultancy {
    background: linear-gradient(120deg, rgba(13, 159, 176, .92), rgba(60, 168, 190, .88));
    border: 1px solid rgba(197, 247, 255, .48);
    color: #fff;
}

.service-department-head-construction {
    background: linear-gradient(120deg, rgba(19, 46, 102, .95), rgba(37, 76, 152, .88));
    border: 1px solid rgba(199, 220, 255, .44);
    color: #fff;
}

.service-department-head-realestate {
    background: linear-gradient(120deg, rgba(226, 29, 47, .96), rgba(244, 82, 79, .9));
    border: 1px solid rgba(255, 210, 210, .48);
    color: #fff;
}

.service-department-head h3 {
    color: inherit !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .24);
}

.service-card,
.project-card,
.project-service-card,
.about-card,
.partner-card,
.service-detail-card,
.client-logo-card,
.partner-logo-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover,
.project-card:hover,
.project-service-card:hover,
.about-card:hover,
.partner-card:hover,
.service-detail-card:hover,
.client-logo-card:hover,
.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(17, 31, 67, .12) !important;
}

.service-listing-card .card-img-top,
.home-services-grid .service-card-home .card-img-top {
    height: 220px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-color: #d8e2f1;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, var(--brand-primary), var(--brand-teal)) left top / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-primary), var(--brand-teal)) left bottom / 0 2px no-repeat,
        linear-gradient(180deg, var(--brand-primary), var(--brand-teal)) right bottom / 2px 0 no-repeat,
        linear-gradient(90deg, var(--brand-primary), var(--brand-teal)) right top / 0 2px no-repeat;
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 3;
    pointer-events: none;
}

.project-card .card-img-top {
    transition: transform .55s ease, filter .55s ease;
}

.project-card .project-category {
    transition: background .28s ease, color .28s ease, border-color .28s ease, transform .28s ease;
}

.project-card .project-title-link,
.project-card h3,
.project-card .project-card-copy,
.project-card .project-enter-link,
.project-card .btn {
    transition: color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.project-card:hover .card-img-top {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
}

.project-card:hover::before,
.project-card:focus-within::before {
    opacity: 1;
    animation: serviceBorderTrace .78s linear forwards;
}

.project-card:hover .project-category {
    background: var(--brand-teal-bright);
    color: #fff;
    border-color: var(--brand-teal-bright);
    transform: translateY(-2px);
}

.project-card:hover .project-title-link,
.project-card:hover h3 {
    color: #123b78;
    transform: translateX(2px);
}

.project-card:hover .project-enter-link,
.project-card:hover .btn {
    transform: translateY(-1px);
}

.services-page-modern {
    background: transparent;
}

.services-bg-band {
    position: relative;
    isolation: isolate;
    overflow: visible;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.services-bg-band::before {
    display: none;
}

.services-bg-band::after {
    display: none;
}

.services-page-modern .category-filter {
    position: relative;
    padding: clamp(1rem, 2.6vw, 1.65rem);
    border-radius: 12px;
    border: 1px solid rgba(161, 244, 255, .28);
    background: linear-gradient(122deg, #075f7c 0%, #0f849d 56%, #0fa2b6 100%);
    box-shadow: 0 18px 36px rgba(4, 52, 70, .24);
    overflow: hidden;
}

.services-page-modern .category-filter::before {
    content: "";
    position: absolute;
    left: .8rem;
    bottom: .7rem;
    width: 7rem;
    height: 4.4rem;
    background-image: radial-gradient(rgba(166, 245, 255, .42) 1.1px, transparent 1.1px);
    background-size: 10px 10px;
    opacity: .55;
    pointer-events: none;
}

.services-page-modern .category-filter::after {
    content: "";
    position: absolute;
    top: -1.8rem;
    right: -1.8rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 1px solid rgba(166, 245, 255, .24);
    box-shadow:
        0 0 0 22px rgba(166, 245, 255, .1),
        0 0 0 44px rgba(166, 245, 255, .07);
    pointer-events: none;
}

.services-page-modern .services-category-filter {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: .95rem;
}

.services-page-modern .service-category-chip {
    position: relative;
    display: inline-flex;
    flex: 1 1 240px;
    align-items: center;
    justify-content: center;
    gap: .72rem;
    min-height: 4.3rem;
    padding: .78rem 1.25rem;
    border-radius: 22px;
    border: 2px solid rgba(159, 236, 248, .58);
    background: rgba(7, 71, 90, .16);
    color: #e8faff;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, .75rem + .5vw, 1.22rem);
    letter-spacing: .01em;
    transition: transform .24s ease, background .24s ease, border-color .24s ease, color .24s ease, box-shadow .24s ease;
}

.services-page-modern .service-category-chip:hover,
.services-page-modern .service-category-chip:focus-visible {
    color: #ffffff;
    border-color: rgba(216, 252, 255, .9);
    background: rgba(8, 87, 109, .3);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(4, 42, 59, .2);
}

.services-page-modern .service-category-chip.is-active {
    background: #ffffff;
    color: #0d7890;
    border-color: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 24px rgba(5, 49, 66, .24);
}

.services-page-modern .service-category-chip-icon {
    width: 1.85rem;
    height: 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.34rem;
    color: inherit;
    opacity: .98;
}

.services-page-modern .service-category-chip-label {
    white-space: nowrap;
}

.services-page-modern .service-category-chip-check {
    width: 1.9rem;
    height: 1.9rem;
    margin-left: .35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f96aa;
    color: #ffffff;
    font-size: .84rem;
    transform: scale(.86);
    opacity: 0;
    transition: opacity .22s ease, transform .22s ease;
}

.services-page-modern .service-category-chip.is-active .service-category-chip-check {
    opacity: 1;
    transform: scale(1);
}

.services-page-modern .service-category-chip:not(.is-active) .service-category-chip-check {
    width: 0;
    margin-left: 0;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .services-page-modern .category-filter {
        padding: 1rem;
    }

    .services-page-modern .services-category-filter {
        gap: .75rem;
    }

    .services-page-modern .service-category-chip {
        min-height: 3.75rem;
        padding: .68rem .95rem;
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .services-page-modern .service-category-chip {
        width: 100%;
    }
}

.services-bg-band .service-department-panel-head h3,
.services-bg-band .service-category-title {
    color: #ffffff;
}

.services-bg-band .service-department-panel-head p {
    color: rgba(233, 243, 255, .9);
}

.services-bg-band .service-department-panel-head h3 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: .55rem;
    padding: .25rem .7rem .3rem;
    border-radius: 999px;
    background: rgba(13, 30, 64, .7);
    border: 1px solid rgba(233, 243, 255, .5);
    letter-spacing: .01em;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.services-bg-band .service-department-panel-head h3::before {
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(var(--dept-accent-rgb), .98), rgba(var(--dept-accent-rgb), .82));
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .18);
}

.services-bg-band .service-category-title {
    display: flex;
    width: 100%;
    align-items: center;
    padding: .24rem .64rem .28rem;
    border-radius: 999px;
    border-bottom: 0;
    font-size: .86rem;
    font-family: "DM Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
    letter-spacing: .01em;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
    background: rgba(13, 30, 64, .56);
    border: 1px solid rgba(233, 243, 255, .45);
}

.service-department-panel.department-consultancy .service-department-panel-head h3,
.service-department-panel.department-consultancy .service-category-title {
    background: linear-gradient(120deg, rgba(13, 159, 176, .95), rgba(70, 177, 199, .9));
    border-color: rgba(201, 247, 255, .78);
}

.service-department-panel.department-construction .service-department-panel-head h3,
.service-department-panel.department-construction .service-category-title {
    background: linear-gradient(120deg, rgba(19, 46, 102, .96), rgba(39, 79, 155, .92));
    border-color: rgba(203, 222, 255, .8);
}

.service-department-panel.department-realestate .service-department-panel-head h3,
.service-department-panel.department-realestate .service-category-title {
    background: linear-gradient(120deg, rgba(226, 29, 47, .97), rgba(245, 86, 79, .9));
    border-color: rgba(255, 214, 214, .82);
}

.department-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
    max-width: none;
    width: 100%;
    margin-inline: auto;
}

.service-department-panel {
    --dept-accent-rgb: 19, 46, 102;
    --dept-panel-bg-start: #264678;
    --dept-panel-bg-end: #1d3b69;
    --dept-panel-border: #9eb8e6;
    --dept-segment-bg-start: #2f5488;
    --dept-segment-bg-end: #284a79;
    --dept-segment-border: #aac0e6;
    position: relative;
    overflow: hidden;
    background: linear-gradient(156deg, var(--dept-panel-bg-start) 0%, var(--dept-panel-bg-end) 100%);
    border-radius: 0;
    border: 1px solid var(--dept-panel-border);
    padding: 1rem 0;
    box-shadow: 0 14px 24px rgba(9, 24, 61, .26);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.service-department-panel-inner {
    position: relative;
    z-index: 1;
}

.service-department-panel::before,
.service-department-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
}

.service-department-panel::before {
    display: none;
}

.service-department-panel::after {
    background: linear-gradient(
        118deg,
        rgba(var(--dept-accent-rgb), .2) 0%,
        rgba(var(--dept-accent-rgb), .12) 44%,
        rgba(var(--dept-accent-rgb), 0) 75%
    );
    background-size: 180% 180%;
    opacity: 0;
    transition: opacity .34s ease;
}

.service-department-panel-head {
    margin-bottom: 1rem;
}

.service-department-panel-head h3 {
    font-size: 1.35rem;
    margin-bottom: .35rem;
}

.service-department-panel-head p {
    color: rgba(234, 244, 255, .9);
    margin-bottom: 0;
}

.service-department-panel.department-consultancy {
    --dept-accent-rgb: 13, 159, 176;
    --dept-panel-bg-start: #24879a;
    --dept-panel-bg-end: #1b7384;
    --dept-panel-border: #98dbe6;
    --dept-segment-bg-start: #2f95a8;
    --dept-segment-bg-end: #277f8f;
    --dept-segment-border: #a9e2eb;
}

.service-department-panel.department-construction {
    --dept-accent-rgb: 19, 46, 102;
    --dept-panel-bg-start: #224078;
    --dept-panel-bg-end: #183361;
    --dept-panel-border: #9ab4e4;
    --dept-segment-bg-start: #2b4d86;
    --dept-segment-bg-end: #234374;
    --dept-segment-border: #a7bee7;
}

.service-department-panel.department-realestate {
    --dept-accent-rgb: 226, 29, 47;
    --dept-panel-bg-start: #bf2d3c;
    --dept-panel-bg-end: #a92633;
    --dept-panel-border: #ffb2ba;
    --dept-segment-bg-start: #cb3d4b;
    --dept-segment-bg-end: #b0313d;
    --dept-segment-border: #ffc0c7;
}

.service-department-panel.department-consultancy:hover,
.service-department-panel.department-consultancy:focus-within {
    border-color: #c2eef4;
}

.service-department-panel.department-construction:hover,
.service-department-panel.department-construction:focus-within {
    border-color: #bed0f0;
}

.service-department-panel.department-realestate:hover,
.service-department-panel.department-realestate:focus-within {
    border-color: #ffd0d6;
}

.service-department-panel:hover,
.service-department-panel:focus-within,
.service-department-panel:active {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(9, 24, 61, .24);
}

.service-department-panel:hover::after,
.service-department-panel:focus-within::after,
.service-department-panel:active::after {
    opacity: 1;
    animation: deptSurfaceShift 3.2s ease-in-out infinite alternate;
}

.service-category-segment + .service-category-segment {
    margin-top: 1rem;
}

.service-category-segment {
    padding: .95rem;
    /* border: 1px solid var(--dept-segment-border); */
    background: transparent;
    transition: border-color .28s ease;
}

.service-department-panel:hover .service-category-segment,
.service-department-panel:focus-within .service-category-segment,
.service-department-panel:active .service-category-segment {
    border-color: rgba(255, 255, 255, .7);
}

.service-category-title {
    font-size: 1.04rem;
    margin: 0 0 .95rem;
    color: #182b50;
}

@keyframes deptSurfaceShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-department-panel:hover::after,
    .service-department-panel:focus-within::after,
    .service-department-panel:active::after {
        animation: none;
    }
}

.home-clients-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.client-marquee {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.client-marquee-track {
    display: flex;
    gap: .9rem;
    width: max-content;
    animation: clientMarquee 45s linear infinite;
}

.client-marquee .client-logo-card {
    min-width: 220px;
    max-width: 220px;
}

.client-entity-card {
    border-color: #d8e2f2;
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.client-category-block {
    background: #fff;
    border: 1px solid #dbe4f2;
    border-radius: 12px;
    padding: 1rem;
}

.client-category-count {
    display: inline-flex;
    align-items: center;
    padding: .28rem .6rem;
    border-radius: 999px;
    border: 1px solid #c6d5eb;
    background: #f3f8ff;
    color: #25477f;
    font-size: .78rem;
    font-weight: 600;
}

.partner-list-section {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.partner-list-card {
    background: #fff;
}

.career-page-modern,
.contact-page-modern {
    background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
}

.career-page-modern {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(13, 159, 176, .12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(224, 12, 12, .1), transparent 30%),
        linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
}

.career-page-modern::before,
.career-page-modern::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
}

.career-page-modern::before {
    width: 260px;
    height: 260px;
    top: -110px;
    right: -80px;
    background: radial-gradient(circle, rgba(19, 46, 102, .2), rgba(19, 46, 102, 0));
    animation: careerOrbFloatOne 12s ease-in-out infinite alternate;
}

.career-page-modern::after {
    width: 320px;
    height: 320px;
    left: -160px;
    bottom: -190px;
    background: radial-gradient(circle, rgba(13, 159, 176, .2), rgba(13, 159, 176, 0));
    animation: careerOrbFloatTwo 14s ease-in-out infinite alternate;
}

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

.career-intro-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 14px;
    border: 1px solid rgba(19, 46, 102, .14);
    background: linear-gradient(122deg, rgba(19, 46, 102, .96), rgba(13, 159, 176, .9) 52%, rgba(226, 29, 47, .9) 100%);
    background-size: 160% 160%;
    padding: clamp(1.1rem, 2.8vw, 1.8rem);
    box-shadow: 0 16px 32px rgba(19, 46, 102, .24);
    animation: careerSurfaceShift 10s ease-in-out infinite alternate;
}

.career-intro-shell::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -92px;
    right: -76px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: radial-gradient(circle, rgba(255, 255, 255, .22), rgba(255, 255, 255, .02));
    pointer-events: none;
    animation: careerPulseGlow 4.8s ease-in-out infinite;
    z-index: -1;
}

.career-intro-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, .08) 0,
            rgba(255, 255, 255, .08) 2px,
            rgba(255, 255, 255, 0) 2px,
            rgba(255, 255, 255, 0) 10px
        );
    opacity: .25;
}

.career-intro-shell .section-kicker,
.career-intro-shell .section-title,
.career-intro-shell .career-intro-copy {
    color: #fff;
}

.career-intro-shell .section-kicker::before {
    background: rgba(255, 255, 255, .9);
}

.career-intro-copy {
    max-width: 68ch;
    color: rgba(255, 255, 255, .92);
}

.career-intro-badges {
    display: grid;
    gap: .6rem;
}

.career-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .54rem .72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(9, 18, 39, .24);
    color: #fff;
    font-size: .79rem;
    font-weight: 600;
    backdrop-filter: blur(3px);
    animation: careerBadgeFloat 3.2s ease-in-out infinite;
}

.career-intro-badge i {
    color: #d6f8ff;
}

.career-intro-badge:nth-child(2) {
    animation-delay: .3s;
}

.career-intro-badge:nth-child(3) {
    animation-delay: .6s;
}

.career-intro-badge:nth-child(4) {
    animation-delay: .9s;
}

.career-panel-card,
.career-apply-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid #d8e3f3;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--card-shadow);
    padding: 1.2rem;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.career-panel-card::before,
.career-apply-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at var(--career-blob-x, 95%) var(--career-blob-y, 8%), rgba(var(--career-blob-rgb, 13, 159, 176), .16), rgba(var(--career-blob-rgb, 13, 159, 176), 0) 40%),
        linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(244, 249, 255, .96) 100%);
    animation: careerBlobDrift 8s ease-in-out infinite alternate;
}

.career-panel-card::after,
.career-apply-shell::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(226, 29, 47, .9), rgba(13, 159, 176, .9), rgba(19, 46, 102, .9));
    opacity: .85;
}

.career-panel-card:hover,
.career-panel-card:focus-within,
.career-apply-shell:hover,
.career-apply-shell:focus-within {
    transform: translateY(-4px);
    border-color: rgba(19, 46, 102, .24);
    box-shadow: 0 20px 34px rgba(18, 43, 98, .15);
}

.career-article-card {
    --career-blob-rgb: 13, 159, 176;
    --career-blob-x: 88%;
    --career-blob-y: 14%;
    background:
        radial-gradient(circle at 92% 9%, rgba(13, 159, 176, .12), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.career-openings-card {
    --career-blob-rgb: 226, 29, 47;
    --career-blob-x: 92%;
    --career-blob-y: 6%;
}

.career-page-modern .career-panel-card h2,
.career-page-modern .career-panel-card h3,
.career-page-modern .career-apply-shell h3 {
    color: #102b62;
}

.career-page-modern .career-panel-card p,
.career-page-modern .career-apply-shell p,
.career-page-modern .career-position-item p {
    color: #4c5b77;
}

.career-feature-list {
    display: grid;
    gap: .8rem;
}

.career-feature-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .68rem .72rem;
    border-radius: 10px;
    border: 1px solid #dce7f4;
    background: #fff;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.career-feature-item:hover {
    transform: translateX(4px);
    border-color: #bdd3ee;
    box-shadow: 0 10px 18px rgba(19, 46, 102, .08);
}

.career-feature-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, var(--brand-navy), var(--brand-teal));
    flex-shrink: 0;
    transition: transform .26s ease, filter .26s ease;
}

.career-feature-item:hover .career-feature-icon {
    transform: rotate(-6deg) scale(1.08);
    filter: saturate(1.14);
}

.career-feature-item h3 {
    margin: .02rem 0 .24rem;
    font-size: .9rem;
    color: var(--brand-navy);
}

.career-feature-item p {
    margin: 0;
    font-size: .84rem;
    color: #53617a;
}

.career-count-badge {
    display: inline-flex;
    align-items: center;
    padding: .28rem .65rem;
    border-radius: 999px;
    border: 1px solid #c2d3eb;
    background: #f2f7ff;
    color: #2a4e88;
    font-size: .76rem;
    font-weight: 700;
}

.career-position-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #d4deed;
    border-radius: 10px;
    background: #fafcff;
    padding: .86rem .9rem;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.career-position-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(226, 29, 47, .9), rgba(13, 159, 176, .9));
    opacity: .7;
    transition: width .24s ease, opacity .24s ease;
}

.career-position-item:hover {
    border-color: #b5c9e7;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(19, 46, 102, .11);
}

.career-position-item:hover::before {
    width: 6px;
    opacity: 1;
}

.career-position-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, rgba(226, 29, 47, .96), rgba(13, 159, 176, .9));
    flex-shrink: 0;
    transition: transform .26s ease;
}

.career-position-item:hover .career-position-icon {
    transform: translateY(-2px) scale(1.06);
}

.career-employment-badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .54rem;
    border-radius: 999px;
    background: #e8f1ff;
    color: #274c86;
    border: 1px solid #cbddf2;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.career-apply-header {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    padding: .95rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    background:
        radial-gradient(circle at 12% 18%, rgba(74, 168, 188, .28), rgba(74, 168, 188, 0) 42%),
        radial-gradient(circle at 86% 8%, rgba(226, 29, 47, .26), rgba(226, 29, 47, 0) 36%),
        linear-gradient(118deg, rgba(19, 46, 102, .96) 0%, rgba(13, 159, 176, .92) 52%, rgba(226, 29, 47, .9) 100%);
    background-size: 180% 180%;
    box-shadow: 0 12px 24px rgba(19, 46, 102, .22);
    animation: careerSurfaceShift 9s ease-in-out infinite alternate;
}

.career-apply-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, .2) 46%, rgba(255, 255, 255, 0) 66%);
    transform: translateX(-120%);
    animation: careerShineSweep 4.6s ease-in-out infinite;
}

.career-apply-header .section-kicker,
.career-apply-header h2,
.career-apply-header p {
    color: #fff !important;
}

.career-apply-header .section-kicker::before {
    background: #fff;
}

.career-apply-notes {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.career-apply-notes span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    padding: .28rem .62rem;
    border-radius: 999px;
    border: 1px solid rgba(19, 46, 102, .18);
    background: linear-gradient(180deg, #ffffff 0%, #eff5ff 100%);
    color: #223f73;
    font-size: .74rem;
    font-weight: 600;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.career-apply-notes span:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 159, 176, .38);
    box-shadow: 0 8px 14px rgba(19, 46, 102, .12);
}

.career-apply-notes i {
    color: var(--brand-primary);
}

.career-apply-shell .form-control,
.career-apply-shell .form-select {
    border-color: #c4d4ea;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(247, 251, 255, .96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.career-apply-shell .form-control:focus,
.career-apply-shell .form-select:focus {
    border-color: #4aa8bc;
    box-shadow: 0 0 0 .2rem rgba(74, 168, 188, .2);
    background: #fff;
}

.career-apply-shell .form-label {
    color: #1b3264;
    font-weight: 600;
}

.career-apply-shell .text-muted {
    color: #4f5f7b !important;
}

.career-submit-btn {
    min-width: 210px;
    border: 0;
    background: linear-gradient(110deg, #e21d2f 0%, #d70f1e 36%, #0d9fb0 100%);
    box-shadow: 0 10px 20px rgba(226, 29, 47, .26);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.career-submit-btn:hover,
.career-submit-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(19, 46, 102, .26);
    filter: saturate(1.08);
}

.career-apply-shell {
    --career-blob-rgb: 19, 46, 102;
    --career-blob-x: 94%;
    --career-blob-y: 8%;
    border-color: rgba(19, 46, 102, .2);
    background:
        radial-gradient(circle at 94% 8%, rgba(13, 159, 176, .14), rgba(13, 159, 176, 0) 38%),
        radial-gradient(circle at 8% 100%, rgba(226, 29, 47, .1), rgba(226, 29, 47, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

@keyframes careerSurfaceShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes careerPulseGlow {
    0% {
        transform: scale(1);
        opacity: .82;
    }

    100% {
        transform: scale(1.12);
        opacity: .32;
    }
}

@keyframes careerBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes careerBlobDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-10px, 8px, 0);
    }
}

@keyframes careerShineSweep {
    0% {
        transform: translateX(-120%);
    }

    60%, 100% {
        transform: translateX(120%);
    }
}

@keyframes careerOrbFloatOne {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-24px, 20px, 0);
    }
}

@keyframes careerOrbFloatTwo {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(26px, -18px, 0);
    }
}

@media (max-width: 991.98px) {
    .career-intro-shell {
        padding: 1rem;
    }

    .career-intro-shell::before,
    .career-page-modern::before,
    .career-page-modern::after {
        display: none;
    }

    .career-apply-header::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .career-panel-card,
    .career-apply-shell {
        padding: 1rem;
    }

    .career-intro-badge {
        font-size: .74rem;
    }

    .career-apply-notes span {
        width: 100%;
    }

    .career-submit-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .career-page-modern::before,
    .career-page-modern::after,
    .career-intro-shell,
    .career-intro-shell::before,
    .career-intro-badge,
    .career-panel-card::before,
    .career-apply-shell::before,
    .career-apply-header,
    .career-apply-header::after {
        animation: none !important;
    }
}

.contact-top-visual {
    background:
        linear-gradient(120deg, rgba(19, 46, 102, .95), rgba(13, 159, 176, .82)),
        url('/assets/optimized/section/Top-1280.jpg') center center / cover no-repeat;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-visual-overlay-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(19, 46, 102, .15);
    border-radius: 12px;
    padding: 1rem;
}

.contact-visual-overlay-card h3 {
    font-size: 1.1rem;
    margin-bottom: .4rem;
    color: #142c5e;
}

.contact-visual-overlay-card p {
    color: #4a556e;
    margin-bottom: .7rem;
}

.about-overview-section {
    background:
        radial-gradient(circle at 14% 22%, rgba(226, 29, 47, .1), transparent 35%),
        radial-gradient(circle at 84% 10%, rgba(13, 159, 176, .12), transparent 33%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-story-section {
    border-top: 1px solid rgba(19, 46, 102, .08);
}

.about-story-content {
    border-left-width: 4px;
    background: rgba(255, 255, 255, .94);
}

.about-story-media {
    border-width: 3px;
}

.project-category-top-band {
    background:
        radial-gradient(980px 340px at 15% 0%, rgba(13, 159, 176, .22) 0%, rgba(13, 159, 176, 0) 58%),
        radial-gradient(760px 280px at 85% 10%, rgba(226, 29, 47, .2) 0%, rgba(226, 29, 47, 0) 62%),
        linear-gradient(112deg, #132e66 0%, #163a8a 48%, #132e66 100%);
}

.site-footer {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%);
    color: #223658;
    border-top: 1px solid #d9e3f2;
}

.footer-ribbon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 8px;
}

.footer-ribbon-stripe {
    height: 100%;
}

.stripe-red {
    background: var(--brand-red-bright);
}

.stripe-teal {
    background: var(--brand-teal-bright);
}

.stripe-navy {
    background: var(--brand-navy-deep);
}

.footer-heading {
    color: #17386c;
}

.footer-copy,
.footer-copy-soft {
    color: #425573;
}

.footer-bottom {
    border-top: 1px solid #d3dff0;
    color: #435976;
    background: linear-gradient(90deg, rgba(226, 29, 47, .07), rgba(13, 159, 176, .07), rgba(19, 46, 102, .07));
}

.footer-bottom a {
    color: #173e7a;
}

@keyframes clientMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - .45rem));
    }
}

@media (max-width: 991.98px) {
    .contact-top-visual {
        grid-template-columns: 1fr;
    }

    .client-marquee .client-logo-card {
        min-width: 180px;
        max-width: 180px;
    }

    .service-listing-card .card-img-top,
    .home-services-grid .service-card-home .card-img-top {
        height: 205px;
    }
}

/* Career Page Premium UI (Scoped) */
body.career-page-scope {
    --career-radius-xl: 24px;
    --career-radius-lg: 18px;
    --career-shadow-soft: 0 10px 40px rgba(10, 40, 100, .08);
    --career-shadow-hover: 0 20px 44px rgba(10, 40, 100, .14);
}

body.career-page-scope .hero-section.career-hero-premium {
    min-height: clamp(510px, 64vh, 560px);
    align-items: center;
}

body.career-page-scope .hero-section.career-hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(7, 22, 71, .78), rgba(7, 22, 71, .55));
}

body.career-page-scope .hero-section.career-hero-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 22%, rgba(93, 189, 210, .18), transparent 40%),
        radial-gradient(circle at 16% 80%, rgba(226, 29, 47, .1), transparent 34%);
    animation: careerPremiumGlowShift 10s ease-in-out infinite alternate;
}

body.career-page-scope .hero-section.career-hero-premium .hero-photo {
    animation: careerPremiumHeroZoom 30s ease-in-out infinite alternate;
    transform-origin: center center;
}

body.career-page-scope .hero-section.career-hero-premium .hero-ov1 {
    z-index: 1;
    background: linear-gradient(110deg, rgba(7, 22, 71, .78) 0%, rgba(7, 22, 71, .58) 46%, rgba(7, 22, 71, .24) 76%, rgba(7, 22, 71, .12) 100%);
}

body.career-page-scope .hero-section.career-hero-premium .hero-inner {
    z-index: 2;
    min-height: clamp(510px, 64vh, 560px);
    padding: clamp(5.4rem, 8.3vw, 7.2rem) 2.25rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.career-page-scope .hero-section.career-hero-premium .hero-h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.3rem, 5.1vw, 4.3rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.02em;
    margin-bottom: .9rem;
    max-width: 16ch;
    text-shadow: 0 14px 34px rgba(7, 18, 47, .45);
}

body.career-page-scope .hero-section.career-hero-premium .hero-tagline {
    font-size: clamp(1.02rem, 1.65vw, 1.18rem);
    color: rgba(238, 245, 255, .93);
    border-left: 4px solid rgba(226, 29, 47, .9);
    padding: .25rem 0 .25rem .95rem;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    line-height: 1.72;
    max-width: 56ch;
    text-shadow: 0 8px 18px rgba(7, 18, 47, .35);
}

body.career-page-scope .career-page-modern {
    padding-top: clamp(3.2rem, 5vw, 4.8rem) !important;
    padding-bottom: clamp(3.2rem, 5vw, 5rem) !important;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, .08), transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(226, 29, 47, .08), transparent 34%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

body.career-page-scope .career-page-modern::before {
    filter: blur(1px);
}

body.career-page-scope .career-intro-shell {
    border-radius: var(--career-radius-xl);
    border-color: rgba(255, 255, 255, .18);
    padding: clamp(1.4rem, 2.8vw, 2rem);
    box-shadow: 0 20px 46px rgba(12, 34, 88, .25);
}

body.career-page-scope .career-intro-copy {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .95);
}

body.career-page-scope .career-intro-badges {
    gap: .78rem;
}

body.career-page-scope .career-intro-badge {
    border-radius: 999px;
    padding: .58rem .82rem;
    font-size: .82rem;
    background: linear-gradient(145deg, rgba(6, 16, 42, .34), rgba(11, 32, 74, .18));
}

body.career-page-scope .career-intro-badge i {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
}

body.career-page-scope .career-intro-badge:hover {
    transform: translateX(6px);
    border-color: rgba(93, 189, 210, .55);
    box-shadow: 0 14px 24px rgba(7, 24, 68, .3);
}

body.career-page-scope .career-panel-card,
body.career-page-scope .career-apply-shell {
    border-radius: var(--career-radius-xl);
    border-color: rgba(15, 31, 92, .14);
    box-shadow: var(--career-shadow-soft);
    padding: clamp(1.2rem, 2.2vw, 1.55rem);
}

body.career-page-scope .career-panel-card:hover,
body.career-page-scope .career-panel-card:focus-within,
body.career-page-scope .career-apply-shell:hover,
body.career-page-scope .career-apply-shell:focus-within {
    box-shadow: var(--career-shadow-hover);
}

body.career-page-scope .career-page-modern .section-title {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.16;
    letter-spacing: -.02em;
}

body.career-page-scope .career-page-modern h2 {
    font-size: clamp(1.44rem, 2.1vw, 2rem);
    font-weight: 700;
    letter-spacing: -.01em;
}

body.career-page-scope .career-page-modern p {
    line-height: 1.72;
}

body.career-page-scope .career-feature-item,
body.career-page-scope .career-position-item {
    border-radius: var(--career-radius-lg);
}

body.career-page-scope .career-position-item {
    padding: 1rem 1rem 1rem 1.06rem;
}

body.career-page-scope .career-position-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 12px;
}

body.career-page-scope .career-employment-badge {
    background: linear-gradient(180deg, #ecf4ff, #e0eeff);
    color: #1a3e72;
    font-size: .68rem;
}

body.career-page-scope .career-apply-header {
    border-radius: 18px;
    padding: 1.12rem 1.16rem;
}

body.career-page-scope .career-apply-shell .form-label {
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

body.career-page-scope .career-apply-shell .form-control,
body.career-page-scope .career-apply-shell .form-select {
    min-height: 52px;
    border-radius: 12px;
    padding: .66rem .86rem;
    background: #f8fbff;
    border: 1px solid #d8e3f0;
}

body.career-page-scope .career-apply-shell textarea.form-control {
    min-height: 150px;
    padding-top: .82rem;
}

body.career-page-scope .career-apply-shell .form-control:focus,
body.career-page-scope .career-apply-shell .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, .15);
}

body.career-page-scope .career-file-input {
    min-height: 66px;
    border-style: dashed !important;
    border-width: 1.5px !important;
    border-color: #bbd2ec !important;
    background: linear-gradient(180deg, #f8fcff 0%, #f2f8ff 100%) !important;
    padding: .72rem .8rem !important;
}

body.career-page-scope .career-file-input::file-selector-button {
    border: 0;
    border-radius: 10px;
    padding: .48rem .84rem;
    margin-right: .8rem;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(95deg, var(--brand-navy), var(--brand-teal));
}

body.career-page-scope .career-submit-btn {
    min-height: 52px;
    padding: .72rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
    box-shadow: 0 12px 24px rgba(226, 29, 47, .26), 0 0 0 1px rgba(255, 255, 255, .22) inset;
}

body.career-page-scope .career-submit-btn:hover,
body.career-page-scope .career-submit-btn:focus {
    transform: translateY(-2px);
}

body.career-page-scope .career-submit-btn.is-loading {
    pointer-events: none;
    opacity: .88;
    filter: saturate(.9);
}

body.career-page-scope .site-footer {
    margin-top: 0 !important;
    padding-top: .4rem;
    background: linear-gradient(180deg, #112a61 0%, #0f1f5c 100%);
    border-top: 0;
    color: rgba(232, 241, 255, .88);
    position: relative;
}

body.career-page-scope .site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-teal), var(--brand-navy-strong));
}

body.career-page-scope .footer-bottom {
    padding: .85rem 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(90deg, rgba(226, 29, 47, .14), rgba(13, 159, 176, .12), rgba(19, 46, 102, .14));
    color: rgba(231, 240, 255, .88);
}

body.career-page-scope .footer-bottom small {
    font-size: .82rem;
    letter-spacing: .01em;
}

body.career-page-scope .footer-bottom a {
    color: #d5ecff;
}

body.career-page-scope .footer-bottom a:hover {
    color: #fff;
}

@keyframes careerPremiumGlowShift {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-10px, 8px, 0);
    }
}

@keyframes careerPremiumHeroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.04);
    }
}

@media (max-width: 991.98px) {
    body.career-page-scope .hero-section.career-hero-premium {
        min-height: 440px;
    }

    body.career-page-scope .hero-section.career-hero-premium .hero-inner {
        min-height: 440px;
        padding: 5.1rem 1.3rem 1.9rem;
    }

}

@media (max-width: 575.98px) {
    body.career-page-scope .hero-section.career-hero-premium {
        min-height: 390px;
    }

    body.career-page-scope .hero-section.career-hero-premium .hero-inner {
        min-height: 390px;
    }

    body.career-page-scope .hero-section.career-hero-premium .hero-h1 {
        font-size: clamp(1.85rem, 9.4vw, 2.45rem);
        max-width: 13.5ch;
    }

    body.career-page-scope .hero-section.career-hero-premium .hero-tagline {
        font-size: .96rem;
        max-width: 36ch;
    }

    body.career-page-scope .career-intro-shell,
    body.career-page-scope .career-panel-card,
    body.career-page-scope .career-apply-shell {
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.career-page-scope .hero-section.career-hero-premium::after,
    body.career-page-scope .hero-section.career-hero-premium .hero-photo,
    body.career-page-scope .career-intro-shell,
    body.career-page-scope .career-intro-badge {
        animation: none !important;
    }
}

.service-gallery-media {
    position: relative;
}

.service-gallery-trigger {
    position: absolute;
    inset: auto 0 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    border: 0;
    padding: .58rem .75rem;
    background: linear-gradient(180deg, rgba(7, 10, 18, .08), rgba(7, 10, 18, .8));
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: opacity .2s ease;
    opacity: 0;
}

.service-detail-gallery-trigger {
    border: 0;
    background: transparent;
    display: block;
    width: 100%;
    padding: 0;
    cursor: zoom-in;
}

.service-card:hover .service-gallery-trigger,
.service-card:focus-within .service-gallery-trigger {
    opacity: 1;
}

.service-gallery-modal .modal-dialog {
    max-width: min(1100px, 94vw);
}

.service-gallery-modal .modal-content {
    background: transparent;
    border: 0;
    border-radius: 1rem;
    padding: .5rem;
    box-shadow: none;
}

.service-gallery-modal {
    --bs-backdrop-bg: #020718;
    --bs-backdrop-opacity: .88;
}

.service-gallery-close {
    position: absolute;
    right: .95rem;
    top: .95rem;
    z-index: 2;
    filter: invert(1);
    opacity: .95;
    background: rgba(4, 8, 20, .58);
    border-radius: 999px;
}

.service-gallery-close:hover {
    opacity: 1;
}

.gallery-preview-image {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: .7rem;
    background: #0c1323;
}

.gallery-preview-caption {
    color: #e6edf7;
    text-align: center;
    margin-top: .75rem;
    font-size: .95rem;
    letter-spacing: .01em;
}
