/* ================================================================
   ZENX PACKAGING SOLUTIONS
   Main Stylesheet
   File: style.css
   ================================================================ */


/* ================================================================
   01. CSS VARIABLES
   ================================================================ */

:root {
    --primary: #071c3d;
    --primary-light: #0b2d60;
    --primary-medium: #0a3f83;
    --primary-bright: #075bb5;

    --orange: #f58220;
    --orange-dark: #df6510;
    --orange-light: #ff9b3d;

    --green: #55a630;
    --white: #ffffff;

    --background: #f7f9fc;
    --background-alt: #eef3f9;

    --text-dark: #071c3d;
    --text: #42526a;
    --text-light: #718096;

    --border: #dfe7f1;

    --shadow-sm:
        0 8px 25px rgba(7, 28, 61, 0.07);

    --shadow-md:
        0 20px 50px rgba(7, 28, 61, 0.12);

    --shadow-lg:
        0 30px 80px rgba(7, 28, 61, 0.18);

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);

    --container:
        1240px;

    --header-height:
        88px;
}


/* ================================================================
   02. RESET
   ================================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

::selection {
    background: var(--orange);
    color: var(--white);
}


/* ================================================================
   03. GLOBAL
   ================================================================ */

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

.section {
    position: relative;
    padding: 120px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label > span {
    width: 34px;
    height: 2px;
    background: var(--orange);
}

.centered-label {
    justify-content: center;
}

.section-title {
    max-width: 760px;

    color: var(--primary);

    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2px;
}

.section-title span {
    color: var(--orange);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.section-heading.centered {
    margin-inline: auto;
    margin-bottom: 65px;
    text-align: center;
}

.section-heading.centered .section-title {
    margin-inline: auto;
}

.section-heading p {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.8;
}

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 13px 24px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;

    overflow: hidden;

    transition: var(--transition);
}

.btn i {
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-dark)
        );

    color: var(--white);

    box-shadow:
        0 12px 30px rgba(245, 130, 32, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(245, 130, 32, 0.35);
}

.btn-outline {
    border: 1px solid rgba(7, 28, 61, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    min-height: 60px;
    padding: 17px 30px;
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebd5a;
    transform: translateY(-3px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--primary);

    font-weight: 800;

    transition: var(--transition);
}

.text-link i {
    color: var(--orange);
    transition: var(--transition);
}

.text-link:hover {
    color: var(--orange);
}

.text-link:hover i {
    transform: translateX(6px);
}


/* ================================================================
   04. PRELOADER
   ================================================================ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

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

.preloader-inner {
    width: 190px;
    text-align: center;
}

.preloader-logo {
    width: 150px;
    margin: 0 auto 25px;
}

.preloader-line {
    width: 100%;
    height: 3px;

    border-radius: 100px;

    background: #e8edf4;

    overflow: hidden;
}

.preloader-line span {
    display: block;

    width: 50%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--primary-bright),
            var(--orange),
            var(--green)
        );

    animation: loader 1.2s infinite ease-in-out;
}

@keyframes loader {

    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(220%);
    }

}


/* ================================================================
   05. SCROLL PROGRESS
   ================================================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;

    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary-bright),
            var(--orange)
        );
}


/* ================================================================
   06. TOPBAR
   ================================================================ */

.topbar {
    position: relative;
    z-index: 1001;

    min-height: 40px;

    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;
}

.topbar-container {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar-left a {
    display: flex;
    align-items: center;
    gap: 8px;

    transition: color var(--transition);
}

.topbar-left a:hover {
    color: var(--white);
}

.topbar-left i {
    color: var(--orange);
}

.topbar-right {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* ================================================================
   07. HEADER
   ================================================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: var(--header-height);

    background: rgba(255, 255, 255, 0.94);

    border-bottom:
        1px solid rgba(7, 28, 61, 0.06);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: var(--transition);
}

.header.scrolled {
    height: 74px;
    box-shadow:
        0 10px 40px rgba(7, 28, 61, 0.08);
}

.header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-logo {
    width: 66px;
    height: 66px;

    object-fit: contain;

    transition: var(--transition);
}

.header.scrolled .brand-logo {
    width: 56px;
    height: 56px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    color: var(--primary);

    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text span {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 30px 12px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transform: translateX(-50%);

    transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 22px;
}

.nav-link i {
    font-size: 9px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;

    width: 250px;
    padding: 12px;

    border:
        1px solid rgba(7, 28, 61, 0.08);

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 12px 14px;

    border-radius: 7px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.dropdown-menu a:hover {
    padding-left: 19px;
    background: var(--background);
    color: var(--orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-enquiry-btn {
    min-height: 48px;
}

.mobile-menu-btn {
    display: none;

    width: 46px;
    height: 46px;

    padding: 11px;

    border-radius: 8px;

    background: var(--primary);
}

.mobile-menu-btn span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--white);

    transition: var(--transition);
}


/* ================================================================
   08. MOBILE NAVIGATION
   ================================================================ */

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1998;

    background: rgba(3, 14, 32, 0.7);

    backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1999;

    width: min(390px, 88%);
    height: 100%;

    padding: 28px;

    background: var(--white);

    overflow-y: auto;

    transform: translateX(105%);

    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.mobile-nav-header img {
    width: 95px;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 18px;
}

.mobile-nav-links {
    padding: 24px 0;
}

.mobile-nav-links a {
    display: block;

    padding: 14px 5px;

    border-bottom: 1px solid var(--border);

    color: var(--primary);

    font-size: 15px;
    font-weight: 700;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding-top: 20px;
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
}

.mobile-nav-contact i {
    color: var(--orange);
}


/* ================================================================
   09. HERO
   ================================================================ */

.hero {
    position: relative;

    min-height:
        calc(100vh - 128px);

    display: flex;
    align-items: center;

    padding: 90px 0 110px;

    background:
        linear-gradient(
            115deg,
            #f8fbff 0%,
            #ffffff 52%,
            #edf5ff 100%
        );

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(7, 28, 61, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 28, 61, 0.035) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 75%
        );
}

.hero-shape {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);
}

.hero-shape-one {
    top: -220px;
    right: -160px;

    width: 600px;
    height: 600px;

    border:
        100px solid rgba(7, 91, 181, 0.06);
}

.hero-shape-two {
    right: 18%;
    bottom: -300px;

    width: 550px;
    height: 550px;

    background:
        radial-gradient(
            circle,
            rgba(245, 130, 32, 0.12),
            transparent 65%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.hero-content h1 {
    max-width: 720px;

    color: var(--primary);

    font-family: "Montserrat", sans-serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -4px;
}

.hero-content h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 650px;

    margin-top: 28px;

    color: var(--text);

    font-size: 18px;
    line-height: 1.8;
}

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

    margin-top: 35px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;

    margin-top: 55px;
    padding-top: 30px;

    border-top:
        1px solid rgba(7, 28, 61, 0.1);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 10px;

    background: rgba(7, 91, 181, 0.08);
    color: var(--primary-bright);

    font-size: 17px;
}

.hero-feature strong,
.hero-feature span {
    display: block;
}

.hero-feature strong {
    color: var(--primary);
    font-size: 14px;
}

.hero-feature span {
    color: var(--text-light);
    font-size: 10px;
}

.hero-visual {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(7, 91, 181, 0.14),
            rgba(245, 130, 32, 0.05) 45%,
            transparent 70%
        );

    filter: blur(10px);
}

.hero-logo-card {
    position: relative;
    z-index: 2;

    width: min(430px, 90%);
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 48px;

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 40px 100px rgba(7, 28, 61, 0.16);

    backdrop-filter: blur(25px);
}

.hero-logo-card::before {
    content: "";

    position: absolute;
    inset: -18px;

    border:
        1px solid rgba(7, 91, 181, 0.1);

    border-radius: 50%;
}

.hero-logo-card img {
    position: relative;
    z-index: 2;

    width: 100%;
    height:  100%;
    border-radius: 50%;
   
}

.glass-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(7, 91, 181, 0.12);
}

