 @import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

 /* ===== DESIGN TOKENS ===== */
 :root {
   /* Brand Palette (From Visiting Card & Corporate Identity) */
   --navy-dark: #09192c;
   --navy-primary: #0e2748;
   --navy-surface: #14325a;

   --blue-primary: #0f5298;
   --blue-brand: #1565C0;
   --blue-light: #1976D2;
   --blue-subtle: #eef5fc;

   --orange-brand: #E65100;
   --orange-hover: #cf3d00;
   --orange-subtle: #fff4ec;

   /* Neutral Palette */
   --white: #ffffff;
   --bg-neutral: #f8fafc;
   --bg-surface: #f1f5f9;
   --bg-card: #ffffff;

   /* Standardized Text Color System (Consolidated to 6 Core Tokens) */
   --text-primary: #0f172a;
   --text-secondary: #334155;
   --text-muted: #64748b;
   --text-light: #94a3b8;
   --text-inverse: #ffffff;
   --text-brand: #E65100;

   /* Borders */
   --border-subtle: #e2e8f0;
   --border-medium: #cbd5e1;
   --border-dark: #94a3b8;
   --border-brand: #1565C0;

   /* Functional Shadows */
   --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
   --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
   --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08);
   --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.10);

   /* Typography Tokens & Consistent Type Scale (8 Sizes Max) */
   --font-heading: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

   --fs-xs: 0.8125rem;   /* 13px - captions, badges, meta */
   --fs-sm: 0.875rem;    /* 14px - small body, button labels, chips */
   --fs-base: 1rem;      /* 16px - standard body text */
   --fs-md: 1.125rem;    /* 18px - subtitles, card titles */
   --fs-lg: 1.25rem;     /* 20px - feature subheads, section leads */
   --fs-xl: 1.5rem;      /* 24px - h3 card headings */
   --fs-2xl: 2rem;       /* 32px - h2 section titles */
   --fs-3xl: 2.5rem;     /* 40px - hero h1 titles */

   /* Spacing Grid (8px baseline) */
   --space-1: 4px;
   --space-2: 8px;
   --space-3: 12px;
   --space-4: 16px;
   --space-5: 20px;
   --space-6: 24px;
   --space-8: 32px;
   --space-10: 40px;
   --space-12: 48px;
   --space-16: 64px;
   --space-20: 80px;
   --space-24: 96px;

   /* Standardized Border Radii System (Consolidated to 5 Tokens Max) */
   --radius-xs: 4px;      /* Small tags & micro badges */
   --radius-sm: 6px;      /* Buttons, form inputs, chips */
   --radius-md: 10px;     /* Product cards, feature boxes */
   --radius-lg: 16px;     /* Large showcase cards, modals */
   --radius-full: 9999px; /* Circular icon buttons, pill badges */

   --container-max: 1440px;
   --transition-fast: 0.18s ease-in-out;
   --transition: 0.25s ease-in-out;
 }

 /* ===== RESET & BASE ===== */
 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 html {
   scroll-behavior: smooth;
   font-size: 16px;
   -webkit-text-size-adjust: 100%;
   overflow-x: hidden !important;
   width: 100% !important;
   max-width: 100% !important;
   touch-action: manipulation;
 }

 body {
   font-family: var(--font-body);
   color: var(--text-secondary);
   background: var(--white);
   line-height: 1.65;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   overflow-x: hidden !important;
   width: 100% !important;
   max-width: 100% !important;
   position: relative;
   touch-action: manipulation;
 }

 /* Prevent auto-zoom on input focus in mobile browsers */
 input[type="text"],
 input[type="number"],
 input[type="email"],
 input[type="tel"],
 input[type="search"],
 select,
 textarea {
   font-size: 16px !important;
   touch-action: manipulation;
 }

 a {
   text-decoration: none;
   color: inherit;
   transition: color var(--transition-fast);
 }

 img {
   max-width: 100%;
   display: block;
   height: auto;
 }

 ul,
 ol {
   list-style: none;
 }

 button,
 input,
 select,
 textarea {
   font-family: inherit;
   font-size: inherit;
 }

 /* ===== CONTAINER & LAYOUT ===== */
 .container {
   width: 100%;
   max-width: var(--container-max);
   margin-left: auto;
   margin-right: auto;
   padding-left: 20px;
   padding-right: 20px;
 }

 .section-pad {
   padding-top: var(--space-20);
   padding-bottom: var(--space-20);
 }

 .section-pad-sm {
   padding-top: var(--space-12);
   padding-bottom: var(--space-12);
 }

 .bg-neutral {
   background-color: var(--bg-neutral);
 }

 .bg-surface {
   background-color: var(--bg-surface);
 }

 .bg-navy {
   background-color: var(--navy-dark);
   color: var(--white);
 }

 /* ===== TYPOGRAPHY & SECTION HEADERS ===== */
 .section-header {
   margin-bottom: var(--space-10);
 }

 .section-header.text-center {
   text-align: center;
   max-width: 680px;
   margin-left: auto;
   margin-right: auto;
 }

 .sub-title {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--blue-brand);
   font-family: var(--font-heading);
   font-size: 0.82rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   margin-bottom: var(--space-2);
 }

 .sub-title::before {
   content: '';
   display: inline-block;
   width: 16px;
   height: 2px;
   background: var(--orange-brand);
 }

 .sub-title.center,
 .text-center .sub-title {
   justify-content: center;
 }

 .sub-title.center::after,
 .text-center .sub-title::after {
   content: '';
   display: inline-block;
   width: 16px;
   height: 2px;
   background: var(--orange-brand);
 }

 .section-title {
   font-family: var(--font-heading);
   font-size: clamp(1.85rem, 3.2vw, 2.5rem);
   font-weight: 800;
   color: var(--text-primary);
   line-height: 1.2;
   letter-spacing: -0.015em;
   margin-bottom: var(--space-3);
 }

 .section-title span {
   color: var(--blue-brand);
 }

 .section-desc {
   font-size: 1rem;
   color: var(--text-secondary);
   line-height: 1.7;
 }

 .bg-navy .section-title {
   color: var(--white);
 }

 .bg-navy .section-desc {
   color: #cbd5e1;
 }

 .bg-navy .sub-title {
   color: #38bdf8;
 }

 /* ===== BUTTONS (CLEAR HIERARCHY, INTENTIONAL) ===== */
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   font-family: var(--font-heading);
   font-size: 0.92rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   padding: 12px 24px;
   border-radius: var(--radius-sm);
   border: 1px solid transparent;
   cursor: pointer;
   transition: all var(--transition-fast);
 }

 .btn svg {
   width: 16px;
   height: 16px;
   flex-shrink: 0;
 }

 .btn-primary {
   background-color: var(--blue-brand);
   color: var(--white);
   border-color: var(--blue-brand);
 }

 .btn-primary:hover {
   background-color: var(--navy-surface);
   border-color: var(--navy-surface);
   color: var(--white);
 }

 .btn-orange {
   background-color: var(--orange-brand);
   color: var(--white);
   border-color: var(--orange-brand);
 }

 .btn-orange:hover {
   background-color: var(--orange-hover);
   border-color: var(--orange-hover);
   color: var(--white);
 }

 .btn-outline {
   background-color: transparent;
   color: var(--blue-brand);
   border-color: var(--border-medium);
 }

 .btn-outline:hover {
   background-color: var(--blue-subtle);
   border-color: var(--blue-brand);
   color: var(--blue-brand);
 }

 .btn-outline-white {
   background-color: transparent;
   color: var(--white);
   border-color: rgba(255, 255, 255, 0.4);
 }

 .btn-outline-white:hover {
   background-color: var(--white);
   color: var(--navy-dark);
   border-color: var(--white);
 }

 .btn-sm {
   padding: 8px 16px;
   font-size: 0.82rem;
 }

 .btn-lg {
   padding: 15px 32px;
   font-size: 1rem;
 }

 /* ===== UTILITY TOPBAR ===== */
 .topbar {
   background-color: #061527;
   color: #94a3b8;
   font-size: 0.8rem;
   padding: 7px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .topbar-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
 }

 .topbar-left,
 .topbar-right {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
 }

 .topbar-item {
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }

 .topbar-item svg {
   width: 13px;
   height: 13px;
   color: var(--orange-brand);
 }

 .topbar-badge {
   background: rgba(255, 255, 255, 0.08);
   color: #e2e8f0;
   padding: 2px 7px;
   border-radius: var(--radius-xs);
   font-size: 0.72rem;
   font-weight: 600;
   border: 1px solid rgba(255, 255, 255, 0.12);
 }

  .topbar-phone {
    color: var(--white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .topbar-phone svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
    color: var(--orange-brand) !important;
  }

  .topbar-phone:hover {
    color: var(--orange-brand);
  }

  /* ===== MAIN NAVBAR ===== */
  .navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .navbar .brand-name {
    color: var(--navy-dark);
  }

  .navbar .brand-tag {
    color: var(--orange-brand);
  }

  .navbar .brand-motto {
    color: #64748b;
  }

  .navbar .nav-link {
    color: #1e293b;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.2s ease;
  }

  .navbar .nav-link:hover {
    color: var(--orange-brand);
    background-color: var(--orange-subtle);
    transform: translateY(-1px);
  }

  .navbar .nav-link.active {
    color: var(--orange-brand);
    background-color: var(--orange-subtle);
    font-weight: 700;
  }

  .navbar .btn-orange {
    background-color: var(--orange-brand);
    color: #ffffff;
    border-color: var(--orange-brand);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(235, 94, 40, 0.3);
    transition: all 0.2s ease;
  }

  .navbar .btn-orange:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(235, 94, 40, 0.4);
  }

  .navbar .hamburger {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid #cbd5e1;
  }

  .navbar .hamburger span {
    background: #0f172a;
  }

  .navbar.scrolled {
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  }

 .nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 80px;
 }

 /* LOGO INTEGRATION */
 .nav-logo {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   text-decoration: none;
 }

  .nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background-color: transparent !important;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
  }

  .brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.65rem;
   color: var(--text-primary);
   line-height: 1;
   letter-spacing: 0.02em;
 }

 .brand-tag {
   font-family: var(--font-heading);
   font-weight: 700;
   font-size: 0.74rem;
   color: var(--blue-brand);
   letter-spacing: 0.1em;
   text-transform: uppercase;
   margin-top: 2px;
 }

 .brand-motto {
   font-size: 0.65rem;
   color: var(--text-muted);
   letter-spacing: 0.01em;
 }

 /* NAVIGATION MENU */
 .nav-menu {
   display: flex;
   align-items: center;
   gap: 4px;
 }

 .nav-link {
   font-family: var(--font-heading);
   font-size: 0.94rem;
   font-weight: 600;
   color: var(--text-secondary);
   padding: 8px 14px;
   border-radius: var(--radius-sm);
   display: inline-block;
   transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s ease, color 0.25s ease;
 }

 .nav-link:hover {
   color: var(--blue-brand);
   background-color: var(--white);
   transform: translateY(-4px);
   box-shadow: var(--shadow-md);
 }

 .nav-link.active {
   color: var(--blue-brand);
   font-weight: 700;
   background-color: var(--blue-subtle);
 }

 .nav-link.active:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-md);
 }

 .nav-actions {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 /* HAMBURGER FOR MOBILE */
 .hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   width: 40px;
   height: 40px;
   padding: 8px;
   background: var(--bg-neutral);
   border: 1px solid var(--border-subtle);
   border-radius: var(--radius-xs);
   cursor: pointer;
 }

 .hamburger span {
   display: block;
   height: 2px;
   width: 100%;
   background: var(--text-primary);
   border-radius: 2px;
   transition: all 0.25s ease;
 }

 .hamburger.open span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
 }

 .hamburger.open span:nth-child(2) {
   opacity: 0;
 }

 .hamburger.open span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
 }

 /* MOBILE DRAWER */
 .drawer-overlay {
   position: fixed;
   inset: 0;
   background: rgba(9, 25, 44, 0.6);
   z-index: 102;
   opacity: 0;
   visibility: hidden;
   transition: all 0.25s ease;
 }

 .drawer-overlay.open {
   opacity: 1;
   visibility: visible;
 }

 .mobile-drawer {
   position: fixed;
   top: 0;
   right: -300px;
   width: 290px;
   height: 100vh;
   background: var(--white);
   z-index: 104;
   box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
   display: flex;
   flex-direction: column;
   padding: 20px;
   transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .mobile-drawer.open {
   right: 0;
 }

 .drawer-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-bottom: 16px;
   border-bottom: 1px solid var(--border-subtle);
 }

 .drawer-close {
   font-size: 1.3rem;
   color: var(--text-primary);
   cursor: pointer;
   padding: 4px;
 }

 .drawer-nav {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin-top: 20px;
   flex: 1;
 }

 .drawer-link {
   font-family: var(--font-heading);
   font-size: 1.05rem;
   font-weight: 600;
   color: var(--text-primary);
   padding: 10px 14px;
   border-radius: var(--radius-sm);
   transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s ease, color 0.25s ease;
 }

 .drawer-link:hover {
   background: var(--blue-subtle);
   color: var(--blue-brand);
   transform: translateX(4px) translateY(-2px);
   box-shadow: var(--shadow-sm);
 }

 .drawer-link.active {
   background: var(--blue-subtle);
   color: var(--blue-brand);
   font-weight: 700;
 }

 .drawer-link.active:hover {
   transform: translateX(4px) translateY(-2px);
   box-shadow: var(--shadow-sm);
 }

 .drawer-footer {
   padding-top: 16px;
   border-top: 1px solid var(--border-subtle);
 }

 /* ===== HERO SECTION (CLEAN INDUSTRIAL, NO GIMMICKS) ===== */
 .hero {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 70px 0 80px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 20px;
}

