@font-face {
    font-family: 'Exo';
    src: url('../fonts/exo-400.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/exo-500.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/exo-600.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/exo-700.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/exo-800.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

:root {
    --navy: #07102d;
    --navy-soft: #10203e;
    --orange: #f39200;
    --orange-dark: #d97f00;
    --ink: #132647;
    --muted: #677386;
    --paper: #f4f6fa;
    --white: #ffffff;
    --line: #dfe4ec;
    --shadow: 0 18px 45px rgba(10, 25, 55, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: 'Exo', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid #ffb33c;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.section-dark {
    color: var(--white);
    background: var(--navy);
}

.section-paper {
    background: var(--paper);
}

.centered {
    text-align: center;
}

.narrow-content {
    max-width: 700px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.15;
}

h1 {
    max-width: 880px;
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5.3vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -.04em;
}

h2 {
    margin-bottom: 22px;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -.035em;
}

h3 {
    font-size: 1.08rem;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #ffb33c;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-intro {
    margin: 0 auto;
    color: var(--muted);
}

.split-heading {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.split-heading>div {
    max-width: 760px;
}

.light-heading h2 {
    color: #fff;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 28px;
    border: 0;
    border-radius: 2px;
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: transform .2s ease, background-color .2s ease;
}

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

.button-orange {
    color: #fff;
    background: var(--orange);
}

.button-orange:hover {
    background: var(--orange-dark);
}

.button-navy {
    color: #fff;
    background: var(--ink);
}

.button-navy:hover {
    background: #20385d;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.text-link span,
.card-link span {
    transition: transform .2s ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translateX(4px);
}

.light-link {
    color: #fff;
}

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
    position: fixed;
    background: rgba(7, 16, 45, .97);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .86);
    font-size: .8rem;
    font-weight: 600;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    height: 2px;
    content: '';
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .32);
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: .2s;
}

.hero {
    position: relative;
    display: grid;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: url('../image/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 13, 36, .93) 0%, rgba(4, 13, 36, .62) 54%, rgba(4, 13, 36, .18) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 150px;
}

.hero-copy {
    max-width: 690px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.08rem;
}

.hero-stats {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    background: rgba(5, 14, 40, .46);
    backdrop-filter: blur(7px);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-stat-grid>div {
    display: flex;
    padding: 25px 34px;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.hero-stat-grid>div:first-child {
    padding-left: 0;
}

.hero-stat-grid strong {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
}

.hero-stat-grid span {
    color: rgba(255, 255, 255, .67);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 280px;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(4, 13, 36, .94), rgba(4, 13, 36, .55)), var(--page-hero);
    background-position: center;
    background-size: cover;
}

.page-hero-products {
    background-position: center 42%;
}

.compact-hero {
    min-height: 470px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 90px;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: 34px;
}

.page-hero-content>p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.04rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.breadcrumb a:hover {
    color: #fff;
}

.about {
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
}

.about-photo {
    width: 100%;
    aspect-ratio: .9;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    right: -36px;
    bottom: -30px;
    display: flex;
    width: 175px;
    min-height: 145px;
    padding: 22px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: var(--orange);
    box-shadow: var(--shadow);
}

.experience-badge strong {
    font-size: 2.25rem;
    line-height: 1;
}

.experience-badge span {
    margin-top: 8px;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.about-content>p:not(.eyebrow),
.prose p {
    color: var(--muted);
}

.check-list {
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 27px;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    font-weight: 600;
}

.check-list li::before {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--orange);
    content: '\2713';
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
}

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

.product-card {
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 10px 30px rgba(3, 12, 35, .1);
    transition: transform .22s ease;
}

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

.product-image {
    display: grid;
    height: 245px;
    place-items: center;
    padding: 22px;
    overflow: hidden;
    background: #fff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-body {
    padding: 23px;
    border-top: 1px solid #eef0f4;
}

.product-body h3 {
    min-height: 2.4em;
    margin-bottom: 12px;
}

.product-body p {
    min-height: 5em;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .8rem;
}

.product-grid-light .product-card {
    border: 1px solid #e7eaf0;
    box-shadow: 0 10px 24px rgba(10, 25, 55, .07);
}

.supply-note {
    padding: 48px 0;
    background: #fff;
}

.supply-note-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.supply-note p {
    max-width: 760px;
    margin: 0;
    font-size: .92rem;
    font-weight: 600;
}

.why {
    background: var(--paper);
}

.why-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 80px;
}

.why-intro>p:not(.eyebrow) {
    max-width: 400px;
    color: var(--muted);
}

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

.feature-card {
    min-height: 230px;
    padding: 34px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(12, 31, 65, .05);
}

.feature-number {
    display: block;
    margin-bottom: 30px;
    color: var(--orange);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .82rem;
}

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

.industry-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    background: var(--navy);
}

.industry-card::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(0deg, rgba(5, 14, 40, .94), rgba(5, 14, 40, .05) 75%);
}

.industry-card img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: transform .4s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-card>div {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 20px;
    left: 24px;
    color: #fff;
}

.industry-card h3 {
    margin-bottom: 5px;
}

.industry-card p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .74);
    font-size: .74rem;
    opacity: 0;
    transition: .25s ease;
}