.ring-one {
    inset: -45px;
}

.ring-two {
    inset: -85px;

    border-style: dashed;

    animation: rotateRing 35s linear infinite;
}

@keyframes rotateRing {

    to {
        transform: rotate(360deg);
    }

}

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 190px;

    padding: 15px 18px;

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow: var(--shadow-md);

    backdrop-filter: blur(15px);

    animation:
        floating 4s ease-in-out infinite;
}

.floating-card-one {
    top: 80px;
    left: -15px;
}

.floating-card-two {
    right: -15px;
    bottom: 90px;

    animation-delay: -2s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 10px;

    background: var(--primary);
    color: var(--white);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--primary);
    font-size: 13px;
}

.floating-card span {
    color: var(--text-light);
    font-size: 11px;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;

    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--text-light);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transform: translateX(-50%);
}

.scroll-mouse {
    position: relative;

    width: 20px;
    height: 32px;

    border: 2px solid var(--primary);
    border-radius: 20px;
}

.scroll-mouse span {
    position: absolute;
    top: 6px;
    left: 50%;

    width: 3px;
    height: 6px;

    border-radius: 20px;

    background: var(--orange);

    transform: translateX(-50%);

    animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {

    0% {
        opacity: 0;
        transform:
            translate(-50%, 0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, 10px);
    }

}


/* ================================================================
   10. ABOUT
   ================================================================ */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.about-visual {
    position: relative;
}

.about-image-main {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #0c3c77
        );

    overflow: hidden;
}

.about-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.6) 1px,
            transparent 1px
        );

    background-size: 22px 22px;
}

.about-image-main::after {
    content: "";

    position: absolute;
    top: -130px;
    right: -130px;

    width: 330px;
    height: 330px;

    border:
        70px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.about-logo-wrapper {
    position: relative;
    z-index: 2;

    width: 340px;

    padding: 35px;

    border:
        1px solid rgba(255, 255, 255, 0.3);

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.22);
}

.about-logo-wrapper img {
    border-radius: 15px;
}

.about-floating-box {
    position: absolute;
    right: -40px;
    bottom: 40px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 240px;

    padding: 22px;

    border-radius: 15px;

    background: var(--white);

    box-shadow: var(--shadow-lg);
}

.about-floating-box i {
    color: var(--orange);
    font-size: 34px;
}

.about-floating-box strong,
.about-floating-box span {
    display: block;
}

.about-floating-box strong {
    color: var(--primary);
    font-size: 14px;
}