.hero-float-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-brand);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-title span {
  color: #38bdf8;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 560px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  color: #e2e8f0;
  font-weight: 600;
}

.hero-chip svg {
  width: 14px;
  height: 14px;
  color: var(--orange-brand);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num .plus {
  color: var(--orange-brand);
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

 /* HERO IMAGE FRAME */
 .hero-visual {
   position: relative;
 }

 .hero-img-card {
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(255, 255, 255, 0.15);
   background: #0d223a;
 }

 .hero-img-main {
   width: 100%;
   height: 440px;
   object-fit: contain !important;
   background: #0b1528;
 }

 .hero-img-caption {
   padding: 14px 18px;
   background: #09192c;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   font-size: 0.82rem;
 }

 .hero-img-caption strong {
   color: #38bdf8;
   font-family: var(--font-heading);
 }

 /* ===== ENTERPRISE CLIENT PARTNERS TICKER ===== */
 .brand-ticker-section {
   background-color: #f8fafc;
   padding: 36px 0 40px 0;
   border-top: 1px solid #e2e8f0;
   border-bottom: 1px solid #e2e8f0;
   overflow: hidden;
   position: relative;
 }

 .brand-ticker-header {
   text-align: center;
   margin-bottom: 24px;
 }

 .ticker-badge {
   display: inline-block;
   font-family: var(--font-heading);
   font-size: 0.75rem;
   font-weight: 800;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--orange-brand);
   margin-bottom: 6px;
 }

 .ticker-heading {
   font-family: var(--font-heading);
   font-weight: 800;
   font-size: clamp(1.15rem, 2.2vw, 1.5rem);
   color: var(--navy-dark);
   margin: 0;
 }

 .ticker-slider-wrap {
   width: 100%;
   overflow: hidden;
   position: relative;
   mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
   -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
 }

 .ticker-track {
   display: flex;
   gap: 18px;
   width: max-content;
   flex-shrink: 0;
   animation: smoothMarquee 42s linear infinite;
   align-items: stretch;
 }

 .ticker-track:hover {
   animation-play-state: paused;
 }

 @keyframes smoothMarquee {
   0% {
     transform: translateX(0);
   }
   100% {
     transform: translateX(-50%);
   }
 }

 .ticker-card {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: #ffffff;
   border: 1px solid #e2e8f0;
   border-radius: var(--radius-md);
   padding: 16px 22px;
   min-width: 220px;
   height: 110px;
   flex-shrink: 0;
   box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
   transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 .ticker-card:hover {
   transform: translateY(-4px);
   border-color: rgba(235, 94, 40, 0.4);
   box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08), 0 0 16px rgba(235, 94, 40, 0.12);
 }

 .ticker-logo-img {
   height: 44px;
   max-width: 180px;
   object-fit: contain;
   display: block;
   margin: 0 auto;
   filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
   transition: transform 0.3s ease;
 }

 .ticker-card:hover .ticker-logo-img {
   transform: scale(1.05);
 }

 .ticker-card-meta {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   margin-top: 2px;
 }

 .ticker-card .brand-tag {
   font-size: 0.72rem;
   font-weight: 800;
   color: var(--blue-brand);
   background: var(--blue-subtle);
   padding: 2px 7px;
   border-radius: 4px;
   text-transform: uppercase;
 }

 .ticker-card .brand-sector {
   font-size: 0.78rem;
   font-weight: 600;
   color: #64748b;
   text-transform: uppercase;
   letter-spacing: 0.04em;
 }

  /* ===== STRUCTURED PRODUCT CARDS ===== */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    align-items: stretch;
  }

  .product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
  }

  .product-thumb,
  .product-card-image-wrap {
    position: relative;
    height: 240px !important;
    max-height: 240px !important;
    min-height: 240px !important;
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
  }

  .product-thumb img,
  .product-card img,
  .product-card-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-height: 240px !important;
    object-fit: contain !important;
    background: transparent !important;
    padding: 16px !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: block !important;
  }

  .product-card:hover .product-thumb img,
  .product-card:hover img {
    transform: scale(1.06) !important;
  }

 .product-thumb-tag {
   position: absolute;
   top: 10px;
   left: 10px;
   max-width: 50%;
   background: rgba(9, 25, 44, 0.88);
   color: var(--white);
   font-family: var(--font-heading);
   font-weight: 700;
   font-size: 0.7rem;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   padding: 3px 8px;
   border-radius: var(--radius-xs);
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   z-index: 2;
 }

 .product-badge-accent {
   position: absolute;
   top: 10px;
   right: 10px;
   max-width: 48%;
   background: var(--orange-brand);
   color: var(--white);
   font-family: var(--font-heading);
   font-weight: 800;
   font-size: 0.7rem;
   padding: 3px 8px;
   border-radius: var(--radius-xs);
   text-transform: uppercase;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   z-index: 2;
 }

 .product-body {
   padding: 22px;
   display: flex;
   flex-direction: column;
   flex: 1;
 }

 .product-title {
   font-family: var(--font-heading);
   font-size: 1.25rem;
   font-weight: 800;
   color: var(--text-primary);
   line-height: 1.25;
   margin-bottom: 8px;
 }

 .product-desc {
   font-size: 0.9rem;
   color: var(--text-secondary);
   line-height: 1.6;
   margin-bottom: 16px;
 }

 .product-specs {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-bottom: 18px;
   margin-top: auto;
 }

 .spec-pill {
   background: var(--bg-neutral);
   border: 1px solid var(--border-subtle);
   padding: 3px 8px;
   border-radius: var(--radius-xs);
   font-size: 0.76rem;
   color: var(--text-secondary);
   font-weight: 600;
 }

 .spec-pill strong {
   color: var(--blue-brand);
 }

 .product-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-top: 14px;
   border-top: 1px solid var(--border-subtle);
 }

 .product-cta-link {
   font-family: var(--font-heading);
   font-size: 0.85rem;
   font-weight: 700;
   color: var(--blue-brand);
   display: inline-flex;
   align-items: center;
   gap: 4px;
   text-transform: uppercase;
 }

 .product-inquiry-btn {
   background: var(--blue-subtle);
   color: var(--blue-brand);
   font-weight: 700;
   font-size: 0.8rem;
   padding: 6px 12px;
   border-radius: var(--radius-xs);
   transition: all var(--transition-fast);
 }

 .product-inquiry-btn:hover {
   background: var(--blue-brand);
   color: var(--white);
 }

 /* ===== TECHNICAL SPECIFICATIONS TABLES ===== */
 .specs-table-wrap {
   width: 100%;
   overflow-x: auto;
   margin-bottom: 20px;
   border: 1px solid var(--border-subtle);
   border-radius: var(--radius-sm);
 }

 .specs-table {
   width: 100%;
   border-collapse: collapse;
   font-size: 0.85rem;
   text-align: left;
 }

 .specs-table thead {
   background: var(--bg-surface);
   border-bottom: 1px solid var(--border-medium);
 }

 .specs-table th {
   padding: 10px 14px;
   font-family: var(--font-heading);
   font-weight: 800;
   color: var(--text-primary);
   letter-spacing: 0.02em;
 }

 .specs-table td {
   padding: 10px 14px;
   border-bottom: 1px solid var(--border-subtle);
   color: var(--text-secondary);
 }

 .specs-table tbody tr:last-child td {
   border-bottom: none;
 }

 .specs-table tbody tr:hover {
   background-color: var(--bg-neutral);
 }

 /* ===== INTERACTIVE PACKAGING CALCULATOR ===== */
 .calc-section {
   background-color: var(--navy-dark);
   color: var(--white);
   padding: 70px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .calc-container {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 44px;
   align-items: center;
 }

 .calc-card {
   background: var(--white);
   color: var(--text-primary);
   padding: 30px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-lg);
   border: 1px solid var(--border-subtle);
 }

 .calc-form-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
   margin-bottom: 16px;
 }

 .calc-group {
   display: flex;
   flex-direction: column;
   gap: 5px;
 }

 .calc-label {
   font-size: 0.78rem;
   font-weight: 700;
   color: var(--text-secondary);
   text-transform: uppercase;
   letter-spacing: 0.03em;
 }

 .calc-input,
 .calc-select {
   width: 100%;
   padding: 10px 12px;
   border: 1px solid var(--border-medium);
   border-radius: var(--radius-xs);
   font-size: 0.92rem;
   color: var(--text-primary);
   background: var(--white);
   transition: border-color var(--transition-fast);
 }

 .calc-input:focus,
 .calc-select:focus {
   outline: none;
   border-color: var(--blue-brand);
   box-shadow: 0 0 0 2px rgba(21, 101, 192, 0.15);
 }

 .calc-result-box {
   background: var(--bg-neutral);
   border: 1px solid var(--border-subtle);
   border-radius: var(--radius-sm);
   padding: 16px;
   margin-top: 18px;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
   gap: 12px;
   text-align: center;
 }

 .calc-res-item {
   display: flex;
   flex-direction: column;
 }

 .calc-res-val {
   font-family: var(--font-heading);
   font-weight: 900;
   font-size: 1.3rem;
   color: var(--blue-brand);
 }

 .calc-res-lbl {
   font-size: 0.72rem;
   color: var(--text-muted);
   text-transform: uppercase;
   font-weight: 600;
 }

 /* ===== MANUFACTURING & LAB INFRASTRUCTURE ===== */
 .infra-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 32px;
 }

 .infra-card {
   background: var(--white);
   border-radius: var(--radius-md);
   overflow: hidden;
   border: 1px solid var(--border-subtle);
   box-shadow: var(--shadow-sm);
 }

 .infra-thumb {
   position: relative;
   height: 290px;
   overflow: hidden;
   background: #061527;
 }

 .infra-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .infra-badge {
   position: absolute;
   top: 14px;
   left: 14px;
   background: rgba(9, 25, 44, 0.92);
   color: #38bdf8;
   font-family: var(--font-heading);
   font-weight: 800;
   font-size: 0.78rem;
   padding: 5px 12px;
   border-radius: var(--radius-xs);
   letter-spacing: 0.05em;
   text-transform: uppercase;
 }

 .infra-body {
   padding: 26px;
 }

 .infra-title {
   font-family: var(--font-heading);
   font-size: 1.45rem;
   font-weight: 800;
   color: var(--text-primary);
   margin-bottom: 10px;
 }

 .infra-desc {
   font-size: 0.92rem;
   color: var(--text-secondary);
   line-height: 1.65;
   margin-bottom: 18px;
 }

 .infra-checklist {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
 }

 .infra-check-item {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.84rem;
   color: var(--text-primary);
   font-weight: 600;
 }

 .infra-check-item svg {
   width: 15px;
   height: 15px;
   color: var(--orange-brand);
   flex-shrink: 0;
 }

 /* ===== CERTIFICATIONS & COMPLIANCE BAR ===== */
 .cert-bar {
   background-color: var(--bg-surface);
   border-top: 1px solid var(--border-subtle);
   border-bottom: 1px solid var(--border-subtle);
   padding: 36px 0;
 }

 .cert-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
 }

 .cert-item {
   display: flex;
   align-items: center;
   gap: 14px;
   background: var(--white);
   padding: 16px 18px;
   border-radius: var(--radius-sm);
   border: 1px solid var(--border-subtle);
   box-shadow: var(--shadow-xs);
 }

 .cert-icon {
   width: 42px;
   height: 42px;
   border-radius: var(--radius-xs);
   background: var(--blue-subtle);
   color: var(--blue-brand);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }

 .cert-icon svg {
   width: 22px;
   height: 22px;
 }

 .cert-title {
   font-family: var(--font-heading);
   font-weight: 800;
   font-size: 0.94rem;
   color: var(--text-primary);
   line-height: 1.2;
 }

 .cert-sub {
   font-size: 0.75rem;
   color: var(--text-muted);
 }

 /* ===== PROCESS TIMELINE ===== */
 .process-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   margin-top: 30px;
 }

 .process-card {
   background: var(--white);
   border: 1px solid var(--border-subtle);
   border-radius: var(--radius-sm);
   padding: 24px 20px;
   box-shadow: var(--shadow-xs);
   display: flex;
   flex-direction: column;
 }

 .process-step-num {
   width: 44px;
   height: 44px;
   border-radius: var(--radius-xs);
   background: var(--blue-subtle);
   color: var(--blue-brand);
   font-family: var(--font-heading);
   font-weight: 900;
   font-size: 1.15rem;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
 }

 .process-card h4 {
   font-family: var(--font-heading);
   font-weight: 800;
   font-size: 1.15rem;
   color: var(--text-primary);
   margin-bottom: 8px;
 }

 .process-card p {
   font-size: 0.88rem;
   color: var(--text-secondary);
   line-height: 1.6;
 }

 /* ===== FAQ ACCORDION ===== */
 .faq-grid {
   max-width: 800px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .faq-item {
   background: var(--white);
   border: 1px solid var(--border-subtle);
   border-radius: var(--radius-sm);
   overflow: hidden;
 }

 .faq-item.active {
   border-color: var(--blue-brand);
 }

 .faq-question {
   width: 100%;
   padding: 18px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   background: none;
   border: none;
   font-family: var(--font-heading);
   font-weight: 700;
   font-size: 1.05rem;
   color: var(--text-primary);
   text-align: left;
   cursor: pointer;
 }

 .faq-icon {
   font-size: 1rem;
   color: var(--blue-brand);
   transition: transform var(--transition-fast);
 }

 .faq-item.active .faq-icon {
   transform: rotate(180deg);
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
   padding: 0 20px;
 }

 .faq-item.active .faq-answer {
   max-height: 250px;
   padding-bottom: 20px;
 }

 .faq-answer p {
   color: var(--text-secondary);
   font-size: 0.92rem;
   line-height: 1.65;
 }

 /* ===== CTA BANNER ===== */
 .cta-banner {
   background-color: var(--orange-brand);
   color: var(--white);
   padding: 64px 0;
 }

 .cta-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 36px;
 }

 .cta-title {
   font-family: var(--font-heading);
   font-weight: 900;
   font-size: clamp(1.8rem, 3.2vw, 2.4rem);
   line-height: 1.2;
   margin-bottom: 8px;
 }

 .cta-desc {
   font-size: 1.05rem;
   color: rgba(255, 255, 255, 0.9);
   max-width: 580px;
 }

 .cta-btns {
   display: flex;
   align-items: center;
   gap: 14px;
   flex-shrink: 0;
 }

 .btn-white {
   background-color: var(--white);
   color: var(--orange-brand);
   border-color: var(--white);
 }

 .btn-white:hover {
   background-color: var(--bg-neutral);
   color: var(--orange-hover);
 }

 /* ===== FOOTER ===== */
 .footer {
   background-color: #061527;
   color: #94a3b8;
   padding: 70px 0 0 0;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
   gap: 36px;
   padding-bottom: 50px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .footer-brand {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .footer-logo {
   display: inline-flex;
   align-items: center;
   gap: 12px;
 }

  .footer-logo-img {
    height: 55px;
    width: auto;
    background-color: transparent !important;
  }

 .footer-brand p {
   font-size: 0.88rem;
   line-height: 1.65;
   color: #cbd5e1;
 }

 .footer-badges {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
 }

 .footer-badge-pill {
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.1);
   padding: 3px 8px;
   border-radius: var(--radius-xs);
   font-size: 0.72rem;
   color: #cbd5e1;
 }

 .footer-col h4 {
   font-family: var(--font-heading);
   font-weight: 800;
   font-size: 1rem;
   color: var(--white);
   letter-spacing: 0.04em;
   text-transform: uppercase;
   margin-bottom: 18px;
   position: relative;
   padding-bottom: 8px;
 }

 .footer-col h4::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 20px;
   height: 2px;
   background: var(--orange-brand);
 }

 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .footer-links a {
   font-size: 0.88rem;
   color: #94a3b8;
   transition: color var(--transition-fast);
 }

 .footer-links a:hover {
   color: #38bdf8;
 }

 .footer-contact-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .footer-contact-item {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   font-size: 0.86rem;
   color: #cbd5e1;
 }

 .footer-contact-item svg {
   width: 16px;
   height: 16px;
   color: var(--orange-brand);
   flex-shrink: 0;
   margin-top: 3px;
 }

 .footer-bottom {
   padding: 22px 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.8rem;
   color: #64748b;
 }

 /* ===== FLOATING ACTION BUTTONS ===== */
 .floating-contact-widget {
   position: fixed;
   bottom: 24px;
   right: 24px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   z-index: 99;
 }

 .float-btn {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   transition: transform var(--transition-fast);
 }

 .float-btn:hover {
   transform: scale(1.08);
 }

 .float-whatsapp {
   background-color: #25D366;
 }

 .float-call {
   background-color: var(--blue-brand);
 }

 .scroll-top-btn {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background-color: var(--navy-surface);
   color: var(--white);
   border: 1px solid rgba(255, 255, 255, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transition: all var(--transition-fast);
 }

 .scroll-top-btn.visible {
   opacity: 1;
   visibility: visible;
 }

 /* MOBILE BOTTOM ACTION BAR (FOR IMMEDIATE DISCOVERABILITY & CONVERSION) */
 .mobile-bottom-bar {
   display: none;
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--white);
   border-top: 1px solid var(--border-medium);
   padding: 8px 16px;
   z-index: 98;
   box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
 }

 .mobile-bottom-grid {
   display: grid;
   grid-template-columns: 1fr 1fr 1.2fr;
   gap: 8px;
 }

 .mobile-bar-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 6px;
   font-family: var(--font-heading);
   font-size: 0.8rem;
   font-weight: 700;
   padding: 10px 6px;
   border-radius: var(--radius-xs);
   text-transform: uppercase;
   text-align: center;
 }

