:root {
    --brand: #294d94;
    --brand-dark: #1f3d78;
    --text: #050505;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

.header-container {
    width: min(100% - 48px, 1200px);
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 20;
    background: #fff;
    box-shadow: 0 5px 24px rgba(10, 29, 62, .08);
}

.contact-bar {
    color: #fff;
    background: var(--brand-dark);
}

.contact-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-left, .contact-right, .contact-item, .phone-item {
    display: flex;
    align-items: center;
}

.contact-left { gap: 25px; }
.contact-right { gap: 30px; }
.contact-item, .phone-item {
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: .94;
    transition: opacity .2s ease;
}

.contact-item:hover, .phone-item:hover { opacity: 1; }

.pin-icon {
    width: 12px;
    height: 15px;
    position: relative;
    flex: 0 0 12px;
    border-radius: 50% 50% 50% 0;
    background: #fff;
    transform: rotate(-45deg);
}

.pin-icon::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    background: var(--brand-dark);
}

.mail-icon {
    width: 17px;
    height: 12px;
    position: relative;
    flex: 0 0 17px;
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
}

.mail-icon::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    top: -7px;
    left: 3px;
    border: 1px solid var(--brand-dark);
    transform: rotate(45deg);
}

.flag {
    display: inline-block;
    width: 27px;
    height: 17px;
    flex: 0 0 27px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.3);
}

.flag-uae {
    background: linear-gradient(to bottom, #00843d 0 33.33%, #fff 33.33% 66.66%, #000 66.66%);
    position: relative;
}

.flag-uae::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 7px; background: #f00; }

.flag-bahrain {
    background: linear-gradient(135deg, transparent 0) left/100% 100%, #ce1126;
    position: relative;
    overflow: hidden;
}

.flag-bahrain::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 9px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 55% 10%, 100% 20%, 55% 30%, 100% 40%, 55% 50%, 100% 60%, 55% 70%, 100% 80%, 55% 90%, 100% 100%, 0 100%);
}

.main-nav { background: #fff; }

.nav-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    transition: opacity .2s ease;
}

.brand:hover { opacity: .9; }
.brand img {
    display: block;
    width: 205px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.nav-links { display: flex; align-items: center; gap: 33px; font-size: 15px; font-weight: 600; }
.nav-links a { position: relative; transition: color .2s ease; }
.nav-links > a:not(.contact-button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--brand);
    transition: right .2s ease;
}
.nav-links > a:not(.contact-button):hover::after { right: 0; }
.nav-links a:hover { color: var(--brand); }
.nav-links .contact-button {
    margin-left: 5px;
    padding: 12px 23px;
    border-radius: 4px;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 7px 16px rgba(41,77,148,.2);
    font-size: 15px;
    font-weight: 600;
}
.nav-links .contact-button:hover { color: white; background: var(--brand-dark); }

.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 1px solid #dce3ef; border-radius: 4px; background: #fff; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--brand-dark); }

.hero-slider {
    position: relative;
    height: clamp(510px, 37vw, 710px);
    min-height: 510px;
    overflow: hidden;
    color: #fff;
    background: #06152c;
}

.slides, .slide { position: absolute; inset: 0; }

.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .75s ease, visibility .75s ease;
}

.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 10, 24, .42) 0%, rgba(2, 10, 24, .08) 55%, transparent 78%);
}

.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slide-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(6.5vw, calc((100% - 1200px) / 2));
    width: min(560px, 42vw);
    transform: translateY(-50%);
}

.slide-kicker {
    display: block;
    margin-bottom: 16px;
    color: #90b7ff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.slide h1, .slide h2 {
    margin: 0 0 20px;
    max-width: 680px;
    font-size: clamp(39px, 4vw, 66px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
}

.slide p { margin: 0 0 30px; max-width: 550px; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.87); }

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,.75);
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease;
}

.slide-cta:hover { background: var(--brand); border-color: var(--brand); }

.slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 48px;
    height: 48px;
    padding: 0 0 5px;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    color: #fff;
    background: rgba(4,16,38,.35);
    font: 400 38px/1 Arial, sans-serif;
    cursor: pointer;
    transition: background .2s ease;
}

.slider-arrow:hover { background: var(--brand); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 25px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.48);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.slider-dots button.is-active { width: 30px; border-radius: 8px; background: #fff; }

.services-marquee {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    min-height: 70px;
    overflow: hidden;
    color: #fff;
    background: #102b5c;
    border-top: 1px solid rgba(255,255,255,.14);
}

.marquee-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 max(30px, calc((100vw - 1200px) / 2 + 24px)) 0 max(24px, calc((100vw - 1200px) / 2));
    color: var(--brand-dark);
    background: #fff;
    box-shadow: 10px 0 25px rgba(1,12,32,.18);
}

.marquee-label::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 21px;
    height: 100%;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.marquee-label span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-viewport { display: flex; min-width: 0; overflow: hidden; }

.marquee-track {
    display: flex;
    width: max-content;
    animation: service-marquee 42s linear infinite;
    will-change: transform;
}

.services-marquee:hover .marquee-track,
.services-marquee:focus-within .marquee-track { animation-play-state: paused; }

.marquee-group { display: flex; flex-shrink: 0; align-items: center; }

.marquee-group a {
    padding: 23px 25px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease;
}

.marquee-group a:hover { color: #7fdcff; }
.marquee-group .range-link { color: #7fdcff; font-weight: 700; }
.marquee-group .range-link span { margin-left: 7px; }

.marquee-separator {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    transform: rotate(45deg);
    background: #20acd9;
}

@keyframes service-marquee {
    to { transform: translateX(-50%); }
}

.about-section {
    padding: 110px 24px 0;
    overflow: hidden;
    background: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
    width: min(100%, 1200px);
    margin: 0 auto;
}

.about-visual {
    position: relative;
    min-height: 560px;
}

.about-visual::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 125px;
    height: 125px;
    border-top: 4px solid #20acd9;
    border-left: 4px solid #20acd9;
}

.about-visual img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: 63% center;
}

.about-stamp {
    position: absolute;
    right: -30px;
    bottom: 35px;
    display: flex;
    width: 180px;
    min-height: 145px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: var(--brand);
    border-bottom: 5px solid #20acd9;
    box-shadow: 0 18px 40px rgba(8,33,77,.22);
}

