:root {
    --navy: #061a44;
    --navy2: #092a68;
    --blue: #0969da;
    --sky: #14a8ff;
    --teal: #08b7a7;
    --ink: #07162f;
    --muted: #536987;
    --light: #f4f8ff;
    --line: #dbe7f7;
    --white: #fff;
    --shadow: 0 22px 70px rgba(6, 26, 68, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.72;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    padding-top: 125px
}

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

.container {
    width: min(1200px, 92%);
    margin: auto
}

.main-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.35s ease-in-out
}

.main-header-fixed.topbar-hidden {
    transform: translateY(-40px)
}

.topbar {
    background: linear-gradient(90deg, var(--navy), #0b397a);
    color: #eaf4ff;
    font-size: 14px
}

.topbar-in {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0
}

.topbar b {
    color: #fff
}

.site-header {
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(6, 26, 68, .05)
}

.header-in {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand img {
    width: 185px;
    height: auto;
    display: block
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    color: #102a56
}

.nav a {
    white-space: nowrap
}

.nav a:hover {
    color: var(--blue)
}

.nav-cta,
.primary-btn {
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: #fff !important;
    padding: 13px 22px;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(10, 102, 216, .26);
    font-weight: 900;
    display: inline-block;
    border: 0
}

.secondary-btn {
    padding: 12px 21px;
    border-radius: 999px;
    border: 1px solid #b9d6ff;
    color: var(--blue);
    background: #fff;
    font-weight: 900;
    display: inline-block
}

.menu-btn {
    display: none
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 82% 15%, rgba(8, 183, 167, .20), transparent 28%), linear-gradient(135deg, #eef7ff 0%, #fff 52%, #edfdf9 100%);
    padding: 84px 0
}

.hero:before {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -120px;
    width: 520px;
    height: 520px;
    background: linear-gradient(135deg, rgba(20, 168, 255, .23), rgba(8, 183, 167, .18));
    border-radius: 50%;
    filter: blur(2px)
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 56px;
    align-items: center;
    position: relative
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid #b9d6ff;
    border-radius: 999px;
    background: #eef6ff;
    color: #0749a7;
    font-weight: 900;
    font-size: 14px
}

.dark-badge {
    background: rgba(255, 255, 255, .12);
    color: #e0f2fe;
    border-color: rgba(255, 255, 255, .25)
}

h1 {
    font-size: clamp(36px, 4.25vw, 58px);
    line-height: 1.08;
    margin: 22px 0;
    letter-spacing: -.035em
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.16;
    margin: 0 0 16px;
    letter-spacing: -.025em
}

h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px
}

.hero-copy p,
.page-hero p,
.section-title p {
    font-size: 18px;
    color: #405977;
    max-width: 760px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px
}

.trust-row span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 800;
    color: #24405f;
    box-shadow: 0 10px 35px rgba(6, 26, 68, .06)
}

.hero-panel {
    background: #fff;
    border: 1px solid #dceaff;
    border-radius: 34px;
    padding: 26px;
    box-shadow: var(--shadow)
}

.hero-panel img,
.rounded-img,
.service-hero-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(6, 26, 68, .14)
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px
}

.hero-metrics div {
    background: linear-gradient(135deg, #f8fbff, #eef7ff);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px
}

.hero-metrics b {
    font-size: 28px;
    color: var(--blue);
    display: block
}

.section {
    padding: 78px 0
}

.light {
    background: var(--light)
}

.section-title {
    text-align: center;
    margin: 0 auto 44px;
    max-width: 850px
}

.section-title span {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(6, 26, 68, .07);
    transition: .25s
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 75px rgba(6, 26, 68, .13)
}

.service-card img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    background: linear-gradient(135deg, #eef7ff, #e9fbf6)
}

.service-card div {
    padding: 24px
}

.service-card p {
    color: var(--muted);
    margin-bottom: 20px
}

.service-card a {
    font-weight: 900;
    color: var(--blue)
}

.creative-process {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 20%, rgba(20, 168, 255, .15), transparent 28%), linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #eefdf8 100%)
}