/* ===== RESPONSIVE GRID HELPER CLASSES ===== */
.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}

/* ===== PRODUCT GALLERY & MULTI-IMAGE ARRANGEMENT ===== */
/* ===== PRODUCT GALLERY & MULTI-IMAGE ARRANGEMENT ===== */
.product-gallery-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  height: 100%;
}

.product-gallery-box:hover {
  border-color: rgba(235, 94, 40, 0.4);
  box-shadow: 0 8px 30px rgba(7, 30, 61, 0.08);
}

.product-main-view {
  position: relative;
  width: 100%;
  height: 280px;
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf2f7;
  flex-shrink: 0;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0;
}

.product-gallery-grid-item {
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  height: 110px;
  background: #ffffff;
  cursor: pointer;
}

.product-gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-grid-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.main-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 8px;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.product-main-view:hover .main-gallery-img {
  transform: scale(1.04);
}

.gallery-zoom-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(7, 30, 61, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.gallery-zoom-badge svg {
  width: 13px;
  height: 13px;
}

.product-thumbs-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
}

.thumb-item {
  flex: 1 !important;
  height: 72px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  padding: 3px !important;
  box-sizing: border-box !important;
}

.thumb-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #ffffff !important;
  border-radius: 5px !important;
  display: block;
}

.grid-2col-thumbs img {
  height: 110px !important;
  width: 100% !important;
  object-fit: contain !important;
  background: #ffffff;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
  display: block;
}