.about-stamp strong { font-size: 25px; line-height: 1.15; }
.about-stamp span { margin-top: 7px; font-size: 12px; line-height: 1.5; text-transform: uppercase; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-eyebrow::before { content: ""; width: 34px; height: 2px; background: #20acd9; }

.about-content h2 {
    margin: 0 0 23px;
    color: #10254a;
   font-size: clamp(38px, 4vw, 44px);
    line-height: 1.13;
    letter-spacing: 0;
}

.about-content p { margin: 0 0 20px; color: #596579; font-size: 15px; line-height: 1.85; }
.about-content .about-lead { color: #243b62; font-size: 18px; line-height: 1.7; }

.about-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0 34px;
    padding-top: 27px;
    border-top: 1px solid #dfe5ee;
}

.capability-item { display: flex; align-items: flex-start; gap: 14px; }
.capability-icon { color: #20acd9; font-size: 12px; font-weight: 700; padding-top: 3px; }
.capability-item strong { display: block; margin-bottom: 6px; color: #10254a; font-size: 14px; }
.capability-item div span { display: block; color: #737e8e; font-size: 12px; line-height: 1.6; }

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 7px;
    color: var(--brand);
    border-bottom: 2px solid #20acd9;
    font-size: 14px;
    font-weight: 700;
}

.about-link span { font-size: 20px; transition: transform .2s ease; }
.about-link:hover span { transform: translateX(5px); }

.about-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(100%, 1200px);
    margin: 90px auto 0;
    background: #f3f7fc;
    border-top: 3px solid var(--brand);
}

.about-metrics div { padding: 28px 20px; text-align: center; border-right: 1px solid #dce5f0; }
.about-metrics div:last-child { border-right: 0; }
.about-metrics strong { display: block; color: var(--brand); font-size: 30px; line-height: 1.2; }
.about-metrics span { display: block; margin-top: 6px; color: #526077; font-size: 11px; font-weight: 600; text-transform: uppercase; }

.service-showcase { padding: 115px 24px; background: #f4f7fb; }

.service-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 70px;
    width: min(100%, 1200px);
    margin: 0 auto 52px;
}

.service-heading h2 { margin: 0; color: #10254a; font-size: clamp(39px, 4.3vw, 58px); line-height: 1.12; letter-spacing: 0; }
.service-heading p { margin: 0 0 7px; color: #637087; font-size: 15px; line-height: 1.8; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; width: min(100%, 1200px); margin: 0 auto; }

.service-card { min-width: 0; overflow: hidden; background: #fff; border-bottom: 3px solid transparent; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #20acd9; box-shadow: 0 18px 40px rgba(16,37,74,.11); }
.service-image { position: relative; display: block; height: 240px; overflow: hidden; background: #dce5f0; }
.service-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-number { position: absolute; right: 0; bottom: 0; display: grid; width: 52px; height: 52px; place-items: center; color: #fff; background: var(--brand); font-size: 12px; font-weight: 700; }
.service-body { padding: 25px 26px 28px; }
.service-type { display: block; margin-bottom: 9px; color: #168fb6; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.service-body h3 { margin: 0 0 12px; color: #10254a; font-size: 21px; line-height: 1.35; }
.service-body h3 a:hover { color: var(--brand); }
.service-body p { min-height: 68px; margin: 0 0 20px; color: #697589; font-size: 13px; line-height: 1.7; }
.service-read { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); font-size: 12px; font-weight: 700; }
.service-read span { font-size: 17px; transition: transform .2s ease; }
.service-read:hover span { transform: translateX(5px); }

.service-featured { grid-column: span 2; display: grid; grid-template-columns: 1.25fr .75fr; }
.service-featured .service-image { height: 100%; min-height: 390px; }
.service-featured .service-body { display: flex; padding: 38px; flex-direction: column; justify-content: center; }
.service-featured .service-body h3 { font-size: 30px; }
.service-featured .service-body p { min-height: 0; }

.service-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; width: min(100%, 1200px); margin: 46px auto 0; padding-top: 25px; border-top: 1px solid #d6deea; }
.service-footer p { margin: 0; color: #4f5d73; font-size: 14px; }
.service-footer a { display: inline-flex; gap: 13px; color: var(--brand); font-size: 13px; font-weight: 700; }

.testimonial-section { padding: 110px 0 105px; overflow: hidden; color: #fff; background: #0b2347; }
.testimonial-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; width: min(100% - 48px,1200px); margin: 0 auto 52px; }
.testimonial-heading .section-eyebrow { color: #6bd1ef; }
.testimonial-heading h2 { margin: 0; max-width: 720px; font-size: clamp(38px,4vw,50px); line-height: 1.13; letter-spacing: 0; }
.testimonial-heading > p { margin: 0 0 6px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.8; }
.testimonial-carousel { width: min(100%,1440px); margin: 0 auto; }
.testimonial-carousel .owl-stage { display: flex; }
.testimonial-carousel .owl-item { display: flex; opacity: .42; transition: opacity .35s ease; }
.testimonial-carousel .owl-item.active { opacity: 1; }
.testimonial-item { position: relative; display: flex; min-height: 350px; width: 100%; padding: 34px 36px; flex-direction: column; background: #12305c; border-top: 3px solid #20acd9; }
.testimonial-top { display: flex; align-items: center; justify-content: space-between; }
.testimonial-top span { color: #6bd1ef; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.testimonial-top strong { color: rgba(255,255,255,.16); font-size: 30px; }
.testimonial-quote { margin: 28px 0 13px; color: #20acd9; font-size: 24px; }
.testimonial-item blockquote { margin: 0 0 30px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.8; }
.testimonial-person { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.11); }
.testimonial-person > .client-photo { display: block; width: 58px; height: 58px; flex: 0 0 58px; background-color: #d5dce4; background-image: url('../images/testimonial-clients.png'); background-repeat: no-repeat; background-size: 700% auto; border: 3px solid rgba(107,209,239,.9); border-radius: 50%; box-shadow: 0 5px 16px rgba(0,0,0,.2); }
.client-photo-1 { background-position: 0% 50%; }
.client-photo-2 { background-position: 16.666% 50%; }
.client-photo-3 { background-position: 33.333% 50%; }
.client-photo-4 { background-position: 50% 50%; }
.client-photo-5 { background-position: 66.666% 50%; }
.client-photo-6 { background-position: 83.333% 50%; }
.client-photo-7 { background-position: 100% 50%; }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-person strong { font-size: 12px; }
.testimonial-person small { margin-top: 3px; color: rgba(255,255,255,.48); font-size: 9px; }
.testimonial-controls { display: flex; align-items: center; justify-content: space-between; width: min(100% - 48px,1200px); margin: 38px auto 0; }
.testimonial-counter { display: flex; align-items: baseline; gap: 7px; }
.testimonial-counter strong { color: #6bd1ef; font-size: 24px; }
.testimonial-counter span { color: rgba(255,255,255,.35); font-size: 11px; }
.testimonial-nav { display: flex; gap: 9px; }
.testimonial-nav button { width: 44px; height: 44px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.25); cursor: pointer; transition: background .2s ease,border-color .2s ease; }
.testimonial-nav button:hover { background: #20acd9; border-color: #20acd9; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.contact-section { padding: 115px 24px; background: #fff; }
.contact-shell { display: grid; grid-template-columns: .82fr 1.18fr; width: min(100%, 1200px); margin: 0 auto; box-shadow: 0 24px 70px rgba(16,37,74,.13); }

.contact-details { position: relative; padding: 58px 48px; overflow: hidden; color: #fff; background: #102b5c; }
.contact-details::after { content: ""; position: absolute; right: -75px; bottom: -75px; width: 190px; height: 190px; border: 28px solid rgba(32,172,217,.13); border-radius: 50%; }
.contact-eyebrow { display: block; margin-bottom: 18px; color: #71d2f1; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.contact-details h2 { margin: 0 0 20px; font-size: clamp(34px, 3.3vw, 47px); line-height: 1.14; letter-spacing: 0; }
.contact-details > p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.8; }
.detail-list { margin: 38px 0; border-top: 1px solid rgba(255,255,255,.15); }
.detail-item { display: flex; align-items: flex-start; gap: 17px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.detail-mark { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; color: #72d3f2; border: 1px solid rgba(114,211,242,.5); font-size: 9px; font-weight: 700; }
.detail-item small, .detail-item strong { display: block; }
.detail-item small { margin-bottom: 5px; color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; }
.detail-item strong { font-size: 13px; line-height: 1.65; font-weight: 500; }
.contact-note { position: relative; z-index: 1; padding-left: 17px; border-left: 3px solid #20acd9; }
.contact-note strong { font-size: 12px; }
.contact-note p { margin: 6px 0 0; color: rgba(255,255,255,.63); font-size: 11px; line-height: 1.6; }

.contact-form-wrap { padding: 57px 58px; background: #fff; }
.form-heading span { color: var(--brand); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.form-heading h3 { margin: 9px 0 7px; color: #10254a; font-size: 29px; line-height: 1.25; }
.form-heading p { margin: 0; color: #8993a3; font-size: 11px; }
.enquiry-form { margin-top: 35px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.form-field { display: block; min-width: 0; }
.form-field > span:first-child { display: block; margin-bottom: 8px; color: #43516a; font-size: 11px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-width: 0; padding: 13px 0; border: 0; border-bottom: 1px solid #cdd6e2; border-radius: 0; outline: none; color: #10254a; background: #fff; font: 400 13px/1.5 "Poppins", Arial, sans-serif; transition: border-color .2s ease; }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #20acd9; }
.form-field-wide { grid-column: 1 / -1; }
.phone-input { display: flex; align-items: center; border-bottom: 1px solid #cdd6e2; }
.phone-input:focus-within { border-color: #20acd9; }
.phone-input b { padding-right: 11px; color: var(--brand); border-right: 1px solid #d8e0e9; font-size: 12px; }
.phone-input input { padding-left: 11px; border-bottom: 0; }
.consent-field { display: flex; align-items: center; gap: 9px; margin-top: 21px; color: #697589; font-size: 10px; }
.consent-field input { width: 15px; height: 15px; accent-color: var(--brand); }
.form-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.form-actions button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 48px; padding: 0 24px; border: 0; border-radius: 3px; color: #fff; background: var(--brand); box-shadow: 0 9px 22px rgba(41,77,148,.22); font: 600 13px "Poppins", Arial, sans-serif; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.form-actions button:hover { background: var(--brand-dark); transform: translateY(-2px); }
.form-actions button span { font-size: 18px; }
.form-status { margin: 0; color: #287a51; font-size: 11px; line-height: 1.5; }

.site-footer { color: #fff; background: #071a36; }

.footer-cta { padding: 0 24px; background: var(--brand); }
.footer-cta-inner { display: flex; min-height: 190px; align-items: center; justify-content: space-between; gap: 60px; width: min(100%,1200px); margin: 0 auto; }
.footer-cta-inner > div { max-width: 760px; }
.footer-cta-inner > div > span { display: block; margin-bottom: 11px; color: #87ddf6; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.footer-cta h2 { margin: 0; font-size: clamp(28px,3vw,42px); line-height: 1.18; letter-spacing: 0; }
.footer-cta a { display: inline-flex; min-height: 50px; padding: 0 22px; flex: 0 0 auto; align-items: center; gap: 16px; color: #10254a; background: #fff; font-size: 12px; font-weight: 700; transition: color .2s ease, background .2s ease; }
.footer-cta a:hover { color: #fff; background: #10254a; }
.footer-cta a span { font-size: 18px; }

.footer-main { padding: 78px 24px 64px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1.45fr .7fr 1.1fr; gap: clamp(35px,5vw,72px); width: min(100%,1200px); margin: 0 auto; }
.footer-logo { display: inline-block; padding: 6px 9px 5px; background: #fff; }
.footer-logo img { display: block; width: 175px; height: 58px; object-fit: contain; }
.footer-brand > p { margin: 24px 0; color: rgba(255,255,255,.59); font-size: 12px; line-height: 1.8; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 23px; }
.footer-socials a { display: grid; width: 34px; height: 34px; place-items: center; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.16); font-size: 13px; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.footer-socials a:hover, .footer-socials a:focus-visible { color: #fff; background: #20acd9; border-color: #20acd9; transform: translateY(-3px); outline: none; }
.footer-trust { display: flex; flex-direction: column; gap: 7px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: 10px; }

.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h3 { position: relative; margin: 0 0 15px; padding-bottom: 12px; color: #fff; font-size: 13px; }
.footer-column h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: #20acd9; }
.footer-column > a, .footer-service-links a { color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; transition: color .2s ease, transform .2s ease; }
.footer-column > a:hover, .footer-service-links a:hover { color: #78d8f5; transform: translateX(3px); }
.footer-service-links {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.footer-service-links a {
    display: grid;
    min-height: 43px;
    padding: 10px 0;
    grid-template-columns: 14px 1fr;
    align-items: start;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    text-decoration: none;
}

.footer-service-links a i {
    padding-top: 3px;
    color: #20acd9;
    font-size: 8px;
    transition: transform .2s ease;
}

.footer-service-links a span {
    line-height: 1.45;
}

.footer-service-links a:hover i {
    transform: translateX(3px);
}

.footer-contact { gap: 18px; }
.footer-contact-item small { display: block; margin-bottom: 5px; color: #65cce9; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.footer-contact-item a, .footer-contact-item span { display: block; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.7; }
.footer-contact .footer-direction { display: inline-flex; align-items: center; gap: 10px; margin-top: 3px; padding-bottom: 5px; color: #fff; border-bottom: 1px solid #20acd9; font-weight: 700; }

.footer-bottom { padding: 0 24px; background: #041125; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom > div { position: relative; display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 30px; width: min(100%,1200px); margin: 0 auto; padding-right: 60px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; }
.footer-bottom > div > span { color: rgba(255,255,255,.35); font-size: 9px; text-transform: uppercase; }
.back-to-top { position: absolute; right: 0; display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--brand); font-size: 18px; transition: background .2s ease, transform .2s ease; }
.back-to-top:hover { background: #20acd9; transform: translateY(-3px); }

html { scroll-behavior: smooth; }

.whatsapp-img {
    position: fixed;
    z-index: 100;
    left: 24px;
    bottom: 24px;
}

.whatsapp-img a {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    background: #25d366;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0,0,0,.24);
    font-size: 31px;
    transition: transform .2s ease, background .2s ease;
}

.whatsapp-img a:hover { background: #1ebd5a; transform: translateY(-4px); }

.tawk-min-container { position: fixed; z-index: 100; right: 24px; bottom: 24px; }
.tawk-chat-button { position: relative; display: grid; width: 58px; height: 58px; padding: 0; place-items: center; color: #fff; background: var(--brand); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.25); font-size: 24px; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.tawk-chat-button:hover { background: #20acd9; transform: translateY(-4px); }
.tawk-chat-button:focus-visible { outline: 3px solid rgba(32,172,217,.35); outline-offset: 3px; }
.tawk-notification { position: absolute; top: -3px; right: -2px; display: grid; width: 20px; height: 20px; place-items: center; color: #fff; background: #e52b3d; border: 2px solid #fff; border-radius: 50%; font-size: 9px; font-weight: 700; }

body.popup-open { overflow: hidden; }
.enquiry-popup { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 24px; place-items: center; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.enquiry-popup.is-visible { opacity: 1; visibility: visible; }
.popup-backdrop { position: absolute; inset: 0; background: rgba(1,10,25,.78); backdrop-filter: blur(5px); }
.popup-dialog { position: relative; width: min(100%,1030px); max-height: calc(100vh - 48px); overflow-x: hidden; overflow-y: auto; color: #fff; background: #102b5c; border: 1px solid rgba(113,210,241,.42); box-shadow: 0 30px 90px rgba(0,0,0,.42); scrollbar-width: none; -ms-overflow-style: none; transform: translateY(18px) scale(.985); transition: transform .3s ease; }
.popup-dialog::-webkit-scrollbar { display: none; width: 0; height: 0; }
.enquiry-popup.is-visible .popup-dialog { transform: none; }
.popup-close { position: absolute; z-index: 4; top: 14px; right: 14px; display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-size: 17px; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.popup-close:hover { background: #20acd9; transform: rotate(90deg); }
.popup-main { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); }
.popup-intro { min-width: 0; padding: 38px 34px 32px; overflow: hidden; background: linear-gradient(135deg,#183d70,#0a2347); }
.popup-eyebrow, .popup-form-kicker { display: block; margin-bottom: 13px; color: #77d7f4; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.popup-intro h2 { margin: 0 0 14px; max-width: 460px; font-size: clamp(28px,2.7vw,37px); line-height: 1.13; letter-spacing: 0; }
.popup-intro > p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.popup-review-carousel { width: 100%; min-width: 0; margin: 23px 0 18px; overflow: hidden; }
.popup-review-carousel .owl-stage-outer { width: 100%; overflow: hidden; }
.popup-review-carousel .owl-stage { display: flex; }
.popup-review-carousel .owl-item { display: flex; min-width: 0; }
.popup-review-slide { position: relative; min-height: 154px; padding: 18px 20px 16px; border: 1px solid rgba(255,255,255,.17); border-left: 3px solid #20acd9; }
.popup-review-slide > i { position: absolute; top: 18px; right: 20px; color: rgba(113,210,241,.25); font-size: 28px; }
.popup-review-slide > p { margin: 0 35px 17px 0; color: rgba(255,255,255,.83); font-size: 11px; line-height: 1.65; }
.popup-review-person { display: flex; align-items: center; gap: 10px; }
.popup-review-person strong, .popup-review-person small { display: block; }
.popup-review-person strong { font-size: 11px; }
.popup-review-person small { margin-top: 2px; color: rgba(255,255,255,.5); font-size: 8px; }
.popup-review-photo { display: block; width: 38px; height: 38px; flex: 0 0 38px; background-image: url('../images/testimonial-clients.png'); background-repeat: no-repeat; background-size: 700% auto; border: 2px solid rgba(107,209,239,.8); border-radius: 50%; }
.popup-review-photo-1 { background-position: 0 50%; }
.popup-review-photo-2 { background-position: 16.666% 50%; }
.popup-review-photo-3 { background-position: 83.333% 50%; }
.popup-review-carousel .owl-dots { display: flex; gap: 6px; margin-top: 10px; justify-content: center; }
.popup-review-carousel .owl-dot span { display: block; width: 6px; height: 6px; background: rgba(255,255,255,.28); border-radius: 50%; transition: width .2s ease,background .2s ease; }
.popup-review-carousel .owl-dot.active span { width: 20px; background: #6bd1ef; border-radius: 5px; }
.popup-highlights { display: grid; grid-template-columns: repeat(3,max-content); align-items: center; justify-content: space-between; gap: 8px; }
.popup-highlights span { color: rgba(255,255,255,.67); font-size: 9px; white-space: nowrap; }
.popup-highlights i { margin-right: 5px; color: #62d2ef; }

.popup-form-panel { min-width: 0; padding: 38px 38px 30px; color: #10254a; background: #f2f7fd; }
.popup-form-panel h3 { margin: 0 0 19px; color: #10254a; font-size: 23px; }
.popup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.popup-fields label > span:first-child { display: block; margin-bottom: 6px; color: #5b6880; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.popup-fields input, .popup-fields select, .popup-fields textarea { width: 100%; min-width: 0; padding: 12px 13px; color: #10254a; background: #fff; border: 1px solid #d4dfec; border-radius: 3px; outline: none; font: 400 11px/1.5 "Poppins",Arial,sans-serif; }
.popup-fields input:focus, .popup-fields select:focus, .popup-fields textarea:focus { border-color: #20acd9; box-shadow: 0 0 0 2px rgba(32,172,217,.1); }
.popup-fields textarea { resize: vertical; }
.popup-wide { grid-column: 1/-1; }
.popup-phone { display: flex; align-items: center; background: #fff; border: 1px solid #d4dfec; }
.popup-phone b { padding: 0 11px; color: var(--brand); border-right: 1px solid #d4dfec; font-size: 11px; }
.popup-phone input { border: 0; }
.popup-response { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 12px 14px; color: #174d67; background: #dff6fc; font-size: 10px; }
.popup-response i { color: #1599bd; font-size: 16px; }
.popup-submit-row { display: flex; align-items: center; gap: 15px; margin-top: 18px; }
.popup-submit-row button { display: inline-flex; min-height: 43px; padding: 0 18px; align-items: center; gap: 14px; color: #fff; background: var(--brand); border: 0; border-radius: 3px; font: 600 11px "Poppins",Arial,sans-serif; cursor: pointer; }
.popup-submit-row button:hover { background: var(--brand-dark); }
.popup-form-status { margin: 0; color: #287a51; font-size: 9px; line-height: 1.4; }
.popup-form-status.is-error { color: #b42318; }
.popup-submit-row button:disabled { opacity: .6; cursor: wait; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.popup-services { display: grid; grid-template-columns: max-content minmax(0,1fr); min-height: 54px; align-items: center; background: #061a37; overflow: hidden; }
.popup-services > strong { position: relative; z-index: 2; display: flex; height: 100%; padding: 0 27px; align-items: center; color: #10254a; background: #77d7f4; font-size: 10px; text-transform: uppercase; }
.popup-marquee-window { min-width: 0; overflow: hidden; }
.popup-marquee-track { display: flex; width: max-content; animation: popup-marquee 26s linear infinite; }
.popup-marquee-track > div { display: flex; flex-shrink: 0; align-items: center; }
.popup-marquee-track span { padding: 0 22px; color: rgba(255,255,255,.7); font-size: 10px; white-space: nowrap; }
.popup-marquee-track i { width: 4px; height: 4px; flex: 0 0 4px; transform: rotate(45deg); background: #20acd9; }
.popup-services:hover .popup-marquee-track { animation-play-state: paused; }
@keyframes popup-marquee { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
    .contact-inner { padding-block: 7px; align-items: center; }
    .contact-left, .contact-right { gap: 12px; }
    .contact-left .contact-item:first-child { display: none; }
    .nav-links { gap: 20px; font-size: 14px; }
    .nav-links .contact-button { padding: 11px 17px; font-size: 14px; }
    .about-container { grid-template-columns: 1fr 1fr; gap: 55px; }
    .about-stamp { right: -18px; }
    .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .service-featured { grid-column: span 2; }
    .contact-details { padding: 48px 38px; }
    .contact-form-wrap { padding: 48px 42px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
    .header-container { width: min(100% - 30px, 1200px); }
    .contact-inner { min-height: 39px; gap: 12px; }
    .contact-item, .phone-item { font-size: 12px; }
    .nav-inner { min-height: 84px; position: relative; }
    .brand img { width: 168px; height: 58px; }
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        z-index: 10;
        top: 100%;
        left: -15px;
        right: -15px;
        padding: 10px 24px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: white;
        border-top: 1px solid #eee;
        box-shadow: 0 8px 18px rgba(0,0,0,.1);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 12px 0; }
    .nav-links > a:not(.contact-button)::after { display: none; }
    .nav-links .contact-button { margin: 8px 0 0; text-align: center; }
    .hero-slider { height: 560px; min-height: 560px; }
    .slide::after { background: linear-gradient(90deg, rgba(2,10,24,.86), rgba(2,10,24,.38)); }
    .slide img { object-position: 62% center; }
    .slide-content { left: 30px; right: 30px; width: auto; }
    .slide h1, .slide h2 { font-size: 39px; }
    .slide p { font-size: 16px; line-height: 1.6; }
    .slider-arrow { top: auto; bottom: 14px; width: 40px; height: 40px; transform: none; font-size: 31px; }
    .slider-prev { left: 16px; }
    .slider-next { right: 16px; }
    .slider-dots { bottom: 29px; }
    .services-marquee { min-height: 60px; grid-template-columns: max-content minmax(0,1fr); }
    .marquee-label { padding: 0 18px 0 15px; }
    .marquee-label::after { right: -14px; width: 15px; }
    .marquee-label span { font-size: 10px; }
    .marquee-group a { padding: 19px 19px; font-size: 12px; }
    .about-section { padding: 75px 20px 0; }
    .about-container { grid-template-columns: 1fr; gap: 52px; }
    .about-visual, .about-visual img { min-height: 430px; height: 430px; }
    .about-stamp { right: 18px; bottom: -25px; width: 155px; min-height: 118px; padding: 18px; }
    .about-stamp strong { font-size: 21px; }
    .about-content h2 { font-size: 39px; }
    .about-metrics { grid-template-columns: 1fr 1fr; margin-top: 65px; }
    .about-metrics div:nth-child(2) { border-right: 0; }
    .about-metrics div:nth-child(-n+2) { border-bottom: 1px solid #dce5f0; }
    .service-showcase { padding: 80px 20px; }
    .service-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
    .service-heading h2 { font-size: 39px; }
    .service-featured { display: block; }
    .service-featured .service-image { height: 270px; min-height: 0; }
    .service-featured .service-body { padding: 28px 26px; }
    .testimonial-section { padding: 80px 0; }
    .testimonial-heading { grid-template-columns: 1fr; gap: 20px; width: min(100% - 40px,1200px); }
    .testimonial-heading h2 { font-size: 39px; }
    .testimonial-controls { width: calc(100% - 40px); }
    .contact-section { padding: 80px 20px; }
    .contact-shell { grid-template-columns: 1fr; }
    .contact-details, .contact-form-wrap { padding: 45px 35px; }
    .footer-cta-inner { min-height: 230px; padding: 40px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 26px; }
    .footer-main { padding-top: 60px; }
    .footer-grid { gap: 50px 35px; }
    .enquiry-popup { padding: 12px; }
    .popup-dialog { max-height: calc(100vh - 24px); }
    .popup-main { grid-template-columns: 1fr; }
    .popup-intro { padding: 40px 28px 32px; }
    .popup-review-carousel { margin-block: 24px 18px; }
    .popup-highlights { margin-top: 22px; }
    .popup-form-panel { padding: 35px 28px 30px; }
}

@media (max-width: 480px) {
    .contact-inner { align-items: center; padding-block: 6px; }
    .contact-left { display: none; }
    .contact-right { width: 100%; flex-direction: row; justify-content: space-between; }
    .contact-right { gap: 4px; }
    .contact-item, .phone-item { gap: 6px; font-size: 10px; }
    .hero-slider { height: 520px; min-height: 520px; }
    .slide-content { left: 22px; right: 22px; }
    .slide-kicker { margin-bottom: 12px; font-size: 12px; }
    .slide h1, .slide h2 { margin-bottom: 16px; font-size: 33px; }
    .slide p { margin-bottom: 24px; font-size: 14px; }
    .slide-cta { padding: 12px 17px; font-size: 14px; }
    .about-section { padding-top: 60px; }
    .about-visual, .about-visual img { min-height: 350px; height: 350px; }
    .about-visual::before { top: -10px; left: -10px; width: 85px; height: 85px; }
    .about-content h2 { font-size: 33px; }
    .about-content .about-lead { font-size: 16px; }
    .about-capabilities { grid-template-columns: 1fr; gap: 20px; }
    .about-metrics div { padding: 22px 10px; }
    .about-metrics strong { font-size: 25px; }
    .about-metrics span { font-size: 9px; }
    .service-showcase { padding: 65px 18px; }
    .service-heading h2 { font-size: 33px; }
    .service-grid { grid-template-columns: 1fr; gap: 22px; }
    .service-featured { grid-column: auto; }
    .service-image, .service-featured .service-image { height: 230px; }
    .service-body p { min-height: 0; }
    .service-footer { align-items: flex-start; flex-direction: column; }
    .testimonial-section { padding: 65px 0; }
    .testimonial-heading { width: calc(100% - 36px); margin-bottom: 35px; }
    .testimonial-heading h2 { font-size: 32px; }
    .testimonial-item { min-height: 365px; padding: 28px 25px; }
    .testimonial-item blockquote { font-size: 14px; }
    .testimonial-controls { width: calc(100% - 36px); }
    .contact-section { padding: 65px 16px; }
    .contact-details, .contact-form-wrap { padding: 36px 23px; }
    .contact-details h2 { font-size: 32px; }
    .form-heading h3 { font-size: 24px; }
    .form-grid { grid-template-columns: 1fr; gap: 19px; }
    .form-field-wide { grid-column: auto; }
    .form-actions { align-items: flex-start; flex-direction: column; }
    .form-actions button { width: 100%; }
    .footer-cta { padding-inline: 20px; }
    .footer-cta h2 { font-size: 28px; }
    .footer-main { padding: 55px 20px 45px; }
    .footer-grid { grid-template-columns: 1fr; gap: 45px; }
    .footer-brand > p { max-width: 340px; }
    .footer-service-links { gap: 0 18px; }
    .footer-bottom { padding-inline: 20px; }
    .footer-bottom > div { min-height: 105px; padding: 18px 50px 18px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
    .back-to-top { top: 50%; transform: translateY(-50%); }
    .back-to-top:hover { transform: translateY(calc(-50% - 3px)); }
    .whatsapp-img { left: 15px; bottom: 15px; }
    .whatsapp-img a { width: 52px; height: 52px; font-size: 28px; }
    .tawk-min-container { right: 15px; bottom: 15px; }
    .tawk-chat-button { width: 52px; height: 52px; font-size: 21px; }
    .popup-intro { padding: 38px 20px 28px; }
    .popup-intro h2 { font-size: 28px; }
    .popup-intro > p { font-size: 11px; }
    .popup-highlights { grid-template-columns: 1fr; justify-content: start; }
    .popup-form-panel { padding: 30px 20px 27px; }
    .popup-form-panel h3 { font-size: 22px; }
    .popup-fields { grid-template-columns: 1fr; }
    .popup-wide { grid-column: auto; }
    .popup-services { grid-template-columns: 1fr; }
    .popup-services > strong { display: none; }
    .popup-marquee-track { min-height: 52px; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    .slide { transition: none; }
    .marquee-track { animation-play-state: paused; }
    .popup-marquee-track { animation-play-state: paused; }
}

/* Header services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown > a i {
    font-size: 9px;
    transition: transform .2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 22px);
    left: 50%;
    display: grid;
    width: 310px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border-top: 3px solid var(--brand);
    box-shadow: 0 18px 45px rgba(12, 35, 59, .16);
    transform: translate(-50%, 10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 25px;
}

.nav-dropdown-menu a {
    padding: 11px 13px;
    color: #334354;
    border-bottom: 1px solid #edf0f3;
    font-size: 12px;
    font-weight: 500;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a:hover {
    color: var(--brand);
    background: #f7f9fb;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover > a i,
.nav-dropdown:focus-within > a i {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        justify-content: space-between;
        padding: 12px 0;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-height: none;
        padding: 5px 0 5px 16px;
        visibility: visible;
        opacity: 1;
        background: #f7f9fb;
        border: 0;
        box-shadow: none;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 9px 12px;
        font-size: 11px;
    }
}

/* Shared redesign: benefits and industries on service-detail pages */
body .detail-page .detail-benefits {
    position: relative;
    padding: 120px 0 105px;
    overflow: hidden;
    color: #172536;
    background: #f5f3ee;
}

body .detail-page .detail-benefits::before {
    content: "VALUE";
    position: absolute;
    top: 25px;
    right: -25px;
    color: rgba(16,36,59,.035);
    font-size: clamp(120px,18vw,260px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -10px;
    pointer-events: none;
}

body .detail-page .detail-benefits .detail-container {
    position: relative;
}

body .detail-page .detail-benefit-heading {
    display: grid;
    max-width: none;
    margin-bottom: 65px;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: end;
}

body .detail-page .detail-benefit-heading .section-eyebrow {
    align-self: start;
    color: #294d94;
}

body .detail-page .detail-benefit-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #10243b;
    font-size: clamp(38px,4.8vw,60px);
    line-height: 1.1;
}

body .detail-page .detail-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 70px;
    background: transparent;
    border: 0;
}

body .detail-page .detail-benefit-grid div {
    display: grid;
    min-height: 125px;
    padding: 27px 0;
    grid-template-columns: 38px 42px 1fr;
    align-items: center;
    gap: 12px;
    color: #253748;
    background: transparent;
    border-top: 1px solid #cfd5d9;
    font-size: 14px;
}

body .detail-page .detail-benefit-grid div:nth-last-child(-n+2) {
    border-bottom: 1px solid #cfd5d9;
}

body .detail-page .detail-benefit-grid b {
    color: #a3abb2;
    font-size: 10px;
}

body .detail-page .detail-benefit-grid i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    background: #294d94;
    border-radius: 50%;
    font-size: 11px;
}

body .detail-page .detail-benefit-grid span {
    max-width: 390px;
    font-weight: 600;
    line-height: 1.55;
}

body .detail-page .detail-industries {
    display: grid;
    margin-top: 100px;
    padding-top: 55px;
    grid-template-columns: .7fr 1.3fr;
    gap: 75px;
    border-top: 1px solid #cfd5d9;
}

body .detail-page .detail-industries-heading {
    display: block;
    margin: 0;
}

body .detail-page .detail-industries-heading span {
    display: flex;
    padding: 0;
    align-items: center;
    gap: 12px;
    color: #294d94;
    border: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

body .detail-page .detail-industries-heading span::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

body .detail-page .detail-industries-heading h3 {
    max-width: 430px;
    margin: 17px 0 0;
    color: #10243b;
    font-size: clamp(28px,3.5vw,43px);
    line-height: 1.17;
}

body .detail-page .detail-industries-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
}

body .detail-page .detail-industries-grid article {
    position: relative;
    display: flex;
    min-height: 175px;
    padding: 20px 16px;
    overflow: visible;
    flex-direction: column;
    justify-content: flex-end;
    background: transparent;
    border: 0;
    border-left: 1px solid #cfd5d9;
    transition: color .2s ease;
}

body .detail-page .detail-industries-grid article:last-child {
    border-right: 1px solid #cfd5d9;
}

body .detail-page .detail-industries-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background: #294d94;
    transition: height .3s ease;
}

body .detail-page .detail-industries-grid article:hover {
    transform: none;
    border-color: #cfd5d9;
}

body .detail-page .detail-industries-grid article:hover::before {
    height: 100%;
}

body .detail-page .detail-industries-grid b {
    position: static;
    order: 1;
    margin-bottom: auto;
    color: #a3abb2;
    font-size: 10px;
}

body .detail-page .detail-industries-grid i {
    display: block;
    order: 2;
    margin: 0 0 20px;
    color: #294d94;
    font-size: 19px;
}

body .detail-page .detail-industries-grid strong {
    order: 3;
    margin: 0;
    color: #10243b;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 900px) {
    body .detail-page .detail-benefit-heading,
    body .detail-page .detail-industries {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body .detail-page .detail-industries-grid {
        grid-template-columns: repeat(3,1fr);
    }

    body .detail-page .detail-industries-grid article {
        border-bottom: 1px solid #cfd5d9;
    }
}

@media (max-width: 600px) {
    body .detail-page .detail-benefits {
        padding: 75px 0 70px;
    }

    body .detail-page .detail-benefits::before {
        display: none;
    }

    body .detail-page .detail-benefit-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    body .detail-page .detail-benefit-grid div:nth-last-child(2) {
        border-bottom: 0;
    }

    body .detail-page .detail-benefit-grid div:last-child {
        border-bottom: 1px solid #cfd5d9;
    }

    body .detail-page .detail-industries {
        margin-top: 70px;
    }

    body .detail-page .detail-industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    body .detail-page .detail-industries-grid article {
        min-height: 145px;
    }
}

/* Final visual composition for shared service benefits */
body .detail-page .detail-benefits {
    padding: 115px 0 0;
    color: #172536;
    background: #fff;
}

body .detail-page .detail-benefits::before {
    display: none;
}

.detail-page .benefit-showcase-heading {
    display: grid;
    grid-template-columns: 1fr .62fr;
    gap: 90px;
    margin-bottom: 60px;
    align-items: end;
}

.detail-page .benefit-showcase-heading h2 {
    margin: 9px 0 0;
    color: #10243b;
    font-size: clamp(43px,5vw,65px);
    line-height: 1.03;
    letter-spacing: -1.4px;
}

.detail-page .benefit-showcase-heading > p {
    margin: 0 0 6px;
    color: #687580;
    font-size: 14px;
    line-height: 1.85;
}

.detail-page .benefit-showcase {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 560px;
    background: #0b243b;
}

.detail-page .benefit-showcase-visual {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
}

.detail-page .benefit-showcase-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(4,20,35,.72));
}

.detail-page .benefit-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.detail-page .benefit-showcase:hover .benefit-showcase-visual img {
    transform: scale(1.035);
}

.detail-page .benefit-showcase-visual figcaption {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    padding-top: 22px;
    align-items: center;
    gap: 16px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.32);
}

.detail-page .benefit-showcase-visual figcaption > i {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: #10243b;
    background: #20acd9;
    font-size: 18px;
}

.detail-page .benefit-showcase-visual figcaption span,
.detail-page .benefit-showcase-visual figcaption small,
.detail-page .benefit-showcase-visual figcaption strong {
    display: block;
}

.detail-page .benefit-showcase-visual figcaption small {
    margin-bottom: 4px;
    color: rgba(255,255,255,.6);
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.detail-page .benefit-showcase-visual figcaption strong {
    font-size: 16px;
}

body .detail-page .benefit-showcase .detail-benefit-grid {
    display: flex;
    padding: 55px 50px;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    color: #fff;
    background: #0b243b;
}

body .detail-page .benefit-showcase .detail-benefit-grid div {
    display: grid;
    min-height: 105px;
    padding: 24px 0;
    grid-template-columns: 42px 1fr 30px;
    align-items: center;
    gap: 14px;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

body .detail-page .benefit-showcase .detail-benefit-grid div:first-child {
    border-top: 1px solid rgba(255,255,255,.15);
}

body .detail-page .benefit-showcase .detail-benefit-grid b {
    color: #20acd9;
    font-size: 10px;
}

body .detail-page .benefit-showcase .detail-benefit-grid span {
    color: rgba(255,255,255,.87);
    font-size: 14px;
    font-weight: 500;
}

body .detail-page .benefit-showcase .detail-benefit-grid i {
    display: block;
    width: auto;
    height: auto;
    color: rgba(255,255,255,.35);
    background: transparent;
    border-radius: 0;
    font-size: 11px;
    transition: color .2s ease, transform .2s ease;
}

body .detail-page .benefit-showcase .detail-benefit-grid div:hover i {
    color: #20acd9;
    transform: translateX(5px);
}

.detail-page .industry-ribbon {
    margin-top: 100px;
    padding: 75px 0 85px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%,rgba(32,172,217,.13),transparent 22%),
        #071a2d;
}

.detail-page .industry-ribbon .detail-container {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
    align-items: end;
}

.detail-page .industry-ribbon-heading > span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #20acd9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.detail-page .industry-ribbon-heading > span::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.detail-page .industry-ribbon-heading h3 {
    max-width: 420px;
    margin: 17px 0 0;
    color: #fff;
    font-size: clamp(30px,3.6vw,46px);
    line-height: 1.14;
}

.detail-page .industry-ribbon-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
}

.detail-page .industry-ribbon-list > span {
    display: flex;
    min-height: 150px;
    padding: 15px 20px;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    border-left: 1px solid rgba(255,255,255,.16);
}

.detail-page .industry-ribbon-list > span:last-child {
    border-right: 1px solid rgba(255,255,255,.16);
}

.detail-page .industry-ribbon-list b {
    margin-bottom: auto;
    color: rgba(255,255,255,.27);
    font-size: 10px;
}

.detail-page .industry-ribbon-list i {
    margin-bottom: 19px;
    color: #20acd9;
    font-size: 18px;
}

.detail-page .industry-ribbon-list strong {
    color: #fff;
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .detail-page .benefit-showcase-heading,
    .detail-page .industry-ribbon .detail-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .detail-page .benefit-showcase {
        grid-template-columns: 1fr;
    }

    .detail-page .benefit-showcase-visual {
        min-height: 470px;
    }

    .detail-page .industry-ribbon-list {
        flex-wrap: wrap;
    }

    .detail-page .industry-ribbon-list > span {
        min-width: 33.333%;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }
}

@media (max-width: 600px) {
    body .detail-page .detail-benefits {
        padding-top: 75px;
    }

    .detail-page .benefit-showcase-heading {
        margin-bottom: 40px;
    }

    .detail-page .benefit-showcase-visual {
        min-height: 360px;
    }

    body .detail-page .benefit-showcase .detail-benefit-grid {
        padding: 35px 22px;
    }

    .detail-page .industry-ribbon {
        margin-top: 65px;
        padding: 60px 0;
    }

    .detail-page .industry-ribbon-list > span {
        min-width: 50%;
        min-height: 125px;
    }
}

/* Reliable, unique service hero image layer */
body .detail-page .detail-hero {
    isolation: isolate;
    background: #071a2d;
}

.detail-page .detail-hero-bg {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body .detail-page .detail-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg,rgba(4,21,38,.99) 0%,rgba(4,21,38,.93) 40%,rgba(4,21,38,.52) 68%,rgba(4,21,38,.13) 100%);
}

body .detail-page .detail-hero::after {
    z-index: 3;
}

.detail-page .detail-hero-grid {
    z-index: 2;
}

.detail-page .detail-hero-shape {
    z-index: 1;
}

/* Benefits visual uses a graphic composition instead of repeating page photography */
.detail-page .benefit-showcase-visual {
    display: flex;
    padding: clamp(35px,5vw,70px);
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 75% 25%,rgba(32,172,217,.18),transparent 24%),
        linear-gradient(135deg,#102f4d,#071a2d);
}

.detail-page .benefit-showcase-visual::after {
    background:
        linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(135deg,transparent 5%,#000 55%,transparent 100%);
}

.detail-page .benefit-visual-mark {
    position: relative;
    z-index: 1;
    width: clamp(170px,18vw,250px);
    height: clamp(170px,18vw,250px);
    margin: 0 auto 45px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 50%;
}

.detail-page .benefit-visual-mark::before,
.detail-page .benefit-visual-mark::after,
.detail-page .benefit-visual-mark > span {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.detail-page .benefit-visual-mark::before {
    inset: 28px;
}

.detail-page .benefit-visual-mark::after {
    inset: 56px;
}

.detail-page .benefit-visual-mark > span {
    inset: 50%;
    width: 6px;
    height: 6px;
    background: #20acd9;
    border: 0;
    box-shadow: 0 0 0 12px rgba(32,172,217,.13),0 0 35px rgba(32,172,217,.65);
    transform: translate(-50%,-50%);
}

.detail-page .benefit-visual-mark > i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 31px;
    transform: translate(-50%,-50%);
}

.detail-page .benefit-visual-copy {
    position: relative;
    z-index: 1;
    max-width: 430px;
    margin-bottom: 95px;
}

.detail-page .benefit-visual-copy small,
.detail-page .benefit-visual-copy strong {
    display: block;
}

.detail-page .benefit-visual-copy small {
    margin-bottom: 9px;
    color: #20acd9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.detail-page .benefit-visual-copy strong {
    color: #fff;
    font-size: clamp(20px,2vw,28px);
    line-height: 1.35;
}

@media (max-width: 600px) {
    .detail-page .detail-hero-bg {
        object-position: 65% center;
    }

    .detail-page .benefit-visual-copy {
        margin-bottom: 90px;
    }
}

/* Balanced top and bottom alignment for all service-detail heroes */
body .detail-page .detail-hero {
    min-height: 690px;
    padding: 80px 0 85px;
    align-items: center;
}

body .detail-page .detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 315px;
    gap: 75px;
    align-items: center;
}

body .detail-page .detail-hero-copy {
    max-width: 850px;
    padding: 20px 0;
}

body .detail-page .detail-hero h1 {
    max-width: 790px;
    margin-bottom: 24px;
    font-size: clamp(47px,5vw,70px);
    line-height: 1.04;
    letter-spacing: -1.7px;
}

body .detail-page .detail-hero-copy > p {
    max-width: 720px;
    color: rgba(255,255,255,.73);
    font-size: 15px;
    line-height: 1.85;
}

body .detail-page .detail-hero-panel {
    align-self: center;
    padding: 30px 28px;
    border-left: 3px solid #20acd9;
    background: rgba(5,24,43,.86);
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}

body .detail-page .detail-hero-panel > span {
    color: #20acd9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

body .detail-page .detail-hero-panel > strong {
    margin: 12px 0 12px;
    color: #fff;
    font-size: 22px;
    line-height: 1.32;
}

body .detail-page .detail-hero-panel > p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}

body .detail-page .detail-hero-panel > small {
    display: flex;
    padding-top: 16px;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.64);
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 9px;
    letter-spacing: 1px;
}

body .detail-page .detail-hero-panel > small i {
    color: #20acd9;
}

body .detail-page .detail-hero-shape {
    top: -245px;
    right: -155px;
}

@media (max-width: 900px) {
    body .detail-page .detail-hero {
        min-height: 760px;
        padding: 75px 0 80px;
    }

    body .detail-page .detail-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    body .detail-page .detail-hero-panel {
        width: min(100%,430px);
    }
}

@media (max-width: 560px) {
    body .detail-page .detail-hero {
        min-height: 720px;
        padding: 60px 0 65px;
    }

    body .detail-page .detail-hero h1 {
        font-size: clamp(40px,12.5vw,55px);
        letter-spacing: -1px;
    }

    body .detail-page .detail-hero-copy {
        padding: 0;
    }

    body .detail-page .detail-hero-panel {
        padding: 23px 21px;
    }
}

/* Capability panel sits below the main hero content */
body .detail-page .detail-hero {
    min-height: 700px;
    padding: 20px 0 24px;
}

body .detail-page .detail-hero-grid {
    display: block;
}

body .detail-page .detail-hero-copy {
    max-width: 850px;
}

body .detail-page .detail-hero-panel {
    width: min(100%,390px);
    margin-top: 38px;
    padding: 30px 34px 28px;
}

body .detail-page .detail-hero-panel > strong {
    font-size: 25px;
}

@media (max-width: 900px) {
    body .detail-page .detail-hero {
        min-height: 720px;
        padding: 24px 0 28px;
    }
}

@media (max-width: 560px) {
    body .detail-page .detail-hero {
        min-height: 740px;
        padding: 18px 0 22px;
    }

    body .detail-page .detail-hero-panel {
        margin-top: 30px;
        padding: 24px 22px;
    }
}