.process-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: center
}

.process-copy p {
    font-size: 18px;
    color: #425b78;
    margin-bottom: 26px
}

.process-board {
    position: relative;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(185, 214, 255, .75);
    border-radius: 38px;
    padding: 34px;
    box-shadow: 0 28px 90px rgba(6, 26, 68, .10);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.process-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(6, 26, 68, .08);
    transition: .25s
}

.process-card:hover {
    transform: translateY(-7px)
}

.process-card span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 20px
}

.p2,
.p4 {
    margin-top: 34px
}

.tech-section {
    position: relative;
    background: radial-gradient(circle at 18% 25%, rgba(20, 168, 255, .22), transparent 28%), radial-gradient(circle at 90% 70%, rgba(8, 183, 167, .26), transparent 30%), linear-gradient(135deg, #061331, #072a68 58%, #064e6d);
    color: #fff
}

.tech-section p {
    color: #cbd5e1
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 34px;
    padding: 28px
}

.tech-cloud span,
.small-pill {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 800
}

.page-hero {
    background: linear-gradient(135deg, #eef6ff, #fff 55%, #e9fbf6);
    padding: 70px 0 62px;
    border-bottom: 1px solid var(--line)
}

.page-hero h1 {
    font-size: clamp(34px, 3.8vw, 50px);
    max-width: 930px
}

.technologies-page .page-hero h1 {
    font-size: clamp(32px, 3.4vw, 46px);
    max-width: 880px
}

.service-hero .split {
    grid-template-columns: 1fr .8fr
}

.service-hero-img {
    max-height: 420px;
    object-fit: cover
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 42px
}

.two-col main {
    font-size: 17px
}

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

.content-card,
.stat-card,
.values-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 40px rgba(6, 26, 68, .05)
}

.content-card h3 {
    color: #0a4597
}

.seo-note {
    background: #f8fbff;
    border-left: 4px solid var(--blue);
    padding: 18px 20px;
    border-radius: 16px;
    color: #334b68
}

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

.check-list li {
    margin: 12px 0;
    padding-left: 34px;
    position: relative
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: var(--teal);
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900
}

.side-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 14px 45px rgba(6, 26, 68, .06)
}

.side-box a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #edf2f8;
    color: #194678;
    font-weight: 800
}

.side-box .small-pill {
    background: #eef6ff;
    color: #0a4597;
    border-color: #dbeafe;
    margin: 5px
}

.mini-cta,
.cta {
    background: linear-gradient(135deg, #061a44, #0a66d8);
    color: #fff;
    border-radius: 32px;
    padding: 34px;
    margin-top: 30px
}

.cta {
    text-align: center
}

.cta p {
    color: #dbeafe;
    font-size: 18px
}

.industry-grid,
.portfolio-grid,
.career-grid,
.contact-grid,
.client-grid,
.stats-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.contact-grid {
    grid-template-columns: 1fr 1.15fr
}

.client-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 55px rgba(6, 26, 68, .06)
}

.client-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef6ff, #e9fbf6);
    font-weight: 900;
    color: var(--blue);
    font-size: 22px
}

.industry-grid div,
.portfolio-grid div,
.career-grid div,
.contact-card,
.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 55px rgba(6, 26, 68, .06)
}

.career-grid div {
    position: relative;
    overflow: hidden
}

.apply-btn {
    margin-top: 14px;
    border: 0;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: #fff;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
    cursor: pointer;
    display: inline-block
}

.form {
    display: grid;
    gap: 14px
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid #ccd8ea;
    border-radius: 14px;
    font: inherit;
    background: #fbfdff
}

.form textarea {
    min-height: 140px
}

.form button {
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: #fff;
    border-radius: 14px;
    padding: 16px;
    font-weight: 900;
    font-size: 16px
}

