﻿/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #ffffff;
    color: #5F6368;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   COLORS
========================================================= */

:root {
    --orange: #ff6a00;
    --orange-dark: #e85c00;
    --charcoal: #5F6368;
    --dark: #52565A;
    --grey: #70757A;
    --light-grey: #F4F5F6;
    --border: #E2E4E6;
    --white: #ffffff;
}


/* =========================================================
   COMMON
========================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.section-small-title,
.hero-label {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    height: 92px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo-area {
    min-width: 220px;
    display: flex;
    align-items: center;
}

.company-logo {
    max-height: 68px;
    width: auto;
    object-fit: contain;
}


/* NAV */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    padding: 34px 0;
    color: #5F6368;
    font-size: 14px;
    font-weight: 600;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--orange);
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 23px;
        width: 0;
        height: 2px;
        background: var(--orange);
        transition: width .25s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }


/* HEADER BUTTON */

.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    background: var(--orange);
    color: #ffffff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

    .btn-orange:hover {
        background: var(--orange-dark);
    }


/* MOBILE */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: transparent;
    border: 1px solid #D8DADC;
    cursor: pointer;
}

    .mobile-menu-button span {
        display: block;
        height: 2px;
        margin: 5px 0;
        background: var(--charcoal);
    }

.mobile-navigation {
    display: none;
    background: #ffffff;
}

    .mobile-navigation a {
        display: block;
        padding: 14px 25px;
        border-bottom: 1px solid #eeeeee;
    }

.mobile-navigation-show {
    display: block;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    background: #ffffff;
}

    .hero-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -190px;
        top: -170px;
        border: 80px solid rgba(255,106,0,.045);
        border-radius: 50%;
    }

.hero-container {
    width: 100%;
    max-width: 1280px;
    min-height: 630px;
    margin: auto;
    padding: 45px 30px 35px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-label {
    margin-bottom: 16px;
}

.hero-content h1 {
    max-width: 650px;
    margin-bottom: 25px;
    color: #5F6368;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

    .hero-content h1 span,
    .cta-content h2 span {
        color: var(--orange);
    }

.hero-content > p {
    max-width: 620px;
    margin-bottom: 26px;
    color: #70757A;
    font-size: 18px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
}

.hero-btn-primary {
    background: var(--orange);
    color: #ffffff;
}

    .hero-btn-primary:hover {
        background: var(--orange-dark);
    }

.hero-btn-secondary {
    border: 1px solid #B9BDC1;
}

    .hero-btn-secondary:hover {
        background: #5F6368;
        color: #ffffff;
    }


/* =========================================================
   HERO TRUST STRIP
========================================================= */

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-strip-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    color: var(--orange);
}

    .trust-strip-icon svg {
        width: 100%;
        height: 100%;
    }

.trust-strip-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .trust-strip-copy strong {
        color: #42464A;
        font-size: 10px;
        font-weight: 800;
        white-space: nowrap;
    }

    .trust-strip-copy span {
        margin-top: 4px;
        color: #80858A;
        font-size: 9px;
        white-space: nowrap;
    }

.trust-strip-separator {
    width: 1px;
    height: 42px;
    background: #D9DCDF;
}


/* =========================================================
   TALLY ECOSYSTEM
========================================================= */

.hero-visual {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-18px);
}

.tally-ecosystem-visual {
    position: relative;
    width: 560px;
    height: 500px;
    max-width: 100%;
    transform: scale(.86);
    transform-origin: center;
}

.ecosystem-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 390px;
    height: 390px;
    transform: translate(-50%,-50%);
    border: 1px dashed #D8DCDF;
    border-radius: 50%;
    opacity: .55;
}

.ecosystem-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.ecosystem-path {
    fill: none;
    stroke: #CBD0D3;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.ecosystem-dot {
    fill: var(--orange);
    filter: drop-shadow(0 0 5px rgba(255,106,0,.8));
}


/* TALLY CENTER */

.ecosystem-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(255,106,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
    z-index: 5;
}

.ecosystem-tally-logo {
    width: 135px;
    height: auto;
}


/* NODES */

.ecosystem-node {
    position: absolute;
    width: 150px;
    text-align: center;
    z-index: 7;
}

.ecosystem-node-title {
    margin-bottom: 9px;
    color: #52565A;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.bottom-node-title {
    margin-top: 9px;
    margin-bottom: 0;
}

.ecosystem-node-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 26px rgba(0,0,0,.07);
}

.node-svg {
    width: 50px;
    height: 50px;
}


/* POSITIONS */

.node-position-1 {
    left: 50%;
    top: -2%;
    transform: translateX(-50%);
}

.node-position-2 {
    right: 0;
    top: 21%;
}

.node-position-3 {
    right: 0;
    bottom: 15%;
}

.node-position-4 {
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%);
}

.node-position-5 {
    left: 0;
    bottom: 15%;
}

.node-position-6 {
    left: 0;
    top: 21%;
}


/* NODE COLORS */

.icon-red {
    fill: #E63946;
}

.icon-blue-outline {
    fill: none;
    stroke: #2778C8;
    stroke-width: 5;
}

.icon-gold-outline {
    fill: none;
    stroke: #D99A00;
    stroke-width: 3.5;
}

.money-symbol {
    fill: #D99A00;
    font-size: 26px;
    font-weight: 800;
}

.icon-purple {
    fill: #8B3FC1;
}

.icon-orange {
    fill: #FF6A00;
}

.icon-pink {
    fill: #E84B83;
}

.icon-pink-outline {
    fill: none;
    stroke: #E84B83;
    stroke-width: 4;
}


/* =========================================================
   EXPERTISE + INDUSTRIES
========================================================= */

.solutions-expertise-section {
    padding: 90px 0 100px;
    background: #ffffff;
}

.combined-section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

    .combined-section-heading .section-small-title {
        margin-bottom: 12px;
    }

    .combined-section-heading h2 {
        margin-bottom: 14px;
        color: #4F5459;
        font-size: 42px;
        font-weight: 800;
    }

    .combined-section-heading p {
        color: #74797E;
        font-size: 15px;
        line-height: 1.75;
    }


/* EXPERTISE GRID */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
}

.expertise-card {
    min-height: 230px;
    padding: 32px 30px;
    border: 1px solid #E6E8EA;
    background: #ffffff;
    display: flex;
    gap: 22px;
    box-shadow: 0 5px 18px rgba(60,65,70,.035);
    transition: .25s ease;
}

    .expertise-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,106,0,.30);
        box-shadow: 0 16px 36px rgba(60,65,70,.09);
    }

.expertise-card-icon {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,106,0,.075);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .expertise-card-icon svg {
        width: 47px;
        height: 47px;
    }

.expertise-card-content h3 {
    margin: 5px 0 10px;
    color: #4D5257;
    font-size: 19px;
    font-weight: 800;
}

.expertise-card-content p {
    min-height: 90px;
    margin-bottom: 15px;
    color: #70757A;
    font-size: 13px;
    line-height: 1.7;
}

.expertise-card-content a {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}


/* DIVIDER */