.about-floating-box span {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.about-content > p {
    margin-top: 22px;

    font-size: 16px;
    line-height: 1.85;
}

.about-values {
    display: grid;
    gap: 22px;

    margin: 35px 0;
}

.about-value {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 12px;

    background: var(--background);
    color: var(--orange);

    font-size: 21px;
}

.about-value h3 {
    margin-bottom: 4px;

    color: var(--primary);

    font-size: 16px;
}

.about-value p {
    font-size: 13px;
    line-height: 1.7;
}


/* ================================================================
   11. PRODUCTS
   ================================================================ */

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

.product-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.product-card {
    position: relative;

    min-height: 430px;

    display: flex;
    flex-direction: column;

    padding: 35px 28px;

    border:
        1px solid rgba(7, 28, 61, 0.08);

    border-radius: 18px;

    background: var(--white);

    overflow: hidden;

    transition: var(--transition);
}

.product-card::before {
    content: "";

    position: absolute;
    inset: auto 0 0 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary-bright),
            var(--orange)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.featured {
    background:
        linear-gradient(
            145deg,
            var(--primary),
            #0c3b75
        );

    color: rgba(255, 255, 255, 0.75);

    transform: translateY(-15px);

    box-shadow:
        0 25px 60px rgba(7, 28, 61, 0.2);
}

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

.featured-tag {
    position: absolute;
    top: 0;
    right: 25px;

    padding: 8px 13px;

    border-radius: 0 0 8px 8px;

    background: var(--orange);
    color: var(--white);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card-number {
    position: absolute;
    top: 24px;
    right: 25px;

    color: rgba(7, 28, 61, 0.08);

    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

.featured .product-card-number {
    top: 50px;
    color: rgba(255, 255, 255, 0.08);
}

.product-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-bottom: 65px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.1);

    color: var(--orange);

    box-shadow: var(--shadow-sm);

    font-size: 26px;
}

.featured .product-icon {
    background:
        rgba(255, 255, 255, 0.1);

    color: var(--orange);
}

.product-content {
    margin-top: auto;
}

.product-category {
    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-content h3 {
    margin-bottom: 14px;

    color: var(--primary);

    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 1.25;
}

.featured .product-content h3 {
    color: var(--white);
}

.product-content p {
    margin-bottom: 25px;

    font-size: 13px;
    line-height: 1.75;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.featured .product-link {
    color: var(--white);
}

.product-link i {
    color: var(--orange);
}

.product-link:hover {
    gap: 13px;
    color: var(--orange);
}

.products-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 60px;
    padding: 38px 45px;

    border-radius: 18px;

    background:
        linear-gradient(
            120deg,
            var(--primary),
            var(--primary-medium)
        );

    color: var(--white);
}

.products-cta-label {
    display: block;

    margin-bottom: 7px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.products-cta h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}


/* ================================================================
   12. INDUSTRIES
   ================================================================ */

.industries-section {
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.industry-card {
    position: relative;

    min-height: 210px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    overflow: hidden;

    transition: var(--transition);
}

.industry-card::before {
    content: "";

    position: absolute;
    top: -100px;
    right: -100px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        rgba(7, 91, 181, 0.04);

    transition: var(--transition);
}

.industry-card > i {
    position: absolute;
    top: 30px;
    left: 30px;

    color: var(--orange);

    font-size: 35px;

    transition: var(--transition);
}

.industry-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 8px;

    color: var(--primary);

    font-family: "Montserrat", sans-serif;
    font-size: 19px;
}

.industry-card span {
    position: relative;
    z-index: 2;

    color: var(--text-light);

    font-size: 11px;
    font-weight: 700;
}

.industry-card:hover {
    border-color: transparent;

    background: var(--primary);

    transform: translateY(-7px);

    box-shadow: var(--shadow-md);
}

.industry-card:hover::before {
    background:
        rgba(255, 255, 255, 0.05);

    transform: scale(1.3);
}

.industry-card:hover > i {
    transform:
        translateY(5px)
        scale(1.12);
}

.industry-card:hover h3 {
    color: var(--white);
}

.industry-card:hover span {
    color: rgba(255, 255, 255, 0.6);
}


/* ================================================================
   13. WHY CHOOSE US
   ================================================================ */

.why-section {
    background:
        linear-gradient(
            135deg,
            #061630,
            #0a2f61
        );

    overflow: hidden;
}

.why-section::before {
    content: "";

    position: absolute;
    top: -300px;
    left: -250px;

    width: 700px;
    height: 700px;

    border:
        130px solid rgba(255, 255, 255, 0.025);

    border-radius: 50%;
}

.why-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 100px;
}

.light-label {
    color: var(--orange);
}

.light-title {
    color: var(--white);
}

.why-content > p {
    max-width: 520px;

    margin: 25px 0 35px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 16px;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-card {
    position: relative;

    min-height: 245px;

    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    transition: var(--transition);
}

.why-card:hover {
    background:
        rgba(255, 255, 255, 0.1);

    transform: translateY(-7px);
}

.why-card > span {
    position: absolute;
    top: 25px;
    right: 25px;

    color: var(--orange);

    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
}

.why-card > i {
    margin-bottom: 30px;

    color: var(--orange);

    font-size: 30px;
}

.why-card h3 {
    margin-bottom: 12px;

    color: var(--white);

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
    line-height: 1.75;
}


/* ================================================================
   14. QUALITY
   ================================================================ */

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

.quality-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 100px;
}

.quality-content > p {
    max-width: 650px;

    margin-top: 22px;

    font-size: 16px;
}

.quality-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-top: 35px;
}

