* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --red:#01ae51;
    --red-dk: #993C1D;
    --red-lt: #FAECE7;
    --amber: #0cde6e;
    --amber-lt: #FAEEDA;
    --dark: #141412;
    --dark2: #1e1e1b;
    --dark3: #2a2a26;
    --gray: #5F5E5A;
    --gray-lt: #F4F2EC;
    --border: rgba(0, 0, 0, 0.09);
    --text: #05361c;
    --muted: #6b6a65;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

/* ── NAV ── */
nav {
    background: #fff;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-icon {
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-icon i {
    color: #fff;
    font-size: 18px
}

.nav-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #fff;
    letter-spacing: 0.3px
}

.nav-name em {
    color: var(--amber);
    font-style: normal
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.nav-num {
    font-size: 14px;
    font-weight: 600;
    color: #ccc
}

.nav-num a {
    color: #01592a;
    text-decoration: none
}

.nav-num a:hover {
    color: #00c58a
}

.nav-cta {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap
}

.nav-cta:hover {
    background: #01ae51;
}

/* ── TRUST BAR ── */
.trust {
    background: #F4F2EC;
    border-bottom: 1px solid var(--border);
    padding: 10px 18px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray)
}

.trust-item i {
    color: var(--red);
    font-size: 15px
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #182d1d;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(0.6)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20, 20, 18, 0.97) 45%, rgba(20, 20, 18, 0.6) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 48px;
    max-width: 680px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
   background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgb(1, 174, 81);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 6vw, 72px);
    color: #fff;
    line-height: 1.0;
    margin-bottom: 22px;
    letter-spacing: -0.5px
}

.hero h1 em {
    color: var(--amber);
    font-style: normal;
    display: block
}

.hero-sub {
    color: #b0afa9;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 38px;
    max-width: 520px
}

.hero-sub strong {
    color: #e0dfd9;
    font-weight: 500
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px
}

.btn-fire {
    background: var(--red);
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out
}

.btn-fire:hover {
    background: #0cde6e;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 13px 28px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55)
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap
}

.stat {
    text-align: left
}

.stat-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.stat-n span {
    color: var(--amber)
}

.stat-l {
    font-size: 12px;
    color: #fefefe;
    margin-top: 5px;
    letter-spacing: 0.3px
}

/* ── SECTION LAYOUT ── */
.sec {
    padding: 80px 48px
}

.sec-alt {
    background:#f6f6f6;
}

.sec-dark {
    background: var(--dark)
}

.sec-lbl {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px
}

.sec-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 46px);
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 14px
}

.sec-dark .sec-h {
    color: #fff
}

.sec-p {
    color: var(--muted);
    font-size: 17px;
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 52px
}

.sec-dark .sec-p {
    color: #9a9992
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.svc-card {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
    transition: all 0.3s ease-in-out
}

.svc-card:hover {
    background: #e5fff4;
}

.svc-card:nth-child(3n) {
    border-right: none
}

.svc-card:nth-last-child(-n+3) {
    border-bottom: none
}

.svc-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    display: block
}

.svc-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.svc-icon {
    width: 40px;
    height: 40px;
    background: #d7fdf9;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.svc-icon i {
    color: var(--red);
    font-size: 20px
}

.svc-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #01592a;
    line-height: 1.2
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.svc-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.svc-link i {
    font-size: 14px;
    transition: transform 0.3s ease-in-out
}

.svc-card:hover .svc-link i {
    transform: translateX(3px)
}

/* ── SPLIT SECTION ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch
}

.split-img {
    position: relative;
    overflow: hidden;
    min-height: 480px
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.split-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 20, 18, 0.18), transparent)
}

.split-content {
    padding: 64px 56px;
    background: #01592a;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.split-content .sec-lbl {
    color: var(--amber)
}

.split-content .sec-h {
    color: #fff
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.why-ico {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.why-ico i {
    color: var(--red);
    font-size: 18px
}

.why-t h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px
}

.why-t p {
    font-size: 14px;
    color: #e3e3e0;
    line-height: 1.55
}

/* ── PROCESS ── */
.process-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.step {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    position: relative;
    background: #fff
}

