*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


:root {
    /* ===== PROFESSIONAL LIGHT â€” "CERTIFICATE OF ANALYSIS" SYSTEM ===== */
    --paper: #F8F7F2;
    /* warm-neutral paper background */
    --paper-2: #F1EFE6;
    /* deeper paper for alternating bands */
    --panel: #FFFFFF;
    /* card surfaces */
    --ink: #1B1E27;
    /* primary text / headings */
    --ink-soft: #4D525F;
    /* body copy */
    --ink-faint: #92968F8c;
    /* unused fallback */
    --muted: #040404;
    /* --muted: #8A8E99; */
    /* tertiary text */
    --line: #E2DFD3;
    /* hairline borders */
    --line-strong: #CFCBBC;

    --stamp: #AE2A2D;
    /* certificate-stamp red â€” primary accent */
    --stamp-soft: #C8474A;
    --verify: #2F6E58;
    /* verified / QC pass green */
    --verify-soft: #DCEEE6;
    --seal: #B08A35;
    /* foil seal gold */
    --seal-light: #EFE3C2;
    --navy: #1F2A44;
    /* deep ink-navy for selective panels */

    --white: #FFFFFF;
    --off-white: var(--paper);
    --surface: var(--paper-2);
    --border: var(--line);

    --text: var(--ink);
    --text-mid: var(--ink-soft);
    --text-muted: var(--muted);

    --shadow-xs: 0 1px 3px rgba(27, 30, 39, 0.05);
    --shadow-sm: 0 4px 16px rgba(27, 30, 39, 0.06);
    --shadow-md: 0 10px 30px rgba(27, 30, 39, 0.08);
    --shadow-lg: 0 20px 50px rgba(27, 30, 39, 0.10);

    --r-sm: 4px;
    --r: 8px;
    --r-lg: 12px;
    --r-xl: 18px; 
 --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Poppins', sans-serif;
}




img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none !important;
    color: inherit;
}

ul {
    list-style: none;
    padding-left: 0px !important;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--stamp);
    outline-offset: 2px;
}



/* TYPOGRAPHY */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stamp);
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--stamp);
    flex-shrink: 0;
}

.section-tag.on-dark {
    color: var(--seal-light);
}

.section-tag.on-dark::before {
    background: var(--seal);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.7vw, 2.15rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.22;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.section-sub {
    font-size: 0.93rem;
    color: #4f4f4f;
    font-weight:500;
    line-height: 1.8;
    max-width: 560px;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--stamp);
    color: #fff;
    padding: 12px 26px;
    border-radius: var(--r-sm);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #931f22;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    padding: 11px 26px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--ink);
    font-size: 0.76rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--ink);
    color: #fff;
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--panel);
    color: var(--ink);
    padding: 11px 26px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--line-strong);
    font-size: 0.76rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-ghost-white:hover {
    border-color: var(--ink);
    color: var(--ink);
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ======= FRAME CORNERS (signature element) ======= */
.frame {
    position: relative;
    padding: 10px;
}

.frame-corners span {
    position: absolute;
    width: 18px;
    height: 18px;
}

.frame-corners span:nth-child(1) {
    top: 0;
    left: 0;
    border-top: 2px solid var(--stamp);
    border-left: 2px solid var(--stamp);
}

.frame-corners span:nth-child(2) {
    top: 0;
    right: 0;
    border-top: 2px solid var(--stamp);
    border-right: 2px solid var(--stamp);
}

.frame-corners span:nth-child(3) {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--stamp);
    border-left: 2px solid var(--stamp);
}

.frame-corners span:nth-child(4) {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--stamp);
    border-right: 2px solid var(--stamp);
}

.frame-inner {
    border-radius: var(--r);
    overflow: hidden;
}

/* ======= TOPBAR ======= */
#topbar {
    background: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-mono);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

.topbar-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.topbar-item a:hover {
    color: var(--seal-light);
}

.topbar-item i {
    color: var(--seal-light);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-badge {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    text-transform: uppercase;
}

.topbar-badge.active {
    border-color: var(--verify);
    color: #8fd9bd;
}

.topbar-badge.active::before {
    content: 'â— ';
}

/* ======= NAVBAR ======= */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 247, 242, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.96);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-wrap {
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden; 
}

.nav-logo-wrap img {
    width: 107px;
    height: 85px;
    padding: 8px;
    object-fit: contain;
}

.nav-brand-text {
    line-height: 1.25;
}

.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink);
    display: block;
}

.nav-brand-sub {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-mono);
    color: black !important;
    /* font-size: 0.92rem; */
    letter-spacing: 0.1em;  
    border-radius: var(--r-sm);
    transition: all 0.2s;
    position: relative;
    /* padding: 9px 14px;
    font-weight: 600; */
}

.nav-link:hover {
    color: var(--ink);
}

.nav-link.active {
    color: var(--stamp);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 2px;
    background: var(--stamp);
}

.nav-cta {
    font-family: var(--font-mono);
    /* background: #3521B5; */
    background: var(--stamp);

    color: #fff;
    padding: 11px 22px;
    border-radius: var(--r-sm);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-left: 12px;
}