.solutions-divider {
    height: 1px;
    margin: 65px 0 50px;
    background: linear-gradient( to right, transparent, #E4E6E8 15%, #E4E6E8 85%, transparent );
}


/* INDUSTRY HEADER */

.industry-subheading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

    .industry-subheading .section-small-title {
        margin-bottom: 10px;
    }

    .industry-subheading h3 {
        margin-bottom: 12px;
        color: #4F5459;
        font-size: 34px;
        font-weight: 800;
    }

    .industry-subheading p {
        color: #74797E;
        font-size: 14px;
    }


/* =========================================================
   INDUSTRIES WE SERVE
========================================================= */

.industry-subheading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

    .industry-subheading .section-small-title {
        margin-bottom: 10px;
    }

    .industry-subheading h3 {
        margin-bottom: 12px;
        color: #4F5459;
        font-size: 34px;
        font-weight: 800;
        line-height: 1.2;
    }

    .industry-subheading p {
        max-width: 680px;
        margin: auto;
        color: #74797E;
        font-size: 14px;
        line-height: 1.7;
    }


/* GRID */

.industries-serve-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}


/* CARD */

.industry-serve-card {
    min-height: 275px;
    padding: 28px 20px 24px;
    background: #ffffff;
    border: 1px solid #E6E8EA;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(60,65,70,.035);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


    .industry-serve-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,106,0,.28);
        box-shadow: 0 15px 32px rgba(60,65,70,.09);
    }


/* =========================================================
   FILLED ICON
========================================================= */

.industry-filled-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .industry-filled-icon svg {
        width: 56px;
        height: 56px;
        display: block;
        fill: currentColor !important;
        stroke: none !important;
    }


        /* IMPORTANT */

        .industry-filled-icon svg path {
            fill: currentColor !important;
            stroke: none !important;
        }


/* =========================================================
   ICON COLORS
========================================================= */

.healthcare-filled {
    color: #18A66F;
}

.finance-filled {
    color: #2878C7;
}

.manufacturing-filled {
    color: #FF7A21;
}

.retail-filled {
    color: #8A3DB8;
}

.education-filled {
    color: #DF4C78;
}


/* =========================================================
   TEXT
========================================================= */

.industry-serve-card h3 {
    margin-bottom: 11px;
    color: #454A4F;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}


.industry-serve-card p {
    margin-bottom: 18px;
    color: #70757A;
    font-size: 12.5px;
    line-height: 1.7;
}


/* =========================================================
   VIEW SOLUTIONS
========================================================= */

.industry-explore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    opacity: 1 !important;
    transform: none !important;
}


.industry-serve-card:hover .industry-explore {
    color: var(--orange-dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .industries-serve-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 800px) {

    .industries-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 520px) {

    .industries-serve-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CLIENTS
========================================================= */

.clients-showcase-section {
    padding: 85px 0 80px;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #F0F1F2;
}

.clients-showcase-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

    .clients-showcase-heading .section-small-title {
        margin-bottom: 10px;
    }

    .clients-showcase-heading h2 {
        margin-bottom: 12px;
        color: #4F5459;
        font-size: 40px;
        font-weight: 800;
    }

    .clients-showcase-heading p {
        color: #74797E;
        font-size: 14px;
    }


/* =========================================================
   CLIENT MARQUEE
========================================================= */

.client-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
}


/* COMPLETE MOVING TRACK */

.client-marquee-track {
    display: flex;
    width: max-content;
    animation: clientLogoScroll 65s linear infinite;
    will-change: transform;
}


/* EACH IDENTICAL GROUP OF 33 */

.client-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
}


/* PAUSE WHEN USER HOVERS */

.client-marquee:hover
.client-marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes clientLogoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   CLIENT CARD
========================================================= */

.client-marquee-card {
    flex: 0 0 205px;
    width: 205px;
    height: 110px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(60,65,70,.04);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


    .client-marquee-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255,106,0,.30);
        box-shadow: 0 12px 28px rgba(60,65,70,.08);
    }


    /* =========================================================
   CLIENT LOGO
========================================================= */

    .client-marquee-card img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 190px;
        max-height: 95px;
        object-fit: contain;
        filter: none !important;
        -webkit-filter: none !important;
        opacity: 1 !important;
    }


/* =========================================================
   EDGE FADE
========================================================= */

.client-marquee::before,
.client-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 75px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}