.step:last-child {
    border-right: none
}

.step::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 36px;
    font-size: 20px;
    color: var(--border);
    z-index: 2;
    font-weight: 600;
    display: none
}

.step-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 16px
}

.step-ico {
    width: 44px;
    height: 44px;
    background:#F6F6F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.step-ico i {
    color: var(--red);
    font-size: 22px
}

.step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px
}

.step p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55
}

/* ── SECTORS ── */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px
}

.sector {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out
}

.sector:hover {
    border-color: rgba(8, 208, 34, 0.626);
    box-shadow: 0 4px 18px rgba(216, 90, 48, 0.08)
}

.sector-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block
}

.sector-body {
    padding: 14px 16px
}

.sector-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px
}

.sector-body p {
    font-size: 12.5px;
    color: var(--muted)
}

/* ── COVERAGE TAGS ── */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px
}

.tag {
    background: #fff;
    border: 1px solid var(--border);
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text)
}

.tag.hot {
background: #e9fff3;
  border-color: rgba(156, 156, 156, 0.3);
  color: #1E5621;
}

/* ── TESTIMONIAL ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px
}

.testi {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    position: relative
}

.testi::before {
    content: '"';
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 56px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: #01592a;
    line-height: 1
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px
}

.stars i {
    color: #01592a;
    font-size: 15px
}

.testi p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 18px
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0cde6e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600
}

.author-info span {
    font-size: 12px;
    color: var(--muted)
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--red);
    padding: 72px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.cta-band-left h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 50px);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 10px
}

.cta-band-left p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    max-width: 480px
}

.cta-band-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    flex-shrink: 0
}

.btn-white {
    background: #fff;
    color: var(--red-dk);
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s
}

.btn-white:hover {
    background: #f5e8e3
}

.cta-band-right span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right
}

/* ── ENQUIRY SPLIT ── */
.enquiry-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--dark);
    overflow: hidden
}

.enq-left {
    position: relative;
    overflow: hidden
}

.enq-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.5
}

.enq-left-overlay {
    position: absolute;
    inset: 0;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.enq-left-overlay h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px
}

.enq-left-overlay p {
    color: #e6e6e6;
    font-size: 15px;
    margin-bottom: 28px
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.contact-row i {
    color: var(--amber);
    font-size: 20px;
    flex-shrink: 0
}

.contact-row a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600
}

.contact-row span {
    color: #9a9992;
    font-size: 13px;
    display: block;
    margin-top: 1px
}

.enq-right {
    padding: 52px 44px;
    background: #fff
}

.enq-right h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 6px
}

.enq-right p.sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-field {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.form-field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.18s
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--red)
}

.form-field textarea {
    height: 88px;
    resize: vertical
}