.nav-cta:hover {
      background: #3521B5;
    color: #fff;
}
.nav-cta2 {
    font-family: var(--font-mono);
    background: var(--stamp);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--r-sm);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-left: 12px;
}

.nav-cta2:hover {
    background: var(--navy);
    color: #fff;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.25s;
}


/* ========== DESKTOP DROPDOWN ========== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  min-width: 280px;
  padding: 12px 0;
  z-index: 100;
  list-style: none;
  margin: 0;
}

.nav-dropdown .dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
  background: var(--verify-soft);
  color: var(--ink);
}

/* Show on hover (desktop) */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Keep dropdown open when clicking toggle (used by JS on mobile) */
.nav-dropdown.active .dropdown-menu {
  display: block;
}

/* ========== MOBILE DROPDOWN ========== */
.mobile-dropdown {
  border-bottom: 1px solid var(--line);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
 
  padding: 8px 0 8px 16px;
  margin: 0;
  list-style:circle;
  border-top: 1px solid var(--line);
}

.mobile-dropdown-menu li{
        list-style: circle;
    color: white;
}

.mobile-dropdown-menu[aria-hidden="false"] {
  display: flex;
}

.mobile-link.mobile-sub {
  font-size: 14px;
  padding: 6px 0;
  font-weight: 500;
  color: #fff;
  list-style:circle;

  border-bottom: none;
}

.mobile-link.mobile-sub:hover {
  color: var(--stamp);
}

/* Chevron rotation */
.bi-chevron-down {
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .bi-chevron-down {
  transform: rotate(180deg);
}




.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 999;
    padding: 96px 32px 32px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

#mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-display);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-link:hover {
    color: #fff;
}

/* ======= HERO ======= */

/* ======= HERO ======= */
#hero {
    position: relative;
    padding: 64px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 1px 1px, rgba(27, 30, 39, 0.05) 1px, transparent 0) 0 0/24px 24px,
        var(--paper);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 70px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-watermark-wrap {
 position: absolute;
    top: -60px;
    left: 47%;
    width: 580px;
    height: 480px;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

/* Soft blue glow sitting behind the silhouette */
.hero-watermark-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(
        circle at 45% 45%,
        rgba(41, 55, 89, 0.35) 0%,
        rgba(83, 74, 183, 0.18) 38%,
        rgba(83, 74, 183, 0) 70%
    );
    filter: blur(18px);
}

/* Solid navy/indigo silhouette of the logo, masked from the PNG's alpha */
.hero-watermark {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background: #1555b6;
    -webkit-mask-image: url('../image/logo/omr-logo.png');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('../image/logo/omr-logo.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

@media (max-width: 900px) {
    .hero-watermark-wrap {
        width: 320px;
        height: 320px;
        top: -30px;
        left: -40px;
    }
    .hero-watermark {
        opacity: 0.08;
    }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stamp);
    margin-bottom: 22px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    padding: 6px 12px;
    background: var(--panel);
}

.hero-eyebrow i {
    width: 13px;
    height: 13px;
}

#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

#hero h1 .hero-high {
    color: var(--stamp);
}

.hero-desc {
    font-size: 0.96rem;
    color: #4f4f4f;
    font-weight: 500;
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
}

.hero-img-frame .frame-inner {
    height: 420px;
}

.hero-img-frame .frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-seal {
    position: absolute;
    left: -28px;
    bottom: -26px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: var(--panel);
    border: 2px dashed var(--seal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(-8deg);
    font-family: var(--font-mono);
    color: var(--seal);
    padding: 12px;
}

.hero-seal .hs-line1 {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
}

.hero-seal .hs-line2 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2px 0;
}

/* Hero stats — certificate footer strip */
.hero-stats {
    margin-top: 56px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hstat {
    padding: 22px 24px;
    border-right: 1px solid var(--line);
}

.hstat:last-child {
    border-right: none;
}

.hstat-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.hstat-lbl {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #4f4f4f;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Hero stats â€” certificate footer strip */
.hero-stats {
    margin-top: 56px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hstat {
    padding: 22px 24px;
    border-right: 1px solid var(--line);
}

.hstat:last-child {
    border-right: none;
}

.hstat-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.hstat-lbl {
    font-family: var(--font-mono);
    font-size: 0.72rem; 
   color: #4f4f4f;
    font-weight:600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ======= MARQUEE ======= */
.marquee-strip {
    background: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 38s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.838);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--seal);
    flex-shrink: 0;
}

/* ======= ABOUT â€” DOSSIER LAYOUT ======= */
#about {
    padding: 110px 0;
    background: var(--panel);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
    align-items: start;
}

/* Left: dossier visual + certificate card */
.dossier-photo .frame-inner {
    height: 280px;
}

.dossier-photo .frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dossier-card {
    margin-top: 28px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    position: relative;
}

.dossier-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--r);
    pointer-events: none;
}

.dossier-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-strong);
    position: relative;
    z-index: 1;
}

.dossier-head-label {
       font-family: var(--font-mono);

    font-size: 0.72rem;
    font-weight:600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: black;
}

.dossier-head-id {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--stamp);
    font-weight: 600;
}