/* Standalone Product Container Image Sizing */
.product-img-box {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border-subtle);
  background: #f8fafc;
  height: 260px;
  width: 100%;
}

.product-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f8fafc;
  display: block;
}

.ticker-logo-img {
  height: 36px;
  max-width: 130px;
  object-fit: contain;
  margin-bottom: 6px;
  display: block;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: #ffffff;
  padding: 0;
  display: block;
}

.thumb-item:hover {
  border-color: var(--blue-brand);
  transform: translateY(-2px);
}

.thumb-item.active {
  border-color: var(--orange-brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: start;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.grid-auto-fit-320 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ===== INDUSTRIAL EPOXY FLOORING & INFRASTRUCTURE SECTION ===== */
.epoxy-hero-banner {
  background: linear-gradient(135deg, #071e3d 0%, #0c2b53 100%);
  color: var(--white);
  padding: 64px 0 70px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.epoxy-hero-badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 26px 0;
}

.epoxy-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.epoxy-badge-item svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.epoxy-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.epoxy-service-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.epoxy-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-brand);
}

.epoxy-service-card.highlight {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.epoxy-service-card.highlight .epoxy-service-title {
  color: var(--white);
}

.epoxy-service-card.highlight .epoxy-service-desc {
  color: #cbd5e1;
}

.epoxy-service-thumb {
  position: relative;
  height: 135px;
  width: 100%;
  overflow: hidden;
}

.epoxy-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: #0f172a;
  transition: transform 0.4s ease;
}

.epoxy-service-card:hover .epoxy-service-thumb img {
  transform: scale(1.06);
}

.epoxy-service-icon-badge {
  position: absolute;
  bottom: -16px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f59e0b;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.epoxy-service-body {
  padding: 22px 14px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.epoxy-service-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.epoxy-service-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.epoxy-service-arrow {
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}

/* PROJECT GALLERY (DARK SECTION) */
.epoxy-gallery-section {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 70px 0;
}

.epoxy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.epoxy-gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 220px;
  transition: all 0.3s ease;
}

.epoxy-gallery-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.epoxy-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: #0f172a;
  transition: transform 0.4s ease;
}

.epoxy-gallery-card:hover img {
  transform: scale(1.08);
}

.epoxy-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(9, 25, 44, 0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.epoxy-gallery-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}

/* VALUE BAR */
.epoxy-value-bar {
  background: #07172b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  color: var(--white);
}

.epoxy-value-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.epoxy-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.epoxy-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.epoxy-value-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--white);
}