.client-marquee::before {
    left: 0;
    background: linear-gradient( to right, #ffffff, rgba(255,255,255,0) );
}


.client-marquee::after {
    right: 0;
    background: linear-gradient( to left, #ffffff, rgba(255,255,255,0) );
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .client-marquee-card {
        flex-basis: 165px;
        width: 165px;
        height: 92px;
    }

        .client-marquee-card img {
            max-width: 152px;
            max-height: 80px;
        }
}



/* =========================================================
   CLIENT LOGO CARDS
========================================================= */

.client-marquee-card {
    flex: 0 0 205px !important;
    width: 205px;
    height: 110px;
    /* Reduced padding so logo can use almost full card */
    padding: 3px;
    border: 1px solid #E5E7E9;
    background: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(60,65,70,.04);
}


    /* CLIENT LOGO */

    .client-marquee-card img {
        display: block !important;
        /* Allow logo to occupy almost complete square/card */
        width: 100% !important;
        height: 100% !important;
        max-width: 198px !important;
        max-height: 102px !important;
        /* Keeps logo proportion without stretching */
        object-fit: contain;
        /* Always show original colours */
        filter: none !important;
        -webkit-filter: none !important;
        opacity: 1 !important;
    }


    .client-marquee-card:hover img {
        filter: none !important;
        -webkit-filter: none !important;
        opacity: 1 !important;
    }

/* =========================================================
   CLIENT COUNTS
========================================================= */

.client-stats-strip {
    margin-top: 22px;
    padding: 30px 36px;
    background: linear-gradient( 90deg, #FFF9F4, #FFF3E8 );
    border: 1px solid rgba(255,106,0,.08);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.client-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.client-stat-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,106,0,.09);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.client-stat-copy {
    display: flex;
    flex-direction: column;
}

    .client-stat-copy strong {
        color: #42474C;
        font-size: 29px;
        font-weight: 800;
        line-height: 1;
    }

    .client-stat-copy span {
        margin-top: 7px;
        color: #74797E;
        font-size: 11px;
        font-weight: 600;
    }


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 95px 0;
    background: #ffffff;
}

.cta-content {
    padding: 60px;
    background: #5F6368;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-copy {
    max-width: 720px;
}

.cta-content h2 {
    margin: 12px 0 15px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
}

.cta-content p {
    color: #E0E2E4;
    font-size: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: var(--orange);
    color: #ffffff;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
}

    .cta-button:hover {
        background: var(--orange-dark);
    }


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    background: var(--charcoal);
    color: #ffffff;
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    padding: 70px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-company {
    max-width: 350px;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-company p {
    color: #E2E4E6;
    font-size: 14px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

    .footer-column h4 {
        margin-bottom: 20px;
        color: #ffffff;
        font-size: 15px;
    }

    .footer-column a {
        margin-bottom: 10px;
        color: #E0E2E4;
        font-size: 13px;
    }

        .footer-column a:hover {
            color: var(--orange);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.18);
}

.footer-bottom-container {
    max-width: 1280px;
    margin: auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    color: #E0E2E4;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .hero-trust-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip-separator {
        display: none;
    }
}


@media (max-width: 1050px) {

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        transform: none;
    }

    .expertise-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .industries-serve-grid {
        grid-template-columns: repeat(3,1fr);
    }
}


@media (max-width: 900px) {

    .main-navigation,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .client-stats-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-trust-strip {
        grid-template-columns: 1fr;
    }

    .expertise-grid,
    .industries-serve-grid {
        grid-template-columns: 1fr;
    }

    .tally-ecosystem-visual {
        transform: scale(.72);
    }

    .clients-showcase-heading h2,
    .combined-section-heading h2 {
        font-size: 34px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }
}


@media (max-width: 600px) {

    .container,
    .header-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .company-logo {
        max-height: 55px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 420px;
        overflow: hidden;
    }

    .tally-ecosystem-visual {
        transform: scale(.64);
    }

    .client-marquee-card {
        flex-basis: 165px !important;
        width: 165px;
        height: 92px;
    }

        .client-marquee-card img {
            max-width: 120px;
            max-height: 48px;
        }

    .client-stats-strip {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .client-stat-item {
        justify-content: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 50px 25px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================================================
   TIGHT LOWER PAGE SPACING
   Clients → Counts → CTA → Footer
========================================================= */

/* CLIENTS SECTION */
.clients-section {
    padding-top: 55px !important;
    padding-bottom: 30px !important;
}

    /* Reduce space below client heading */
    .clients-section .section-heading {
        margin-bottom: 25px !important;
    }

/* Marquee itself */
.client-marquee {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

/* If your marquee wrapper has this class */
.client-marquee-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   COUNTS / STATISTICS
========================================================= */

.numbers-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    /* light orange like your reference */
    background: #fff8f3 !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

/* If you are using a stats-section instead */
.stats-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 28px 0 !important;
    background: #fff8f3 !important;
}


/* =========================================================
   READY TO TRANSFORM CTA
========================================================= */

.final-cta {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    /* remove old large 100px spacing */
    padding: 12px 0 18px !important;
    background: #fff8f3 !important;
}

.cta-content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 35px 45px !important;
    border-radius: 8px;
}


    /* Make CTA slightly more compact */
    .cta-content h2 {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    .cta-content p {
        margin-bottom: 0 !important;
    }


/* =========================================================
   FOOTER - ATTACH CLOSE TO CTA
========================================================= */

.main-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-container {
    padding-top: 42px !important;
    padding-bottom: 35px !important;
}


/* Footer bottom */
.footer-bottom-container {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
}


/* =========================================================
   REMOVE ACCIDENTAL EMPTY SPACE
========================================================= */

.clients-section + .numbers-section,
.clients-section + .stats-section,
.numbers-section + .final-cta,
.stats-section + .final-cta,
.final-cta + .main-footer {
    margin-top: 0 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .clients-section {
        padding-top: 40px !important;
        padding-bottom: 22px !important;
    }

    .numbers-section,
    .stats-section {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .final-cta {
        padding: 10px 0 15px !important;
    }

    .cta-content {
        padding: 30px 25px !important;
    }

    .footer-container {
        padding-top: 35px !important;
        padding-bottom: 30px !important;
    }
}
/* =========================================================
   FINAL LOWER HOME PAGE LAYOUT
   CLIENTS → COUNTS → CTA → FOOTER
========================================================= */


/* =========================================================
   CLIENTS SECTION
========================================================= */

.clients-showcase-section {
    background: #ffffff;
    padding: 55px 0 0 !important;
    margin: 0 !important;
    overflow: hidden;
}


/* CLIENT HEADING */

.clients-showcase-heading {
    text-align: center;
    margin: 0 auto 28px !important;
    padding: 0 !important;
}

    .clients-showcase-heading .section-small-title {
        margin-bottom: 8px !important;
    }

    .clients-showcase-heading h2 {
        margin: 0 0 8px !important;
        font-size: 34px;
        line-height: 1.2;
        color: #5F6368;
        font-weight: 800;
    }

    .clients-showcase-heading p {
        margin: 0 !important;
        color: #70757A;
        font-size: 15px;
    }


/* =========================================================
   CLIENT MARQUEE
========================================================= */

.client-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    padding: 8px 0 28px !important;
    background: #ffffff;
}


/* TRACK */

.client-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 18px;
    animation: clientMarqueeScroll 55s linear infinite;
}


/* LOGO CARD */

.client-marquee-card {
    width: 190px;
    height: 105px;
    flex: 0 0 190px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,.035);
    overflow: hidden;
}


    /* CLIENT LOGO */

    .client-marquee-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: none !important;
        opacity: 1 !important;
    }


    /* HOVER */

    .client-marquee-card:hover {
        border-color: #ff6a00;
    }


/* PAUSE MARQUEE ON HOVER */

.client-marquee:hover .client-marquee-track {
    animation-play-state: paused;
}


/* MARQUEE ANIMATION */

@keyframes clientMarqueeScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   COUNTS / STATISTICS STRIP
========================================================= */

.clients-showcase-section > .container:last-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


.client-stats-strip {
    margin: 0 !important;
    padding: 26px 35px !important;
    background: #fff7f1;
    border-radius: 10px 10px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}


/* EACH STAT */

.client-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 75px;
}


/* STAT ICON */

.client-stat-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    background: #ffeadc;
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 800;
}


/* STAT TEXT */

.client-stat-copy {
    display: flex;
    flex-direction: column;
}


    .client-stat-copy strong {
        display: block;
        color: #52565A;
        font-size: 30px;
        line-height: 1;
        font-weight: 800;
        margin-bottom: 8px;
    }


    .client-stat-copy span {
        display: block;
        color: #70757A;
        font-size: 12px;
        line-height: 1.35;
        font-weight: 600;
    }


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    background: #fff7f1 !important;
    margin: 0 !important;
    padding: 0 0 16px !important;
}


    .final-cta .container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }


/* CTA BOX */