.dossier-quote {
    font-family: var(--font-display);
    font-size: 1.02rem; 
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.dossier-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.dossier-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.dossier-row:first-child {
    border-top: none;
}

.dr-year {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--stamp);
    padding-top: 1px;
}

.dr-text {
    font-size: 0.81rem;
  
   color: #4f4f4f;
    font-weight:500;
    line-height: 1.55;
}

/* Right content column */
.about-content .section-sub {
    margin-bottom: 30px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin: 28px 0;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--line);
}

.value-item {
    padding: 22px 20px;
    background: var(--panel);
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--line);

}

.value-item:hover {
    background: var(--paper);
}

.vi-ref {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
   
   color: #4f4f4f;
    font-weight:600;
}

.vi-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--paper-2);
    color: var(--stamp);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}

.vi-icon-wrap i {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.vi-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ink);
}

.vi-desc {
    font-size: 0.94rem;
  
   color: #4f4f4f;
    font-weight:500;
    line-height: 1.6;
}

.about-directors {
    display: flex;
    gap: 16px;
    margin-top: 6px;
}

.dir-card {
    flex: 1;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.dir-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--panel);
    border: 2px solid var(--stamp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--stamp);
}

.dir-name {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--ink);
}

.dir-role {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    
   color: #4f4f4f;
    font-weight:600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
}

/* ======= WHY CHOOSE US ======= */
#why {
    padding: 110px 0;
    background: var(--paper);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header .section-tag {
    justify-content: center;
}

.why-header .section-sub {
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--line);
}

.why-card {
    background: var(--panel);
    padding: 32px 28px;
    transition: background 0.25s;
    position: relative;
}

.why-card:hover {
    background: var(--paper);
}

.wc-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}

.wc-num::before {
    content: 'REF ';
}

.wc-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--paper-2);
    color: var(--stamp);
}

.wc-icon-wrap i {
    width: 22px;
    height: 22px;
    stroke-width: 1.7;
}

.wc-title {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 9px;
}

.wc-desc {
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-banner {
    margin-top: 1px;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    overflow: hidden;
    position: relative;
    background: var(--ink);
    padding: 44px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.why-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0) 0 0/22px 22px;
}

.wb-text {
    position: relative;
    z-index: 1;
}

.wb-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.wb-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.wb-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wb-stat {
    text-align: center;
}

.wb-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--seal-light);
    line-height: 1;
}

.wb-lbl {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

.wb-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.14);
}

.why-banner .btn-primary {
    position: relative;
    z-index: 1;
}

/* ======= PRODUCTS ======= */
#products {
    padding: 110px 0;
    background: var(--panel);
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.prod-card {
    overflow: hidden;
    transition: all 0.25s;
    background: var(--panel);
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.prod-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
    filter: saturate(0.92);
}

.prod-card:hover .prod-img img {
    transform: scale(1.05);
}

.prod-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(27, 30, 39, 0.55) 100%);
}

.prod-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-cat {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stamp);
    margin-bottom: 10px;
}

.prod-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.prod-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-2);
    color: var(--ink);
}

.prod-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

.prod-name a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 8px;
}


.prod-desc {
    font-size: 0.91rem;
    
   color: #4f4f4f;
    font-weight:500;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: auto;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ptag {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    border: 1px solid var(--line-strong);
    color: var(--ink-soft);
}

.prod-btn {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--stamp);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: gap 0.2s, color 0.2s;
    flex-shrink: 0;
}

.prod-btn:hover {
    gap: 8px;
}

.prod-btn i {
    width: 13px;
    height: 13px;
}

.industries-section {
    margin-top: 70px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.ind-item {
    padding: 24px 14px;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
    cursor: default;
}

 

.ind-item:hover {
    background: var(--paper);
  
}

.ind-item:hover  .ind-name {
   color: var(--stamp);
  
}

.ind-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-strong);
    background: var(--paper-2);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.ind-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 1.7;
}

.ind-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
}

/* ======= COMPLIANCE â€” CERTIFICATE PANELS ======= */
#compliance {
    padding: 110px 0;
    background: var(--paper);
    position: relative;
}

.compliance-header {
    text-align: center;
    margin-bottom: 60px;
}

.compliance-header .section-tag {
    justify-content: center;
}

.compliance-header .section-sub {
    margin: 0 auto;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comp-card {
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    padding: 18px;
    transition: all 0.25s;
    position: relative;
}

.comp-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.comp-card-inner {
    border: 1px dashed var(--line-strong);
    border-radius: var(--r);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comp-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.comp-seal {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--seal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--seal);
    flex-shrink: 0;
}

.comp-seal i {
    width: 24px;
    height: 24px;
    stroke-width: 1.6;
}

.comp-code {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-align: right;
    line-height: 1.8;
}

.comp-code b {
    color: var(--stamp);
    display: block;
    font-size: 0.7rem;
}

.comp-title {
       font-family: var(--font-mono);

    font-size: 1.1rem;
    font-weight: 600;
    color: #4f4f4f; 
    margin-bottom: 12px;
}

.comp-desc {
    font-size: 0.81rem;
  
   color: #4f4f4f;
    font-weight:500;
    line-height: 1.75;
    margin-bottom: 22px;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.79rem;
    
   color: #4f4f4f;
    font-weight:500;
}

.comp-check {
    width: 20px;
    height: 20px;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--verify-soft);
    color: var(--verify);
}