.epoxy-value-text span {
  font-size: 0.78rem;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .epoxy-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .epoxy-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .epoxy-services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .epoxy-gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .epoxy-value-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-inner {
    height: 75px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-img-main {
    height: 360px;
  }

  .product-detail-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .infra-grid,
  .calc-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
    max-width: 100% !important;
  }

  .nav-menu,
  .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    height: 66px;
  }

  .nav-logo-img {
    height: 46px;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-tag {
    font-size: 0.68rem;
  }

  .brand-motto {
    display: none;
  }

  .topbar-left {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-right {
    justify-content: center;
    width: 100%;
    font-size: 0.75rem;
    gap: 12px;
  }

  .section-pad {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .section-pad-sm {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .hero {
    padding: 40px 0 50px 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-desc {
    font-size: 0.96rem;
  }

  .hero-img-main {
    height: 280px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .product-detail-card {
    padding: 20px 16px;
  }

  .calc-card {
    padding: 22px 18px;
  }

  .calc-form-grid {
    grid-template-columns: 1fr;
  }

  .calc-result-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-btns {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact-widget {
    bottom: 68px;
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tag {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .grid-2col-thumbs {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-thumb {
    height: 200px;
  }

  .infra-thumb {
    height: 200px;
  }

  .infra-checklist {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-drawer {
    width: 85vw;
    max-width: 300px;
  }

  .mobile-bottom-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }

  .mobile-bar-btn {
    font-size: 0.72rem;
    padding: 8px 4px;
  }
}

@media (max-width: 380px) {
  .nav-logo-img {
    height: 39px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .hero-title {
    font-size: 1.55rem;
  }
}

/* ===== ADVANCED UI ENHANCEMENTS & FILTER TABS ===== */
.product-card {
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(12, 43, 83, 0.12);
}

.product-thumb {
  overflow: hidden;
}

.product-thumb img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto !important;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 24px;
    max-width: 100%;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab-btn {
    flex-shrink: 0 !important;
  }
}

.product-filter-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto !important;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
  max-width: 100%;
  scrollbar-width: none;
}

.product-filter-bar::-webkit-scrollbar {
  display: none;
}

.product-filter-btn {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.product-filter-btn:hover,
.filter-tab-btn:hover {
  background: #1e293b !important;
  color: #ffffff !important;
  border-color: #1e293b !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2) !important;
}

.product-filter-btn.active,
.filter-tab-btn.active {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.35) !important;
}

.filter-tab-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}

.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.trust-stat-item {
  text-align: center;
}

.trust-stat-val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.85rem;
  color: #f97316;
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-stat-lbl {
  font-size: 0.78rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ── AUTOMATIC IMAGE SHOWCASE SLIDER (12 IMAGES - 3 SEC AUTO SLIDE) ── */
#gallery-slider {
  background: linear-gradient(180deg, #09192c 0%, #06111e 50%, #0f172a 100%);
  padding: 85px 0 95px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#gallery-slider::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(235, 94, 40, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

#gallery-slider .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

#gallery-slider .sub-title {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

#gallery-slider .section-title {
  color: #ffffff !important;
}

#gallery-slider .section-title span {
  background: linear-gradient(135deg, #eb5e28 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#gallery-slider .section-desc {
  color: #94a3b8 !important;
  max-width: 680px;
  margin: 0 auto;
}

.auto-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.7), 0 0 45px rgba(56, 189, 248, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #09192c;
  z-index: 2;
}

.auto-slider-track {
  position: relative;
  width: 100%;
  height: 540px;
}

@media (max-width: 768px) {
  .auto-slider-track {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .auto-slider-track {
    height: 340px;
  }
}

.auto-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.03);
  display: flex;
  align-items: flex-end;
}

.auto-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.auto-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  display: block;
}

.slide-caption {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 36px 44px;
  background: linear-gradient(to top, rgba(9, 25, 44, 0.96) 0%, rgba(9, 25, 44, 0.72) 55%, rgba(9, 25, 44, 0) 100%);
  color: var(--white);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-badge {
  display: inline-block;
  background: linear-gradient(135deg, #eb5e28 0%, #d97706 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 14px rgba(235, 94, 40, 0.35);
}

.slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 720px;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .slide-caption {
    padding: 20px 22px;
  }
  .slide-caption h3 {
    font-size: 1.25rem;
  }
  .slide-caption p {
    font-size: 0.85rem;
  }
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
  background: var(--orange-brand);
  border-color: var(--orange-brand);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(235, 94, 40, 0.45);
}

.slider-btn svg {
  width: 22px;
  height: 22px;
}

.prev-btn {
  left: 22px;
}

.next-btn {
  right: 22px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 18px;
  right: 28px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(15, 23, 42, 0.65);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--orange-brand);
  width: 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(235, 94, 40, 0.6);
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid #bfdbfe;
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.12);
  background: #ffffff;
  height: 480px;
}

@media (max-width: 991px) {
  .hero-img-card {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .hero-img-card {
    height: 320px;
  }
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

.hero-slide-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: var(--blue-brand);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-slide-desc {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(14, 39, 72, 0.90);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  line-height: 1.4;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.hero-slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-slider-arrow:hover {
  background: var(--orange-brand);
  border-color: var(--orange-brand);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-slider-dots {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: flex;
  gap: 5px;
  align-items: center;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--orange-brand);
  width: 18px;
  border-radius: 8px;
}

/* ── FULL PRODUCT IMAGE CONTAINMENT & CLICKABLE ZOOM ── */
.product-main-view,
.main-gallery-img,
.gallery-zoom-badge,
.infra-thumb img,
.hero-slide img,
.auto-slide img,
.product-thumb,
.product-thumb img,
div[style*="minmax"] img,
div[style*="height:170px"],
div[style*="height:170px"] img,
div[style*="height:130px"],
div[style*="height:130px"] img {
  cursor: pointer !important;
}

.thumb-item,
.thumb-item img {
  cursor: pointer !important;
}

.product-thumb img,
.product-detail-card img,
.grid-2col-thumbs img {
  object-fit: contain !important;
  background-color: #ffffff;
}


/* ── INTERACTIVE IMAGE LIGHTBOX MODAL ── */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 25, 44, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 96vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  touch-action: pan-x pan-y pinch-zoom;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain !important;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  background: #09192c;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  touch-action: pan-x pan-y pinch-zoom;
}

.lightbox-img.zoomed {
  transform: scale(2.2);
  cursor: zoom-out;
}

.lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  max-width: 800px;
  background: rgba(15, 23, 42, 0.88);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-brand);
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.12);
  background: var(--orange-hover);
}

/* ── ULTIMATE MOBILE RESPONSIVE CONTAINMENT (100% SCREEN COVERAGE, NO OVERFLOW) ── */
*, *::before, *::after {
  box-sizing: border-box !important;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

img, video, iframe, canvas, table {
  max-width: 100% !important;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Product Filter Section & Cards */
  .product-filter-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
  }

  .product-detail-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 14px !important;
    gap: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .product-detail-card,
  .product-detail-card *,
  .product-detail-card div,
  .product-card-grid,
  .product-card-grid > * {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-detail-card div[style*="display:grid"],
  .product-detail-card div[style*="display: grid"],
  .product-card-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* Mobile 1-Column & 2x2 Showcase Grid Overrides */
  .product-detail-card div[style*="grid-template-columns:1fr 1fr"],
  .product-detail-card div[style*="grid-template-columns: 1fr 1fr"],
  .product-filter-card div[style*="grid-template-columns:1fr 1fr"],
  .product-filter-card div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 4-Image Fabrication & Project Showcase Grids -> 2x2 Grid on Mobile */
  div[style*="minmax(180px"],
  div[style*="minmax(220px"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  div[style*="minmax(180px"] img,
  div[style*="minmax(220px"] img {
    width: 100% !important;
    height: 120px !important;
    object-fit: contain !important;
    background: #f8fafc !important;
    display: block !important;
  }



  .product-detail-card h2,
  .product-detail-card h3,
  .product-detail-card h4,
  .product-detail-card p,
  .product-detail-card span,
  .product-detail-card strong,
  .product-detail-card div {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }

  .product-main-view {
    height: 220px !important;
  }

  .product-thumbs-row {
    display: flex !important;
    flex-direction: row !important;
  }

  .ticker-card .brand-sector {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* Mobile product grid adjustments */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-detail-card h2 {
    font-size: 1.25rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .product-detail-card p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Technical Specifications Tables */
  .specs-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    display: block !important;
    box-sizing: border-box !important;
    margin-bottom: 16px !important;
  }

  .specs-table {
    width: 100% !important;
    min-width: 320px !important;
    font-size: 0.78rem !important;
  }

  .specs-table th,
  .specs-table td {
    padding: 8px 10px !important;
    word-break: break-word !important;
  }

  /* Product Buttons on Mobile */
  .product-detail-card div:has(> .btn),
  .product-detail-card .btn-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .product-detail-card div:has(> .btn) .btn,
  .product-detail-card .btn-group .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    font-size: 0.84rem !important;
    padding: 11px 14px !important;
  }

  /* Product Image Thumbnails */
  .grid-2col-thumbs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .grid-2col-thumbs img {
    height: 100px !important;
    width: 100% !important;
    object-fit: contain !important;
  }

  /* Filter Bar Scroll Container */
  .product-filter-bar {
    display: flex !important;
    gap: 6px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .product-filter-btn {
    flex-shrink: 0 !important;
    font-size: 0.78rem !important;
    padding: 8px 14px !important;
  }

  .product-filter-btn.active {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3) !important;
  }

  /* General Cards & Grid */
  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-card > div[style*="padding:22px"] {
    padding: 16px 16px 12px 16px !important;
  }

  .product-card .product-body {
    padding: 16px !important;
  }

  .grid-auto-fit-320,
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  /* Floating Widgets */
  .floating-contact-widget {
    bottom: 68px !important;
    right: 12px !important;
  }

  .float-btn {
    width: 44px !important;
    height: 44px !important;
  }

  /* Hero Section Mobile Responsive Polish */
  .hero {
    padding: 36px 0 40px 0 !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }

  .hero-desc {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
  }

  .hero-chips {
    gap: 6px !important;
    margin-bottom: 22px !important;
  }

  .hero-chip {
    font-size: 0.78rem !important;
    padding: 5px 10px !important;
  }

  .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }

  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding-top: 18px !important;
  }

  .hero-stat-num {
    font-size: 1.45rem !important;
  }

  .hero-stat-lbl {
    font-size: 0.68rem !important;
  }

  .hero-img-card {
    height: 320px !important;
  }

  /* PDF Sections Mobile Overrides */
  .roof-card-banner {
    padding: 24px 16px !important;
  }

  .enterprise-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .enterprise-card {
    padding: 18px 16px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .storage-partner-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 24px 18px !important;
    gap: 18px !important;
    text-align: left !important;
  }

  .storage-partner-box h3 {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }

  .storage-partner-box .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .city-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .city-card {
    padding: 10px !important;
  }

  .city-img {
    height: 75px !important;
  }

  .red-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .red-stat-card {
    padding: 24px 16px !important;
  }

  .red-stat-num {
    font-size: 2.5rem !important;
  }
}

/* ===== PDF USER SPECIFICATION SECTIONS ===== */

/* 1. Under One Roof Section */
.roof-card-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

/* 2. Enterprise Case Study Cards (PDF Page 2) */
.enterprise-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.enterprise-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.enterprise-card:hover {
  border-color: rgba(235, 94, 40, 0.4);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.enterprise-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.enterprise-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-dark);
}

.enterprise-logo-img {
  height: 36px;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.enterprise-brand-sector {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-brand);
  background: var(--blue-subtle);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.enterprise-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.enterprise-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.enterprise-chip {
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
}

/* 3. Why Choose Mirai Cards (PDF Page 2) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--orange-brand);
  box-shadow: 0 10px 24px rgba(235, 94, 40, 0.12);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(235, 94, 40, 0.1);
  color: var(--orange-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.why-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 4. Serviceable Cities / Storage Partner Section (PDF Page 3) */
.storage-partner-box {
  background: linear-gradient(135deg, #09192c 0%, #14325a 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 32px rgba(9, 25, 44, 0.25);
  margin-bottom: 32px;
}

.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.city-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.city-card:hover {
  border-color: var(--orange-brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(235, 94, 40, 0.12);
}

.city-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}

.city-img {
  width: 100%;
  height: 100px;
  object-fit: cover !important;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.city-card:hover .city-img {
  transform: scale(1.05);
}

.city-sla-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(15, 23, 42, 0.85);
  color: #38bdf8;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.city-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.city-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Region Categories Grid */
.region-matrix-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  margin-top: 36px;
}

.region-matrix-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.region-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px;
}

.region-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange-brand);
}

.region-col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-dark);
}