.form-submit {
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.form-submit:hover {
    background: var(--red-dk)
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

/* ── FOOTER ── */
footer {
    background: #0e0e0c;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-l {
    font-size: 13px;
    color: #c4c3c1
}

.footer-links {
    display: flex;
    gap: 22px
}

.footer-links a {
    font-size: 13px;
    color: #ebebeb;
    text-decoration: none
}

.footer-links a:hover {
    color: #e8e8e8
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    nav {
        padding: 0 24px
    }

    .trust {
        padding: 11px 24px;
        gap: 18px
    }

    .hero-content {
        padding: 60px 24px
    }

    .sec {
        padding: 60px 24px
    }

    .split {
        grid-template-columns: 1fr
    }

    .split-img {
        min-height: 300px
    }

    .split-content {
        padding: 48px 24px
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .svc-card:nth-child(3n) {
        border-right: 1px solid var(--border)
    }

    .svc-card:nth-child(2n) {
        border-right: none
    }

    .process-wrap {
        grid-template-columns: 1fr 1fr
    }

    .step:nth-child(2) {
        border-right: none
    }

    .step:nth-child(2n) {
        border-right: none
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .cta-band {
        padding: 52px 24px
    }

    .cta-band-right {
        align-items: flex-start
    }

    .enquiry-wrap {
        grid-template-columns: 1fr
    }

    .enq-left {
        min-height: 280px
    }

    .enq-right {
        padding: 40px 24px
    }

    footer {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:600px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .svc-card {
        border-right: none !important
    }

    .process-wrap {
        grid-template-columns: 1fr
    }

    .step {
        border-right: none !important;
        border-bottom: 1px solid var(--border)
    }

    .step:last-child {
        border-bottom: none
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .nav-num {
        display: none
    }

    .hero-stats {
        gap: 22px
    }
}

.clients-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    height: 64px;
}

.clients-strip::before {
    left: 148px;
    background: linear-gradient(to right, #fff 60%, transparent);
}
.clients-strip::before, .clients-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-strip-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
}
.clients-label-block {
    flex-shrink: 0;
    padding: 0 22px;
    background: #01592a;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    position: relative;
}

.clients-label-block i {
    color: var(--amber);
    font-size: 13px;
}
.ti {
    font-family: "tabler-icons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.clients-label-block span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}
.clients-marquee-wrap {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.clients-marquee {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.logo-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    height: 64px;
    border-right: 1px solid var(--border);
    cursor: default;
    transition: background 0.18s, border-color 0.18s;
    position: relative;
    min-width: 130px;
}
.lc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color:#134819;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.18s;
    line-height: 1.1;
}
.lc-sector {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4f4f4f;
    margin-top: 2px;
    white-space: nowrap;
    transition: color 0.18s;
}
.clients-strip::after {
    right: 0;
    background: linear-gradient(to left, #fff 60%, transparent);
}
 .clients-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.clients-strip::before{
       content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
    left: 70px;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.brands {
    position: relative;
    background: #f5f8f5;
    overflow: hidden;
    padding: 0rem 0 0rem;
    z-index: 0;
}

.br-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
}

.br-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,rgba(16,185,129,.38) 0%,transparent 70%);
    top: -120px;
    left: -80px;
    animation: br-drift-a 18s ease-in-out infinite alternate;
}

.br-orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle,rgba(16,185,129,.28) 0%,transparent 70%);
    bottom: -90px;
    right: -60px;
    animation: br-drift-b 22s ease-in-out infinite alternate;
}

@keyframes br-drift-a {
    0% {
        transform: translate(0,0)
    }

    100% {
        transform: translate(70px,60px)
    }
}

@keyframes br-drift-b {
    0% {
        transform: translate(0,0)
    }

    100% {
        transform: translate(-55px,-50px)
    }
}

.brands .t-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.marquee-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.75rem;
    mask-image: linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%);
    -webkit-mask-image: linear-gradient(to right,transparent 0%,#000 8%,#000 92%,transparent 100%);
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.flow-one,.flow-two {
    display: flex;
    width: max-content;
    will-change: transform;
}

.flow-one .track,.flow-two .track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem;
    flex-shrink: 0;
}

.flow-one .track img,.flow-two .track img {
    height: 52px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .6;
    transition: filter .35s ease,opacity .35s ease,transform .35s ease;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
    background-color: transparent;
}

.marquee-row:hover .track img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0%)
    }
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-50%)
    }
}

.flow-one.ready {
    animation: marquee-ltr 28s linear infinite;
}

.flow-two.ready {
    animation: marquee-rtl 40s linear infinite;
}

.marquee-row:hover .flow-one,.marquee-row:hover .flow-two {
    animation-play-state: paused;
}

@media (max-width: 860px) {
    .brands .t-header {
        text-align:center
    }

    .brands .t-header .t-eyebrow {
        padding-left: 0
    }

    .brands .t-header .t-eyebrow::before {
        display: none
    }

    .flow-one .track img,.flow-two .track img {
        height: 42px
    }

    .flow-one .track,.flow-two .track {
        gap: 2rem
    }
}

@media (max-width: 540px) {
    .brands {
        padding:4.5rem 0 3.5rem
    }

    .flow-one .track img,.flow-two .track img {
        height: 54px
    }

    .flow-one .track,.flow-two .track {
        gap: 1.5rem
    }

    .core-service .card-right img {
        width: 60px
    }

    .core-service .card-right-first img {
        width: 60px
    }
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}