@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --gold: #f7bd13;
    --gold-dark: #d49a00;
    --ink: #11161b;
    --paper: #eee8dd;
    --paper-deep: #e7ded1;
    --muted: #62656a;
    --cyan: #09aee0;
    --magenta: #e90086;
    --yellow: #f5e800;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: "Archivo", Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

body.is-loading {
    overflow: hidden;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #11171b;
    color: #fff;
    transition: opacity .5s ease, visibility .5s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.preloader-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    animation: preloader-pulse 1.7s ease-in-out infinite;
}

.preloader-inner strong {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

@keyframes preloader-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

button,
input,
textarea,
select {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1180px;
}

.top-bar {
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 0;
}

.top-bar a i {
    margin-right: 6px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #f3f0ea;
    /* box-shadow: 0 8px 24px rgba(17, 22, 27, .08); */
}

.navbar {
    min-height: 74px;
    padding: 0;
}

.navbar-brand img {
    width: 118px;
}

.navbar-nav {
    gap: 22px;
}

.nav-link {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobile-drawer-head,
.mobile-drawer-info {
    display: none;
}

.btn {
    border-radius: 0;
    border-width: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 8px 23px;
    text-transform: uppercase;
}

.btn-dark-nav,
.btn-dark-block,
.btn-card {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.btn-dark-nav:hover,
.btn-dark-block:hover,
.btn-card:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    /* transform: translateY(-2px); */
}

.btn-primary-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.btn-primary-gold:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
    /* transform: translateY(-2px); */
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--ink);
    /* transform: translateY(-2px); */
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(5, 9, 13, .82), rgba(5, 9, 13, .38)), url("../img/backgrounds/hero-bg.webp") center/cover no-repeat;
    color: #fff;
}

.hero-content {
    max-width: 650px;
}

.hero h1,
.section h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(42px, 5.2vw, 52px);
}

.hero p {
    max-width: 850px;
       margin: 10px 0 30px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 300;
}

.hero-page {
    min-height: 390px;
}

.hero-page h1 {
    font-size: clamp(36px, 4vw, 48px);
}

.hero .breadcrumb {
    background: none;
    margin: 10px 0 0;
}

.hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .6);
}

.hero .breadcrumb-item a,
.hero .breadcrumb-item.active {
    color: #fff;
}

.hero .breadcrumb-item a:hover {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.section {
    padding: 76px 0;
}

.section h2 {
       font-size: clamp(34px, 4.4vw, 49px);
    font-weight: 800;

}

.logos-section p,
.section-heading p {
    color: #282d31;
    font-size: 15px;
    margin: 18px 0 0;
}

.about-section p {
    color: #262b2f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.62;
    margin: 22px 0 0;
    text-align: justify;
}

.about-section .btn-dark-block {
    margin-top: 34px;
}

.quote-card {
    background: #fdc83c;
    color: var(--ink);
    min-height: 100%;
    padding: 44px 40px 34px;
    border-radius: 15px;
}

.quote-card p {
    color: var(--ink);
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.62;
    text-align: left;
}

.quote-author {
    border-top: 1px solid rgba(17, 22, 27, .25);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    padding-top: 24px;
}

.quote-author strong,
.quote-author span span {
    display: block;
}

.author-photo {
    width: 68px;
    height: 68px;
    object-fit: cover;
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 50%;
}
.about-section{
     background: var(--paper);
}

.foundation-section {
    position: relative;
    background: #f2efea;
    overflow: hidden;
    padding: 90px 0 70px;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 360px 290px 135px;
    align-items: stretch;
        gap: 5px;
    position: relative;
}

.foundation-title {
    grid-column: 1 / 6;
    grid-row: 1;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.foundation-title h2 {
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.12;
}

.foundation-copy {
    grid-column: 6 / 13;
    grid-row: 1 / 4;
    min-height: auto;
    padding: 115px 120px 0 165px;
    background: url("../img/backgrounds/foundation-bg.webp") center/cover no-repeat;
    color: #fff;
    position: relative;
    z-index: 1;
        margin-right: -100px;
        
}

.foundation-copy p {
    color: #fff;
    max-width: 535px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
}

.foundation-card {
    min-height: 300px;
    padding: 91px 18px 28px;
    border: 1px solid rgb(17 22 27 / 64%);
    color: #fff;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    margin-top: -54px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foundation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 22, 27, .18);
}

.foundation-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 68px;
    height: 68px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.foundation-card:hover .foundation-icon {
    transform: scale(1.15) rotate(-6deg);
}

.foundation-card h3,
.product-card h3,
.process-card h3,
.service-card h3 {
    margin: 76px 0 14px;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.foundation-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
}

.foundation-card h3 {
       border-bottom: 1px solid rgb(51 46 46 / 31%);
    padding-bottom: 16px;
}

.foundation-card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.foundation-card.blue {
    grid-column: 1 / 4;
    grid-row: 2;
}

.foundation-card.magenta {
    grid-column: 4 / 7;
    grid-row: 2;
}

.foundation-card.yellow {
    grid-column: 7 / 10;
    grid-row: 2;
}

.foundation-card.black {
    grid-column: 10 / 13;
    grid-row: 2;
}

.foundation-card.blue {
    background: #f8978e;
    color: var(--ink);
}

.foundation-card.magenta {
    background: #fedc82;
    color: var(--ink);
}

.foundation-card.yellow {
    background: #82dff1;
    color: var(--ink);
}

.foundation-card.black {
    background: #85ddcd;
    color: var(--ink);
}

.section-heading {
    max-width: 1040px;
    margin-bottom: 40px;
}

.section-heading.centered {
    max-width: none;
    text-align: center;
}

.products-section {
    background: #f3f0ea;
}

.product-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    padding: 0;
    list-style: none;
    border: 0;
}

.product-tabs .nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #333333;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0 24px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    background: #f5f5f5;
}

