:root {
  --panel: #f6f6f6;
  --muted: #5a6580;
  --bar: #041e42;
  --radius: 18px;
  --time: 5000ms;
   --bg-start: #edf2f8;
        --bg-mid: #d7e3f1;
        --bg-end: #b6cbe4;
        --surface: #fffdf9;
        --text-main: #0f2340;
        --text-soft: #4d6280;
        --accent: #07274f;
        --accent-deep: #031937;
        --chip-border: #9eb7d1;
        --gold-line: #07274f;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  /*font-family: Manrope, sans-serif;*/
  background: radial-gradient(circle at 20% 0%, #f4f4f4 0%, var(--bg) 45%, #e5e5e5 100%);
 
}

.home-wrap {
  max-width: 1360px;
  margin: 40px auto;
  padding: 0 24px;
}
.home-wrap a{
    color: #041e42;
}

.home-cards {
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-height: 680px;
  padding: 3%;
}

.home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.home-card:hover {
  transform: translateY(-2px);
}

.home-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.home-card-label {
    border: 1px solid rgba(7, 39, 79, 0.15);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: grid;
  place-items: center;
  flex: 1;
  font-size: 16px;
  font-weight: 800;
  /*letter-spacing: 0.8px;*/
  color: #1d2a43;
  /*padding: 12px 0 20px;*/
}

.home-card-content {
  display: none;
}

.home-card .home-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #dedafc;
}

.home-card .home-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bar);
  transform: scaleX(0);
  transform-origin: left center;
}

.home-card.home-active {
  width: 650px;
  box-shadow: 0 12px 30px rgba(31, 44, 68, 0.14);
  background-color: #113b6d;
}
.home-card.home-active a{
    color: #fff;
}

.home-card.home-active .home-card-label {
  display: none;
}

.home-card.home-active .home-card-content {
  display: block;
  /*padding: 30px 46px 56px;*/
}

.home-card.home-active .home-card-content p {
  margin: 0 0 24px;
  max-width: 560px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.home-card.home-active .home-card-content h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 800;
  color: #0b2242;
}

.home-card.home-active .home-progress {
  height: 5px;
}

.home-card.home-active .home-progress span {
  animation: fill var(--time) linear forwards;
}

@keyframes fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .home-cards {
    min-height: 520px;
  }

  .home-card {
    width: 110px;
  }

  .home-card-label {
    font-size: 34px;
  }

  .home-card.home-active {
    width: 58vw;
  }

  .home-card.home-active .home-card-content p {
    font-size: 21px;
  }

  .home-card.home-active .home-card-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 760px) {
  .home-wrap {
    margin: 20px auto;
    padding: 0 12px;
  }

  .home-cards {
    flex-direction: column;
    min-height: auto;
    gap: 12px;
  }

  .home-card {
    width: 100%;
    border-radius: 14px;
  }

  .home-card img {
    height: 210px;
  }

  .home-card-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 20px;
    min-height: 84px;
    padding: 6%;
  }

  .home-card.home-active {
    width: 100%;
  }

  .home-card.home-active .home-card-content {
    padding: 20px 20px 46px;
  }

  .home-card.home-active .home-card-content p {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .home-card.home-active .home-card-content h2 {
    font-size: 28px;
  }
}