.cta-content {
    margin: 0 !important;
    padding: 30px 42px !important;
    min-height: 125px;
    background: #5F6368;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


    /* SMALL TITLE */

    .cta-content .section-small-title {
        color: #ff8a3d;
        margin: 0 0 5px !important;
        font-size: 10px;
    }


    /* CTA HEADING */

    .cta-content h2 {
        color: #ffffff;
        margin: 0 0 7px !important;
        font-size: 30px;
        line-height: 1.15;
    }


        .cta-content h2 span {
            color: #ff7a21;
        }


    /* CTA DESCRIPTION */

    .cta-content p {
        margin: 0 !important;
        color: #e7e7e7;
        font-size: 13px;
        line-height: 1.6;
    }


/* CTA BUTTON */

.cta-button {
    flex: 0 0 auto;
    min-width: 210px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    background: #ff6a00;
    color: #ffffff;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: .25s ease;
}


    .cta-button:hover {
        background: #e85c00;
        color: #ffffff;
        transform: translateY(-2px);
    }


    .cta-button span {
        font-size: 18px;
    }


/* =========================================================
   FOOTER
   BRING FOOTER IMMEDIATELY UNDER CTA
========================================================= */

.main-footer {
    margin: 0 !important;
    padding: 0 !important;
}


/* Reduce original 70px footer padding */

.footer-container {
    padding-top: 42px !important;
    padding-bottom: 32px !important;
}


/* Footer logo */

.footer-logo {
    margin-bottom: 15px !important;
}


/* Footer paragraph */

.footer-company p {
    margin-bottom: 0 !important;
}


/* Footer headings */

.footer-column h4 {
    margin-bottom: 15px !important;
}


/* Footer links */

.footer-column a {
    margin-bottom: 8px !important;
}


/* Footer copyright */

.footer-bottom-container {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}


/* =========================================================
   IMPORTANT:
   REMOVE ANY SPACE BETWEEN THESE SECTIONS
========================================================= */

.clients-showcase-section + .final-cta {
    margin-top: 0 !important;
}


.final-cta + .main-footer {
    margin-top: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .client-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        padding: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .clients-showcase-section {
        padding-top: 40px !important;
    }


    .clients-showcase-heading {
        margin-bottom: 22px !important;
    }


        .clients-showcase-heading h2 {
            font-size: 28px;
        }


    .client-marquee {
        padding-bottom: 20px !important;
    }


    .client-marquee-card {
        width: 150px;
        height: 90px;
        flex-basis: 150px;
    }


    .client-stats-strip {
        grid-template-columns: 1fr 1fr;
        padding: 25px 18px !important;
        gap: 25px 10px;
    }


    .client-stat-item {
        justify-content: flex-start;
    }


    .client-stat-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 17px;
    }


    .client-stat-copy strong {
        font-size: 24px;
    }


    .final-cta {
        padding-bottom: 12px !important;
    }


    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 25px !important;
        gap: 22px;
    }


        .cta-content h2 {
            font-size: 27px;
        }


    .cta-button {
        width: 100%;
    }


    .footer-container {
        padding-top: 35px !important;
        padding-bottom: 28px !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .client-stats-strip {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero-section {
    position: relative;
    padding: 105px 0 100px;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 62%, #fff6ef 100% );
    overflow: hidden;
}


    .about-hero-section::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -160px;
        top: -150px;
        border: 70px solid rgba(255,106,0,.055);
        border-radius: 50%;
    }


.about-hero-content {
    position: relative;
    max-width: 820px;
    z-index: 2;
}


    .about-hero-content .section-small-title {
        margin-bottom: 18px;
    }


    .about-hero-content h1 {
        max-width: 800px;
        margin-bottom: 24px;
        color: #5F6368;
        font-size: 58px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -2px;
    }


        .about-hero-content h1 span {
            color: var(--orange);
        }


    .about-hero-content p {
        max-width: 720px;
        margin-bottom: 32px;
        color: #70757A;
        font-size: 18px;
        line-height: 1.8;
    }


.about-hero-actions {
    display: flex;
    gap: 15px;
}


/* =========================================================
   STORY
========================================================= */

.about-story-section {
    padding: 95px 0;
    background: #ffffff;
}


.about-story-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}


.about-story-heading .section-small-title {
    margin-bottom: 14px;
}


.about-story-heading h2 {
    color: #5F6368;
    font-size: 43px;
    font-weight: 800;
    line-height: 1.15;
}


    .about-story-heading h2 span {
        color: var(--orange);
    }


.about-story-content p {
    margin-bottom: 20px;
    color: #70757A;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   STRENGTHS
========================================================= */

.about-strengths-section {
    padding: 95px 0;
    background: #F7F8F9;
}


.about-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}


    .about-section-heading .section-small-title {
        margin-bottom: 12px;
    }


    .about-section-heading h2 {
        margin-bottom: 14px;
        color: #5F6368;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.18;
    }


        .about-section-heading h2 span {
            color: var(--orange);
        }


    .about-section-heading p {
        color: #74797E;
        font-size: 15px;
        line-height: 1.75;
    }


.about-strength-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}


.about-strength-card {
    padding: 32px 25px;
    background: #ffffff;
    border: 1px solid #E6E8EA;
    text-align: center;
    transition: .25s ease;
}


    .about-strength-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,106,0,.28);
        box-shadow: 0 14px 30px rgba(60,65,70,.08);
    }


.about-strength-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255,106,0,.08);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}


    .about-strength-icon svg {
        width: 39px;
        height: 39px;
    }


.about-strength-card h3 {
    margin-bottom: 12px;
    color: #50555A;
    font-size: 18px;
    font-weight: 800;
}


.about-strength-card p {
    color: #74797E;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TALLY CUSTOMIZATION
========================================================= */

.about-tally-section {
    padding: 100px 0;
    background: #ffffff;
}


.about-tally-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 90px;
    align-items: center;
}


.about-tally-content .section-small-title {
    margin-bottom: 14px;
}


.about-tally-content h2 {
    margin-bottom: 20px;
    color: #5F6368;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
}


    .about-tally-content h2 span {
        color: var(--orange);
    }


.about-tally-content > p {
    max-width: 650px;
    margin-bottom: 28px;
    color: #70757A;
    font-size: 15px;
    line-height: 1.8;
}


.about-tally-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
}


    .about-tally-list div {
        color: #5F6368;
        font-size: 13px;
        font-weight: 600;
    }


    .about-tally-list span {
        margin-right: 8px;
        color: var(--orange);
        font-weight: 800;
    }


/* VISUAL */

.about-tally-visual {
    display: flex;
    justify-content: center;
}


.about-tally-card {
    width: 360px;
    padding: 42px;
    background: #5F6368;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 22px 45px rgba(60,65,70,.18);
}


.about-tally-card-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}


.about-tally-card > strong {
    display: block;
    margin-bottom: 5px;
    font-size: 24px;
}


.about-tally-card > span {
    color: #E4E6E8;
    font-size: 12px;
}


.about-tally-lines {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


    .about-tally-lines div {
        padding: 10px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.13);
        color: #ffffff;
        font-size: 11px;
    }


/* =========================================================
   ABOUT NUMBERS
========================================================= */

.about-numbers-section {
    padding: 46px 0;
    background: var(--orange);
}


.about-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}


.about-number-item {
    text-align: center;
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,.28);
}


    .about-number-item:last-child {
        border-right: none;
    }


    .about-number-item strong {
        display: block;
        margin-bottom: 5px;
        font-size: 36px;
        font-weight: 800;
    }


    .about-number-item span {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .3px;
    }


/* =========================================================
   ABOUT CTA
========================================================= */

.about-final-cta {
    padding: 65px 0;
    background: #fff7f1;
}