.contact-card {
    background: linear-gradient(135deg, #061a44, #0b397a);
    color: #fff
}

.contact-card p {
    color: #dbeafe
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px
}

.contact-methods div {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 16px
}

.about-hero {
    background: radial-gradient(circle at 80% 20%, rgba(8, 183, 167, .20), transparent 30%), linear-gradient(135deg, #061a44, #0b397a);
    color: #fff
}

.about-hero p {
    color: #dbeafe
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -42px;
    position: relative
}

.stat-card b {
    font-size: 34px;
    color: var(--blue);
    display: block
}

.values-grid {
    grid-template-columns: repeat(3, 1fr)
}

.timeline {
    display: grid;
    gap: 18px
}

.timeline div {
    background: #fff;
    border-left: 5px solid var(--blue);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(6, 26, 68, .05)
}

.footer {
    background: radial-gradient(circle at 85% 10%, rgba(20, 168, 255, .18), transparent 24%), linear-gradient(135deg, #061a44, #031127);
    color: #cbd5e1;
    padding: 64px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 32px
}

.footer-logo {
    width: 190px;
    background: #fff;
    border-radius: 16px;
    padding: 10px
}

.footer h4 {
    color: #fff;
    margin-top: 0
}

.footer a {
    display: block;
    color: #cbd5e1;
    margin: 8px 0
}

.footer-btn {
    display: inline-block !important;
    background: #0a66d8;
    color: #fff !important;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-weight: 900
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 36px;
    padding-top: 18px;
    font-size: 14px;
    color: #94a3b8
}

@media(max-width:1080px) {
    .nav {
        gap: 14px
    }

    .brand img {
        width: 165px
    }

    .nav-cta {
        padding: 11px 16px
    }
}

@media(max-width:980px) {
    .topbar-in {
        display: block
    }

    .nav {
        display: none
    }

    .menu-btn {
        display: block;
        background: #eef6ff;
        border: 1px solid #cfe4ff;
        border-radius: 12px;
        padding: 10px 14px;
        font-weight: 900
    }

    .nav.open {
        display: flex;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 86px;
        background: #fff;
        flex-direction: column;
        padding: 22px;
        border-radius: 22px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .15)
    }

    .hero-grid,
    .split,
    .two-col,
    .contact-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .cards,
    .stats-grid,
    .values-grid,
    .client-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .header-in {
        height: 78px
    }

    .trust-row,
    .process-board {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    .cards,
    .tech-groups,
    .industry-grid,
    .portfolio-grid,
    .career-grid,
    .footer-grid,
    .process-board,
    .content-grid,
    .stats-grid,
    .values-grid,
    .client-grid,
    .contact-methods {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 34px
    }

    .page-hero h1 {
        font-size: 32px
    }

    .section {
        padding: 58px 0
    }

    .hero {
        padding: 58px 0
    }

    .brand img {
        width: 145px
    }

    .hero-actions {
        flex-direction: column
    }

    .primary-btn,
    .secondary-btn {
        text-align: center
    }

    .p2,
    .p4 {
        margin-top: 0
    }

    .topbar {
        font-size: 13px
    }

    .hero-metrics {
        grid-template-columns: 1fr
    }
}


.tech-pro-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background: radial-gradient(circle at 82% 20%, rgba(20, 168, 255, .20), transparent 28%), linear-gradient(135deg, #eef7ff 0%, #ffffff 52%, #e9fbf6 100%);
    border-bottom: 1px solid var(--line)
}

.tech-pro-hero:before {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9, 105, 218, .18), rgba(8, 183, 167, .18))
}

.tech-pro-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    position: relative
}

.tech-pro-hero h1 {
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 1.08;
    margin: 22px 0
}

.tech-pro-hero p {
    font-size: 18px;
    color: #405977;
    max-width: 760px
}

.tech-orbit {
    height: 430px;
    border-radius: 40px;
    background: linear-gradient(135deg, #061a44, #0a66d8 65%, #08b7a7);
    box-shadow: 0 28px 80px rgba(6, 26, 68, .18);
    position: relative;
    overflow: hidden
}

.tech-orbit:before,
.tech-orbit:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    inset: 58px
}

