/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 04 2026 | 10:45:52 */
    :root {
      --navy: #0B132B;
      --navy-deep: #050B19;
      --navy-card: #111C35;
      --orange: #477788;
      --orange-hover: #365D6A;
      --cyan: #FFFFFF;
      --bg-light: #F8FAFC;
      --bg-white: #FFFFFF;
      --text-main: #0F172A;
      --text-body: #475569;
      --text-soft: #64748B;
      --card-border: #E2E8F0;
      --border-glow: rgba(71, 119, 136, 0.25);
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 12px 28px -6px rgba(11, 19, 43, 0.08);
      --shadow-lg: 0 24px 48px -12px rgba(11, 19, 43, 0.16);
      --shadow-xl: 0 32px 64px -16px rgba(11, 19, 43, 0.22);
      --shadow-glow: 0 15px 35px -10px rgba(71, 119, 136, 0.35);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --font-heading: "Poppins", sans-serif;
      --font-mono: "Poppins", sans-serif;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-heading);
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ul {
      list-style: none;
    }

    a {
      text-decoration: none;
      color: inherit;
    }
input[type=text]{padding-left:60px;}

    /* ===================== TOP ANNOUNCEMENT BAR ===================== */
    .top-bar {
      background: var(--navy-deep);
      color: #94A3B8;
      font-size: 13px;
      padding: 9px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .top-bar-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .top-info {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .top-info a {
      color: #CBD5E1;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .top-info a:hover {
      color: var(--orange);
    }

    .top-info i {
      color: var(--orange);
    }

    .top-badge {
      background: rgba(255, 255, 255, 0.1);
      color: var(--cyan);
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 11.5px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ===================== STICKY NAVIGATION HEADER ===================== */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      transition: all 0.3s ease;
    }

    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
    }

    .brand-logo-img {
      height: 52px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      transition: color 0.2s ease;
      position: relative;
      padding: 6px 0;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .nav-link:hover {
      color: var(--orange);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .btn-quote {
      background: var(--orange);
     color: #FFFfff !important;
      padding: 11px 22px;
      border-radius: 30px;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 0.3px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s cubic-bezier(0.16, 0.8, 0.24, 1);
      box-shadow: 0 6px 18px rgba(71, 119, 136, 0.28);
      border: none;
      cursor: pointer;
    }
	.btn-quote a {
      color: #FFFfff !important;
    }
    .btn-quote:hover {
      background: var(--orange-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(71, 119, 136, 0.4);color: #FFFfff !important;
    }

    .mobile-menu-toggle {
      display: none;
      font-size: 22px;
      color: var(--navy);
      background: none;
      border: none;
      cursor: pointer;
    }

    /* ===================== SCROLL PROGRESS BAR ===================== */
    .scroll-progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3.5px;
      width: 0%;
      background: linear-gradient(90deg, var(--orange), #00E5FF, #25D366);
      z-index: 9999;
      transition: width 0.1s linear;
      border-radius: 0 2px 2px 0;
      box-shadow: 0 0 12px rgba(71, 119, 136, 0.7);
    }

    /* ===================== WOW REVEAL ANIMATIONS ===================== */
    .reveal.pre-reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.97);
      filter: blur(3px);
      transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.pre-reveal.in-view {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .reveal-left.pre-reveal {
      opacity: 0;
      transform: translateX(-48px);
      filter: blur(4px);
      transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-left.pre-reveal.in-view {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }

    .reveal-right.pre-reveal {
      opacity: 0;
      transform: translateX(48px);
      filter: blur(4px);
      transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-right.pre-reveal.in-view {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }

    .reveal-zoom.pre-reveal {
      opacity: 0;
      transform: scale(0.86);
      filter: blur(6px);
      transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-zoom.pre-reveal.in-view {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
    }

    .reveal-up.pre-reveal {
      opacity: 0;
      transform: translateY(44px) scale(0.96);
      filter: blur(4px);
      transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-up.pre-reveal.in-view {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .d1 {
      transition-delay: 0.08s;
    }

    .d2 {
      transition-delay: 0.16s;
    }

    .d3 {
      transition-delay: 0.24s;
    }

    .d4 {
      transition-delay: 0.32s;
    }

    .d5 {
      transition-delay: 0.40s;
    }

    /* CARD HOVER WOW ACCENTS */
    .wm-card,
    .sc-card,
    .pf-card,
    .support-card,
    .industry-carousel-item {
      will-change: transform, box-shadow;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    }

    /* ===================== PRECISION HERO SECTION ===================== */
    .main-hero-section {
      position: relative;
      min-height: 82vh;
      display: flex;
      align-items: center;
      background: linear-gradient(90deg, #EEF1F5 0%, #EEF1F5 55%, #EEF1F5 100%);
      color: var(--text-main);
      overflow: hidden;
    }

    .hero-dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(11, 19, 43, 0.09) 1px, transparent 1px);
      background-size: 22px 22px;
      -webkit-mask-image: linear-gradient(90deg, black 0%, black 42%, transparent 68%);
      mask-image: linear-gradient(90deg, black 0%, black 42%, transparent 68%);
      z-index: 0;
      pointer-events: none;
    }

    /* inset:0 now bleeds to the section's true edges, since padding
       moved to .hero-inner instead of living on the positioned ancestor */
    .hero-photo-side {
      position: absolute;
      inset: 0;
      left: auto;
      width: 62%;
      z-index: 1;
    }

    .hero-photo-fill {
      position: absolute;
      inset: 0;
      background-image: url('https://igwirescreen.com/wp-content/uploads/2026/07/header-1.jpg');
      background-size: cover;
      background-position: center;
    }

    .hero-photo-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #EEF1F5 0%, rgba(238, 241, 245, 0.85) 8%, rgba(238, 241, 245, 0) 32%);
    }

    .hero-inner {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      padding: 150px 24px 90px;
    }

    .hero-content-box {
      max-width: 600px;
    }

    .hero-eyebrow-v2 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 26px;
    }

    .hero-eyebrow-v2 .dot {
      color: var(--orange);
      margin: 0 6px;
    }

    .hero-title-v2 {
      font-size: clamp(40px, 5.2vw, 68px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -1.5px;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .hero-title-accent {
      color: var(--orange);
    }

    .hero-desc-v2 {
      font-size: 16px;
      line-height: 1.75;
      color: var(--text-body);
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-cta-group-v2 {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .hero-btn-dark {
      background: var(--navy);
      color: #FFFFFF;
      padding: 16px 26px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14.5px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .hero-btn-dark:hover {
      background: var(--navy-deep);
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(11, 19, 43, 0.25);
    }

    .hero-btn-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 14.5px;
      color: var(--navy);
      border-bottom: 2px solid var(--card-border);
      padding-bottom: 4px;
      transition: all 0.25s ease;
    }

    .hero-btn-link:hover {
      color: var(--orange);
      border-color: var(--orange);
      gap: 12px;
    }

    .about-hero {
      position: relative;
      background: var(--bg-white);
      padding: 90px 24px 100px;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.45;
      pointer-events: none;
      z-index: 0;
    }

    .blob-1 {
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(71, 119, 136, 0.2), transparent 70%);
      top: -120px;
      left: -100px;
      animation: floatBlob 14s ease-in-out infinite alternate;
    }

    .blob-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(11, 19, 43, 0.15), transparent 70%);
      bottom: -150px;
      right: -120px;
      animation: floatBlob 18s ease-in-out infinite alternate-reverse;
    }

    @keyframes floatBlob {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(40px, 30px) scale(1.1);
      }
    }

    .about-inner {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      margin: 0 auto;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 64px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .tilt-image {
      position: relative;
      transform: perspective(1000px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
      transition: transform 0.4s cubic-bezier(0.16, 0.8, 0.24, 1);
      will-change: transform;
    }

    .about-mosaic {
      aspect-ratio: 4/4.2;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #E2E8F0;
      box-shadow: 0 28px 56px -20px rgba(11, 19, 43, 0.25);
      border: 4px solid var(--bg-white);
    }

    .mosaic-photo {
      position: absolute;
      inset: 0;
      background-image: url('https://igwirescreen.com/wp-content/uploads/2026/07/about.jpg');
      background-size: cover;
      background-position: center;
      transition: transform 0.8s cubic-bezier(0.16, 0.8, 0.24, 1);
    }

    .about-mosaic:hover .mosaic-photo {
      transform: scale(1.06);
    }

    .mosaic-grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(6, 1fr);
      z-index: 2;
      pointer-events: none;
    }

    .mosaic-grid span {
      background: var(--bg-white);
      opacity: 0.9;
    }

    .mosaic-grid .e1 {
      grid-column: 4/5;
      grid-row: 1/2;
    }

    .mosaic-grid .e2 {
      grid-column: 4/6;
      grid-row: 2/3;
    }

    .mosaic-grid .e3 {
      grid-column: 3/4;
      grid-row: 3/4;
    }

    .mosaic-grid .e4 {
      grid-column: 1/2;
      grid-row: 5/6;
    }

    .about-badge {
      position: absolute;
      right: -5%;
      bottom: -30px;
      z-index: 3;
      background: linear-gradient(135deg, var(--orange), var(--orange-hover));
      color: #FFF;
      padding: 26px 28px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-glow);
      transition: transform 0.35s ease;
    }

    .about-badge:hover {
      transform: translateY(-6px) rotate(-1deg);
    }

    .badge-number {
      font-family: var(--font-mono);
      font-size: 52px;
      font-weight: 700;
      line-height: 1;
    }

    .badge-label {
      margin-top: 6px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      opacity: 0.95;
    }

    .about-content {
      padding-left: 10px;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(71, 119, 136, 0.08);
      border: 1px solid rgba(71, 119, 136, 0.25);
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .about-heading {
      font-size: clamp(32px, 3.8vw, 50px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.12;
      letter-spacing: -1px;
      margin-bottom: 22px;
    }

    .about-heading .accent {
      color: var(--orange);
      background: linear-gradient(120deg, rgba(71, 119, 136, 0.15) 0%, transparent 100%);
      padding: 0 4px;
      border-radius: 4px;
    }

    .about-intro {
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .about-text {
      color: var(--text-body);
      font-size: 15.5px;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .plus-list {
      margin-top: 24px;
      margin-bottom: 34px;
      display: flex;
      flex-direction: column;
      gap: 12px;
		margin-left:0px
    }

    .plus-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 8px 14px;
      background: var(--bg-light);
      border-radius: var(--radius-sm);
      border: 1px solid var(--card-border);
      transition: transform 0.25s ease;
    }

    .plus-list li:hover {
      transform: translateX(6px);
      border-color: var(--orange);
    }

    .plus-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--orange);
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
    }

    .plus-text {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--navy);
    }

    /* ===================== STANDALONE STATS BANNER SECTION ===================== */
    .stats-banner-section {
      background: var(--bg-light);
      padding: 0 24px 80px;
      position: relative;
      z-index: 2;
    }

    .stats-banner-inner {
      max-width: 1400px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--navy-deep), var(--navy));
      color: #FFF;
      border-radius: var(--radius-lg);
      padding: 44px 36px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .stats-banner-inner::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(71, 119, 136, 0.25), transparent 70%);
      pointer-events: none;
    }

    .stats-banner-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .stats-banner-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 10px;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-banner-item:last-child {
      border-right: none;
    }

    .stats-banner-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stats-banner-num {
      font-family: var(--font-mono);
      font-size: 38px;
      font-weight: 800;
      color: #FFF;
      line-height: 1;
      margin-bottom: 4px;
    }

    .stats-banner-lbl {
      font-size: 13px;
      font-weight: 600;
      color: #CBD5E1;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

    /* ===================== FILTER TABS BAR ===================== */
    .filter-tabs-wrap {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .tab-btn {
      background: #FFF;
      border: 1px solid var(--card-border);
      padding: 10px 22px;
      border-radius: 30px;
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text-body);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tab-btn:hover,
    .tab-btn.active {
      background: var(--navy);
      color: #FFF;
      border-color: var(--navy);
      box-shadow: 0 4px 14px rgba(11, 19, 43, 0.25);
    }

    .tab-btn.active {
      background: var(--orange);
      border-color: var(--orange);
    }

    /* ===================== SECTION HEADERS ===================== */
    .section-header-centered {
      text-align: center;
      max-width: 1300px;
      margin: 0 auto 56px;
    }

    .section-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.18;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.7;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ===================== WIRE MESH PRODUCTS SECTION ===================== */
    .products-section {
      background: var(--bg-light);
      padding: 110px 24px;
      border-top: 1px solid var(--card-border);
    }

    .products-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .wm-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .wm-card {
      background: #FFF;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16, 0.8, 0.24, 1);
      display: flex;
      flex-direction: column;
    }

    .wm-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--orange);
    }

    .wm-num {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 12px;
      display: inline-block;
    }

    .wm-photo-wrap {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 18px;
      background: #E2E8F0;
    }

    .wm-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .wm-card:hover .wm-img {
      transform: scale(1.08);
    }

    

    .wm-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
		font-family: "Poppins", sans-serif;
    }

    .wm-desc {
      font-size: 13.5px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .wm-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      transition: color 0.2s;
    }

    .wm-card:hover .wm-link {
      color: var(--orange);
    }

    .wm-link i {
      transition: transform 0.2s ease;
    }

    .wm-card:hover .wm-link i {
      transform: translateX(4px);
    }

    /* ===================== SIFTER SIEVES SECTION & SPEC STRIP ===================== */
    .sifter-section {
      background: var(--bg-white);
      padding: 110px 24px;
      border-top: 1px solid var(--card-border);
    }

    .sifter-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .sc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 60px;
    }

    .sc-card {
      background: #FFF;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: left;
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .sc-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--orange);
    }

    .sc-photo-wrap {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 18px;
      background: #F1F5F9;
    }

    .sc-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .sc-card:hover .sc-img {
      transform: scale(1.08);
    }

    .sc-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
		font-family: "Poppins", sans-serif;
    }

    .sc-desc {
      font-size: 13.5px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 18px;
      flex-grow: 1;
    }

    .sc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      transition: color 0.2s;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: inherit;
    }

    .sc-card:hover .sc-link {
      color: var(--orange); background: none !important;
    }

    .sc-link i {
      transition: transform 0.2s ease;
    }

    .sc-card:hover .sc-link i {
      transform: translateX(4px);
    }

    /* TECHNICAL MESH TO MICRON CONVERTER TOOL */
    .spec-calculator-card {
      background: linear-gradient(135deg, var(--navy-deep), var(--navy));
      color: #FFF;
      border-radius: var(--radius-lg);
      padding: 44px;
      margin-bottom: 60px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .spec-calculator-card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
      pointer-events: none;
    }

    .calc-header {
      margin-bottom: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .calc-title {
      font-size: 24px;
      font-weight: 800;
      color: #FFF;
    }

    .calc-subtitle {
      font-size: 14px;
      color: #94A3B8;
    }

    .calc-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
      align-items: center;
    }

    .calc-input-group {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 24px;
      border-radius: var(--radius-md);
    }

    .calc-label {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--cyan);
      letter-spacing: 0.8px;
      margin-bottom: 10px;
      display: block;
    }

    .calc-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #FFF;
      font-family: var(--font-mono);
      font-size: 22px;
      font-weight: 700;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      outline: none;
      transition: border-color 0.2s;
    }

    .calc-input:focus {
      border-color: var(--orange);
    }

    .preset-btns {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .preset-btn {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #E2E8F0;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .preset-btn:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #FFF;
    }

    .calc-result-display {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 28px;
      border-radius: var(--radius-md);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      text-align: center;
    }

    .result-val {
      font-family: var(--font-mono);
      font-size: 28px;
      font-weight: 700;
      color: var(--cyan);
      margin-bottom: 4px;
    }

    .result-unit {
      font-size: 12px;
      color: #94A3B8;
      text-transform: uppercase;
    }

    /* TECHNICAL SPECS STRIP */
    .specs-strip {
      background: var(--bg-light);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 36px 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .spec-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .spec-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--navy);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .spec-text h5 {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
		font-family: "Poppins", sans-serif;
    }

    .spec-text p {
      font-size: 13px;
      color: var(--text-body);
    }

    /* ===================== PERFORATED SHEETS SECTION ===================== */
    .perforated-section {
      background: var(--bg-light);
      padding: 110px 24px;
      border-top: 1px solid var(--card-border);
    }

    .perforated-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .pf-features-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      background: #FFF;
      border: 1px solid var(--card-border);
      padding: 28px 24px;
      border-radius: var(--radius-md);
      margin-bottom: 50px;
      box-shadow: var(--shadow-sm);
    }

    .pf-feat {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .pf-feat-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(71, 119, 136, 0.1);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .pf-feat-text h5 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
		font-family: "Poppins", sans-serif;
	 
    }

    .pf-feat-text p {
      font-size: 12.5px;
      color: var(--text-soft);
    }

    .pf-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .pf-card {
      background: var(--bg-white);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-sm);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
      cursor: pointer;
      position: relative;
    }

    .pf-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: rgba(71, 119, 136, 0.4);
    }

    .pf-photo-wrap {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 18px;
      background: #E2E8F0;
    }

    .pf-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .pf-card:hover .pf-img {
      transform: scale(1.08);
    }

    .pf-title {
      font-size: 17.5px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
		font-family: "Poppins", sans-serif;
    }

    .pf-desc {
      font-size: 13px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 18px;
      flex-grow: 1;
    }

    .pf-link {
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.25s ease, color 0.25s ease;
      margin-top: auto;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
    }

    .pf-card:hover .pf-link {
      gap: 12px;
      color: var(--navy); background: none !important;
    }

    /* ===================== INDUSTRIES & APPLICATIONS CAROUSEL SECTION ===================== */
    .industries-section {
      background: var(--bg-white);
      padding: 110px 24px;
      border-top: 1px solid var(--card-border);
    }

    .industries-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .industry-carousel-wrapper {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
      padding: 10px 4px 20px;
    }

    .industry-carousel-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1);
    }

    .industry-carousel-item {
      flex: 0 0 calc(25% - 18px);
      min-width: 280px;
      background: #FFF;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .industry-carousel-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--orange);
    }

    .ind-img-wrap {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #E2E8F0;
    }

    .ind-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .industry-carousel-item:hover .ind-img {
      transform: scale(1.08);
    }

    .ind-card-body {
      padding: 24px 20px;
      position: relative;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .ind-card-body .industry-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-top: -42px;
      margin-bottom: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 3px solid #FFF;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .industry-carousel-item:hover .industry-icon {
      background: var(--orange);
      color: #FFF;
      transform: rotate(-10deg) scale(1.1);
    }

    .ind-card-body .industry-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;font-family: "Poppins", sans-serif;
    }

    .ind-card-body .industry-desc {
      font-size: 13px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .ind-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: inherit;
      transition: color 0.2s ease;
    }

    .industry-carousel-item:hover .ind-btn {
      color: var(--orange); background:none !important;
    }

    .ind-btn i {
      transition: transform 0.2s ease;
    }

    .industry-carousel-item:hover .ind-btn i {
      transform: translateX(4px);
    }

    /* CAROUSEL NAVIGATION CONTROLS */
    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .carousel-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #FFF;
      border: 1px solid var(--card-border);
      color: var(--navy);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
    }

    .carousel-nav-btn:hover {
      background: var(--orange);
      color: #FFF;
      border-color: var(--orange);
      transform: scale(1.08);
    }

    .carousel-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #CBD5E1;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot.active {
      width: 24px;
      border-radius: 10px;
      background: var(--orange);
    }

    /* ===================== HELP & SUPPORT SECTION ===================== */
    .faq-section {
      background: var(--bg-light);
      padding: 110px 24px;
      border-top: 1px solid var(--card-border);
    }

    .faq-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* QUICK SUPPORT ACTION CARDS */
    .support-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 60px;
    }

    .support-card {
      background: #FFF;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      text-align: center;
      transition: all 0.35s cubic-bezier(0.16, 0.8, 0.24, 1);
      box-shadow: 0 4px 20px -8px rgba(11, 19, 43, 0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .support-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -12px rgba(11, 19, 43, 0.12);
      border-color: var(--orange);
    }

    .support-card-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: rgba(71, 119, 136, 0.08);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
      transition: all 0.35s ease;
    }

    .support-card:hover .support-card-icon {
      background: var(--orange);
      color: #FFF;
      transform: scale(1.1) rotate(-5deg);
      box-shadow: 0 8px 20px rgba(71, 119, 136, 0.3);
    }

    .support-card-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
		font-family: "Poppins", sans-serif;
    }

    .support-card-desc {
      font-size: 13.5px;
      color: var(--text-soft);
      margin-bottom: 20px;
      line-height: 1.6;
      flex-grow: 1;
    }

    .support-card-link {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--orange);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.25s ease, color 0.25s ease;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: inherit;
    }

    .support-card:hover .support-card-link {
      gap: 12px;
      color: var(--navy);  background: none !important;
    }

    /* SEARCH & CATEGORY FILTER BAR */
    .faq-search-box {
      max-width: 680px;
      margin: 0 auto 28px;
      position: relative;
    }

    .faq-search-input {
      width: 100%;
      padding: 18px 24px 18px 86px;
      font-size: 15.5px;
      border-radius: 36px;
      border: 1px solid var(--card-border);
      outline: none;
      box-shadow: 0 6px 20px -6px rgba(11, 19, 43, 0.06);
      transition: all 0.3s ease;
      background: #FFF;
    }

    .faq-search-input:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(71, 119, 136, 0.15), 0 10px 25px -8px rgba(11, 19, 43, 0.1);
    }

    .faq-search-icon {
      position: absolute;
      left: 26px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-soft);
      font-size: 18px;
    }

    .faq-cat-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .faq-cat-btn {
      background: #FFF;
      border: 1px solid var(--card-border);
      padding: 10px 22px;
      border-radius: 30px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-body);
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .faq-cat-btn:hover {
      background: var(--navy);
      color: #FFF;
      border-color: var(--navy);
      transform: translateY(-2px);
    }

    .faq-cat-btn.active {
      background: var(--orange);
      color: #FFF;
      border-color: var(--orange);
      box-shadow: 0 6px 16px rgba(71, 119, 136, 0.3);
    }

    /* ACCORDION LAYOUT & CARDS */
    .faq-layout {
      display: grid;
      grid-template-columns: 1.85fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .faq-item {
      background: #FFF;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.16, 0.8, 0.24, 1);
      box-shadow: 0 4px 16px -6px rgba(11, 19, 43, 0.05);
    }

    .faq-item:hover {
      border-color: rgba(71, 119, 136, 0.4);
      box-shadow: 0 8px 24px -8px rgba(11, 19, 43, 0.1);
    }

    .faq-item[open] {
      border-color: var(--orange);
      box-shadow: 0 12px 32px -10px rgba(71, 119, 136, 0.2);
    }

    .faq-summary {
      padding: 22px 26px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 16px;
      list-style: none;
      transition: color 0.2s ease;
    }

    .faq-summary::-webkit-details-marker {
      display: none;
    }

    .faq-summary:hover {
      color: var(--orange);
    }

    .faq-num-pill {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      color: var(--orange);
      background: rgba(71, 119, 136, 0.1);
      padding: 5px 10px;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .faq-question-text {
      flex-grow: 1;
      line-height: 1.4;
    }

    .faq-toggle-icon {
      font-size: 15px;
      color: var(--text-soft);
      transition: transform 0.35s ease, color 0.35s ease;
      flex-shrink: 0;
    }

    .faq-item[open] .faq-toggle-icon {
      transform: rotate(45deg);
      color: var(--orange);
    }

    .faq-answer {
      font-size: 14.5px;
      color: var(--text-body);
      line-height: 1.8;
      padding: 4px 26px 26px 72px;
    }

    /* SIDEBAR LUXURY STYLING */
    .faq-sidebar {
      background: linear-gradient(145deg, var(--navy-deep), var(--navy));
      color: #FFF;
      padding: 42px 34px;
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 48px -16px rgba(11, 19, 43, 0.3);
      position: sticky;
      top: 100px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-sidebar h3 {
      font-size: 23px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 6px;
      letter-spacing: -0.4px;font-family: "Poppins", sans-serif;
    }

    .faq-sidebar .sub {
      font-size: 13.5px;
      color: var(--cyan);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .status-badge-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 211, 102, 0.15);
      color: #25D366;
      padding: 6px 16px;
      border-radius: 24px;
      font-size: 12.5px;
      font-weight: 600;
      margin-bottom: 24px;
      border: 1px solid rgba(37, 211, 102, 0.35);
		font-family: "Poppins", sans-serif;
    }

    .status-badge-live::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #25D366;
      animation: blinkPulse 1.8s infinite;
    }

    .faq-contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
      font-size: 14.5px;
    }

    .faq-contact-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .btn-whatsapp {
      background: #25D366;
      color: #FFF;
      width: 100%;
      padding: 14px;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
      background: #1EBE5D;
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
    }

    /* ===================== QUICK QUOTE DRAWER MODAL ===================== */
    .quote-drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(11, 19, 43, 0.6);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .quote-drawer-backdrop.active {
      opacity: 1;
      pointer-events: auto;
    }

    .quote-drawer {
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      max-width: 480px;
      background: #FFF;
      z-index: 2001;
      padding: 36px 30px;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
      overflow-y: auto;
    }

    .quote-drawer-backdrop.active .quote-drawer {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .drawer-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
    }

    .drawer-close {
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-soft);
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      display: block;
    }

    .form-control {
      width: 100%;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--card-border);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-control:focus {
      border-color: var(--orange);
    }

    /* FLOATING CTA BUTTON */
    .floating-quote-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      background: var(--orange);
      color: #FFF;
      padding: 14px 26px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: var(--shadow-glow);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .floating-quote-btn:hover {
      background: var(--orange-hover);
      transform: scale(1.05);
    }

    /* FOOTER */
    .site-footer {
      background: var(--navy-deep);
      color: #94A3B8;
      padding: 60px 24px 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand h4 {
      font-size: 20px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.6;
    }

    .footer-title {
      font-size: 15px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 16px;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #94A3B8;
      font-size: 13.5px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* RESPONSIVE DESIGN & BREATHING SPACE */
    @media (max-width: 1200px) {

      .wm-grid,
      .pf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
      }

      .stats-banner-num {
        font-size: 32px;
      }

      .stats-banner-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }
    }

    @media (max-width: 992px) {

      .main-hero-section {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding-bottom: 50px;
      }

      .hero-dot-grid {
        -webkit-mask-image: none;
        mask-image: none;
        opacity: 0.4;
      }

      .hero-photo-side {
        position: relative;
        inset: auto;
        width: 100%;
        height: 320px;
        order: 2;
        margin-top: 40px;
      }

      .hero-photo-fade {
        background: linear-gradient(180deg, #EEF1F5 0%, rgba(238, 241, 245, 0.7) 12%, transparent 32%);
      }

      .hero-inner {
        order: 1;
        padding: 110px 20px 0;
      }

      .hero-content-box {
        max-width: 100%;
      }

      .about-hero,
      .products-section,
      .sifter-section,
      .perforated-section,
      .industries-section,
      .faq-section {
        padding: 75px 20px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .stats-banner-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
      }

      .stats-banner-item:nth-child(3),
      .stats-banner-item:nth-child(4) {
        border-bottom: none;
      }

      .sc-grid,
      .support-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .wm-grid,
      .pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .pf-features-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 24px 20px;
      }

      .specs-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 28px 22px;
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .faq-sidebar {
        position: static;
        margin-top: 20px;
      }

      /* Mobile Nav Drawer Toggle */
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--card-border);
        box-shadow: var(--shadow-lg);
      }

      .nav-menu.active {
        display: flex;
      }

      .mobile-menu-toggle {
        display: block;
      }
    }

    @media (max-width: 640px) {

      .hero-title-v2 {
        font-size: 34px;
        letter-spacing: -1px;
      }

      .hero-inner {
        padding: 100px 16px 0;
      }

      .hero-photo-side {
        height: 220px;
      }

      .hero-cta-group-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
      }

      .hero-btn-dark {
        width: 100%;
        justify-content: center;
		  padding:10px; font-size:8px
      }

      .about-hero,
      .products-section,
      .sifter-section,
      .perforated-section,
      .industries-section,
      .faq-section {
        padding: 55px 16px;
      }

      .wm-grid,
      .pf-grid,
      .sc-grid,
      .support-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .pf-features-strip {
        grid-template-columns: 1fr !important;
        gap: 14px;
        padding: 20px 16px;
      }

      .specs-strip {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 22px 18px;
      }

      .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .stats-banner-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .stats-banner-item:last-child {
        border-bottom: none;
      }

      .stats-banner-inner {
        padding: 30px 20px;
      }

      .section-title {
        font-size: 26px;
      }

      .about-heading {
        font-size: 28px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .top-bar {
        display: none;
      }

      .filter-tabs-wrap,
      .faq-cat-tabs {
        gap: 6px;
      }

      .tab-btn,
      .faq-cat-btn {
        padding: 8px 14px;
        font-size: 12px;
      }
    }

    /* Fallback for browsers without aspect-ratio support (older mobile
       WebViews, iOS Safari <15). Without this, boxes whose only content
       is position:absolute children collapse to zero height and become
       invisible even though they have a background-color set. */
    @supports not (aspect-ratio: 1 / 1) {
      .about-mosaic { height: 0; padding-bottom: 105%; }
      .wm-photo-wrap { height: 0; padding-bottom: 75%; }
      .sc-photo-wrap { height: 0; padding-bottom: 75%; }
      .pf-photo-wrap { height: 0; padding-bottom: 75%; }
      .ind-img-wrap { height: 0; padding-bottom: 62.5%; }
    }
	  
	  @media (max-width: 1024px) {

  .main-hero-section {
    position: relative;
    display: flex;
    align-items: center;
  }

  .hero-photo-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%; /* slightly smaller for tablet */
    height: 100%;
  }

  .hero-photo-fill {
    background-position: center right; /* keep image right */
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }
		  .btn-quote {
    display: none;
  }
		  .hero-eyebrow-v2 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 26px;
}
}

/* 📱 Mobile */
@media (max-width: 768px) {

  .hero-photo-side {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .hero-inner {
    width: 100%;
    padding: 80px 20px;
  }

  .main-hero-section {
    flex-direction: column;
  }
	.btn-quote {
    display: none;
  }
}