.comp-check i {
    width: 11px;
    height: 11px;
    stroke-width: 2.5;
}

.comp-cta-strip {
    margin-top: 44px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-lg);
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px;
    flex-wrap: wrap;
}

.comp-cta-strip p {
    font-size: 0.92rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    max-width: 480px;
}

/* ======= BLOG ======= */
#blog {
    padding: 110px 0;
    background: var(--panel);
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.blog-thumb {
    height: 168px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
    filter: saturate(0.92);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stamp);
    margin-bottom: 12px;
}

.blog-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--muted);
}

.blog-read {
    color: var(--muted);
    font-weight: 400;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.blog-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.blog-link:hover {
    gap: 10px;
    color: var(--stamp);
}

/* ======= CONTACT ======= */
#contact {
    padding: 110px 0;
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.contact-left .section-sub {
    margin-bottom: 30px;
}

.cdet-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--panel);
}

.cdet {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.cdet:last-child {
    border-bottom: none;
}

.cdet-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--paper-2);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cdet-icon i {
    color: var(--stamp);
    width: 17px;
    height: 17px;
}

.cdet-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.cdet-value {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.8;
}

.cdet-value a {
    color: var(--ink);
}

.cdet-value a:hover {
    color: var(--stamp);
}

.global-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 22px;
}

.gb-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stamp);
    margin-bottom: 14px;
    font-weight: 600;
}

.gb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gb-pill {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-soft);
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    padding: 5px 12px;
    background: var(--paper);
    transition: border-color 0.2s, color 0.2s;
}

.gb-pill:hover {
    border-color: var(--stamp);
    color: var(--stamp);
}

.contact-form {
    background: var(--panel);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cf-header {
    background: var(--ink);
    padding: 26px 28px;
}

.cf-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cf-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cf-body {
    padding: 28px 28px;
}

.fg {
    margin-bottom: 16px;
}

.fg label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
    font-weight: 600;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    font-size: 0.86rem;
    color: var(--text);
    background: var(--paper);
    transition: border-color 0.2s, background 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--stamp);
    background: #fff;
}

.fg textarea {
    resize: vertical;
    min-height: 90px;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-submit {
    width: 100%;
    padding: 14px;
    background: var(--stamp);
    color: #fff;
    border-radius: var(--r-sm);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
    box-shadow: var(--shadow-sm);
}

.cf-submit:hover {
    background: #931f22;
}

/* ======= PRE-FOOTER CTA ======= */
#precta {
    background: var(--panel);
    border-top: 1px solid var(--line);
    padding: 56px 0;
}

.precta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border: 1px dashed var(--line-strong);
    border-radius: var(--r-lg);
    padding: 36px 40px;
}

.precta-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    max-width: 480px;
}

.precta-text span {
    color: var(--stamp);
    font-style: italic;
}

.precta-meta {
    font-family: var(--font-mono);
    font-size: 0.71rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;  
   color: #4f4f4f;
    font-weight:600;
    margin-bottom: 8px;
}

/* ======= FOOTER ======= */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    position: relative;
}

.footer-top {
    padding: 70px 0 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.fb-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.fb-logo {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.952);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fb-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.fb-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.fb-name span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--seal-light);
    margin-top: 6px;
}

.fb-desc {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.822);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 300px;
}

.fb-address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 22px;
    max-width: 300px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
}