.about-cta-box {
    padding: 42px 48px;
    background: #5F6368;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    border-radius: 8px;
}


    .about-cta-box .section-small-title {
        margin-bottom: 8px;
    }


    .about-cta-box h2 {
        max-width: 720px;
        margin-bottom: 9px;
        color: #ffffff;
        font-size: 31px;
        line-height: 1.2;
    }


    .about-cta-box p {
        color: #E0E2E4;
        font-size: 14px;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-story-grid,
    .about-tally-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .about-strength-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .about-hero-section {
        padding: 75px 0;
    }


    .about-hero-content h1 {
        font-size: 40px;
    }


    .about-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }


    .about-story-section,
    .about-strengths-section,
    .about-tally-section {
        padding: 70px 0;
    }


    .about-story-heading h2,
    .about-tally-content h2 {
        font-size: 34px;
    }


    .about-strength-grid {
        grid-template-columns: 1fr;
    }


    .about-tally-list {
        grid-template-columns: 1fr;
    }


    .about-numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }


    .about-number-item {
        border-right: none;
    }


    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 28px;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero-section {
    position: relative;
    padding: 90px 0 85px;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 65%, #fff6ef 100% );
}


    .contact-hero-section::after {
        content: "";
        position: absolute;
        right: -160px;
        top: -180px;
        width: 430px;
        height: 430px;
        border: 70px solid rgba(255,106,0,.055);
        border-radius: 50%;
    }


.contact-hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}


    .contact-hero-content .section-small-title {
        margin-bottom: 15px;
    }


    .contact-hero-content h1 {
        margin-bottom: 20px;
        color: #5F6368;
        font-size: 54px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1.5px;
    }


        .contact-hero-content h1 span {
            color: var(--orange);
        }


    .contact-hero-content p {
        max-width: 720px;
        color: #70757A;
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main-section {
    padding: 85px 0 95px;
    background: #F7F8F9;
}


.contact-main-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 30px;
    align-items: stretch;
}


/* =========================================================
   CONTACT FORM PANEL
========================================================= */

.contact-form-panel {
    padding: 42px;
    background: #ffffff;
    border: 1px solid #E6E8EA;
    border-radius: 7px;
    box-shadow: 0 12px 35px rgba(60,65,70,.055);
}


.contact-panel-heading {
    margin-bottom: 30px;
}


    .contact-panel-heading .section-small-title {
        margin-bottom: 8px;
    }


    .contact-panel-heading h2 {
        margin-bottom: 10px;
        color: #50555A;
        font-size: 30px;
        font-weight: 800;
        line-height: 1.2;
    }


    .contact-panel-heading p {
        color: #74797E;
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   FORM
========================================================= */

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.contact-field {
    display: flex;
    flex-direction: column;
}


.contact-field-full {
    grid-column: 1 / -1;
}


.contact-field label {
    margin-bottom: 7px;
    color: #555A5F;
    font-size: 12px;
    font-weight: 700;
}


.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 13px 14px;
    background: #FAFAFA;
    border: 1px solid #DDE0E2;
    border-radius: 4px;
    outline: none;
    color: #52565A;
    font-family: inherit;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}


.contact-field textarea {
    resize: vertical;
    min-height: 145px;
}


    .contact-field input:focus,
    .contact-field textarea:focus {
        background: #ffffff;
        border-color: rgba(255,106,0,.65);
        box-shadow: 0 0 0 3px rgba(255,106,0,.07);
    }


    .contact-field input::placeholder,
    .contact-field textarea::placeholder {
        color: #A2A6AA;
    }


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {
    min-width: 180px;
    padding: 14px 22px;
    border: none;
    border-radius: 4px;
    background: var(--orange);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}


    .contact-submit-button:hover {
        background: var(--orange-dark);
        transform: translateY(-2px);
    }


    .contact-submit-button span {
        font-size: 18px;
    }


/* =========================================================
   CONTACT INFO PANEL
========================================================= */

.contact-info-panel {
    padding: 42px 36px;
    background: #5F6368;
    border-radius: 7px;
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(60,65,70,.16);
}


.contact-info-header {
    margin-bottom: 30px;
}


    .contact-info-header .section-small-title {
        margin-bottom: 8px;
    }


    .contact-info-header h2 {
        margin-bottom: 10px;
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
    }


    .contact-info-header p {
        color: #E2E4E6;
        font-size: 13px;
        line-height: 1.7;
    }


/* CONTACT INFO ITEM */

.contact-info-item {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    gap: 16px;
}


.contact-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,106,0,.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}


    .contact-info-icon svg {
        width: 27px;
        height: 27px;
    }


.contact-info-item > div:last-child {
    display: flex;
    flex-direction: column;
}


.contact-info-item span {
    margin-bottom: 4px;
    color: #C8CBCF;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


.contact-info-item a,
.contact-info-item strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


    .contact-info-item a:hover {
        color: var(--orange);
    }


/* =========================================================
   AUTHORISED TALLY PARTNER
========================================================= */

.contact-partner-box {
    margin-top: 26px;
    padding: 18px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    gap: 14px;
    align-items: center;
}


.contact-partner-mark {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}


.contact-partner-box strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 13px;
}


.contact-partner-box p {
    color: #DDE0E2;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   MAP
========================================================= */

.contact-location-section {
    padding: 80px 0;
    background: #ffffff;
}


.contact-location-heading {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}


    .contact-location-heading .section-small-title {
        margin-bottom: 8px;
    }


    .contact-location-heading h2 {
        margin-bottom: 8px;
        color: #50555A;
        font-size: 34px;
        font-weight: 800;
    }


    .contact-location-heading p {
        color: #74797E;
        font-size: 14px;
    }


.contact-map-wrapper {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #E5E7E9;
    box-shadow: 0 10px 30px rgba(60,65,70,.06);
}


    .contact-map-wrapper iframe {
        display: block;
        width: 100%;
    }


/* =========================================================
   CONTACT FINAL CTA
========================================================= */

.contact-final-section {
    padding: 22px 0 25px;
    background: #fff7f1;
}


.contact-final-box {
    padding: 34px 42px;
    background: #5F6368;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}


    .contact-final-box .section-small-title {
        margin-bottom: 6px;
    }


    .contact-final-box h2 {
        max-width: 700px;
        margin-bottom: 7px;
        color: #ffffff;
        font-size: 30px;
        line-height: 1.2;
    }


    .contact-final-box p {
        color: #E0E2E4;
        font-size: 13px;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .contact-hero-section {
        padding: 70px 0;
    }


    .contact-hero-content h1 {
        font-size: 39px;
    }


    .contact-main-section {
        padding: 60px 0;
    }


    .contact-form-panel,
    .contact-info-panel {
        padding: 30px 25px;
    }


    .contact-form-grid {
        grid-template-columns: 1fr;
    }


    .contact-field-full {
        grid-column: auto;
    }


    .contact-location-section {
        padding: 60px 0;
    }


    .contact-final-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }


        .contact-final-box h2 {
            font-size: 26px;
        }


        .contact-final-box .cta-button {
            width: 100%;
        }
}
/* =========================================================
   SOLUTIONS PAGE
========================================================= */


/* HERO */

.solutions-page-hero {
    position: relative;
    padding: 90px 0 85px;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 65%, #fff6ef 100% );
}

    .solutions-page-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -160px;
        top: -170px;
        border: 70px solid rgba(255,106,0,.055);
        border-radius: 50%;
    }