.product-tabs .nav-link.active,
.product-tabs .tab-black.active {
    background: #1B1F24;
    color: #FFFFFF;
    border-color: #1B1F24;
}

.product-tab-content {
    min-height: 200px;
}

.press-sub-tabs.product-tabs {
    gap: 10px;
    margin-bottom: 28px;
}

.press-sub-tabs.product-tabs .nav-link {
    flex: 1;
    font-size: 11px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.65);
    border-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.press-sub-tabs.product-tabs .nav-link.active {
    background: #C9A227;
    color: #FFFFFF;
    border-color: #C9A227;
}

.material-spec-card.product-card {
    background: var(--paper-deep);
}

.spec-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgb(17 22 27 / 10%);
}

.spec-actions .btn {
    padding: 11px 26px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.spec-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 22, 27, .18);
}

.application-card {
    background: #fff;
    border: 1px solid rgb(17 22 27 / 10%);
    border-radius: 16px;
    padding: 28px 30px 26px;
    box-shadow: 0 8px 28px rgba(17, 22, 27, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.application-card h3 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--gold);
    color: var(--ink);
}

.application-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.application-card ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #3f4347;
    font-size: 14.5px;
    line-height: 1.6;
}

.application-card ul li::before {
    content: "";
    position: absolute; 
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.application-card ul li strong {
    color: var(--ink);
}

.application-card .spec-actions {
    margin-top: auto;
    padding-top: 24px;
}

.intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 22, 27, .18);
    height: 100%;
    /* min-height: 360px; */
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-card {
    background: #fff;
    border: 1px solid rgb(17 22 27 / 10%);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 8px 28px rgba(17, 22, 27, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.quality-card:hover,
.availability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(17, 22, 27, .12);
    border-color: var(--gold);
}

.quality-icon,
.availability-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.quality-card h3,
.availability-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}