.fb-address i {
    width: 16px;
    height: 16px;
    color: var(--seal-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-address-text {
    font-size: 0.89rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.fb-address-text strong {
    display: block;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.fb-reg {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-decoration: none;
}

.fsoc i {
    width: 14px;
    height: 14px;
    padding-bottom: 19px;
}

.fsoc:hover {
    border-color: var(--stamp);
    color: #fff;
    background: var(--stamp);
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--seal-light);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.footer-links a {
    font-size: 0.93rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
      content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.91);
 
    font-size: 0.7rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    color: var(--stamp);
}

.footer-contact-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-block .cdet-label-f {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.911);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.footer-contact-block a {
    font-size: 0.93rem;
    color: var(--seal-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-contact-block a:hover {
    color: #fff;
}

.footer-bottom {
    background: #14161D;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-mono);
}

.footer-copy {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.76);
}

.footer-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.836);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-meta .fm-sep {
    color: rgba(255, 255, 255, 0.12);
}

.footer-meta .fm-badge {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    padding: 3px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--seal-light);
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero-seal {
        left: 16px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .fb-desc,
    .fb-address {
        max-width: none;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top {
    padding: 70px 20px 44px;
}

}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .precta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .comp-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ind-item:nth-child(3n) {
        border-right: none;
    }

    .wb-stats {
        display: none;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {  
    padding: 0 18px;
}
    #topbar {
        display: none;
    }

    .hstat:nth-child(2) {
        border-right: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-item:nth-child(2n) {
        border-right: none;
    }

    .fg-row {
        grid-template-columns: 1fr;
    }

    .about-directors {
        flex-direction: column;
    }

    .why-banner {
        padding: 32px 28px;
        text-align: center;
        justify-content: center;
    }

    .dossier-row {
        grid-template-columns: 52px 1fr;
    }
}



/* about us  */


/* ===== HERO ===== */
.about-hero{background:var(--navy);color:#fff;padding:64px 0 56px;position:relative;overflow:hidden;}
.about-hero::after{content:"";position:absolute;inset:0;background-image:repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0 1px,transparent 1px 90px);pointer-events:none;}
.crumb{display:flex;align-items:center;gap:8px;font-size:12.5px;color:#AEB8CE;margin-bottom:22px;position:relative;z-index:1;flex-wrap:wrap;}
.crumb span.sep{opacity:.5;}
.crumb span.cur{color:#fff;font-weight:500;}
.hero-eyebrow{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--stamp-soft);max-width:fit-content;letter-spacing:.5px;text-transform:uppercase;margin-bottom:14px;position:relative;z-index:1;}
.hero-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--seal);flex-shrink:0;}
.about-hero h1{font-family:var(--font-display);font-weight:700;font-size:clamp(26px,4vw,44px);line-height:1.25;position:relative;z-index:1;}
.about-hero p{color:#C7CEDE; margin-top:16px;font-size:15px;position:relative;z-index:1;}
@media (max-width:600px){.about-hero{padding:44px 0 40px;}}

 
/* ===== STORY ===== */
.story{padding:64px 0;}
.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media (max-width:900px){.story-grid{grid-template-columns:1fr;gap:36px;}}
.story h2{font-family:var(--font-display);font-weight:700;font-size:clamp(22px,3vw,28px);margin-bottom:16px;line-height:1.3;}
.story p{color:#151111;font-size:15px;margin-bottom:14px;}
.story-cert{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-xl);box-shadow:var(--shadow-md);padding:34px;position:relative;}
@media (max-width:480px){.story-cert{padding:26px 20px;}}
.cert-row{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px dotted var(--line);font-size:13.5px;flex-wrap:wrap;}
.cert-row:last-child{border-bottom:none;}
.cert-row span{color:var(--muted);}
.cert-row b{color:var(--ink);font-weight:600;text-align:right;}
.cert-badge{position:absolute;top:-10px;right:-10px;width:58px;height:61px;border-radius:50%;border:2px solid var(--stamp);color:var(--stamp);display:flex;align-items:center;justify-content:center;text-align:center;font-weight:700;font-size:8.5px;letter-spacing:.4px;line-height:1.25;transform:rotate(-12deg);text-transform:uppercase;padding:4px;mix-blend-mode:multiply;opacity:.9;}
@media (max-width:480px){.cert-badge{width:60px;height:60px;font-size:7px;top:16px;right:16px;}}

/* ===== VALUES ===== */
.values{padding:60px 0;background:var(--paper-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.section-head{text-align:center;max-width:60ch;margin:0 auto 40px;}
.section-head h2{font-family:var(--font-display);font-weight:700;font-size:clamp(22px,3vw,28px);margin-bottom:12px;}
.section-head p{color:var(--ink-soft);font-size:15px;}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media (max-width:900px){.values-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.values-grid{grid-template-columns:1fr;}}
.value-card{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:26px 22px;box-shadow:var(--shadow-xs);}
.value-icon{width:42px;height:42px;border-radius:10px;background:var(--verify-soft);color:var(--verify);display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.value-card h3{font-family:var(--font-display);font-weight:600;font-size:15.5px;margin-bottom:8px;}
.value-card p{font-size:13.5px;color:var(--ink-soft);}

/* ===== STATS ===== */
.stats{padding:56px 0;}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--ink);border:1px solid var(--ink);border-radius:var(--r-lg);overflow:hidden;}
@media (max-width:700px){.stats-grid{grid-template-columns:1fr 1fr;}}
.stat-item{background:var(--panel);padding:28px 16px;text-align:center;}
.stat-num{font-family:var(--font-display);font-weight:700;font-size:clamp(24px,3.4vw,30px);color:var(--stamp);margin-bottom:6px;}
.stat-label{font-size:12.5px;font-weight:600;color:var(--ink);text-transform:uppercase;letter-spacing:.4px;}

/* ===== TIMELINE (responsive: horizontal strip on desktop, vertical stack on mobile) ===== */
.timeline-sec{padding:20px 0 64px;}
.timeline{position:relative;display:grid;grid-template-columns:repeat(5,1fr);gap:24px;padding-top:26px;border-top:2px solid var(--line-strong);}
.tl-item{position:relative;padding-left:0;}
.tl-item::before{content:"";position:absolute;left:0;top:-32px;width:12px;height:12px;border-radius:50%;background:var(--stamp);box-shadow:0 0 0 2px var(--seal);}
.tl-year{font-family:var(--font-display);font-weight:700;color:var(--stamp);font-size:15px;margin-bottom:4px;}
.tl-item h3{font-size:14.5px;font-weight:600;margin-bottom:4px;line-height:1.35;}
.tl-item p{font-size:13px;color:var(--ink-soft);}

@media (max-width:900px){
  .timeline{grid-template-columns:1fr 1fr;row-gap:40px;}
}
@media (max-width:600px){
  .timeline{grid-template-columns:1fr;border-top:none;border-left:2px solid var(--line-strong);padding-top:4px;padding-left:24px;gap:30px;}
  .tl-item::before{left:-30px;top:2px;}
}

/* ===== CERTIFICATIONS ===== */
.certs{padding:56px 0;background:var(--paper-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.certs-grid{display:flex;justify-content:space-between;flex-wrap:wrap;gap:22px;}
.certs-item{flex:1;min-width:200px;background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:22px;display:flex;gap:14px;align-items:flex-start;}
.certs-item i{color:var(--verify);font-size:22px;margin-top:2px;flex-shrink:0;}
.certs-item h4{font-size:14.5px;font-weight:600;margin-bottom:4px;}
.certs-item p{font-size:12.5px;color:var(--ink-soft);}

/* ===== PRECTA ===== */
#precta{padding:56px 0;}
#precta .precta-meta{color:#E5EBF7;font-size:12px;letter-spacing:.5px;text-transform:uppercase;margin-bottom:6px;}
.precta-inner{background:var(--navy);color:#fff;border-radius:var(--r-xl);padding:36px 40px;display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;}
.precta-text{font-family:var(--font-display);font-weight:700;font-size:20px;max-width:46ch;}
.precta-text span{color:var(--seal);}
#precta .precta-text{color:#fff;}
@media (max-width:600px){.precta-inner{padding:28px 24px;flex-direction:column;align-items:flex-start;}}
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--stamp);color:#fff; width: max-content; font-weight:600;font-size:14.5px;padding:13px 26px;border-radius:999px;border:none;cursor:pointer;transition:.2s;white-space:nowrap;}
.btn-primary:hover{background:var(--stamp-soft);}

 
@media (max-width:600px){.footer-bottom-inner{flex-direction:column;text-align:center;} footer {
    padding: 19px 0px;} .hero-img-frame .frame-inner {
    height: 300px; 
} .partner-carousel .partner-name {
    font-weight: 600;
    font-size: 0.7rem !important; 
}}
/* about us  */












/*  preloader  */
/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #150c31;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-wrap {
    text-align: center;
    font-family: Arial, sans-serif;
}

.atom {
    position: relative;
    width: 200px;
    height: 200px;
}

.atom svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
}

.orbit {
    transform-origin: 100px 100px;
}

.orbit1 {
    animation: spin1 2.4s linear infinite;
}

.orbit2 {
    animation: spin2 3.2s linear infinite reverse;
}

.orbit3 {
    animation: spin3 2.8s linear infinite;
}

@keyframes spin1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin2 {
    from {
        transform: rotate(60deg);
    }

    to {
        transform: rotate(420deg);
    }
}

@keyframes spin3 {
    from {
        transform: rotate(120deg);
    }

    to {
        transform: rotate(480deg);
    }
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
}

.hex {
    width: 42px;
    height: 36px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: #A32D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FCEBEB;
    font-weight: bold;
    font-size: 18px;
}

.loading-text {
    margin-top: 16px;
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* Main site content */
#site-content {
    font-family: Arial, sans-serif;
    padding: 40px;
}

/*  preloader  */


  /* Wrapper â€“ just the two sections */
        .sections-container {
            margin-top: 30px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        /* ===== SECTION HEADERS ===== */
        .section-eyebrow {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--stamp);
            margin-bottom: 6px;
            font-weight: 600;
        }

        .section-main-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--navy);
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        /* ===== GLOBAL PARTNERS GRID ===== */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .partner-category {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 28px 24px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .partner-category:hover {
            box-shadow: var(--shadow-md);
        }

        .category-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--ink);
            border-bottom: 2px solid var(--stamp-soft);
            padding-bottom: 0.6rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.01em;
        }

        .partner-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .partner-list li {
            font-size: 0.95rem;
            color: var(--text-mid);
            display: flex;
            align-items: baseline;
            gap: 8px;
            line-height: 1.4;
        }

        .partner-list li::before {
             content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
            color: var(--stamp);
          
            font-size: 1.2rem;
        }

        .partner-name {
            font-weight: 600;
            color: var(--ink);
        }

        .partner-country {
            font-size: 0.8rem;
            color: var(--muted);
            margin-left: 4px;
            font-weight: 400;
        }

        /* ===== DIRECTOR'S MESSAGE ===== */
        .director-section {
            background: var(--paper-2);
            border-radius: var(--r-xl);
            padding: 48px 48px 44px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        /* decorative foil accent */
        .director-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, var(--seal), var(--stamp));
        }

        .director-quote {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 500;
            line-height: 1.5;
            color: var(--navy);
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 30px;
        }

        .director-quote::before {
            content: "â€œ";
            font-size: 4rem;
            color: var(--navy);
            position: absolute;
            left: -10px;
            top: -18px;
            opacity: 0.7;
            font-family: var(--font-display);
            line-height: 1;
        }

        .director-quote p {
            position: relative;
            z-index: 1;
        }

        .director-signature {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .signature-text {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
                        color: var(--navy);

            letter-spacing: 0.02em;
            border-left: 2px solid var(--stamp-soft);
            padding-left: 20px;
        }

        .director-badge {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.689);
            color: var(--stamp-soft);
            padding: 8px 18px;
            border-radius: 30px;
            letter-spacing: 0.08em;
            border: 1px solid var(--seal-light);
            backdrop-filter: blur(4px);
        }

        @media (max-width: 700px) {
           
            .director-section {
                padding: 32px 24px;
            }
            .director-quote {
                font-size: 1.3rem;
                padding-left: 20px;
            }
            .signature-text {
                font-size: 1.1rem;
            }
        }









        
        /* ---------- PARENT CLASS: .partner-carousel ---------- */
        .partner-carousel {
            --bg: #0a0e14;
            --surface: #131820;
            --surface-light: #1a1f2b;
            --border: #252b36;
            --text: #e1e4ea;
            --text-muted: #8b909d;
            --accent: #5b8dee;
            --radius: 18px;
            --card-width: 200px;
            --gap: 24px;

            width: 100%; 
            padding: 30px 0px;
            position: relative;
            z-index: 1;
            color: var(--text);
        }
 
        .partner-carousel .section-label .dot-pulse {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: partner-pulse 2s ease-in-out infinite;
        }
        @keyframes partner-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(91,141,238,0.7); }
            50% { box-shadow: 0 0 0 10px rgba(91,141,238,0); }
        }
        .partner-carousel .section-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .partner-carousel .section-title .highlight {
            background: linear-gradient(135deg, var(--accent), #8b6ce0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Outer frame */
        .partner-carousel .carousel-outer {
            background: var(--surface);
            border: 1px solid var(--border);
     
            padding: 20px 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02) inset;
            overflow: hidden;
            position: relative;
        }

        /* Edge fade */
        .partner-carousel .carousel-outer::before,
        .partner-carousel .carousel-outer::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        .partner-carousel .carousel-outer::before {
            left: 0;
            background: linear-gradient(to right, var(--surface) 0%, transparent 100%);
        }
        .partner-carousel .carousel-outer::after {
            right: 0;
            background: linear-gradient(to left, var(--surface) 0%, transparent 100%);
        }

        /* Scrolling track */
        .partner-carousel .carousel-track {
            display: flex;
            gap: var(--gap);
            width: max-content;
            animation: partner-scroll 35s linear infinite;
            padding: 10px 0;
        }

        /* Pause on hover */
        .partner-carousel .carousel-outer:hover .carousel-track {
            animation-play-state: paused;
        }

        @keyframes partner-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-1 * (var(--card-width) + var(--gap)) * 12));
            }
        }

        /* Individual partner card */
        .partner-carousel .partner-card {
            flex: 0 0 var(--card-width);
            background: var(--surface-light);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 16px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
            min-height: 130px;
            justify-content: center;
            user-select: none;
        }
        .partner-carousel .partner-card:hover {
            border-color: rgba(255,255,255,0.18);
            box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 60px -10px rgba(91,141,238,0.25);
            transform: translateY(-5px);
            background: #1c2230;
        }

        /* Static logo */
        .partner-carousel .partner-logo {
            width: 100%;
            height: 72px; 
            object-fit: contain; 
            border: 2px solid rgba(255,255,255,0.08);
            flex-shrink: 0;
        }
        .partner-carousel .partner-card:hover .partner-logo {
            border-color: rgba(255,255,255,0.25);
            box-shadow: 0 0 30px rgba(255,255,255,0.1);
        }

        .partner-carousel .partner-name {
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            line-height: 1.3;
            color: #fff;

        }
       

        .partner-carousel .partner-country {
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--text-muted);
            background: rgba(255,255,255,0.03);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid transparent;
        }
        .partner-carousel .partner-card:hover .partner-country {
            color: #c5c9d3;
            border-color: rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.05);
        }

        /* Responsive adjustments inside the parent class */
        @media (max-width: 768px) {
            .partner-carousel {
                --card-width: 155px;
                --gap: 16px;
            }
            .partner-carousel .partner-logo {
                width: 56px;
                height: 56px;
            }
            .partner-carousel .carousel-outer::before,
            .partner-carousel .carousel-outer::after {
                width: 40px;
            }
        }
        @media (max-width: 480px) {
            .partner-carousel {
                --card-width: 130px;
                --gap: 12px;
            }
            .partner-carousel .partner-logo {
                width: 48px;
                height: 48px;
            }
            .partner-carousel .carousel-outer::before,
            .partner-carousel .carousel-outer::after {
                width: 24px;
            }
        }



        /* enquiry page  */
         /* HERO BAND */
        .pd-hero {
            background: radial-gradient(1200px 300px at 10% -20%, #33456e 0%, var(--navy) 55%), var(--navy);
            color: #fff;
            padding: 22px 0 26px;
            position: relative;
            overflow: hidden;
        }
        .pd-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 90px);
            pointer-events: none;
        }
        .crumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: #AEB8CE;
            padding: 2px 0 14px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .crumb a:hover {
            color: #fff;
        }
        .crumb span.sep {
            opacity: .5;
        }
        .crumb span.cur {
            color: #fff;
            font-weight: 600;
        }
        .hero-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-eyebrow {
          max-width: max-content;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: 12px;
            /* color: var(--seal-light); */
            letter-spacing: .5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .hero-eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--seal);
        }
        .hero-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(24px, 3.2vw, 36px);
            max-width: 22ch;
            line-height: 1.15;
        }
        .hero-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 14px;
        }
        .htag {
            font-family: var(--font-mono);
            font-size: 11.5px;
            border: 1px solid rgba(255, 255, 255, .25);
            color: #D7DCE8;
            padding: 4px 10px;
            border-radius: 999px;
        }

        /* MAIN LAYOUT */
        .pd-body {
            padding: 44px 0 0;
        }
        .pd-layout {
            display: grid;
            grid-template-columns: 1.55fr 1fr;
            gap: 40px;
            align-items: start;
        }
        @media (max-width: 980px) {
            .pd-layout {
                grid-template-columns: 1fr;
            }
        }

        /* GALLERY */
        .gallery-main {
         
            
            display: flex;
            align-items: center;
            justify-content: center; 
            margin-bottom: 10px;
        }
    
        .section-label {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: .5px;
            color: var(--muted);
            margin: 26px 0 12px;
        }

        /* TITLE + PRICE STRIP */
        .pd-desc {
           font-size: 0.93rem;
    color: #4f4f4f;
    font-weight:500;
    line-height: 1.8; 
        }
        .quickfacts {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            overflow: hidden;
            margin-bottom: 32px;
        }
        @media (max-width: 640px) {
            .quickfacts {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .qf-item {
            background: var(--panel);
            padding: 16px 14px;
        }
        .qf-item .k {
            font-size: 10.5px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 5px;
        }
        .qf-item .v {
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 14px;
            color: var(--ink);
        }

        .spec-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            overflow: hidden;
            background: var(--panel);
            margin-bottom: 8px;
        }
        @media (max-width: 560px) {
            .spec-list {
                grid-template-columns: 1fr;
            }
        }
        .spec-item {
            padding: 13px 20px;
            border-bottom: 1px solid var(--line);
            border-right: 1px solid var(--line);
        }
        .spec-list .spec-item:nth-child(2n) {
            border-right: none;
        }
        .spec-item .k {
            font-size: 11.5px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 3px;
        }
        .spec-item .v {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 500;
            color: var(--ink);
        }

        .apps-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .apps-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 14.5px;
            color: var(--muted);
        }
        .apps-list i {
            color: var(--verify);
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* SIDEBAR / ENQUIRY */
        .sidebar {
            position: sticky;
            top: 88px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .enq-card {
            background: var(--panel);
            border: 1px solid var(--line);
            border-radius: var(--r-xl);
            box-shadow: var(--shadow-lg);
            padding: 26px;
        }
        .enq-eyebrow {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mono);
            font-size: 11.5px;
            color: var(--stamp);
            letter-spacing: .5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .enq-eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--stamp);
        }
        .enq-card h2 {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 19px;
            margin-bottom: 6px;
            line-height: 1.25;
        }
        .enq-card>p {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 18px;
        }
        .locked-field {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--verify-soft);
            border: 1px solid var(--verify);
            color: var(--verify);
            border-radius: var(--r);
            padding: 10px 12px;
            font-family: var(--font-mono);
            font-size: 11.5px;
            font-weight: 500;
            margin-bottom: 16px;
        }
        form.enq-form {
            display: flex;
            flex-direction: column;
            gap: 13px;
        }
        .field {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .field label {
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
        }
        .field input,
        .field select,
        .field textarea {
            border: 1px solid var(--line-strong);
            border-radius: var(--r);
            padding: 10px 12px;
            font-family: var(--font-body);
            font-size: 13.5px;
            color: var(--ink);
            background: var(--paper);
            outline: none;
            transition: .15s;
            width: 100%;
        }
        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            border-color: var(--verify);
            background: #fff;
        }
        .field textarea {
            resize: vertical;
            min-height: 64px;
        }
        .check-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 2px;
        }
        .check-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: var(--muted);
            font-weight: 500;
            cursor: pointer;
        }
        .check-item input {
            width: 15px;
            height: 15px;
            accent-color: var(--verify);
            flex-shrink: 0;
        }
        .terms-row {
            font-size: 12px;
            color: var(--muted);
        }
        .terms-row label {
            display: flex;
            gap: 7px;
            align-items: flex-start;
        }
        .terms-row input {
            margin-top: 2px;
            accent-color: var(--stamp);
        }
     
        .enq-note {
            font-size: 11.5px;
            color: var(--muted);
            text-align: center;
            margin-top: 10px;
        }

        .trust-card {
            background: var(--paper-2);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 20px;
        }
        .trust-card ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .trust-card li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 12.5px;
            color: var(--muted);
        }
        .trust-card i {
            color: var(--seal);
            margin-top: 2px;
        }

        

        /* TRUST STRIP / PRECTA / FOOTER */
        .trust-strip {
          margin-top: 20px ;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: var(--paper-2);
        }
        .trust-inner {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 18px;
            padding: 20px 0;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: 12.5px;
            color: var(--muted);
        }
        .trust-item i {
            color: var(--seal);
            font-size: 16px;
        }


    

        /* enquiry page  */