.region-col-badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--blue-subtle);
  color: var(--blue-brand);
  padding: 3px 8px;
  border-radius: 12px;
}

.region-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-tag {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.city-tag:hover {
  border-color: var(--orange-brand);
  color: var(--orange-brand);
  background: #fff7ed;
}

.city-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

/* 5. Redesigned Red Stats Cards (PDF Page 3) */
.red-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.red-stat-card {
  background: linear-gradient(135deg, #d9232e 0%, #b71c1c 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(217, 35, 46, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.red-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(217, 35, 46, 0.45);
}

.red-stat-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.red-stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.red-stat-lbl {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== ENTERPRISE CLIENT CARDS & BRAND TICKER STYLING ===== */
.enterprise-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .enterprise-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .enterprise-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.enterprise-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md, 12px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.enterprise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: #0284c7;
}

.enterprise-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.enterprise-logo-img {
  height: 38px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.enterprise-brand-sector {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.enterprise-card-desc {
  font-size: 0.92rem;
  color: #0f172a; /* High contrast deep slate for crisp readability */
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.enterprise-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.enterprise-chip {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.enterprise-card:hover .enterprise-chip {
  background: #e2e8f0;
  border-color: #94a3b8;
}

/* BRAND TICKER MARQUEE SECTION - LIGHT THEME FIT WITH ZERO BLACK BACKGROUND & COMPACT SPACING */
.brand-ticker-section {
  padding: 20px 0 28px 0;
  background: #f8fafc; /* Clean light background matching page surface - NO BLACK! */
  color: var(--text-primary);
  overflow: hidden;
  position: relative;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin: 0;
}

.brand-ticker-header {
  text-align: center;
  margin-bottom: 12px; /* Reduced gap so ticker cards sit tight & higher up */
}

.ticker-badge {
  display: inline-block;
  color: #0284c7; /* Vibrant blue badge text on light background */
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.ticker-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 900;
  color: #0f172a; /* High contrast dark navy heading */
  letter-spacing: -0.02em;
}

.ticker-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: brandMarquee 38s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes brandMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ticker-card:hover {
  transform: translateY(-3px);
  border-color: #38bdf8;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.ticker-logo-img {
  height: 32px;
  max-width: 110px;
  object-fit: contain;
}

.ticker-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-tag {
  font-size: 0.74rem;
  font-weight: 800;
  color: #eb5e28;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-sector {
  font-size: 0.74rem;
  color: #334155;
  font-weight: 600;
}

/* ===== COMPLETE PACKAGING SOLUTIONS BACKGROUND SLIDER SECTION ===== */
.under-one-roof-slider-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  color: #ffffff;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: #09192c;
}

.roof-bg-slider-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.roof-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.roof-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.under-one-roof-slider-section:hover .roof-bg-slide.active {
  transform: scale(1.06);
}

.roof-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg, rgba(9, 25, 44, 0.55) 0%, rgba(15, 23, 42, 0.65) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.relative-z {
  position: relative;
  z-index: 3;
}

.roof-banner-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.96); /* Crisp bright white card overlay */
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg, 16px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roof-banner-content:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.roof-sub-badge {
  display: inline-block;
  color: #0284c7; /* Vibrant blue badge text */
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.roof-main-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: #0f172a; /* Deep navy bold title for 100% sharp visibility */
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.roof-main-title span {
  color: #0284c7;
  text-shadow: none;
}

.roof-main-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1e293b; /* Deep slate description - 100% crystal clear & readable */
  max-width: 840px;
  margin: 0 auto 28px auto;
  font-weight: 500;
}

.roof-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 10px 24px;
  border-radius: 30px;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.roof-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eb5e28;
  box-shadow: 0 0 8px rgba(235, 94, 40, 0.5);
  display: inline-block;
}

.roof-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.roof-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.roof-dot.active {
  width: 32px;
  border-radius: 6px;
  background: #0284c7;
  border-color: #0284c7;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
}

/* ===== LIGHT BLUE & WHITE BRAND THEME OVERRIDES (SITE-WIDE) ===== */

/* 1. Calculator Section */
.calc-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  color: #0f172a !important;
  padding: 70px 0;
  border-top: 1px solid #bae6fd !important;
  border-bottom: 1px solid #bae6fd !important;
}

.calc-section .section-title {
  color: #0f172a !important;
}

.calc-section .section-title span {
  color: #0284c7 !important;
}

.calc-section .section-desc {
  color: #334155 !important;
}

.calc-card {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08) !important;
  border: 1px solid #bae6fd !important;
}

.calc-result-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 18px;
}