.service-tiles{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.green-tiles{
    background: #015742;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    width: fit-content;
}
.green-tiles:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.38);
    background: #003e2f;
}



    .abt-interior-services {
        position: relative;
        overflow: hidden;
        max-width: 1040px;
        margin: 24px auto;
        padding: 40px 28px;
        border-radius: 26px;
        background:
            radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 45%),
            linear-gradient(120deg, var(--bg-start), var(--bg-mid) 56%, var(--bg-end));
        border: 1px solid rgba(7, 39, 79, 0.2);
        box-shadow: 0 30px 65px rgba(7, 39, 79, 0.2);
        color: var(--text-main);
        /*font-family: "Manrope", "Avenir Next", sans-serif;*/
    }

    .abt-interior-services::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(transparent 97%, rgba(7, 39, 79, 0.08) 100%);
        background-size: 100% 32px;
        pointer-events: none;
        opacity: 0.3;
    }

    .abt-interior-services::after {
        content: "";
        position: absolute;
        width: 210px;
        height: 210px;
        right: -75px;
        top: -80px;
        border-radius: 999px;
        border: 1px solid rgba(7, 39, 79, 0.45);
        box-shadow: 0 0 0 28px rgba(7, 39, 79, 0.12), 0 0 0 56px rgba(7, 39, 79, 0.08);
        pointer-events: none;
    }

    .abt-services-header {
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
    }

    .abt-services-header .abt-eyebrow {
        margin: 0 0 8px;
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #325177;
        font-weight: 700;
    }

    .abt-services-header h2 {
        margin: 0;
        max-width: 720px;
        font-size: clamp(26px, 3.5vw, 38px);
        line-height: 1.2;
        font-weight: 600;
        /*font-family: "Cormorant Garamond", "Times New Roman", serif;*/
        letter-spacing: 0.01em;
        text-wrap: balance;
    }

    .abt-services-header h2::after {
        content: "";
        display: block;
        width: 92px;
        height: 2px;
        margin-top: 12px;
        background: linear-gradient(90deg, var(--gold-line), rgba(7, 39, 79, 0));
    }

    .abt-service-tiles {
        position: relative;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
        align-items: flex-start;
    }

    .abt-service-chip {
        width: fit-content;
        margin: 0;
        padding: 11px 17px;
        border-radius: 999px;
        border: 1px solid var(--chip-border);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.88));
        color: var(--text-main);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.015em;
        line-height: 1.3;
        box-shadow: 0 8px 20px rgba(7, 39, 79, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(3px);
        transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
        animation: riseIn 0.6s ease both;
    }

    .abt-service-chip:nth-child(2n) {
        animation-delay: 0.06s;
    }

    .abt-service-chip:nth-child(3n) {
        animation-delay: 0.12s;
    }

    .abt-service-chip:hover {
        transform: translateY(-3px) scale(1.02);
        border-color: var(--accent);
        background: linear-gradient(135deg, #fff8ef, #fffdf9);
        box-shadow: 0 15px 28px rgba(7, 39, 79, 0.24);
        color: var(--accent-deep);
    }

    @keyframes riseIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 640px) {
        .abt-interior-services {
            margin: 14px;
            padding: 28px 16px 24px;
            border-radius: 18px;
        }

        .abt-services-header h2 {
            max-width: 100%;
            font-size: clamp(24px, 8vw, 31px);
        }

        .abt-service-chip {
            font-size: 13px;
            padding: 9px 14px;
        }
    }
    
    /*=====================    Interior & Built Environment Services ends ==============================*/
    
     .abt-why-choose-luxe {
        position: relative;
        display: grid;
        gap: 16px;
        padding: 28px;
        border-radius: 24px;
        background:
            radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 42%),
            linear-gradient(145deg, #f3f7fc, #dce8f5 55%, #c6d8eb);
        border: 1px solid rgba(7, 39, 79, 0.14);
        box-shadow: 0 24px 50px rgba(7, 39, 79, 0.16);
        overflow: hidden;
    }

    .abt-why-choose-luxe::before {
        content: "";
        position: absolute;
        left: 58px;
        top: 38px;
        bottom: 38px;
        width: 2px;
        background: linear-gradient(180deg, rgba(7, 39, 79, 0), rgba(7, 39, 79, 0.28), rgba(7, 39, 79, 0));
        pointer-events: none;
    }

    .abt-why-choose-luxe .why-choose-item {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 16px;
        align-items: start;
        padding: 18px;
        border-radius: 18px;
        background: linear-gradient(130deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66));
        border: 1px solid rgba(168, 183, 204, 0.72);
        box-shadow: 0 10px 22px rgba(7, 39, 79, 0.08);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .abt-why-choose-luxe .why-choose-item:hover {
        transform: translateY(-4px);
        border-color: rgba(7, 39, 79, 0.34);
        box-shadow: 0 16px 30px rgba(7, 39, 79, 0.16);
    }

    .abt-why-choose-luxe .icon-box {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: linear-gradient(150deg, #07274f, #154278);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 20px rgba(7, 39, 79, 0.24);
    }

    .abt-why-choose-luxe .icon-box img {
        width: 34px;
        height: 34px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .abt-why-choose-luxe .why-choose-item-content h3 {
        margin: 0 0 8px;
        color: #07274f;
        font-size: clamp(18px, 2.2vw, 22px);
        line-height: 1.25;
        /*font-family: "Cormorant Garamond", "Times New Roman", serif;*/
        font-weight: 700;
        letter-spacing: 0.01em;
    }

    .abt-why-choose-luxe .why-choose-item-content p {
        margin: 0;
        color: #1f3f67;
        font-size: 14px;
        line-height: 1.65;
        /*font-family: "Hanken Grotesk", sans-serif;*/
        max-width: 70ch;
    }

    @media (max-width: 768px) {
        .abt-why-choose-luxe {
            padding: 16px;
            border-radius: 18px;
        }

        .abt-why-choose-luxe::before {
            display: none;
        }

        .abt-why-choose-luxe .why-choose-item {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 14px;
        }

        .abt-why-choose-luxe .icon-box {
            width: 58px;
            height: 58px;
            border-radius: 12px;
        }

        .abt-why-choose-luxe .icon-box img {
            width: 28px;
            height: 28px;
        }
    }
    
    .cr-sty{
        position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 42%), linear-gradient(145deg, #f3f7fc, #dce8f5 55%, #c6d8eb);
  border: 1px solid rgba(7, 39, 79, 0.14);
  box-shadow: 0 24px 50px rgba(7, 39, 79, 0.16);
  overflow: hidden;
    }
    
    .cr-sty-2{
        
  
  border-radius: 24px;
  background: radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 42%), linear-gradient(145deg, #f3f7fc, #dce8f5 55%, #c6d8eb);
  border: 1px solid rgba(7, 39, 79, 0.14);
  box-shadow: 0 24px 50px rgba(7, 39, 79, 0.16);
  overflow: hidden;
    }
    
    .sdet-page {
        position: relative;
        padding: clamp(62px, 8vw, 108px) 0;
        background:
            radial-gradient(circle at 8% 16%, rgba(7, 39, 79, 0.1), rgba(7, 39, 79, 0) 28%),
            radial-gradient(circle at 90% 84%, rgba(30, 92, 148, 0.14), rgba(30, 92, 148, 0) 34%),
            linear-gradient(165deg, #f6f9ff, #e5edf8 56%, #d7e4f5);
        overflow: hidden;
    }

    .sdet-page::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
            linear-gradient(90deg, rgba(7, 39, 79, 0.08) 1px, transparent 1px),
            linear-gradient(rgba(7, 39, 79, 0.07) 1px, transparent 1px);
        background-size: 44px 44px;
        opacity: 0.16;
    }

    .sdet-page .container {
        position: relative;
        z-index: 1;
        max-width: 1450px;
    }

    .sdet-content-shell {
        max-width: 1080px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(340px, 0.95fr) 1.05fr;
        gap: 20px;
        align-items: start;
        border-radius: 26px;
        border: 1px solid rgba(7, 39, 79, 0.18);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 255, 0.82));
        box-shadow: 0 22px 52px rgba(7, 39, 79, 0.16);
        padding: clamp(16px, 2.2vw, 24px);
    }

    .sdet-cover {
        position: sticky;
        top: 110px;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(7, 39, 79, 0.2);
        box-shadow: 0 16px 34px rgba(7, 39, 79, 0.2);
    }

    .sdet-cover img {
        width: 100%;
        display: block;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    .sdet-entry {
        background: linear-gradient(160deg, #ffffff, #f6faff);
        border-radius: 18px;
        border: 1px solid rgba(146, 170, 199, 0.52);
        padding: clamp(18px, 2.6vw, 30px);
    }

    .sdet-entry h2 {
        margin: 0 0 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(7, 39, 79, 0.2);
        color: #041e42;
        font-size: clamp(34px, 4.3vw, 54px);
        line-height: 1.02;
        /*font-family: "Cormorant Garamond", "Times New Roman", serif;*/
        letter-spacing: 0.015em;
    }

    .sdet-entry p {
        margin: 0 0 14px;
        color: #123a66;
        font-size: 15px;
        line-height: 1.82;
    }

    .sdet-entry ul {
        margin: 10px 0 10px;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .sdet-entry li {
        position: relative;
        padding: 13px 14px 13px 40px;
        border-radius: 12px;
        border: 1px solid rgba(7, 39, 79, 0.18);
        background: linear-gradient(135deg, #f7fbff, #e9f2fd);
        box-shadow: 0 6px 14px rgba(7, 39, 79, 0.1);
    }

    .sdet-entry li::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 50%;
        width: 10px;
        height: 10px;
        transform: translateY(-50%);
        border-radius: 999px;
        background: linear-gradient(135deg, #07274f, #1f5f98);
        box-shadow: 0 0 0 4px rgba(7, 39, 79, 0.12);
    }

    .sdet-entry h4 {
        margin: 0;
        color: #07274f;
        font-size: 16px;
        font-weight: 700;
    }

    .project-gallery {
        grid-column: 1 / -1;
        margin-top: 4px;
        border-radius: 18px;
        padding: 18px;
        border: 1px solid rgba(7, 39, 79, 0.16);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(239, 246, 255, 0.8));
    }

    .project-gallery h2 {
        margin: 0 0 12px;
        color: #041e42;
        font-size: clamp(28px, 3.2vw, 42px);
        /*font-family: "Cormorant Garamond", "Times New Roman", serif;*/
        line-height: 1.05;
    }

    .project-gallery-images {
        /*display: grid;*/
        /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
        /*gap: 12px;*/
    }

    .project-gallery-img {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(7, 39, 79, 0.16);
        box-shadow: 0 10px 22px rgba(7, 39, 79, 0.12);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .project-gallery-img:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(7, 39, 79, 0.2);
    }

    .project-gallery-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    @media (max-width: 991px) {
        .sdet-content-shell {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .sdet-cover {
            position: static;
        }

        .sdet-cover img {
            aspect-ratio: 16 / 10;
        }
    }

    @media (max-width: 640px) {
        .sdet-entry h2 {
            font-size: clamp(30px, 8.5vw, 44px);
        }

        .sdet-entry p {
            font-size: 14px;
            line-height: 1.75;
        }

        .project-gallery {
            padding: 12px;
            border-radius: 14px;
        }

        .project-gallery-images {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }
    .client_logoSection {
    --client_logo_primary: #041e42;
    --client_logo_accent: #07274f;
    --client_logo_text: #0a305f;
    --client_logo_card: #ffffff;
    --client_logo_stroke: rgba(4, 30, 66, 0.14);
    --client_logo_shadow: 0 18px 44px rgba(4, 30, 66, 0.12);
    --client_logo_radius: 22px;
    --client_logo_gap: clamp(12px, 1.6vw, 18px);
    --client_logo_slide_w: clamp(160px, 22vw, 220px);

    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    overflow: hidden;
    /*background:*/
    /*  radial-gradient(circle at 12% 20%, rgba(7, 39, 79, 0.14), rgba(7, 39, 79, 0) 40%),*/
    /*  radial-gradient(circle at 92% 82%, rgba(4, 30, 66, 0.12), rgba(4, 30, 66, 0) 42%),*/
    /*  linear-gradient(160deg, #fbfdff, #eef3f9 54%, #e5edf8);*/
    color: var(--client_logo_text);
  }

  .client_logoSection::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    /*background-image:*/
    /*  linear-gradient(90deg, rgba(4, 30, 66, 0.06) 1px, transparent 1px),*/
    /*  linear-gradient(rgba(4, 30, 66, 0.06) 1px, transparent 1px);*/
    background-size: 56px 56px;
    opacity: 0.28;
  }

  .client_logoWrap {
    position: relative;
    /*max-width: 1100px;*/
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 0);
  }

  .client_logoHeader {
    display: grid;
    gap: 10px;
    margin-bottom: clamp(18px, 3vw, 26px);
  }

  .client_logoEyebrow {
    margin: 0;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: rgba(7, 39, 79, 0.78);
  }

  .client_logoTitle {
    margin: 0;
    /*font-family: "Cormorant Garamond", "Times New Roman", serif;*/
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.04;
    color: var(--client_logo_primary);
    font-size: clamp(30px, 4.3vw, 52px);
  }

  .client_logoLead {
    margin: 0;
    max-width: 60ch;
    color: rgba(10, 48, 95, 0.78);
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.55;
  }

  .client_logoSlider {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(10px, 1.8vw, 14px);
  }

  .client_logoViewport {
    position: relative;
    border-radius: var(--client_logo_radius);
    border: 1px solid rgba(4, 30, 66, 0.1);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(4, 30, 66, 0.12);

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    padding: clamp(12px, 2.2vw, 18px);
  }

  .client_logoViewport:focus {
    outline: none;
  }

  .client_logoViewport:focus-visible {
    outline: 3px solid rgba(7, 39, 79, 0.28);
    outline-offset: 4px;
  }

  .client_logoViewport::before,
  .client_logoViewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 34px;
    pointer-events: none;
    z-index: 2;
  }

  .client_logoViewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(251, 253, 255, 1), rgba(251, 253, 255, 0));
  }

  .client_logoViewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(251, 253, 255, 1), rgba(251, 253, 255, 0));
  }

  .client_logoViewport::-webkit-scrollbar {
    height: 10px;
  }

  .client_logoViewport::-webkit-scrollbar-track {
    background: rgba(4, 30, 66, 0.06);
    border-radius: 999px;
  }

  .client_logoViewport::-webkit-scrollbar-thumb {
    background: rgba(4, 30, 66, 0.22);
    border-radius: 999px;
  }

  .client_logoTrack {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--client_logo_gap);
    align-items: stretch;
  }

  .client_logoSlide {
    flex: 0 0 auto;
    width: var(--client_logo_slide_w);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .client_logoLink {
    display: grid;
    place-items: center;
    height: 96px;
    border-radius: 18px;
    background: var(--client_logo_card);
    border: 1px solid rgb(4, 30, 66);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    will-change: transform;
  }

  .client_logoLink:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 39, 79, 0.22);
    box-shadow: var(--client_logo_shadow);
  }

  .client_logoLink:focus {
    outline: none;
  }

  .client_logoLink:focus-visible {
    outline: 3px solid rgba(7, 39, 79, 0.28);
    outline-offset: 4px;
  }

  .client_logoImg {
    width: min(170px, 78%);
    height: 52px;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    opacity: 0.92;
    transition: filter 200ms ease, opacity 200ms ease;
  }

  .client_logoLink:hover .client_logoImg {
    filter: grayscale(0%);
    opacity: 1;
  }

  .client_logoBtn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(4, 30, 66, 0.14);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(4, 30, 66, 0.12);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
  }

  .client_logoBtn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(7, 39, 79, 0.2);
  }

  .client_logoBtn:focus {
    outline: none;
  }

  .client_logoBtn:focus-visible {
    outline: 3px solid rgba(7, 39, 79, 0.28);
    outline-offset: 4px;
  }

  .client_logoBtnIcon {
    font-size: 26px;
    line-height: 1;
    color: var(--client_logo_primary);
    transform: translateY(-1px);
    user-select: none;
  }

  @media (max-width: 680px) {
    .client_logoSlider {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .client_logoBtn {
      display: none;
    }

    .client_logoViewport::before,
    .client_logoViewport::after {
      width: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .client_logoViewport {
      scroll-behavior: auto;
    }

    .client_logoLink,
    .client_logoImg,
    .client_logoBtn {
      transition: none;
    }
  }