.industry-card:hover p {
    max-height: 80px;
    opacity: 1;
}

.testimonials {
    text-align: center;
}

.testimonial-wrap {
    max-width: 880px;
}

.testimonials h2 {
    color: #fff;
}

.testimonial-slider {
    position: relative;
    min-height: 290px;
}

.testimonial {
    display: none;
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 30px 65px;
}

.testimonial.active {
    display: block;
    animation: fade .35s ease;
}

.quote-mark {
    display: block;
    height: 50px;
    color: var(--orange);
    font-size: 4rem;
    line-height: 1;
}

.testimonial p {
    color: rgba(255, 255, 255, .86);
    font-size: 1.03rem;
}

.testimonial cite {
    color: #fff;
    font-size: .76rem;
    font-style: normal;
    font-weight: 700;
}

.slider-button {
    position: absolute;
    top: 42%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    background: transparent;
}

.slider-button:hover {
    color: var(--navy);
    background: var(--orange);
    border-color: var(--orange);
}

.slider-button.prev {
    left: 0;
}

.slider-button.next {
    right: 0;
}

.slider-dots {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #52607a;
}

.dot.active {
    background: var(--orange);
}

.story-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.story-grid h2 {
    max-width: 520px;
}

.stats-band {
    padding: 54px 0;
    color: #fff;
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid>div {
    padding: 8px 35px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.stats-grid>div:first-child {
    padding-left: 0;
}

.stats-grid>div:last-child {
    border: 0;
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: var(--orange);
    font-size: 2rem;
}

.stats-grid span {
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    text-transform: uppercase;
}

.process-grid,
.requirement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-grid article,
.requirement-grid article {
    padding: 30px;
    background: #fff;
    border-top: 3px solid var(--orange);
    box-shadow: 0 10px 25px rgba(12, 31, 65, .06);
}

.process-grid span,
.requirement-grid span {
    display: block;
    margin-bottom: 28px;
    color: var(--orange);
    font-size: .73rem;
    font-weight: 800;
}

.process-grid p,
.requirement-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.values-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.value-list article {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.value-list h3 {
    margin-bottom: 7px;
}

.value-list p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}

.sourcing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.sourcing-grid>div>p:not(.eyebrow) {
    color: var(--muted);
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    display: grid;
    padding: 22px 0;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.info-list strong {
    color: var(--orange-dark);
}

.info-list span {
    color: var(--muted);
    font-size: .85rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.product-detail-image {
    display: grid;
    min-height: 520px;
    padding: 45px;
    place-items: center;
    background: var(--paper);
}

.product-detail-image img {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
}

.product-detail-content>p:not(.eyebrow) {
    color: var(--muted);
}

.product-detail-content h3 {
    margin-top: 28px;
}

.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.industry-detail-card {
    display: grid;
    min-height: 280px;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.industry-detail-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.industry-detail-card>div {
    display: flex;
    padding: 28px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.industry-detail-card p {
    color: var(--muted);
    font-size: .8rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.capability-grid>div>p:last-child {
    color: rgba(255, 255, 255, .7);
}

.dark-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dark-list li {
    display: flex;
    padding: 20px 0;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    font-size: .9rem;
    font-weight: 600;
}

.dark-list span {
    color: var(--orange);
    font-size: .72rem;
}

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

.gallery-card {
    position: relative;
    min-height: 280px;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: #fff;
    background: var(--navy);
    text-align: left;
}

.gallery-card::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(0deg, rgba(5, 14, 40, .88), transparent 65%);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card span {
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 20px;
    left: 22px;
    font-size: .9rem;
    font-weight: 700;
}

.gallery-dialog {
    width: min(1000px, calc(100% - 30px));
    max-height: 90vh;
    padding: 0;
    border: 0;
    color: #fff;
    background: #050b1c;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

.gallery-dialog::backdrop {
    background: rgba(0, 5, 18, .82);
}

.gallery-dialog figure {
    display: grid;
    min-height: 620px;
    margin: 0;
    padding: 45px 70px 60px;
    place-items: center;
}

.gallery-dialog img {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.gallery-dialog figcaption {
    position: absolute;
    right: 70px;
    bottom: 20px;
    left: 70px;
    text-align: center;
}

.gallery-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 1.5rem;
}

.gallery-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .25);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.contact-section {
    background: var(--paper);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 70px;
}

.contact-details>p:not(.eyebrow) {
    color: var(--muted);
}

.contact-card-list {
    margin-top: 35px;
}

.contact-card-list article {
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.contact-card-list article>span {
    display: block;
    margin-bottom: 6px;
    color: var(--orange-dark);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.contact-card-list h3 {
    margin-bottom: 8px;
}

.contact-card-list a {
    display: block;
    color: var(--muted);
    font-size: .86rem;
}

.contact-card-list a:hover {
    color: var(--orange-dark);
}

.contact-card-list p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.enquiry-panel {
    padding: 45px;
    background: #fff;
    box-shadow: var(--shadow);
}

.enquiry-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.form-context {
    padding: 12px 15px;
    color: var(--ink);
    background: var(--paper);
    font-size: .8rem;
}

.form-status {
    margin-bottom: 22px;
    padding: 14px 16px;
    font-size: .82rem;
}

.form-status.success {
    color: #135f3d;
    background: #e7f7ef;
    border-left: 3px solid #22925f;
}

.form-status.error {
    color: #8b2d2d;
    background: #fff0f0;
    border-left: 3px solid #c84242;
}

.enquiry-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.enquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .74rem;
    font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d5dbe5;
    border-radius: 0;
    color: var(--ink);
    background: #fff;
    font-size: .86rem;
    outline: 0;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(243, 146, 0, .12);
}

.enquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}

.enquiry-form .button {
    justify-self: start;
}

.form-note {
    margin: -5px 0 0;
    color: var(--muted);
    font-size: .72rem;
}

.honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.contact-ribbon {
    padding: 55px 0;
    color: #fff;
    background: var(--navy-soft);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.contact-ribbon h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.site-footer {
    padding-top: 72px;
    color: rgba(255, 255, 255, .7);
    background: var(--navy);
}

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

.footer-brand img {
    width: 92px;
    height: 92px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff;
}

.footer-brand p {
    max-width: 290px;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: .9rem;
}

.site-footer p,
.site-footer a {
    display: block;
    margin-bottom: 8px;
    font-size: .77rem;
}

.site-footer a:hover {
    color: var(--orange);
}

.copyright {
    display: flex;
    margin-top: 55px;
    padding: 24px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright p {
    margin: 0;
}

.whatsapp {
    position: fixed;
    z-index: 60;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
    font-size: .72rem;
    font-weight: 800;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1020px) {
    .section {
        padding: 82px 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        display: flex;
        width: min(340px, 86vw);
        height: 100vh;
        padding: 110px 38px 40px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: var(--navy);
        box-shadow: -12px 0 30px rgba(0, 0, 0, .25);
        transition: right .25s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        font-size: .95rem;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 2;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-grid,
    .why-grid,
    .values-grid,
    .sourcing-grid,
    .product-detail-grid,
    .capability-grid {
        gap: 55px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .requirement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-detail-card {
        grid-template-columns: 1fr;
    }

    .industry-detail-card img {
        min-height: 220px;
        max-height: 240px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 30px, 1160px);
    }

    .section {
        padding: 70px 0;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .hero {
        min-height: 700px;
        background-position: 62% center;
    }

    .hero-overlay {
        background: rgba(4, 13, 36, .72);
    }

    .hero-content {
        padding: 115px 0 195px;
    }

    .hero-stats {
        background: rgba(5, 14, 40, .75);
    }

    .hero-stat-grid>div {
        padding: 20px 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .hero-stat-grid>div:first-child {
        padding-left: 0;
    }

    .hero-stat-grid strong {
        font-size: 1.25rem;
    }

    .hero-stat-grid span {
        font-size: .6rem;
    }

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

    .compact-hero {
        min-height: 430px;
    }

    .page-hero-content {
        padding-top: 76px;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-grid,
    .why-grid,
    .story-grid,
    .values-grid,
    .sourcing-grid,
    .product-detail-grid,
    .capability-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 560px;
    }

    .experience-badge {
        right: 0;
    }

    .supply-note-inner,
    .contact-ribbon-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .stats-grid>div:nth-child(2) {
        border-right: 0;
    }

    .stats-grid>div:nth-child(3) {
        padding-left: 0;
    }

    .values-image img {
        min-height: 380px;
    }

    .product-detail-image {
        min-height: 380px;
    }

    .industry-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        gap: 55px;
    }

    .gallery-dialog figure {
        min-height: 520px;
        padding: 50px 55px 65px;
    }

    .gallery-dialog img {
        max-height: 420px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 26px, 1160px);
    }

    .section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .button-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: 690px;
    }

    .hero-content {
        padding-bottom: 205px;
        text-align: center;
    }

    .hero-content .button-row {
        align-items: center;
    }

    .hero-copy {
        margin-inline: auto;
    }

    .hero-stat-grid span {
        line-height: 1.35;
    }

    .page-hero {
        min-height: 440px;
        text-align: center;
    }

    .page-hero .breadcrumb {
        justify-content: center;
    }

    .product-grid,
    .feature-grid,
    .industry-grid,
    .process-grid,
    .requirement-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }

    .feature-card {
        min-height: 0;
    }

    .industry-card,
    .industry-card img {
        min-height: 235px;
    }

    .industry-card p {
        max-height: 80px;
        opacity: 1;
    }

    .stats-grid>div {
        padding-inline: 15px;
    }

    .stats-grid>div:nth-child(3) {
        padding-left: 0;
    }

    .stats-grid strong {
        font-size: 1.55rem;
    }

    .stats-grid span {
        font-size: .62rem;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .info-list li {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .product-detail-image {
        min-height: 300px;
        padding: 25px;
    }

    .slider-button {
        top: auto;
        bottom: 10px;
    }

    .slider-button.prev {
        left: calc(50% - 74px);
    }

    .slider-button.next {
        right: calc(50% - 74px);
    }

    .slider-dots {
        bottom: 27px;
    }

    .testimonial {
        padding-inline: 4px;
    }

    .enquiry-panel {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card img {
        min-height: 240px;
    }

    .gallery-dialog figure {
        min-height: 460px;
        padding: 50px 45px 65px;
    }

    .gallery-nav {
        top: auto;
        bottom: 15px;
    }

    .gallery-prev {
        left: 20px;
    }

    .gallery-next {
        right: 20px;
    }

    .gallery-dialog figcaption {
        right: 65px;
        bottom: 23px;
        left: 65px;
        font-size: .78rem;
    }

    .contact-ribbon {
        text-align: center;
    }

    .contact-ribbon-inner {
        align-items: center;
    }

    .copyright {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

.table {
    margin-bottom: 0;
}

.table thead th {
    white-space: nowrap;
    vertical-align: middle;
}

.table td,
.table th {
    padding: 12px 15px;
    vertical-align: top;
    border: 1px solid #505050;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}
.productSlider{
    width:100%;
    border-radius:10px;
    overflow:hidden;
}

.productSlider img{
    width:100%;

    object-fit:cover;
    display:block;
}

.productSlider .swiper-button-next,
.productSlider .swiper-button-prev{
    width:45px;
    height:45px;
    background:#fff;
    color:#000;
    border-radius:50%;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

.productSlider .swiper-button-next:after,
.productSlider .swiper-button-prev:after{
    font-size:18px;
    font-weight:bold;
}

@media(max-width:768px){
    

    .productSlider .swiper-button-next,
    .productSlider .swiper-button-prev{
        width:38px;
        height:38px;
    }

    .productSlider .swiper-button-next:after,
    .productSlider .swiper-button-prev:after{
        font-size:15px;
    }
}
.table {
    width: 100%;
    margin-bottom: 0;
}