.quality-card p,
.availability-card p {
    color: #3f4347;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

.quality-note {
    color: #3f4347;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.application-card .quality-note:last-child {
    margin-bottom: 0;
}

.quality-note strong {
    color: var(--ink);
}

.availability-card {
    background: #fff;
    border: 1px solid rgb(17 22 27 / 10%);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 8px 28px rgba(17, 22, 27, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.availability-icon {
    background: var(--paper-deep);
}

.print-sides-card {
    background: var(--paper-deep);
    border-radius: 16px;
    border-left: 6px solid var(--gold);
    padding: 26px 28px;
    height: 100%;
}

.print-sides-card h3 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--ink);
    margin: 0 0 18px;
}

.print-sides-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.print-side {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid rgb(17 22 27 / 10%);
    border-radius: 12px;
    padding: 16px 18px;
}

.print-side-fig {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.print-side p {
    margin: 0;
    color: #3f4347;
    font-size: 14px;
    line-height: 1.6;
}

.print-side p strong {
    color: var(--ink);
}

.material-spec-card.product-card-horizontal {
    gap: 24px;
}

.material-spec-card .material-spec-body {
    justify-content: flex-start;
}

.material-spec-body h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.spec-ce {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 30px;
    letter-spacing: .5px;
    background: var(--gold);
    color: var(--ink);
}

.spec-tagline {
    margin: 10px 0 14px;
    color: #3f4347;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}

.spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.spec-chips span {
    background: #fff;
    border: 1px solid rgb(17 22 27 / 10%);
    border-radius: 30px;
    padding: 5px 12px;
    font-size: 12.5px;
    color: #62656a;
}

.spec-chips strong {
    color: var(--ink);
    font-weight: 700;
}

.spec-features {
    margin: 0;
    padding: 0 0 0 18px;
}

.spec-features li {
    color: #3f4347;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.product-card {    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--paper-deep);
    border-radius: var(--radius);
    padding: 14px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(17, 22, 27, .12);
}

.product-card-horizontal {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-card-horizontal a:first-child {
    flex: 0 0 260px;
}

.product-card-horizontal img {
    aspect-ratio: auto;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.product-card-body h3 {
    margin: 0 0 8px;
}

.product-card-body .btn-card {
    width: auto;
    align-self: flex-start;
    margin-top: 12px;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.9 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.product-card h3 {
    margin: 20px 0 8px;
    font-size: 21px;
    font-weight: 800;
    text-transform: none;
}

.product-card p {
    color: #3f4347;
    font-size: 15px;
}

.btn-card {
    width: 100%;
    margin-top: 16px;
    padding: 4px 18px;
    border-radius: 5px;
}

.catalogue-cta {
    min-height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../img/cta/catalogue-cta.webp") center/cover no-repeat;
    border-radius: var(--radius);
    color: #fff;
   padding: 95px 65px 95px 70px;
}

.catalogue-cta-content {
    position: relative;
    z-index: 2;
}

.catalogue-cta h2 {
    font-size: clamp(38px, 4.4vw, 56px);
    color: #e7ded1;
    font-weight: 800;
        margin-bottom: 20px;
}

.catalogue-cta p {
    max-width: 450px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    margin: 18px 0 26px;
}

.catalogue-cta-img {
    position: absolute;
    right: 140px;
    bottom: 18px;
    z-index: 1;
    width: min(32vw, 371px);
    max-height: 88%; 
    object-fit: contain;
}

.process-section {
    background: var(--paper);
    overflow: visible;
    padding-top: 84px;
    padding-bottom: 82px;
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    overflow: visible;
}

.process-line::before {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    top: calc(220px + 52px);
    height: 2px;
    background: rgba(17, 22, 27, .09);
}

.process-card {
    display: grid;
    grid-template-rows: 212px auto;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease;
}

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

.process-card img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.process-card:hover img {
    transform: scale(1.03);
}

.process-content {
    position: relative;
    padding-top: 34px;
}

.process-card span {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 0 24px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-card:hover span {
    transform: scale(1.12);
    background: var(--gold-dark);
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.process-card p {
    color: #404448;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.service-section {
    background:url("../img/backgrounds/service-bg.webp") center/cover no-repeat;
    padding: 92px 0 108px;
}
.service-section .wi6{
    width: 55%;
}
.service-section .wi4{
    width: 45%;
}

 

.service-section .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 16px;
}

.section-heading.light {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
    text-align: center;
}

.section-heading.light h2 {
    font-size: clamp(38px, 4.2vw, 50px);
    line-height: 1.08;
}

.section-heading.light p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
}

.service-card {
    min-height: 136px;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 0;
    border-left: 6px solid var(--gold);
    border-radius: 12px;
    padding: 25px 32px 25px 34px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(17, 22, 27, .15);
    border-left-color: var(--ink);
}

.service-card.muted {
    background: #e9dfcf;
}

.service-card.muted:hover {
    background: #e0d4bf;
}

.service-icon {
    width: 74px;
    height: 74px;
    object-fit: contain;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-4deg);
}

.service-card h3 {
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(17, 22, 27, .22);
    padding-bottom: 6px;
    font-size: 22px;
    line-height: 1.1;
}

.service-card p {
    margin: 0;
    color: #353a3e;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    max-width: 470px;
}

.logos-section {
    background: #f2eee7;
    overflow: hidden;
    padding: 96px 0 84px;
}

.logos-section .row {
    align-items: flex-start !important;
    min-height: 545px;
}

.logos-section .col-lg-4 {
    padding-top: 30px;
}

.logos-section h2 {
        font-size: clamp(34px, 4.4vw, 49px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 26px;
}

.logos-section p {
   max-width: 431px;
    font-size: 15px;
    line-height: 1.62;
    font-weight: 600;
}
.trust-sec{
position: absolute;
}

.logo-wall {
    position: relative;
    width: calc(100% + 260px);
    min-height: 545px;
    transform: translateX(-45px);
}

.client-logo {
    position: absolute;
    width: 168px;
    height: 106px;
    display: grid;
    place-items: center;
    background: #f2eee7;
    border-radius: 18px;
    box-shadow: 0 24px 35px 0px rgba(0, 0, 0, 0.16);
    padding: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 48px rgba(17, 22, 27, .24);
}

 

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-logo span {
    color: #3a444d;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.logo-daetwyler {
    left: 24px;
    top: 300px;
}

.logo-heidelberg {
        left: 24px;
    top: 440px;
}

.logo-prisco {
    left: 19%;
    top: 97px;
}

.logo-continental {
        left: 19%;
    top: 237px;
}

.logo-kodak {
        left: 19%;
    top: 376px;
}

.logo-sahira {
    left: 36%;
    top: 11px;
}

.logo-upack {
    left: 36%;
    top: 151px;
}

.logo-pressclean {
    left: 36%;
    top: 291px;  
}

.logo-katsura { 
    left: 36%;
    top: 431px;
}

.logo-siprovin {
       left: 53%;
    top: 96px;
}

.logo-pcs {
      left: 53%;
    top: 237px; 
}

.logo-thompson {
    left: 53%;
    top: 376px;
}

.logo-kanefusa {
    left: 70%;
    top: 11px;
}

.logo-ohden {
    left: 70%;
    top: 151px;
}

.logo-folex {
    left: 70%;
    top: 291px;
}

.logo-allied {
    left: 70%;
    top: 431px;
}

.testimonials-section {
    background: #f2efea;
    padding: 78px 0 82px;
}

.testimonials-section .section-heading {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 58px;
}

.testimonials-section .section-heading h2 {
    font-size: clamp(36px, 3.8vw, 52px);
}

.testimonials-section .section-heading p {
    margin-top: 8px;
}

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

.testimonial-card {
    min-height: 292px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #e9dfc6;
    border: 2px solid var(--ink);
    padding: 42px 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover { 
    background: #e9dfcf;
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(17, 22, 27, .12);
}

.testimonial-card i {
    color: var(--cyan);
    font-size: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-card:hover i {
    transform: scale(1.15);
    color: var(--ink);
}

.testimonial-card p {
    color: #24282c;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.48;
    margin: 42px 0 28px;
}

.testimonial-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(17, 22, 27, .22);
    padding-top: 17px;
}

.testimonial-meta span,
.testimonial-meta small,
.testimonial-meta strong {
    display: block;
}

.testimonial-card strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.testimonial-card small {
    color: #7a7165;
    font-size: 10px;
    line-height: 1.3;
}

.testimonial-meta b {
    color: #ff3c32;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}

.faq-section {
    background: #f3f0ea;
}

.faq-list .accordion-item {
    background: transparent;
    border: 0;
    border-top: 2px solid var(--ink);
    border-radius: 0;
}

.faq-list .accordion-item:last-child {
    border-bottom: 2px solid var(--ink);
}

.faq-list .accordion-button {
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    font-weight: 700;
    padding: 20px 0;
}

.faq-list .accordion-button::after {
    content: "+";
    background-image: none;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 700;
    transform: none;
}

.faq-list .accordion-button:not(.collapsed)::after {
    content: "x";
}

.faq-list .accordion-body {
    color: #555a5f;
    padding: 0 0 24px;
}

.contact-section {
    background: #11171b;
    color: #fff;
    padding: 88px 0 76px;
}

 
.contact-section h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
    white-space: nowrap;
}

.contact-section p {
    color: #ffffff70;
    font-size: 15px;
    font-weight: 500;
    margin: 20px 0 20px;
    max-width: 512px;
}

.contact-form label {
    width: 100%;
    color: #aeb5bd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    display: block;
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 17px;
    margin-top: 12px;
    padding: 8px 0 8px;
    outline: 0;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form .btn {
    margin-top: 34px;
}

.form-status {
    min-height: 28px;
    margin: 18px 0 0 !important;
    color: var(--gold) !important;
    font-weight: 700;
}

.contact-details {
    display: grid;
    gap: 34px;
    border-left: 0;
    padding-left: 0;
    margin-top: 150px;
}

.contact-details > div {
    border-left: 1px solid var(--gold);
    padding-left: 22px;
}

.contact-details h3 {
    color: #aeb5bd;
    color: #aeb5bdb8;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.contact-details a,
.contact-details p {
    display: block;
    color: #ffffffa6;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    margin: 4px 0;
    max-width: 420px;
}

.site-footer {
    background: #11171b;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    padding: 30px 0;
}

.site-footer p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.site-footer a:hover {
    color: var(--gold);
}
.didnotget {
    background: #f2efea;
}

.kodak-grid {
    display: grid;
    grid-template-columns: 0fr 1fr;
    align-items: center;
    gap: 0rem;
        margin-bottom: 50px;
    margin-left: -34px;
}

.kodak-logo-img {
    max-width: 200px;
}

.kodak-grid h2 {
        font-size: 38px;
        margin-bottom: 16px;
}

@media (max-width: 768px) {
    .kodak-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.page-contact .contact-section {
    background: #f2efea;
    color: #11171b;
}

.page-contact .contact-section a,
.page-contact .contact-section p,
.page-contact .contact-section h2,
.page-contact .contact-section h3 {
    color: #11171b;
}

.page-contact .contact-form input,
.page-contact .contact-form textarea {
    border-bottom: 2px solid rgba(17, 23, 27, .28);
    color: #11171b;
}

.page-contact .contact-form label {
    color: #11171b;
}

.map-section {
    padding: 60px 0;
    background: #f2efea;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
    border-radius: var(--radius);
}

.breadcrumb-wrap {
    background: #f8f6f3;
    padding: 12px 0;
    border-bottom: 1px solid #e8e2d9;
}

.breadcrumb-wrap .breadcrumb {
    margin: 0;
    background: none;
}

.breadcrumb-wrap .breadcrumb-item a {
    color: var(--ink);
    text-decoration: none;
}

.breadcrumb-wrap .breadcrumb-item a:hover {
    color: var(--gold-dark);
}

.breadcrumb-wrap .breadcrumb-item.active {
    color: var(--muted);
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #f2efea;
}

.blog-card-body {
    padding: 20px;
}

.blog-date {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 18px;
    margin: 8px 0 10px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 16px;
}

.blog-card .btn-card {
    width: auto;
    padding: 6px 16px;
    font-size: 13px;
    margin-top: 0;
}

.page-cutting-sticks .section {
    background: #f2efea;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.application-card ul.process-list li::before {
    content: none;
}

.process-list li {
    padding: 14px 0;
    border-bottom: 1px solid #e8e4dd;
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list .process-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 10px;
}

.process-list .btn {
    margin-left: 8px;
    vertical-align: middle;
}