.solutions-page-hero-content {
    position: relative;
    max-width: 820px;
    z-index: 2;
}

    .solutions-page-hero-content .section-small-title {
        margin-bottom: 15px;
    }

    .solutions-page-hero-content h1 {
        margin-bottom: 22px;
        color: #5F6368;
        font-size: 54px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

        .solutions-page-hero-content h1 span {
            color: var(--orange);
        }

    .solutions-page-hero-content p {
        max-width: 720px;
        color: #70757A;
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   INTRO
========================================================= */

.solutions-intro-section {
    padding: 85px 0;
    background: #ffffff;
}

.solutions-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

    .solutions-intro-grid .section-small-title {
        margin-bottom: 12px;
    }

    .solutions-intro-grid h2 {
        color: #5F6368;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.15;
    }

        .solutions-intro-grid h2 span {
            color: var(--orange);
        }

.solutions-intro-copy p {
    margin-bottom: 18px;
    color: #70757A;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   SOLUTION GRID
========================================================= */

.solutions-page-grid-section {
    padding: 85px 0 95px;
    background: #F7F8F9;
}

.solutions-page-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.solutions-page-card {
    position: relative;
    min-height: 400px;
    padding: 34px 30px;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .solutions-page-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,106,0,.30);
        box-shadow: 0 15px 35px rgba(60,65,70,.09);
    }

.solutions-page-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(255,106,0,.08);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .solutions-page-icon svg {
        width: 40px;
        height: 40px;
    }

.solutions-page-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #C8CBCF;
    font-size: 11px;
    font-weight: 800;
}

.solutions-page-card h3 {
    margin-bottom: 12px;
    color: #4D5257;
    font-size: 20px;
    font-weight: 800;
}

.solutions-page-card > p {
    margin-bottom: 20px;
    color: #70757A;
    font-size: 13px;
    line-height: 1.7;
}

.solutions-page-card ul {
    margin: 0 0 22px;
    padding: 18px 0 0;
    border-top: 1px solid #EEEEEE;
    list-style: none;
}

.solutions-page-card li {
    margin-bottom: 8px;
    color: #64696E;
    font-size: 12px;
}

    .solutions-page-card li::before {
        content: "→";
        margin-right: 8px;
        color: var(--orange);
        font-weight: 800;
    }

.solutions-page-card a {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   APPROACH
========================================================= */

.solutions-approach-section {
    padding: 90px 0;
    background: #ffffff;
}

.solutions-approach-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

    .solutions-approach-heading .section-small-title {
        margin-bottom: 10px;
    }

    .solutions-approach-heading h2 {
        color: #5F6368;
        font-size: 38px;
        font-weight: 800;
    }

        .solutions-approach-heading h2 span {
            color: var(--orange);
        }

.solutions-approach-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.solutions-approach-item {
    padding: 30px 25px;
    border: 1px solid #E6E8EA;
    text-align: center;
}

    .solutions-approach-item strong {
        display: block;
        margin-bottom: 12px;
        color: var(--orange);
        font-size: 24px;
    }

    .solutions-approach-item h3 {
        margin-bottom: 9px;
        color: #50555A;
        font-size: 17px;
    }

    .solutions-approach-item p {
        color: #74797E;
        font-size: 12px;
        line-height: 1.6;
    }


/* =========================================================
   CTA
========================================================= */

.solutions-page-cta {
    padding: 25px 0;
    background: #fff7f1;
}

.solutions-page-cta-box {
    padding: 35px 42px;
    background: #5F6368;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

    .solutions-page-cta-box .section-small-title {
        margin-bottom: 6px;
    }

    .solutions-page-cta-box h2 {
        margin-bottom: 7px;
        color: #ffffff;
        font-size: 30px;
        line-height: 1.2;
    }

    .solutions-page-cta-box p {
        color: #E0E2E4;
        font-size: 13px;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .solutions-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solutions-approach-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .solutions-page-hero {
        padding: 70px 0;
    }

    .solutions-page-hero-content h1 {
        font-size: 39px;
    }

    .solutions-page-grid {
        grid-template-columns: 1fr;
    }

    .solutions-approach-grid {
        grid-template-columns: 1fr;
    }

    .solutions-page-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
}
/* =========================================================
   INDUSTRIES PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.industries-page-hero {
    position: relative;
    padding: 90px 0 85px;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 65%, #fff6ef 100% );
}


    .industries-page-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -160px;
        top: -170px;
        border: 70px solid rgba(255,106,0,.055);
        border-radius: 50%;
    }


.industries-page-hero-content {
    position: relative;
    max-width: 850px;
    z-index: 2;
}


    .industries-page-hero-content .section-small-title {
        margin-bottom: 15px;
    }


    .industries-page-hero-content h1 {
        max-width: 820px;
        margin-bottom: 22px;
        color: #5F6368;
        font-size: 54px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }


        .industries-page-hero-content h1 span {
            color: var(--orange);
        }


    .industries-page-hero-content p {
        max-width: 750px;
        color: #70757A;
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   INTRO
========================================================= */

.industries-intro-section {
    padding: 85px 0;
    background: #ffffff;
}


.industries-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}


    .industries-intro-grid .section-small-title {
        margin-bottom: 12px;
    }


    .industries-intro-grid h2 {
        color: #5F6368;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.15;
    }


        .industries-intro-grid h2 span {
            color: var(--orange);
        }


.industries-intro-copy p {
    margin-bottom: 18px;
    color: #70757A;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   DETAIL SECTION
========================================================= */

.industries-detail-section {
    padding: 85px 0 95px;
    background: #F7F8F9;
}


.industries-detail-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}


/* =========================================================
   INDUSTRY DETAIL CARD
========================================================= */

.industry-detail-card {
    padding: 34px;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}


    .industry-detail-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255,106,0,.28);
        box-shadow: 0 15px 35px rgba(60,65,70,.08);
    }


/* TOP */

.industry-detail-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}


/* ICON */