.quality-points > div {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

.quality-points i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background:
        rgba(245, 130, 32, 0.12);

    color: var(--orange);

    font-size: 10px;
}

.quality-visual {
    display: flex;
    justify-content: center;
}

.quality-circle {
    position: relative;

    width: 400px;
    height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px dashed rgba(7, 91, 181, 0.25);

    border-radius: 50%;

    animation:
        rotateQuality 30s linear infinite;
}

@keyframes rotateQuality {

    to {
        transform: rotate(360deg);
    }

}

.quality-circle::before,
.quality-circle::after {
    content: "";

    position: absolute;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: var(--orange);
}

.quality-circle::before {
    top: 42px;
    left: 60px;
}

.quality-circle::after {
    right: 38px;
    bottom: 75px;

    background: var(--primary-bright);
}

.quality-circle-inner {
    width: 290px;
    height: 290px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #0d468a
        );

    color: var(--white);

    box-shadow: var(--shadow-lg);

    animation:
        reverseQuality 30s linear infinite;
}

@keyframes reverseQuality {

    to {
        transform: rotate(-360deg);
    }

}

.quality-circle-inner i {
    margin-bottom: 20px;

    color: var(--orange);

    font-size: 55px;
}

.quality-circle-inner strong {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
}

.quality-circle-inner span {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ================================================================
   15. GALLERY
   ================================================================ */

.gallery-section {
    background: var(--white);
}

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

    grid-template-rows:
        repeat(2, 250px);

    gap: 18px;
}

.gallery-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #edf4fc,
            #f9fbfe
        );

    overflow: hidden;

    transition: var(--transition);
}

.gallery-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 28, 61, 0.96),
            rgba(7, 28, 61, 0.05) 75%
        );

    opacity: 0.85;

    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-icon {
    position: relative;
    z-index: 1;

    color: rgba(7, 91, 181, 0.18);

    font-size: 90px;

    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    z-index: 3;
}

.gallery-overlay span {
    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-overlay h3 {
    color: var(--white);

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}


/* ================================================================
   16. CTA
   ================================================================ */

.cta-section {
    padding: 0 0 120px;
    background: var(--white);
}

.cta-wrapper {
    position: relative;

    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 60px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            var(--primary),
            #0b4d96
        );

    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.1;

    background-image:
        linear-gradient(
            45deg,
            transparent 45%,
            white 45%,
            white 47%,
            transparent 47%
        );

    background-size: 35px 35px;
}

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

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

.cta-content > span {
    display: block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cta-content h2 {
    color: var(--white);

    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.15;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* ================================================================
   17. FAQ
   ================================================================ */

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

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
}

.faq-heading {
    position: sticky;
    top: 130px;

    align-self: start;
}

.faq-heading > p {
    margin: 22px 0 30px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border:
        1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    overflow: hidden;
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 23px 25px;

    background: transparent;

    color: var(--primary);

    text-align: left;

    font-size: 14px;
    font-weight: 800;
}

.faq-question i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: var(--background);
    color: var(--orange);

    font-size: 11px;

    transition: var(--transition);
}

.faq-item.active .faq-question i {
    background: var(--orange);
    color: var(--white);

    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}

.faq-answer > div {
    overflow: hidden;
}

.faq-answer p {
    padding:
        0 25px 23px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


/* ================================================================
   18. CONTACT
   ================================================================ */

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

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    border-radius: 24px;

    background: var(--background);

    box-shadow:
        0 25px 70px rgba(7, 28, 61, 0.08);

    overflow: hidden;
}

.contact-info {
    position: relative;

    padding: 55px 45px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #0a3c78
        );

    color: var(--white);

    overflow: hidden;
}

.contact-info::before {
    content: "";

    position: absolute;
    right: -180px;
    bottom: -180px;

    width: 450px;
    height: 450px;

    border:
        80px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;
}

.contact-info-header,
.contact-details,
.contact-person {
    position: relative;
    z-index: 2;
}

.contact-info-header > span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-info-header h3 {
    max-width: 440px;

    margin-top: 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 29px;
    line-height: 1.3;
}

.contact-details {
    display: grid;
    gap: 8px;

    margin-top: 40px;
}

.contact-item {
    display: grid;
    grid-template-columns:
        48px 1fr auto;

    align-items: center;
    gap: 15px;

    padding: 15px;

    border:
        1px solid transparent;

    border-radius: 12px;

    transition: var(--transition);
}

.contact-item:hover {
    border-color:
        rgba(255, 255, 255, 0.12);

    background:
        rgba(255, 255, 255, 0.07);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.1);

    color: var(--orange);
}

.contact-item span,
.contact-item strong {
    display: block;
}