.calc-res-val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: #0284c7 !important;
}

/* 2. Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  padding: 70px 0;
}

.cta-title {
  color: #ffffff !important;
}

.cta-desc {
  color: #e0f2fe !important;
}

/* 3. Epoxy & Infra Hero Banner */
.epoxy-hero-banner {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%) !important;
  color: #0f172a !important;
  border-bottom: 1px solid #bae6fd !important;
}

.epoxy-badge-item {
  background: #ffffff !important;
  border: 1px solid #bae6fd !important;
  color: #0284c7 !important;
}

/* 4. Corporate Footer */
.footer {
  background: #f8fafc !important;
  color: #334155 !important;
  padding: 70px 0 30px 0;
  border-top: 3px solid #0284c7 !important;
}

.footer-brand p {
  color: #475569 !important;
}

.footer-col h3, .footer-col h4 {
  color: #0f172a !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.footer-links a {
  color: #475569 !important;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0284c7 !important;
}

.footer-contact-item {
  color: #334155 !important;
}

.footer-badge-pill {
  background: #e0f2fe !important;
  color: #0284c7 !important;
  border: 1px solid #bae6fd !important;
  font-weight: 700 !important;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #bae6fd !important;
  color: #64748b !important;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* 5. Certifications Bar */
.cert-bar {
  background: #e0f2fe !important;
  border-top: 1px solid #bae6fd !important;
  border-bottom: 1px solid #bae6fd !important;
  padding: 24px 0;
}

.cert-title {
  color: #0f172a !important;
  font-weight: 800 !important;
}

.cert-sub {
  color: #0284c7 !important;
  font-weight: 600 !important;
}

/* 6. Epoxy Gallery & Value Bar Light Theme Overrides */
.epoxy-gallery-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  color: #0f172a !important;
}