.tech-orbit:after {
    inset: 105px
}

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 900;
    font-size: 36px;
    color: #0a4597;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18)
}

.orbit-center span {
    font-size: 14px;
    color: #536987
}

.tech-orbit span:not(.orbit-center span) {
    position: absolute;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    border-radius: 999px;
    padding: 11px 15px;
    font-weight: 900;
    backdrop-filter: blur(10px)
}

.o1 {
    left: 72px;
    top: 70px
}

.o2 {
    right: 92px;
    top: 72px
}

.o3 {
    left: 105px;
    bottom: 94px
}

.o4 {
    right: 82px;
    bottom: 90px
}

.o5 {
    left: 42px;
    top: 215px
}

.o6 {
    right: 42px;
    top: 218px
}

.tech-pro-section {
    background: #fff
}

.tech-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.tech-pro-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 55px rgba(6, 26, 68, .07);
    transition: .25s;
    position: relative;
    overflow: hidden
}

.tech-pro-card:before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(10, 102, 216, .12), rgba(8, 183, 167, .12));
    border-radius: 50%
}

.tech-pro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 75px rgba(6, 26, 68, .14)
}

.tech-pro-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 18px
}

.tech-pro-card h3 {
    font-size: 26px;
    margin-bottom: 10px
}

.tech-pro-card p {
    color: #536987;
    margin-bottom: 18px
}

.tech-chip-wrap {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px
}

.tech-chip-wrap span {
    display: inline-flex !important;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef6ff !important;
    color: #0a4597 !important;
    border: 1px solid #dbeafe !important;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.1
}

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

.stack-grid div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 55px rgba(6, 26, 68, .06)
}

.stack-grid h3 {
    color: #0a4597
}

@media(max-width:980px) {

    .tech-pro-hero-grid,
    .tech-pro-grid,
    .stack-grid {
        grid-template-columns: 1fr
    }

    .tech-orbit {
        height: 360px
    }
}

@media(max-width:640px) {
    .tech-pro-hero h1 {
        font-size: 34px
    }

    .tech-pro-card {
        padding: 22px
    }

    .tech-orbit {
        height: 320px
    }

    .orbit-center {
        width: 120px;
        height: 120px;
        font-size: 28px
    }

    .tech-orbit span:not(.orbit-center span) {
        font-size: 13px;
        padding: 8px 10px
    }
}


/* Enhanced service graphics update */
.services-visual-hero {
    background: linear-gradient(135deg, #061a44, #0a2d6d 58%, #0b4ea2);
    color: #fff;
    overflow: hidden;
    position: relative
}

.services-visual-hero:before {
    content: "";
    position: absolute;
    right: -160px;
    top: -150px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(20, 168, 255, .18)
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2
}

.services-visual-hero h1,
.services-visual-hero p {
    color: #fff
}

.services-visual-hero .badge {
    background: rgba(255, 255, 255, .12);
    color: #dff7ff;
    border-color: rgba(255, 255, 255, .28)
}

.services-hero-grid img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .18)
}

.service-card img {
    height: 205px;
    object-fit: cover;
    transition: .35s ease;
    filter: saturate(1.06) contrast(1.02)
}

.service-card:hover img {
    transform: scale(1.045)
}

.service-card {
    position: relative
}

.service-card:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 205px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 26, 68, .04));
    pointer-events: none
}

.service-hero-img {
    object-fit: cover;
    background: #eef6ff;
    border: 1px solid #d8e9ff
}

.two-col main img,
.service-hero-img {
    filter: saturate(1.06) contrast(1.02)
}

@media(max-width:900px) {
    .services-hero-grid {
        grid-template-columns: 1fr
    }

    .services-hero-grid img {
        margin-top: 12px
    }

    .service-card img {
        height: 190px
    }
}