.industry-detail-icon {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


    .industry-detail-icon svg {
        width: 48px;
        height: 48px;
        fill: currentColor;
    }


/* COLORS */

.healthcare-industry-icon {
    color: #18A66F;
    background: rgba(24,166,111,.08);
}


.finance-industry-icon {
    color: #2878C7;
    background: rgba(40,120,199,.08);
}


.manufacturing-industry-icon {
    color: #FF7A21;
    background: rgba(255,122,33,.08);
}


.retail-industry-icon {
    color: #8A3DB8;
    background: rgba(138,61,184,.08);
}


.education-industry-icon {
    color: #DF4C78;
    background: rgba(223,76,120,.08);
}


/* LABEL */

.industry-detail-label {
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


/* TITLE */

.industry-detail-card h2 {
    color: #4F5459;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}


/* DESCRIPTION */

.industry-detail-description {
    margin-bottom: 22px;
    color: #70757A;
    font-size: 13px;
    line-height: 1.75;
}


/* FEATURES */

.industry-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 23px;
}


    .industry-detail-features span {
        padding: 7px 10px;
        background: #F6F7F8;
        border: 1px solid #E5E7E9;
        color: #656A6F;
        font-size: 10px;
        font-weight: 600;
    }


/* LINK */

.industry-detail-link {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}


    .industry-detail-link:hover {
        color: var(--orange-dark);
    }


/* =========================================================
   VALUE SECTION
========================================================= */

.industry-value-section {
    padding: 90px 0;
    background: #ffffff;
}


.industry-value-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


    .industry-value-heading .section-small-title {
        margin-bottom: 10px;
    }


    .industry-value-heading h2 {
        color: #5F6368;
        font-size: 38px;
        font-weight: 800;
    }


        .industry-value-heading h2 span {
            color: var(--orange);
        }


.industry-value-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


.industry-value-item {
    padding: 28px 24px;
    border: 1px solid #E5E7E9;
    text-align: center;
}


    .industry-value-item strong {
        display: block;
        margin-bottom: 10px;
        color: var(--orange);
        font-size: 24px;
    }


    .industry-value-item h3 {
        margin-bottom: 8px;
        color: #50555A;
        font-size: 17px;
    }


    .industry-value-item p {
        color: #74797E;
        font-size: 12px;
        line-height: 1.6;
    }


/* =========================================================
   CTA
========================================================= */

.industries-page-cta {
    padding: 25px 0;
    background: #fff7f1;
}


.industries-page-cta-box {
    padding: 35px 42px;
    background: #5F6368;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


    .industries-page-cta-box .section-small-title {
        margin-bottom: 6px;
    }


    .industries-page-cta-box h2 {
        margin-bottom: 7px;
        color: #ffffff;
        font-size: 30px;
        line-height: 1.2;
    }


    .industries-page-cta-box p {
        color: #E0E2E4;
        font-size: 13px;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .industries-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .industries-detail-grid {
        grid-template-columns: 1fr;
    }


    .industry-value-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .industries-page-hero {
        padding: 70px 0;
    }


    .industries-page-hero-content h1 {
        font-size: 39px;
    }


    .industry-detail-card {
        padding: 27px 23px;
    }


    .industry-detail-top {
        align-items: flex-start;
    }


    .industry-detail-icon {
        flex-basis: 65px;
        width: 65px;
        height: 65px;
    }


        .industry-detail-icon svg {
            width: 40px;
            height: 40px;
        }


    .industry-value-grid {
        grid-template-columns: 1fr;
    }


    .industries-page-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
}
/* =========================================================
   CLIENTS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.clients-page-hero {
    position: relative;
    padding: 90px 0 85px;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 65%, #fff6ef 100% );
}


    .clients-page-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -160px;
        top: -170px;
        border: 70px solid rgba(255,106,0,.055);
        border-radius: 50%;
    }


.clients-page-hero-content {
    position: relative;
    max-width: 830px;
    z-index: 2;
}


    .clients-page-hero-content .section-small-title {
        margin-bottom: 15px;
    }


    .clients-page-hero-content h1 {
        margin-bottom: 22px;
        color: #5F6368;
        font-size: 54px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }


        .clients-page-hero-content h1 span {
            color: var(--orange);
        }


    .clients-page-hero-content p {
        max-width: 740px;
        color: #70757A;
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   INTRO
========================================================= */

.clients-page-intro {
    padding: 85px 0;
    background: #ffffff;
}


.clients-page-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}


    .clients-page-intro-grid .section-small-title {
        margin-bottom: 12px;
    }


    .clients-page-intro-grid h2 {
        color: #5F6368;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.15;
    }


        .clients-page-intro-grid h2 span {
            color: var(--orange);
        }


.clients-page-intro-copy p {
    margin-bottom: 18px;
    color: #70757A;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   LOGO SECTION
========================================================= */

.clients-page-logos {
    padding: 70px 0 65px;
    background: #F7F8F9;
    overflow: hidden;
}


.clients-page-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}


    .clients-page-heading .section-small-title {
        margin-bottom: 9px;
    }


    .clients-page-heading h2 {
        margin-bottom: 10px;
        color: #50555A;
        font-size: 36px;
        font-weight: 800;
    }


        .clients-page-heading h2 span {
            color: var(--orange);
        }


    .clients-page-heading p {
        color: #74797E;
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   MARQUEE
========================================================= */

.clients-page-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}


.clients-page-marquee-track {
    width: max-content;
    display: flex;
    animation: clientsPageScroll 65s linear infinite;
    will-change: transform;
}


.clients-page-marquee-group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
}


.clients-page-marquee:hover
.clients-page-marquee-track {
    animation-play-state: paused;
}


@keyframes clientsPageScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   LOGO CARD
========================================================= */

.clients-page-logo-card {
    flex: 0 0 205px;
    width: 205px;
    height: 112px;
    padding: 5px;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(60,65,70,.035);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


    .clients-page-logo-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255,106,0,.30);
        box-shadow: 0 12px 30px rgba(60,65,70,.08);
    }


    .clients-page-logo-card img {
        width: 100%;
        height: 100%;
        max-width: 195px;
        max-height: 102px;
        object-fit: contain;
        filter: none;
        opacity: 1;
    }


/* =========================================================
   CLIENT SECTORS
========================================================= */

.clients-industries-section {
    padding: 85px 0 90px;
    background: #ffffff;
}


.clients-sector-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}


.clients-sector-card {
    min-height: 235px;
    padding: 28px 20px;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}


    .clients-sector-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px rgba(60,65,70,.08);
    }


.clients-sector-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .clients-sector-icon svg {
        width: 49px;
        height: 49px;
        fill: currentColor;
    }


.healthcare-client-sector {
    color: #18A66F;
}


.finance-client-sector {
    color: #2878C7;
}


.manufacturing-client-sector {
    color: #FF7A21;
}


.enterprise-client-sector {
    color: #8A3DB8;
}


.education-client-sector {
    color: #DF4C78;
}


.clients-sector-card h3 {
    margin-bottom: 10px;
    color: #4F5459;
    font-size: 16px;
    font-weight: 800;
}