.epoxy-gallery-card {
  border: 1px solid #bae6fd !important;
  background: #ffffff !important;
}

.epoxy-gallery-card img,
.epoxy-service-thumb img {
  background: #f8fafc !important;
}

.epoxy-value-bar {
  background: #e0f2fe !important;
  border-top: 1px solid #bae6fd !important;
  border-bottom: 1px solid #bae6fd !important;
  color: #0f172a !important;
}

.epoxy-value-text strong {
  color: #0f172a !important;
}

.epoxy-value-text span {
  color: #0284c7 !important;
  font-weight: 600 !important;
}

.epoxy-value-icon {
  background: rgba(2, 132, 199, 0.15) !important;
  color: #0284c7 !important;
}

/* 7. Homepage Hero Light Blue Theme Overrides */
.hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%) !important;
  color: #0f172a !important;
  border-bottom: 1px solid #bae6fd !important;
}

.hero-title {
  color: #0f172a !important;
}

.hero-title span {
  color: #0284c7 !important;
}

.hero-desc {
  color: #334155 !important;
}

.hero-badge,
.hero-float-badge {
  background: #ffffff !important;
  border: 1px solid #bae6fd !important;
  color: #0284c7 !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08) !important;
  font-weight: 800 !important;
}

.hero-badge-dot {
  background: #0284c7 !important;
}

.hero-chip {
  background: #ffffff !important;
  border: 1px solid #bae6fd !important;
  color: #0f172a !important;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.05) !important;
  font-weight: 700 !important;
}

.hero-chip svg {
  color: #0284c7 !important;
}

.hero-btns .btn-outline-white {
  background: #ffffff !important;
  color: #0284c7 !important;
  border: 1.5px solid #0284c7 !important;
  font-weight: 800 !important;
}

.hero-btns .btn-outline-white:hover {
  background: #0284c7 !important;
  color: #ffffff !important;
}

.hero-stats {
  border-top: 1px solid #bae6fd !important;
}

.hero-stat-num {
  color: #0284c7 !important;
  font-weight: 900 !important;
}

.hero-stat-lbl {
  color: #334155 !important;
  font-weight: 700 !important;
}

.hero-img-card {
  border: 1px solid #bae6fd !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.12) !important;
}

.hero-img-main,
.hero-slide img {
  background: #f8fafc !important;
}

.hero-slider-arrow {
  background: #ffffff !important;
  border: 1px solid #bae6fd !important;
  color: #0284c7 !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25) !important;
}

.hero-slider-arrow:hover {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
}

.hero-img-caption {
  background: #ffffff !important;
  color: #0f172a !important;
  border-top: 1px solid #bae6fd !important;
}

.hero-img-caption strong {
  color: #0f172a !important;
  font-weight: 800 !important;
}

.hero-img-caption div[style*="color"] {
  color: #0284c7 !important;
  font-weight: 600 !important;
}

/* 8. Mobile Enterprise Client Cards & Floating Buttons Fix */
.enterprise-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 8px 12px !important;
}

.enterprise-brand-sector {
  white-space: normal !important;
  word-break: break-word !important;
  max-width: 100% !important;
  line-height: 1.35 !important;
  text-align: right;
}

@media (max-width: 768px) {
  .enterprise-card {
    padding: 16px 14px !important;
  }

  .enterprise-card-header {
    gap: 6px 10px !important;
  }

  .enterprise-logo-img {
    height: 28px !important;
    max-width: 125px !important;
  }

  .enterprise-brand-sector {
    font-size: 0.68rem !important;
    padding: 3px 8px !important;
    text-align: left !important;
  }

  /* Prevent floating circular Call/WhatsApp buttons from overlapping cards on mobile */
  .floating-contact-widget .float-btn {
    display: none !important;
  }

  .scroll-top-btn {
    bottom: 60px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
  }
}

/* 9. About Section Full-Width Responsive Text & Image Fix */
.about-hero-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .about-hero-grid,
  .about-story-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .about-hero-grid > div,
  .about-story-grid > div {
    width: 100% !important;
  }

  .about-hero-grid img,
  .about-story-grid img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 14px 14px 0 0 !important;
  }

  .about-hero-grid h2,
  .about-story-grid h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important;
    line-height: 1.28 !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .about-hero-grid p,
  .about-story-grid p {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }
}

/* 10. Live Order Popup Notification Toast System */
.live-order-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  max-width: 340px;
  width: calc(100% - 32px);
}

.live-order-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.toast-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-left: 4px solid #0284c7;
  border-radius: 12px;
  padding: 12px 14px 14px 14px;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.18), 0 2px 8px rgba(15, 23, 42, 0.08);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(2, 132, 199, 0.1);
  overflow: hidden;
}

.toast-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  width: 100%;
  transform-origin: left;
}

.live-order-toast.show .toast-progress-bar {
  animation: toastProgress 4.5s linear forwards;
}

@keyframes toastProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.toast-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.toast-verified-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.toast-badge-lbl {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 12px;
}

.toast-time {
  font-size: 0.7rem;
  color: #64748b;
  margin-left: auto;
}

.toast-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: #0f172a;
}

.toast-body {
  font-size: 0.85rem;
  line-height: 1.45;
}

.toast-user {
  color: #0f172a;
  margin-bottom: 2px;
}

.toast-user strong {
  font-weight: 800;
  color: #0f172a;
}

.toast-city {
  color: #0284c7;
  font-weight: 700;
}

.toast-product {
  color: #334155;
  font-weight: 600;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .live-order-toast {
    bottom: 75px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: none !important;
    width: auto !important;
  }
}