.contact-item span {
    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item strong {
    color: var(--white);

    font-size: 13px;
    font-weight: 600;
}

.contact-item > i {
    color:
        rgba(255, 255, 255, 0.35);

    font-size: 12px;
}

.address-item {
    align-items: start;
}

.contact-person {
    margin-top: 30px;
    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}

.contact-person span,
.contact-person strong {
    display: block;
}

.contact-person span {
    color:
        rgba(255, 255, 255, 0.5);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-person strong {
    margin-top: 4px;

    font-size: 18px;
}

.contact-form-wrapper {
    padding: 55px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header > span {
    color: var(--orange);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-header h3 {
    margin-top: 6px;

    color: var(--primary);

    font-family: "Montserrat", sans-serif;
    font-size: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.form-group label span {
    color: var(--orange);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 8px;

    outline: none;

    background: var(--white);
    color: var(--primary);

    font-size: 13px;

    transition: var(--transition);
}

.form-group input,
.form-group select {
    height: 53px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 140px;

    padding: 15px 16px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ba8b8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-bright);

    box-shadow:
        0 0 0 4px rgba(7, 91, 181, 0.08);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #d93025;
}

.form-error {
    display: block;

    min-height: 16px;

    margin-top: 4px;

    color: #d93025;

    font-size: 10px;
}

.form-submit {
    width: 100%;
    min-height: 58px;
}

.submit-loading {
    display: none;
}

.form-submit.loading .submit-text,
.form-submit.loading .submit-icon {
    display: none;
}

.form-submit.loading .submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-status {
    display: none;

    margin-top: 15px;
    padding: 13px 15px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
}

.form-status.success {
    display: block;

    background: #eaf8ef;
    color: #137333;
}

.form-status.error {
    display: block;

    background: #fdecea;
    color: #b3261e;
}


/* ================================================================
   19. FOOTER
   ================================================================ */

.footer {
    background: #041226;
    color: rgba(255, 255, 255, 0.65);
}

.footer-main {
    padding: 80px 0 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.3fr 0.7fr 0.9fr 1.3fr;

    gap: 60px;
}

.footer-logo {
    display: inline-block;

    width: 140px;

    padding: 10px;

    border-radius: 12px;

    background: var(--white);
}

.footer-logo img {
    border-radius: 7px;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 22px;

    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 8px;

    margin-top: 25px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    color: var(--white);

    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--orange);
    background: var(--orange);

    transform: translateY(-4px);
}

.footer-column h3 {
    margin-bottom: 25px;

    color: var(--white);

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column li a {
    font-size: 12px;

    transition: var(--transition);
}

.footer-column li a:hover {
    padding-left: 5px;
    color: var(--orange);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact > a {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 16px;

    font-size: 12px;
    line-height: 1.7;

    transition: color var(--transition);
}

.footer-contact > a:hover {
    color: var(--white);
}

.footer-contact i {
    width: 16px;
    margin-top: 5px;

    color: var(--orange);
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 11px;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--white);

    font-weight: 700;
}

.back-to-top i {
    color: var(--orange);
}


/* ================================================================
   20. FLOATING WHATSAPP
   ================================================================ */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    border:
        4px solid var(--white);

    border-radius: 50%;

    background: #25d366;
    color: var(--white);

    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.35);

    font-size: 29px;

    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform:
        translateY(-6px)
        scale(1.05);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;

    width: max-content;

    padding: 8px 12px;

    border-radius: 6px;

    background: var(--primary);
    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition: var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* ================================================================
   21. SCROLL REVEAL
   ================================================================ */

.reveal {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================================
   22. RESPONSIVE - LARGE TABLETS
   ================================================================ */

@media (max-width: 1150px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-card.featured {
        transform: none;
    }

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

    .about-grid,
    .why-grid,
    .quality-wrapper,
    .faq-grid {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }

}


/* ================================================================
   23. RESPONSIVE - TABLET
   ================================================================ */

@media (max-width: 900px) {

    .section {
        padding: 90px 0;
    }

    .topbar-right {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

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

    .hero-actions,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-scroll {
        display: none;
    }

    .about-grid,
    .why-grid,
    .quality-wrapper,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 650px;
        margin-inline: auto;
    }

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

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .quality-content {
        order: 1;
    }

    .quality-visual {
        order: 2;
    }

    .faq-heading {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

}


/* ================================================================
   24. RESPONSIVE - MOBILE
   ================================================================ */

@media (max-width: 650px) {

    :root {
        --header-height: 72px;
    }

    .container {
        width:
            min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .section-title {
        font-size: 34px;
        letter-spacing: -1.3px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .topbar {
        display: none;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 7px;
    }

    .header-enquiry-btn {
        display: none;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero-content h1 {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        gap: 18px;
    }

    .hero-feature {
        width:
            calc(50% - 10px);

        text-align: left;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-logo-card {
        width: 300px;
        padding: 35px;
    }

    .ring-one {
        inset: -25px;
    }

    .ring-two {
        inset: -48px;
    }

    .floating-card {
        min-width: 160px;

        padding: 12px;
    }

    .floating-card-one {
        top: 35px;
        left: 0;
    }

    .floating-card-two {
        right: 0;
        bottom: 45px;
    }

    .about-image-main {
        min-height: 400px;
        padding: 35px;
    }

    .about-logo-wrapper {
        width: 260px;
        padding: 25px;
    }

    .about-floating-box {
        right: 10px;
        bottom: 20px;

        min-width: 200px;

        padding: 16px;
    }

    .product-grid,
    .industries-grid,
    .why-cards,
    .quality-points {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 380px;
    }

    .products-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 30px;
    }

    .products-cta .btn {
        width: 100%;
    }

    .why-grid {
        gap: 50px;
    }

    .quality-circle {
        width: 310px;
        height: 310px;
    }

    .quality-circle-inner {
        width: 230px;
        height: 230px;
    }

    .quality-circle-inner strong {
        font-size: 28px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-card,
    .gallery-large,
    .gallery-wide {
        grid-row: auto;
        grid-column: auto;

        min-height: 260px;
    }

    .cta-section {
        padding-bottom: 75px;
    }

    .cta-wrapper {
        min-height: auto;
        padding: 40px 25px;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 38px 24px;
    }

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

    .footer-main {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-container {
        padding: 20px 0;

        flex-direction: column;

        text-align: center;
    }

}


/* ================================================================
   25. SMALL MOBILE
   ================================================================ */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-feature {
        width: 100%;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-logo-card {
        width: 245px;
    }

    .floating-card {
        min-width: 145px;
    }

    .floating-card-one {
        left: -5px;
    }

    .floating-card-two {
        right: -5px;
    }

    .quality-circle {
        width: 270px;
        height: 270px;
    }

    .quality-circle-inner {
        width: 205px;
        height: 205px;
    }

}


/* ================================================================
   26. ACCESSIBILITY
   ================================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* ================================================================
   END OF STYLESHEET
   ================================================================ */

   .brand-logo {
    width: 115px;
    height: 80px;
    object-fit: contain;
}
/* ================================================================
   PREMIUM NAVY THEME ENHANCEMENTS
   Existing structure and assets preserved.
   ================================================================ */
:root {
    --accent-gold: #F4B400;
    --premium-navy: #071c3d;
    --premium-navy-light: #0b2d60;
    --premium-card: #0d315f;
}

/* Exact existing logo asset; display size only */
.brand-logo {
    width: 50px;
    height: 50px;
    max-width: 50px;
    object-fit: contain;
    flex: 0 0 50px;
}
.header.scrolled .brand-logo { width: 46px; height: 46px; }

/* Consistent premium navy sections */
body { background: var(--premium-navy); color: rgba(255,255,255,.76); }
.section,
.about-section,
.products-section,
.industries-section,
.quality-section,
.gallery-section,
.faq-section,
.contact-section,
.cta-section {
    position: relative;
    background: linear-gradient(145deg, #071c3d 0%, #09264f 55%, #071c3d 100%);
    color: rgba(255,255,255,.76);
    overflow: hidden;
}
.section::before,
.cta-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    top: 8%;
    right: -180px;
    background: radial-gradient(circle, rgba(244,180,0,.10), transparent 68%);
    filter: blur(4px);
    pointer-events: none;
    animation: zenxFloat 12s ease-in-out infinite alternate;
}
.section::after,
.cta-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    left: -240px;
    bottom: 2%;
    background: radial-gradient(circle, rgba(7,91,181,.20), transparent 70%);
    pointer-events: none;
    animation: zenxFloat 15s ease-in-out infinite alternate-reverse;
}
.section > .container,
.cta-section > .container { position: relative; z-index: 1; }
@keyframes zenxFloat { to { transform: translate3d(45px, -28px, 0) scale(1.08); } }

/* Dark-theme readability */
.section-title,
.product-content h3,
.industry-card h3,
.quality-content h3,
.form-header h3,
.faq-question,
.about-value h3 { color: #fff; }
.section-heading p,
.about-content > p,
.about-value p,
.product-content p,
.faq-answer p,
.quality-content p { color: rgba(255,255,255,.72); }
.section-label,
.product-category,
.gallery-overlay span,
.form-header > span { color: var(--accent-gold); }

/* Premium cards */
.product-card,
.industry-card,
.faq-item,
.gallery-card,
.about-floating-box,
.contact-grid {
    background: linear-gradient(145deg, rgba(13,49,95,.96), rgba(9,38,79,.96));
    border-color: rgba(255,255,255,.10);
    box-shadow: 0 18px 45px rgba(0,0,0,.20);
}
.product-card:hover,
.industry-card:hover,
.faq-item:hover,
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(0,0,0,.32), 0 0 0 1px rgba(244,180,0,.14);
}
.product-card-number,
.featured .product-card-number,
.why-item-number,
.why-item > span { color: var(--accent-gold) !important; opacity: .95; }
.product-icon,
.value-icon,
.contact-icon,
.faq-question i { color: var(--accent-gold); }

/* Accent consistency */
.btn-primary,
.btn-orange { background: var(--accent-gold); border-color: var(--accent-gold); color: #071c3d; }
.btn-primary:hover,
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(244,180,0,.25); }
.text-link, .product-link, .product-link i { color: var(--accent-gold); }

/* Contact form */
.contact-form-wrapper { background: linear-gradient(145deg, #0d315f, #09264f); }
.form-group label { color: rgba(255,255,255,.88); }
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.45); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(244,180,0,.10);
    transform: translateY(-1px);
}
.form-group select option { color: #071c3d; background: #fff; }

/* Footer maker credit */
.footer-bottom-container { position: relative; }
.website-credit {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 11px;
    letter-spacing: .5px;
    color: rgba(255,255,255,.58);
    white-space: nowrap;
}

/* Responsive polish */
@media (max-width: 900px) {
    .brand-logo { width: 46px; height: 46px; max-width: 46px; flex-basis: 46px; }
    .website-credit { position: static; transform: none; width: 100%; text-align: center; order: 3; margin-top: 10px; }
    .footer-bottom-container { flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .section { padding-top: 80px; padding-bottom: 80px; }
    .contact-form-wrapper { padding: 32px 22px; }
    .product-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .section::before, .section::after, .cta-section::before, .cta-section::after { animation: none; }
}

/* ================================================================
   FINAL CONTRAST FIXES — layout, assets and animations unchanged
   ================================================================ */
.hero {
    background: linear-gradient(145deg, #071c3d 0%, #09264f 55%, #071c3d 100%);
    color: #E5E7EB;
}
.hero-grid {
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
}
.hero-content h1,
.hero-feature strong { color: #FFFFFF; }
.hero-description,
.hero-feature span,
.hero-scroll { color: #E5E7EB; }
.hero-features { border-top-color: rgba(255,255,255,.14); }
.hero-feature-icon { background: rgba(244,180,0,.10); color: var(--accent-gold); }

/* Ensure text placed directly on premium dark sections remains readable. */
.section,
.about-section,
.products-section,
.industries-section,
.quality-section,
.gallery-section,
.faq-section,
.contact-section,
.cta-section {
    --text-dark: #FFFFFF;
    --text: #E5E7EB;
    --text-light: #CBD5E1;
}
.section h1, .section h2, .section h3, .section h4, .section h5, .section h6,
.about-section h1, .about-section h2, .about-section h3, .about-section h4,
.products-section h1, .products-section h2, .products-section h3, .products-section h4,
.industries-section h1, .industries-section h2, .industries-section h3, .industries-section h4,
.quality-section h1, .quality-section h2, .quality-section h3, .quality-section h4,
.gallery-section h1, .gallery-section h2, .gallery-section h3, .gallery-section h4,
.faq-section h1, .faq-section h2, .faq-section h3, .faq-section h4,
.contact-section h1, .contact-section h2, .contact-section h3, .contact-section h4,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4 { color: #FFFFFF; }
.section p, .section li, .section label,
.about-section p, .about-section li, .about-section label,
.products-section p, .products-section li, .products-section label,
.industries-section p, .industries-section li, .industries-section label,
.quality-section p, .quality-section li, .quality-section label,
.gallery-section p, .gallery-section li, .gallery-section label,
.faq-section p, .faq-section li, .faq-section label,
.contact-section p, .contact-section li, .contact-section label,
.cta-section p, .cta-section li, .cta-section label { color: #E5E7EB; }

/* Preserve deliberate high-contrast dark text on gold/light controls and logo cards. */
.btn-primary, .btn-orange { color: #071c3d; }
.about-logo-wrapper, .hero-logo-card { color: #071c3d; }

/* ================================================================
   FINAL NAVBAR / LOGO / QUALITY CORRECTIONS
   Layout, content, assets and animations preserved.
   ================================================================ */
.header,
.header.scrolled {
    background: rgba(7, 28, 61, 0.96);
    border-bottom-color: rgba(255,255,255,.10);
    box-shadow: 0 10px 40px rgba(0,0,0,.18);
}
.brand-logo,
.header.scrolled .brand-logo {
    width: 50px;
    height: 50px;
    max-width: 50px;
    flex: 0 0 50px;
    padding: 2px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
}
.brand-text strong { color: #FFFFFF; }
.brand-text span { color: #E5E7EB; }
.nav-link { color: #FFFFFF; }
.nav-link:hover,
.nav-link.active { color: var(--accent-gold); }
.dropdown-menu {
    background: #0b2d60;
    border-color: rgba(255,255,255,.10);
}
.dropdown-menu a { color: #FFFFFF; }
.dropdown-menu a:hover { color: var(--accent-gold); }
.mobile-menu-btn span { background: #FFFFFF; }

/* Quality page: explicit contrast correction for all four points and copy. */
.quality-section .quality-content,
.quality-section .quality-content p,
.quality-section .quality-points > div { color: #E5E7EB !important; }
.quality-section .section-title,
.quality-section .quality-circle-inner strong { color: #FFFFFF !important; }
.quality-section .quality-points i,
.quality-section .section-label { color: var(--accent-gold) !important; }

@media (max-width: 900px) {
    .brand-logo,
    .header.scrolled .brand-logo {
        width: 46px;
        height: 46px;
        max-width: 46px;
        flex-basis: 46px;
    }
}

/* Gallery image upgrade */
.gallery-card { min-height: 250px; isolation: isolate; }
.gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.001);
    transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 450ms ease;
}
.gallery-card::before { z-index: 2; background: linear-gradient(to top, rgba(7,28,61,.94) 0%, rgba(7,28,61,.52) 38%, rgba(7,28,61,.08) 78%); }
.gallery-card:hover .gallery-image { transform: scale(1.075); filter: saturate(1.05) contrast(1.03); }
.gallery-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { .gallery-image, .gallery-card { transition: none; } .gallery-card:hover .gallery-image { transform: none; } }


/* Approved Gallery preview restoration */
#gallery .gallery-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));grid-template-rows:none;gap:18px;align-items:stretch}
#gallery .gallery-card,#gallery .gallery-large,#gallery .gallery-wide{display:flex;flex-direction:column;min-width:0;min-height:0;height:100%;grid-row:auto;grid-column:auto;border-radius:8px;background:#082f5f;overflow:hidden;text-decoration:none;box-shadow:0 10px 28px rgba(7,28,61,.12);transform:translateY(0);transition:transform .35s ease,box-shadow .35s ease;isolation:isolate}
#gallery .gallery-card::before{display:none}
#gallery .gallery-card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(7,28,61,.2)}
#gallery .gallery-media{width:100%;aspect-ratio:4/5;overflow:hidden;background:#eef2f6;flex:none}
#gallery .gallery-image{display:block;width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .55s ease;filter:none}
#gallery .gallery-card:hover .gallery-image{transform:scale(1.055);filter:none}
#gallery .gallery-info{position:relative;inset:auto;z-index:1;display:flex;flex:1;flex-direction:column;align-items:center;padding:22px 20px 24px;background:#082f5f;text-align:center}
#gallery .gallery-icon{position:relative;z-index:1;display:grid;place-items:center;width:62px;height:62px;margin:0 auto 14px;border:1.5px solid #e4a63c;border-radius:50%;color:#e4a63c;font-size:24px}
#gallery .gallery-card:hover .gallery-icon{transform:none}
#gallery .gallery-info h3{margin:0;color:#fff;font-family:"Montserrat",sans-serif;font-size:18px;line-height:1.3;font-weight:700}
#gallery .gallery-divider{display:block;width:42px;height:2px;margin:14px auto 15px;background:#e4a63c}
#gallery .gallery-info p{margin:0;color:rgba(255,255,255,.94);font-size:14px;line-height:1.65}
@media(max-width:1050px){#gallery .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){#gallery .gallery-grid{grid-template-columns:1fr;gap:20px}#gallery .gallery-media{aspect-ratio:4/3}#gallery .gallery-info{padding:20px 18px 23px}}
@media(prefers-reduced-motion:reduce){#gallery .gallery-card,#gallery .gallery-image{transition:none}#gallery .gallery-card:hover,#gallery .gallery-card:hover .gallery-image{transform:none}}


/* Exact approved Gallery preview */
#gallery.gallery-section{background:linear-gradient(145deg,#071c3d 0%,#09264f 55%,#071c3d 100%)!important;color:rgba(255,255,255,.76)!important;padding:72px 0 58px!important;overflow:hidden}
#gallery.gallery-section::before,#gallery.gallery-section::after{display:none!important}
#gallery .section-heading{margin-bottom:38px!important}
#gallery .section-label{color:#d79b35!important;font-size:16px!important;font-weight:700!important;letter-spacing:.4px!important;text-transform:uppercase!important}
#gallery .section-label span{background:#d79b35!important}
#gallery .section-title{margin-top:18px!important;color:#ffffff!important;font-size:38px!important;line-height:1.15!important;font-weight:800!important;letter-spacing:-.6px!important}
#gallery .section-heading p{margin-top:20px!important;color:rgba(255,255,255,.76)!important;font-size:17px!important;line-height:1.65!important}
#gallery .section-heading::after{content:"";display:block;width:70px;height:5px;margin:18px auto 0;border-radius:99px;background:#d79b35}
#gallery .gallery-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:14px!important;align-items:stretch!important}
#gallery .gallery-card{position:relative!important;display:flex!important;flex-direction:column!important;height:auto!important;min-height:0!important;border-radius:6px!important;background:#082f5f!important;overflow:hidden!important;box-shadow:0 8px 22px rgba(7,28,61,.14)!important;transition:transform .35s ease,box-shadow .35s ease!important}
#gallery .gallery-card::before{display:none!important}
#gallery .gallery-card:hover{transform:translateY(-5px)!important;box-shadow:0 15px 34px rgba(7,28,61,.2)!important}
#gallery .gallery-media{position:relative!important;width:100%!important;aspect-ratio:1/1.28!important;overflow:hidden!important;background:#e8edf2!important;flex:none!important}
#gallery .gallery-image{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:center!important;transform:scale(1.001)!important;transition:transform .55s ease!important;filter:none!important}
#gallery .gallery-card:hover .gallery-image{transform:scale(1.045)!important;filter:none!important}
#gallery .gallery-info{position:relative!important;display:flex!important;flex:1!important;flex-direction:column!important;align-items:center!important;padding:20px 18px 24px!important;background:#082f5f!important;text-align:center!important}
#gallery .gallery-icon{display:grid!important;place-items:center!important;width:58px!important;height:58px!important;margin:0 auto 13px!important;border:1.5px solid #e4a63c!important;border-radius:50%!important;color:#e4a63c!important;font-size:22px!important}
#gallery .gallery-card:hover .gallery-icon{transform:none!important}
#gallery .gallery-info h3{margin:0!important;color:#fff!important;font-size:18px!important;line-height:1.3!important;font-weight:700!important}
#gallery .gallery-divider{display:block!important;width:40px!important;height:2px!important;margin:14px auto 14px!important;background:#e4a63c!important}
#gallery .gallery-info p{margin:0!important;color:rgba(255,255,255,.94)!important;font-size:14px!important;line-height:1.65!important}
#gallery .gallery-view-all{display:flex;justify-content:center;margin-top:28px}
#gallery .gallery-view-all .btn{border:0!important;border-radius:999px!important;background:#082f5f!important;color:#e4a63c!important;padding:14px 28px!important;box-shadow:none!important}
#gallery .gallery-view-all .btn:hover{transform:translateY(-2px)!important;background:#0b3972!important}
@media(max-width:1050px){#gallery .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}#gallery .section-title{font-size:34px!important}}
@media(max-width:600px){#gallery.gallery-section{padding:60px 0 50px!important}#gallery .gallery-grid{grid-template-columns:1fr!important;gap:20px!important}#gallery .gallery-media{aspect-ratio:4/3!important}#gallery .section-title{font-size:28px!important}#gallery .section-heading p br{display:none}}