.clients-sector-card p {
    color: #74797E;
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   CLIENT STATS
========================================================= */

.clients-page-stats {
    padding: 32px 0;
    background: #fff7f1;
}


.clients-page-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


.clients-page-stat-item {
    text-align: center;
}


    .clients-page-stat-item strong {
        display: block;
        margin-bottom: 5px;
        color: #4F5459;
        font-size: 34px;
        font-weight: 800;
    }


    .clients-page-stat-item span {
        color: #74797E;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }


/* =========================================================
   CTA
========================================================= */

.clients-page-cta {
    padding: 18px 0 24px;
    background: #fff7f1;
}


.clients-page-cta-box {
    padding: 35px 42px;
    background: #5F6368;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


    .clients-page-cta-box .section-small-title {
        margin-bottom: 6px;
    }


    .clients-page-cta-box h2 {
        margin-bottom: 7px;
        color: #ffffff;
        font-size: 30px;
        line-height: 1.2;
    }


    .clients-page-cta-box p {
        color: #E0E2E4;
        font-size: 13px;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .clients-page-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .clients-sector-grid {
        grid-template-columns: repeat(3,1fr);
    }
}


@media (max-width: 800px) {

    .clients-sector-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .clients-page-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}


@media (max-width: 700px) {

    .clients-page-hero {
        padding: 70px 0;
    }


    .clients-page-hero-content h1 {
        font-size: 39px;
    }


    .clients-page-logo-card {
        width: 165px;
        height: 92px;
        flex-basis: 165px;
    }


    .clients-sector-grid {
        grid-template-columns: 1fr;
    }


    .clients-page-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
}
/* =========================================================
   PROJECTS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.projects-page-hero {
    position: relative;
    padding: 90px 0 85px;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #ffffff 65%, #fff6ef 100% );
}


    .projects-page-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -160px;
        top: -170px;
        border: 70px solid rgba(255,106,0,.055);
        border-radius: 50%;
    }


.projects-page-hero-content {
    position: relative;
    max-width: 830px;
    z-index: 2;
}


    .projects-page-hero-content .section-small-title {
        margin-bottom: 15px;
    }


    .projects-page-hero-content h1 {
        margin-bottom: 22px;
        color: #5F6368;
        font-size: 54px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }


        .projects-page-hero-content h1 span {
            color: var(--orange);
        }


    .projects-page-hero-content p {
        max-width: 730px;
        color: #70757A;
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   INTRO
========================================================= */

.projects-intro-section {
    padding: 85px 0;
    background: #ffffff;
}


.projects-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}


    .projects-intro-grid .section-small-title {
        margin-bottom: 12px;
    }


    .projects-intro-grid h2 {
        color: #5F6368;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.15;
    }


        .projects-intro-grid h2 span {
            color: var(--orange);
        }


.projects-intro-copy p {
    margin-bottom: 18px;
    color: #70757A;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   COMMON PAGE HEADING
========================================================= */

.projects-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


    .projects-section-heading .section-small-title {
        margin-bottom: 10px;
    }


    .projects-section-heading h2 {
        margin-bottom: 10px;
        color: #50555A;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.15;
    }


        .projects-section-heading h2 span {
            color: var(--orange);
        }


    .projects-section-heading p {
        color: #74797E;
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   FEATURED PROJECTS
========================================================= */

.featured-projects-section {
    padding: 85px 0 95px;
    background: #F7F8F9;
}


.featured-project-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}


.featured-project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}


    .featured-project-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,106,0,.25);
        box-shadow: 0 15px 35px rgba(60,65,70,.09);
    }


/* =========================================================
   PROJECT VISUAL
========================================================= */

.project-visual {
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


    .project-visual::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -65px;
        bottom: -75px;
        border: 32px solid rgba(255,255,255,.06);
        border-radius: 50%;
    }


.healthcare-project-visual {
    background: #627478;
}


.finance-project-visual {
    background: #5F6368;
}


.tally-project-visual {
    background: #FF6A00;
}


.reporting-project-visual {
    background: #6D7175;
}


.project-visual-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}


    .project-visual-icon svg {
        width: 100%;
        height: 100%;
    }


.tally-project-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50%;
    font-size: 34px;
    font-weight: 900;
}


.project-visual-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.featured-project-content {
    padding: 30px;
}


.project-category {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


.featured-project-content h3 {
    margin-bottom: 12px;
    color: #4F5459;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}


.featured-project-content p {
    margin-bottom: 18px;
    color: #70757A;
    font-size: 13px;
    line-height: 1.75;
}


.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}


    .project-tags span {
        padding: 6px 9px;
        background: #F5F6F7;
        border: 1px solid #E5E7E9;
        color: #696E73;
        font-size: 9px;
        font-weight: 600;
    }


.featured-project-content a {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   PROJECT CAPABILITIES
========================================================= */

.project-capability-section {
    padding: 90px 0;
    background: #ffffff;
}


.project-capability-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}


.project-capability-card {
    position: relative;
    min-height: 185px;
    padding: 28px 24px;
    border: 1px solid #E5E7E9;
    background: #ffffff;
    transition: transform .25s ease, box-shadow .25s ease;
}


    .project-capability-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(60,65,70,.07);
    }


.project-capability-number {
    position: absolute;
    right: 20px;
    top: 18px;
    color: #D0D3D6;
    font-size: 11px;
    font-weight: 800;
}


.project-capability-card h3 {
    margin-bottom: 11px;
    color: #4F5459;
    font-size: 18px;
    font-weight: 800;
}


.project-capability-card p {
    color: #74797E;
    font-size: 12.5px;
    line-height: 1.7;
}


/* =========================================================
   DELIVERY
========================================================= */

.project-delivery-section {
    padding: 85px 0;
    background: #F7F8F9;
}


.project-delivery-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}


    .project-delivery-heading .section-small-title {
        margin-bottom: 10px;
    }


    .project-delivery-heading h2 {
        color: #50555A;
        font-size: 38px;
        font-weight: 800;
    }


        .project-delivery-heading h2 span {
            color: var(--orange);
        }


.project-delivery-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px;
}


.project-delivery-item {
    padding: 26px 20px;
    background: #ffffff;
    border: 1px solid #E5E7E9;
    text-align: center;
}


    .project-delivery-item strong {
        display: block;
        margin-bottom: 10px;
        color: var(--orange);
        font-size: 22px;
    }


    .project-delivery-item h3 {
        margin-bottom: 8px;
        color: #4F5459;
        font-size: 16px;
    }


    .project-delivery-item p {
        color: #74797E;
        font-size: 11.5px;
        line-height: 1.6;
    }


/* =========================================================
   CTA
========================================================= */

.projects-page-cta {
    padding: 22px 0 25px;
    background: #fff7f1;
}


.projects-page-cta-box {
    padding: 35px 42px;
    background: #5F6368;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


    .projects-page-cta-box .section-small-title {
        margin-bottom: 6px;
    }


    .projects-page-cta-box h2 {
        margin-bottom: 7px;
        color: #ffffff;
        font-size: 30px;
        line-height: 1.2;
    }


    .projects-page-cta-box p {
        color: #E0E2E4;
        font-size: 13px;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .projects-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .project-capability-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .project-delivery-grid {
        grid-template-columns: repeat(3,1fr);
    }
}


@media (max-width: 800px) {

    .featured-project-grid {
        grid-template-columns: 1fr;
    }


    .project-delivery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


@media (max-width: 700px) {

    .projects-page-hero {
        padding: 70px 0;
    }


    .projects-page-hero-content h1 {
        font-size: 39px;
    }


    .project-capability-grid,
    .project-delivery-grid {
        grid-template-columns: 1fr;
    }


    .projects-page-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
}
/* =========================================================
   TOP CONTACT BAR
========================================================= */

.top-contact-bar {
    width: 100%;
    background: #F7F8F9;
    border-bottom: 1px solid #E8EAEC;
}


.top-contact-container {
    max-width: 1280px;
    min-height: 34px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* LEFT */

.top-contact-left {
    color: #7A7F84;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}


/* RIGHT */

.top-contact-right {
    display: flex;
    align-items: center;
    gap: 12px;
}


.top-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #666B70;
    font-size: 11px;
    font-weight: 600;
    transition: color .2s ease;
}


    .top-contact-item:hover {
        color: var(--orange);
    }


    .top-contact-item svg {
        width: 14px;
        height: 14px;
        color: var(--orange);
    }


.top-contact-divider {
    width: 1px;
    height: 13px;
    background: #D7DADD;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .top-contact-left {
        display: none;
    }


    .top-contact-container {
        justify-content: center;
        padding: 6px 20px;
    }


    .top-contact-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}