/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:"stencil";
    color: #142c4c;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
}
   :root{
    --navy-deep: #071633;
    --navy: #0c1f47;
    --navy-mid: #12305f;
    --steel: #35507e;
    --blue-accent: #1f6fe0;
    --blue-accent-dark: #1857b3;
    --white: #ffffff;
    --off-white: #dbe4f2;
    --line: rgba(255,255,255,0.28);
  }

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

  html,body{
    width:100%;
    overflow-x:hidden;
  }
 

  .fa-youtube{
color: red;
  }

 .first-section .hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height: 560px;
    background:
      linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 42%, var(--navy-mid) 68%, var(--steel) 100%);
    overflow:hidden;
    padding: 48px clamp(20px, 5vw, 64px);
    gap: clamp(16px, 3vw, 48px);
  }

  /* decorative diagonal panels + brushed-metal streak, mimicking the source banner */
 .first-section .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(100deg, transparent 0 55%, rgba(255,255,255,0.05) 55% 58%, transparent 58% 100%),
      linear-gradient(100deg, transparent 0 62%, rgba(255,255,255,0.10) 62% 66%, transparent 66% 100%);
    pointer-events:none;
  }

 .first-section .hero::after{
    content:"";
    position:absolute;
    top:0; right:0; bottom:0;
    width: 55%;
    background:
      repeating-linear-gradient(
        100deg,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 2px,
        transparent 2px,
        transparent 6px
      );
    opacity:0.5;
    mask-image: linear-gradient(90deg, transparent, black 30%, black 100%);
    pointer-events:none;
  }

 .first-section .content{
    position:relative;
    z-index:2;
    flex: 1 1 480px;
    max-width: 620px;
  }

 .first-section .eyebrow{
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--off-white);
    margin-bottom: 10px;
  }

 .first-section h1{
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    font-size: clamp(2.2rem, 6vw, 4rem);
    text-transform: uppercase;
    color: var(--white);
  }

  .first-section h1 .accent{
    color: var(--blue-accent);
    display:block;
    margin-top: 5px;
  }

  .first-section .subhead{
    margin-top: 18px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 600;
    color: var(--white);
  }

  .first-section .desc{
    margin-top: 12px;
    max-width: 90ch;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.55;
    color: var(--off-white);
  }

  .first-section .cta-row{
    display:flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .first-section .btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration:none;
    cursor:pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease;
  }

        .first-section .btn svg{ width:18px; height:18px; flex-shrink:0; }

 .first-section .btn-primary{
    background: var(--blue-accent);
    color: var(--white);
  }
 .first-section .btn-primary:hover{ background: var(--blue-accent-dark); transform: translateY(-1px); }

 .first-section .btn-outline{
    background: transparent;
    border-color: var(--white);
    color: var(--white);
  }
  .first-section .btn-outline:hover{ background: rgba(255,255,255,0.1); transform: translateY(-1px); }

 .first-section .features{
    display:flex;
    gap: clamp(18px, 3vw, 40px);
    margin-top: 40px;
    flex-wrap: wrap;
  }

 .first-section .feature{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    width: 96px;
  }

 .first-section .feature-icon{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 10px;
    flex-shrink:0;
  }

  .first-section .feature-icon svg{
    width: 24px;
    height: 24px;
    stroke: var(--white);
  }
 
  .first-section .feature span{
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--off-white);
  }

  .first-section .media{
    position:relative;
    z-index:2;
    flex: 1 1 420px;
    max-width: 620px;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .first-section .media img{
    width:100%;
    height:auto;
    max-height: 480px;
    object-fit: contain;
    display:block;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.45));
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 900px){
    .first-section .hero{
      flex-direction: column;
      text-align:center;
      padding-top: 40px;
    }
    .first-section .content{ flex: none; width: 100%; max-width: 100%; }
    .first-section .desc{ margin-left:auto; margin-right:auto; }
    .first-section .cta-row{ justify-content:center; }
    .first-section .features{ justify-content:center; }
    .first-section .media{ order: -1; flex: none; width: 100%; max-width: 380px; }
  }

  @media (max-width: 480px){
    .first-section .cta-row{ flex-direction:column; align-items:stretch; }
    .first-section .btn{ justify-content:center; }
    .features{ gap: 14px; }
    .feature{ width: 80px; }
    .feature-icon{ width: 48px; height:48px; }
  } 


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar { 
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
}

.top-container {
    max-width: 1400px; 
    margin: 0px auto !important;
    padding: 0 2px;

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


/* Social */

.social-area {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

.social-area span {
    color: #333333;
}

.social-area a {
    width: 36px;
    height: 36px;

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

    font-size: 22px;
    transition: 0.3s ease;
}

.social-area a:first-of-type {
    color: #e4405f;
}

.social-area a:last-of-type {
    color: #1877f2;
}

.social-area a:hover {
    transform: translateY(-2px);
}


/* Contact */

.contact-area {
    display: flex;
    align-items: center;
    gap: 65px;
}

.contact-area a {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 600;

    color: #333333;
    transition: 0.3s ease;
}

.contact-area i {
    color: #1769c2;
    font-size: 22px;
}

.contact-area a:hover {
    color: #1769c2;
}


/* Quote Button */

.quote-btn {
    height: 72px;
    padding: 0 34px;

    background: #1769c2;
    color: #ffffff;

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

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

    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #0d4f98;
}

.quote-btn i {
    font-size: 20px;
}


/* =========================================
   MAIN NAV
========================================= */

.main-nav {
    background: #ffffff;
}

.nav-container {
    max-width: 1400px; 
    margin: auto;  
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.logo-link{
    display: flex; 
    text-transform:uppercase; 
    gap: 10px;
    /* width: 30%; */
}

.logo {
    width: 90px;
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}
.logo-link h3{
    font-size: 35px;
    font-weight:900;
    color: var(--blue-accent);
    text-align: center;
    max-height: 40px !important;
}
.logo-link h4{
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-accent); 
    text-align: center;
}
.logo-link p{
    font-size: 12px;
    color: #626777;
}


/* =========================================
   
========================================= */

.navigation {
    display: flex;
    align-items: center;
    /* width: 75%; */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap:30px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    height: 70px;

    display: flex;
    align-items: center;

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

    color: #101d32;
    white-space: nowrap;

    transition: 0.3s ease;
}


/* Active */

.nav-item.active > a {
    color: #1769c2;
}


/* Hover */

.nav-item > a:hover {
    color: #1769c2;
}


/* Home underline */

.nav-item.active > a::after {
    content: "";

    position: absolute;
    bottom: 4px;
    left: 0;

    width: 68px;
    height: 3px;

    background: #1769c2;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-toggle {
    gap: 9px;
}

.dropdown-toggle i {
    font-size: 11px;
    transition: 0.3s ease;
}


/* Dropdown Box */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 4px);
    left: 50%;

    width: 285px;

    transform: translateX(-50%) translateY(15px);

    background: #ffffff;

    border-top: 3px solid #1769c2;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 1000;
}


/* Desktop hover */

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

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}


/* Dropdown Items */

.dropdown-menu li {
    border-bottom: 1px solid #eeeeee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    min-height: 52px;

    padding: 12px 18px;

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

    color: #1a2940;

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

    transition: 0.3s ease;
}

.dropdown-menu a i {
    color: #1769c2;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #1769c2;
    color: #ffffff;
    padding-left: 23px;
}

.dropdown-menu a:hover i {
    color: #ffffff;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: none;
    background: #1769c2;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    background: #ffffff;

    transition: 0.3s ease;
}


/* =========================================
   DEMO CONTENT
========================================= */

.demo-section {
    min-height: 600px;

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

    text-align: center;

    background: #f6f9fc;
}

.demo-section h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.demo-section p {
    font-size: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1250px) {
 .logo {
    width: 60px;
    display: block;
}
 
.logo-link h3{
    font-size: 15px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 12px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 8px; 
    text-align: left;

}
    .top-container {
        padding: 0 20px;
    }

    .contact-area {
        gap: 25px;
    }

    .contact-area a {
        font-size: 15px;
    }

    .quote-btn {
        padding: 0 22px;
    }

    .nav-container {
        min-height: 150px;
    }

  

    .nav-menu {
        gap: 25px;
    }

    .nav-item > a {
        font-size: 15px;
    }

}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 1050px) {
    
    .logo {
    width: 60px;
    display: block;
}
 
.logo-link h3{
    font-size: 16px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 12px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 8px; 
    text-align: left;

}


    .top-bar {
        height: auto;
    }

    .top-container {
        min-height: 65px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-area {
        font-size: 14px;
    }

    .contact-area {
        gap: 15px;
    }

    .contact-area a {
        font-size: 13px;
    }

    .quote-btn {
        height: 55px;
        font-size: 13px;
        padding: 0 18px;
    }

    .nav-container {
        min-height: 120px;
    }

    

    .nav-menu {
        gap: 18px;
    }

    .nav-item > a {
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

     .logo {
    width: 60px;
    display: block;
}
 
.logo-link h3{
    font-size: 15px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 12px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 8px; 
    text-align: left;

}

    /* TOP BAR */



    .top-container {
        padding: 10px 18px;
        justify-content: center;
    }

    .social-area {
        order: 1;
    }

    .contact-area {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .contact-area a {
        font-size: 12px;
    }

    .contact-area a span {
        display: inline;
    }

    .quote-btn {
        order: 3;
        height: 45px;
        padding: 0 18px;
    }


    /* MAIN NAV */

    .nav-container {
        min-height: 90px;
        padding: 12px 18px;
    }

    

    /* Hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Navigation */

    .navigation {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

        display: none;
    }

    .navigation.active {
        display: block;
    }

    .nav-menu {
        width: 100%;

        display: block;
    }

    .nav-item {
        border-bottom: 1px solid #eeeeee;
    }

    .nav-item > a {
        height: 55px;

        padding: 0 20px;

        font-size: 15px;
    }

    .nav-item.active > a::after {
        display: none;
    }


    /* Mobile Dropdown */

    .dropdown-menu {
        position: relative;

        width: 100%;

        transform: none;

        display: none;

        opacity: 1;
        visibility: visible;

        border-top: none;

        box-shadow: none;

        background: #f7f9fc;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding-left: 40px;
        font-size: 13px;
    }

    .dropdown-menu a:hover {
        padding-left: 45px;
    }
   

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 550px) {

    .top-container {
        padding: 8px 12px;
    }

    .social-area {
        gap: 8px;
    }

    .social-area span {
        font-size: 13px;
    }

    .social-area a {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .contact-area {
        flex-direction: column;
        gap: 5px;
    }

    .contact-area a {
        font-size: 12px;
    }

    .contact-area i {
        font-size: 15px;
    }

    .quote-btn {
        width: 100%;
        height: 42px;
    }

    .nav-container {
        min-height: 75px;
    }

    .logo {
        width: 230px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

.logo-link{
    display: flex; 
    text-transform:uppercase; 
    gap: 10px;
    /* width: 30%; */
}

.logo {
    width: 40px;
    display: block;
}
 
.logo-link h3{
    font-size: 12px; 
    text-align: left;
    margin-top: 5px;
}
.logo-link h4{
    font-size: 8px;
    font-weight: 500; 
    text-align: left;

}
.logo-link p{
    font-size: 6px; 
    text-align: left;

}
}

:root{
    --navy: #142a63;
    --navy-dark: #0e1f4d;
    --blue: #1d4fc4;
    --blue-dark: #16399a;
    --text-body: #4a5468;
    --border: #e6e8ef;
    --bg: #ffffff;
  }

   
  .second-section .machines{
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 72px;
  }

 .second-section .machines-head{
    text-align:center;
    margin-bottom: 40px;
  }

 .second-section .machines-head h2{
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.01em;
  }

  .second-section.machines-head p{
    margin-top: 10px;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--text-body);
    font-weight: 500;
  }

  .second-section .grid{
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
  }

  .second-section .card{
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 20px 24px;
    display:flex;
    flex-direction:column;
    flex: 0 0 calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

    .second-section .card:hover{
    box-shadow: 0 12px 28px rgba(20,42,99,0.12);
    transform: translateY(-3px);
  }

  .second-section .card-photo{
    width:100%;
    position: relative;
    padding-top: 91.9%; /* maintains the 310:285 photo ratio */
    margin-bottom: 18px;
  }

     .second-section .card-photo img{
    position:absolute;
    top:0; left:0;
    width:100%;
    height:100%;
    object-fit: contain;
  }

  .second-section .card h3{
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .second-section .card p{
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-body);
    flex-grow:1;
    margin-bottom: 20px;
  }

     .second-section .btn-details{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background: var(--blue);
    color:#fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 13px 20px;
    border-radius: 6px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    transition: background 0.15s ease;
    align-self:flex-start;
  }

  .second-section .btn-details:hover{ background: var(--blue-dark); }

 .second-section .view-all-wrap{
    display:flex;
    justify-content:center;
    margin-top: 44px;
  }

  .second-section .btn-view-all{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    background: var(--navy-dark);
    color:#fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 15px 30px;
    border-radius: 999px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    transition: background 0.15s ease, transform 0.15s ease;
  }

  .second-section .btn-view-all:hover{ background:#000; transform: translateY(-1px); }

  .second-section .btn-view-all svg{ width:16px; height:16px; }

  /* ---------- Responsive ---------- */

  @media (max-width: 860px){
    .second-section .card{
      flex: 0 0 calc((100% - 22px) / 2);
      max-width: calc((100% - 22px) / 2);
    }
  }

  @media (max-width: 540px){
    .second-section .card{ flex: 0 0 100%; max-width: 100%; }
    .second-section .machines{ padding: 48px 18px 56px; }
    .second-section .card{ text-align:center; }
    .second-section .btn-details{ align-self:center; }
  }


 .third-section .why{
    max-width: 1200px;
    margin: 0 auto; 
  }

  .third-section .why-head{
    margin-bottom: 44px;
  }

 .third-section  .why-head h2{
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--navy);
  }

  .third-section .underline{
    margin-top: 10px;
    display:flex;
    align-items:center;
    gap: 8px;
  }

 .third-section  .underline .bar{
    width: 130px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
  }

 .third-section  .underline svg{
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    flex-shrink:0;
  }

 .third-section  .grid{
    display:flex;
    flex-wrap:wrap;
  }

 .third-section  .item{
    flex: 0 0 32.3333%;
    max-width: 30.3333%;
    padding: 0 30px 34px 0;
    border-right: 1px dashed var(--dash);
    border-bottom: 1px dashed var(--dash);
  }

 .third-section  .item:nth-child(3n){
    border-right: none;
  }

 .third-section  .item:nth-last-child(-n+3){
    border-bottom: none;
  }

 .third-section  .item{
    padding-top: 30px;
    padding-left: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 10px;
  }

 .third-section  .item{
    padding-left: 30px;
  }

 .third-section  .icon{
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

 .third-section  .icon svg{
    width: 100%;
    height: 100%;
  }

  .third-section  .item h3{
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
  }

 .third-section  .item p{
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-body);
    max-width: 30ch;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 860px){
   .third-section  .item{
      flex: 0 0 50%;
      max-width: 50%;
    }
   .third-section .item:nth-child(3n){ border-right: 1px dashed var(--dash); }
    .third-section .item:nth-child(2n){ border-right: none; }
    .third-section .item:nth-last-child(-n+3){ border-bottom: 1px dashed var(--dash); }
    .third-section .item:nth-last-child(-n+2){ border-bottom: none; } 
  }

  @media (max-width: 560px){
    .third-section .item{
      flex: 0 0 100%;
      max-width: 100%;
      border-right: none !important; 
      border-bottom: 1px dashed var(--dash) !important;
    }
    .third-section .item:last-child{ border-bottom: none !important; }
    .third-section .why{ padding: 48px 20px 56px; }
    .third-section .underline .bar{ width: 90px; }
  }

   :root{
    --bg: #0834a4;
    --bg-2: #142a63ed;
    --text: #eef3f1;
    --text-dim: #b7c7c3;
    --accent: #ffffff;
    --line: rgba(255,255,255,0.35);
  }

  
  .footer{
    position:relative;
    background:
      radial-gradient(circle at 15% 10%, rgba(255,255,255,0.05), transparent 40%),
      linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
    padding: 56px 40px 48px;
    overflow:hidden;
  }

 .footer .footer-grid{
    max-width: 1400px;
    margin: 0 auto;
    display:flex;
    flex-wrap:wrap;
    gap: 40px;
  }

  .footer .col{
    flex: 1 1 220px;
  }

  /* ---- About column ---- */
  .footer .col-about{
    flex: 1 1 320px;
    max-width: 420px;
  }

  .footer .logo-box{
    background:#fff;
    display:inline-block;
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 22px;
  }

 .footer .logo-box img{
    display:block;
    height: 62px;
    width:auto;
  }

  .footer .col-about p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 22px;
  }

  .footer .contact-line{
    display:flex;
    align-items:center;
    gap: 14px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1rem;
  }

 .footer .contact-line svg{
    width: 20px;
    height: 20px;
    flex-shrink:0;
    stroke: var(--text);
  }

  .footer .contact-line a{
    color: var(--text);
    text-decoration:none;
  }

  .footer .socials{
    display:flex;
    gap: 16px;
    margin-top: 26px;
  }

  .footer .socials a{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--text);
    text-decoration:none;
  }

  .footer .socials svg{ width:18px; height:18px; fill: var(--text); }

  /* ---- Heading + underline ---- */
  .footer .col h4{
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
  }

  .footer .col h4 .rule{
    display:block;
    width: 56px;
    height: 2px;
    background: var(--line);
    margin-top: 12px;
  }

  /* ---- Useful links ---- */
  .footer .links{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap: 16px;
    margin-top: 28px;
  }

  .footer .links a{
    display:flex;
    align-items:center;
    gap: 12px;
    color: var(--text);
    text-decoration:none;
    font-size: 1.02rem;
    font-weight: 500;
  }

  .footer .links svg{ width:16px; height:16px; flex-shrink:0; stroke: var(--text); }

  /* ---- Location ---- */
  .footer .location{
    margin-top: 28px;
  }

  .footer .location .unit-label{
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer .location address{
    font-style:normal;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 26px;
  }

  /* ---- Map ---- */
  .footer .col-map{
    flex: 1 1 300px;
    max-width: 420px;
  }

  .footer .map-frame{
    margin-top: 28px;
    border-radius: 6px;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,0.15);
    aspect-ratio: 4 / 3;
    background:#e8eaed;
  }

  .footer .map-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 1100px){
    .footer .footer-grid{ gap: 36px 30px; }
    .footer .col{ flex: 1 1 45%; }
    .footer .col-about{ flex: 1 1 100%; max-width: 100%; }
    .footer .col-map{ flex: 1 1 45%; }
  }

  @media (max-width: 640px){
    .footer{ padding: 44px 22px 36px; text-align:left; }
    .footer .footer-grid{ flex-direction:column; gap: 40px; }
    .footer .col, .footer .col-about, .footer .col-map{ flex: 0 0 auto; width: 100%; max-width: 100%; }
  }

/* product-detail... */
 
 .first_product_section .container{
    max-width: 1100px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* ---------- Options Table (Flange / Cleat) ---------- */
 .first_product_section .options-table{
    width:100%;
    border-collapse: collapse;
    background:#fff;
    border:2px solid var(--border);
  }
 .first_product_section .options-table caption{
    font-weight:bold;
    font-size: clamp(16px, 2.5vw, 22px);
    border:2px solid var(--border);
    border-bottom:none;
    padding:10px;
  }
 .first_product_section .options-table th, .options-table td{
    border:1px solid var(--border);
    padding:10px;
    text-align:center;
    vertical-align:middle;
  }
 .first_product_section .options-table th{
    background: var(--blue-light);
    font-size: clamp(13px, 2vw, 16px);
  }
 .first_product_section .sr-no-col{ width: 60px; font-weight:bold; }
 .first_product_section .option-col{ width: 110px; font-weight:bold; font-size: clamp(15px, 2vw, 18px); }
 .first_product_section .image-col{ width:auto; }

  .first_product_section .shape-box{
    width: 100%;
    max-width: 260px;
    height: 180px;
    margin: 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .first_product_section .shape-box svg{ width:100%; height:100%; }

  /* ---------- Technical Specifications ---------- */
 .first_product_section .spec-table{
    width:100%;
    border-collapse: collapse;
    background:#fff;
    border:2px solid var(--border);
  }
  .first_product_section .spec-table caption{
    font-weight:bold;
    font-size: clamp(18px, 3vw, 26px);
    border:2px solid var(--border);
    border-bottom:none;
    padding:12px;
  }
 .first_product_section .spec-table td, .spec-table th{
    border:1px solid var(--border);
    padding:10px 14px;
    font-size: clamp(13px, 1.8vw, 16px);
  }
 .first_product_section .spec-table .label{
    width:35%;
    font-weight:600;
    background: var(--blue-light);
    text-align:center;
  }
 .first_product_section .spec-table .value{
    font-weight:600;
    color:#111;
  }

  /* ---------- Machine Image Card ---------- */
 .first_product_section .machine-card{
    background:#fff;
    border:2px solid var(--border);
    padding: 20px;
    display:flex;
    justify-content:center;
  }
 
 .first_product_section .brand-tag{
    text-align:center;
    font-size:12px;
    color:#555;
    margin-top:8px;
  }


 .first_product_section .img_box_size{
  display: flex;
  justify-content: center;
 }
  .first_product_section .shape-box{
    width: 350px;
    height: 140px;
    background: #111;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

   .first_product_section .shape-box img{
    width: 100%;
    height: 100%; 
   }

  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 700px){
   .first_product_section .options-table th, .options-table td{ padding:6px; }
   .first_product_section .sr-no-col{ width:36px; }
   .first_product_section .option-col{ width:70px; font-size:14px; }
   .first_product_section .shape-box{ height:130px; }
   .first_product_section .spec-table .label{ width:45%; }
    body{ padding:10px; }
  }

  @media (max-width: 480px){
   .first_product_section .options-table thead th:nth-child(1),
   .first_product_section .options-table tbody td:nth-child(1){
      display:none; /* hide Sr.No column on very small screens */
    }
  } 


 .second_section_box .container{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* ---------- Technical Specifications ---------- */
 .second_section_box .spec-table{
    width:100%;
    border-collapse: collapse;
    background:#fff;
    border:2px solid var(--border);
  }
 .second_section_box .spec-table caption{
    font-weight:bold;
    font-size: clamp(18px, 3vw, 26px);
    border:2px solid var(--border);
    border-bottom:none;
    padding:12px;
  }
  .second_section_box .spec-table td, .spec-table th{
    border:1px solid var(--border);
    padding:10px 14px;
    font-size: clamp(13px, 1.8vw, 16px);
  }
 .second_section_box .spec-table .label{
    width:35%;
    font-weight:600;
    background: var(--blue-light);
    text-align:center;
  }
 .second_section_box .spec-table .value{
    font-weight:600;
    color:#111;
  }

  /* ---------- Options Table (Lock Forming Machine) ---------- */
 .second_section_box .options-table{
    width:100%;
    border-collapse: collapse;
    background:#fff;
    border:2px solid var(--border);
  }
 .second_section_box .options-table caption{
    font-weight:bold;
    font-size: clamp(16px, 2.5vw, 22px);
    border:2px solid var(--border);
    border-bottom:none;
    padding:10px;
  }
 .second_section_box .options-table th, .options-table td{
    border:1px solid var(--border);
    padding:10px;
    text-align:center;
    vertical-align:middle;
  }
  .second_section_box .options-table th{
    background: var(--blue-light);
    font-size: clamp(13px, 2vw, 16px);
  }
  .second_section_box .sr-no-col{ width: 60px; font-weight:bold; }
  .second_section_box .option-col{ width: 180px; font-weight:bold; font-size: clamp(14px, 1.8vw, 17px); }
 .second_section_box .image-col{ width:auto; padding:0 !important; }

 .second_section_box .img_box_size{
  display: flex;
  justify-content: center;
 }
  .second_section_box .shape-box{
    width: 350px;
    height: 140px;
    background: #111;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

   .second_section_box .shape-box img{
    width: 100%;
    height: 100%; 
   }
 .second_section_box .shape-box.light-bg{ background:#e9ebee; }
 .second_section_box .shape-box svg{ width:100%; height:100%; }

  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 700px){
  .second_section_box  .options-table th, .options-table td{ padding:6px; }
  .second_section_box  .sr-no-col{ width:36px; }
  .second_section_box  .option-col{ width:100px; font-size:13px; }
   .second_section_box .shape-box{ height:150px; }
   .second_section_box .spec-table .label{ width:45%; }
    body{ padding:10px; }
  }

  @media (max-width: 480px){
    .second_section_box .options-table thead th:nth-child(1),
    .second_section_box .options-table tbody td:nth-child(1){
      display:none;
    }
  } 
 
  .tdf-wrapper{
    --border: #222;
    --blue: #1a5fbf;
    --blue-light: #eaf1ff;
    --bg: #f4f6f8;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color:#1a1a1a;
    padding: 20px;
 
  }
 .tdf-container .img-box-1{
  display: flex;
  justify-content: center;
  align-items: center;
 }

  .tdf-wrapper .tdf-container{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* ---------- Machine illustration card ---------- */
  .tdf-wrapper .tdf-machine-card{
    background:#fff;
    border:2px solid var(--border);
    padding: 20px;
    display:flex; 
    justify-content: center;
  }

  .tdf-wrapper .tdf-machine-card{
    width:100%;
    max-width: 900px;
  }
 .tdf-wrapper .tdf-machine-card img{
    width:100%;
    height:auto;
 }
  

  .tdf-wrapper .tdf-brand-tag{
    text-align:center;
    font-size:12px;
    color:#555;
    margin-top:10px;
  }

  /* ---------- Options / Description Table ---------- */
  .tdf-wrapper .tdf-table{
    width:100%;
    border-collapse: collapse;
    background:#fff;
    border:2px solid var(--border);
  }

  .tdf-wrapper .tdf-table th,
  .tdf-wrapper .tdf-table td{
    border:1px solid var(--border);
    padding:12px 14px;
    vertical-align:middle;
  }

  .tdf-wrapper .tdf-table thead th{
    background: var(--blue-light);
    text-align:center;
    font-size: clamp(13px, 1.8vw, 16px);
  }

  .tdf-wrapper .tdf-table .tdf-col-sr{
    width: 70px;
    text-align:center;
    font-weight:bold;
  }

  .tdf-wrapper .tdf-table .tdf-col-machine{
    font-weight:600;
    font-size: clamp(13px, 1.6vw, 15px);
  }

  .tdf-wrapper .tdf-table .tdf-col-weight{
    width: 140px;
    text-align:center;
    font-weight:600;
    font-size: clamp(13px, 1.6vw, 15px);
  }

  .tdf-wrapper .tdf-table .tdf-col-desc{
    font-size: clamp(12px, 1.5vw, 14px);
    line-height:1.5;
  }

  /* description cell spans multiple rows (rowspan) for rows 1-3 */
  .tdf-wrapper .tdf-table .tdf-desc-span{
    text-align:center;
  }

  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 700px){
    .tdf-wrapper{ padding:10px; }
    .tdf-wrapper .tdf-table th,
    .tdf-wrapper .tdf-table td{ padding:8px; }
    .tdf-wrapper .tdf-table .tdf-col-sr{ width:40px; }
    .tdf-wrapper .tdf-table .tdf-col-weight{ width:90px; }
  }

  @media (max-width: 480px){
    .tdf-wrapper .tdf-table thead th:nth-child(1),
    .tdf-wrapper .tdf-table tbody td.tdf-col-sr{
      display:none;
    }
  } 



  /* about-us */
 
  :root{
    --navy: #1c2554;
    --navy-soft: #2c3670;
    --ink: #2a2f45;
    --amber: #c17f2b;
    --amber-deep: #a5691f;
    --paper: #ffffff;
    --panel: #eef1fa;
    --panel-line: #dde2f2;
    --chip: #d7e0fa;
    --muted: #5c6178;
    --line: #e3e6ef;
    --max: 1180px;
  }

  *{ box-sizing: border-box; }

  html{ scroll-behavior: smooth; }

 

  h1, h2{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 0;
  }

  section{
    padding: 88px 32px;
  }

  .wrap{
    max-width: var(--max);
    margin: 0 auto;
  }

  a{ color: inherit; }

  :focus-visible{
    outline: 2px solid var(--amber);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
  }

  /* ================= ABOUT ================= */

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

  .about .wrap{
    display: grid;
    grid-template-columns: 1.05fr 0.85fr;
    gap: 72px;
    align-items: start;
  }

  .about h1{
    font-size: clamp(2.4rem, 3.4vw, 3.1rem);
    margin-bottom: 30px;
    line-height: 1.15;
  }

  .about p{
    font-size: 1.06rem;
    color: var(--ink);
    max-width: 62ch;
  }

  .about p + p{
    margin-top: 22px;
  }

  .about-lede{
    color: var(--muted);
    font-size: 0.98rem;
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .founder{
    font-weight: 600;
    color: var(--navy);
  }

  .feature-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .feature-card{
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 12px;
    padding: 26px 28px;
  }

  .feature-icon{
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-icon svg{
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feature-text h3{
    font-size: 1.18rem;
    margin-bottom: 6px;
  }

  .feature-text p{
    color: var(--muted);
    font-size: 0.97rem;
    margin: 0;
  }

  /* ================= SNAPSHOT ================= */

  .snapshot{
    background: var(--panel);
  }

  .snapshot h2{
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    margin-bottom: 44px;
  }

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

  .stat-card{
    background: var(--paper);
    border-radius: 12px;
    padding: 38px 28px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(28, 37, 84, 0.06);
  }

  .stat-icon{
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--chip);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-icon svg{
    width: 26px;
    height: 26px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .stat-value{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--amber-deep);
    font-size: 1.7rem;
    margin-bottom: 8px;
  }

  .stat-label{
    color: var(--muted);
    font-size: 0.96rem;
  }

  /* ================= CERTIFICATIONS ================= */

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

  .certs-head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }

  .certs-head h2{
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    max-width: 20ch;
  }

  .certs-head p{
    margin: 12px 0 0;
    color: var(--muted);
    max-width: 46ch;
    font-size: 0.98rem;
  }
  .cert-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .cert-card{
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    background: var(--panel);
    overflow: hidden;
  }

  .cert-card::before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--amber);
  }

  .cert-card img{
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    border: 1px solid var(--panel-line);
    background: var(--paper);
    margin-top: 6px;
  }

  /* ================= RESPONSIVE ================= */

  @media (max-width: 900px){
    section{ padding: 64px 24px; }

    .about .wrap{
      grid-template-columns: 1fr;
      gap: 44px;
    }

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

  @media (max-width: 620px){
    section{ padding: 52px 20px; }

    .about h1{ font-size: 2.1rem; }

    .feature-card{
      padding: 22px;
      gap: 16px;
    }

    .stat-grid,
    .cert-grid{
      grid-template-columns: 1fr;
    }

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


  /* contact-us */
 
  :root{
    --navy: #1c2554;
    --navy-deep: #141b40;
    --navy-soft: #3a5578;
    --ink: #2a2f45;
    --amber: #c17f2b;
    --amber-deep: #a5691f;
    --paper: #ffffff;
    --panel: #eef1fa;
    --panel-line: #dde2f2;
    --muted: #5c6178;
    --line: #e3e6ef;
    --max: 1180px;
  }

  
  h1, h2, h3{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 0;
  }

  a{ color: inherit; }

  :focus-visible{
    outline: 2px solid var(--amber);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
  }

  section{ padding: 88px 32px; }
  .wrap{ max-width: var(--max); margin: 0 auto; }

  /* ================= CONTACT HERO + FORM ================= */

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

  .contact-hero .wrap{
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .contact-intro h1{
    font-size: clamp(2.3rem, 3.2vw, 2.9rem);
    line-height: 1.15;
    margin-bottom: 22px;
  }

  .contact-intro p{
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 40ch;
    margin: 0 0 34px;
  }

  .intro-detail{
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .intro-detail:last-child{
    border-bottom: 1px solid var(--line);
  }

  .intro-icon{
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intro-icon svg{
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .intro-detail-text h3{
    font-size: 1rem;
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .intro-detail-text p{
    margin: 0;
    font-size: 0.94rem;
  }

  /* Form */

  .contact-form{
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 16px;
    padding: 40px;
  }

  .contact-form h2{
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .contact-form > p{
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0 0 28px;
  }

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

  .field{
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .field.full{
    grid-column: 1 / -1;
  }

  .field label{
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
  }

  .field input,
  .field textarea{
    font-family: 'Karla', sans-serif;
    font-size: 0.96rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--panel-line);
    border-radius: 8px;
    padding: 13px 14px;
    width: 100%;
    resize: vertical;
  }

  .field textarea{
    min-height: 120px;
  }

  .field input:focus,
  .field textarea:focus{
    border-color: var(--amber);
  }

  .form-submit{
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    border: none;
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
  }

  .form-submit:hover{
    background: var(--navy-deep);
  }

  .form-submit svg{
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ================= 3-COLUMN INFO BAND ================= */

  .info-band{
    position: relative;
    background: var(--navy);
    padding: 0;
    overflow: hidden;
  }

  .info-band .skyline{
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 420px auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='220' viewBox='0 0 420 220'%3E%3Cg fill='%23ffffff'%3E%3Crect x='10' y='90' width='40' height='130'/%3E%3Crect x='60' y='50' width='30' height='170'/%3E%3Crect x='100' y='110' width='45' height='110'/%3E%3Crect x='155' y='30' width='35' height='190'/%3E%3Crect x='200' y='75' width='28' height='145'/%3E%3Crect x='238' y='100' width='50' height='120'/%3E%3Crect x='298' y='45' width='32' height='175'/%3E%3Crect x='340' y='85' width='40' height='135'/%3E%3Crect x='388' y='115' width='24' height='105'/%3E%3C/g%3E%3C/svg%3E");
  }

  .info-band-inner{
    position: relative;
    z-index: 1;
    padding: 76px 32px 64px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }

  .info-grid{
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .info-item{
    text-align: center;
    padding-bottom: 26px;
    position: relative;
  }

  .info-item::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
  }

  .info-icon{
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-icon svg{
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .info-item h3{
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.32rem;
    margin-bottom: 14px;
  }

  .info-item p{
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    margin: 0;
  }

  /* ================= RESPONSIVE ================= */

  @media (max-width: 900px){
    section{ padding: 64px 24px; }

    .contact-hero .wrap{
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .contact-form{ padding: 30px; }

    .info-grid{
      grid-template-columns: 1fr;
      gap: 52px;
    }

    .info-band-inner{ padding: 60px 24px; }
  }

  @media (max-width: 560px){
    .form-grid{
      grid-template-columns: 1fr;
    }

    .contact-form{ padding: 24px; }
  } 
 
  /* pittsburg-steel-press */

  :root{
    --navy: #1c2554;
    --navy-deep: #141b40;
    --ink: #2a2f45;
    --amber: #c17f2b;
    --amber-deep: #a5691f;
    --paper: #ffffff;
    --panel: #eef1fa;
    --panel-line: #dde2f2;
    --muted: #5c6178;
    --line: #e3e6ef;
    --max: 1180px;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }

  body{
    margin: 0;
    font-family: 'Karla', sans-serif;
    color: var(--ink);
    background: var(--paper); 
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 0;
  }

  section{ padding: 72px 32px; }
  .wrap{ max-width: var(--max); margin: 0 auto; }

  section + section{
    border-top: 1px solid var(--line);
  }

  :focus-visible{
    outline: 2px solid var(--amber);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
  }

  .eyebrow{
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 10px;
  }

  .section-title{
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin-bottom: 34px;
  }

  /* ================= PRODUCT SHOWCASE ================= */

  .showcase .wrap{
    display: flex;
    justify-content: center;
  }

  .showcase-card{
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 4px 18px rgba(28, 37, 84, 0.07);
    text-align: center;
  }

  .showcase-card img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 22px;
  }

  .showcase-card h1{
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .showcase-card p{
    color: var(--muted);
    font-size: 0.96rem;
    margin: 0;
  }

  /* ================= OPTIONS TABLE ================= */

  .options-table{
    background: var(--panel);
  }

  .table-shell{
    background: var(--paper);
    border: 1px solid var(--panel-line);
    border-radius: 14px;
    overflow: hidden;
  }

  table.data-table{
    width: 100%;
    border-collapse: collapse;
  }

  .data-table caption{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 22px 24px;
    text-align: left;
    background: var(--panel);
    border-bottom: 1px solid var(--panel-line);
    caption-side: top;
  }

  .data-table thead th{
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
  }

  .data-table tbody td{
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
    vertical-align: middle;
  }

  .data-table tbody tr:last-child td{
    border-bottom: none;
  }

  .data-table tbody tr:nth-child(even){
    background: #fafbfe;
  }

  .col-sr{
    width: 70px;
    text-align: center;
    font-weight: 700;
    color: var(--amber-deep);
  }

  .col-option{ 
    font-weight: 600;
    color: var(--navy);

  }
 .data-table tr th{
  text-align: center;
 }
 
 .col-image .img_box_size{
  display: flex;
  justify-content: center;
 }
  .col-image .shape-box{
    width: 350px;
    height: 140px;
    background: #111;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

   .col-image .shape-box img{
    width: 100%;
    height: 100%; 
   }
  /* ================= SPECIFICATIONS TABLE ================= */

  .specs-table{
    background: var(--paper);
  }

  table.specs{
    width: 100%;
    border-collapse: collapse;
  }

  .specs caption{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 22px 24px;
    text-align: left;
    background: var(--panel);
    border-bottom: 1px solid var(--panel-line);
    caption-side: top;
  }

  .specs tbody th{
    text-align: left;
    width: 38%;
    background: var(--panel);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
  }

  .specs tbody td{
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.95rem;
  }

  .specs tbody tr:last-child th,
  .specs tbody tr:last-child td{
    border-bottom: none;
  }

  /* ================= RESPONSIVE ================= */

  @media (max-width: 860px){
    section{ padding: 56px 22px; }

    .col-option{ width: auto; }

    .data-table thead{
      display: none;
    }

    .data-table tbody tr{
      display: grid;
      grid-template-columns: 56px 1fr;
      grid-template-areas:
        "sr option"
        "image image";
      padding: 16px;
      gap: 4px 14px;
    }

    .data-table tbody td{
      border-bottom: none;
      padding: 6px 4px;
    }

    .data-table tbody tr{
      border-bottom: 1px solid var(--line);
    }

    .col-sr{ grid-area: sr; text-align: left; }
    .col-option{ grid-area: option; align-self: center; }
    .col-image{ grid-area: image; margin-top: 8px; }
    .col-image img{ max-width: 100%; height: 160px; }
  }

  @media (max-width: 560px){
    .showcase-card{ padding: 20px; }

    .specs tbody tr{
      display: grid;
    }

    .specs tbody th,
    .specs tbody td{
      display: block;
      width: 100%;
      padding: 10px 18px;
    }

    .specs tbody th{
      padding-bottom: 4px;
      border-bottom: none;
    }

    .specs tbody td{
      padding-top: 0;
    }
  } 


 
  .lfm-zx{
    --navy: #1c2554;
    --navy-deep: #141b40;
    --ink: #2a2f45;
    --amber: #c17f2b;
    --amber-deep: #a5691f;
    --paper: #ffffff;
    --panel: #eef1fa;
    --panel-line: #dde2f2;
    --muted: #5c6178;
    --line: #e3e6ef;
    --max: 1180px;

    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .lfm-zx *,
  .lfm-zx *::before,
  .lfm-zx *::after{
    box-sizing: border-box;
  }

  .lfm-zx h1,
  .lfm-zx h2,
  .lfm-zx h3{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin: 0;
  }

  .lfm-zx section{
    padding: 72px 32px;
  }

  .lfm-zx .wrap{
    max-width: var(--max);
    margin: 0 auto;
  }

  .lfm-zx section + section{
    border-top: 1px solid var(--line);
  }

  .lfm-zx :focus-visible{
    outline: 2px solid var(--amber);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce){
    .lfm-zx *{ animation: none !important; transition: none !important; }
  }

  /* ================= SHARED TABLE SHELL ================= */

  .lfm-zx .table-shell{
    background: var(--paper);
    border: 1px solid var(--panel-line);
    border-radius: 14px;
    overflow: hidden;
  }

  .lfm-zx table.data-table,
  .lfm-zx table.specs{
    width: 100%;
    border-collapse: collapse;
  }

  .lfm-zx .data-table caption,
  .lfm-zx .specs caption{
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 22px 24px;
    text-align: left;
    background: var(--panel);
    border-bottom: 1px solid var(--panel-line);
    caption-side: top;
  }

  /* ================= TECHNICAL SPECIFICATIONS ================= */

  .lfm-zx .specs-table{
    background: var(--paper);
  }

  .lfm-zx .specs tbody th{
    text-align: left;
    width: 38%;
    background: var(--panel);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
  }

  .lfm-zx .specs tbody td{
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.95rem;
  }

  .lfm-zx .specs tbody tr:last-child th,
  .lfm-zx .specs tbody tr:last-child td{
    border-bottom: none;
  }

  /* ================= OPTIONS TABLE ================= */

  .lfm-zx .options-table{
    background: var(--panel);
  }

  .lfm-zx .data-table thead th{
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-align: center;
    padding: 14px 20px;
  }

  .lfm-zx .data-table tbody td{
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
    vertical-align: middle;
  }

  .lfm-zx .data-table tbody tr:last-child td{
    border-bottom: none;
  }

  .lfm-zx .data-table tbody tr:nth-child(even){
    background: #fafbfe;
  }

  .lfm-zx .col-sr{
    width: 70px;
    text-align: center;
    font-weight: 700;
    color: var(--amber-deep);
  }

  .lfm-zx .col-option{
    width: 220px;
    font-weight: 600;
    color: var(--navy);
  }

  /* .lfm-zx .col-image img{
    display: block;
    width: 100%;
    max-width: 260px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--panel-line);
  } */

  /* ================= RESPONSIVE ================= */

  @media (max-width: 860px){
    .lfm-zx section{ padding: 56px 22px; }

    .lfm-zx .col-option{ width: auto; }

    .lfm-zx .data-table thead{
      display: none;
    }

    .lfm-zx .data-table tbody tr{
      display: grid;
      grid-template-columns: 56px 1fr;
      grid-template-areas:
        "sr option"
        "image image";
      padding: 16px;
      gap: 4px 14px;
    }

    .lfm-zx .data-table tbody td{
      border-bottom: none;
      padding: 6px 4px;
    }

    .lfm-zx .data-table tbody tr{
      border-bottom: 1px solid var(--line);
    }

    .lfm-zx .col-sr{ grid-area: sr; text-align: left; }
    .lfm-zx .col-option{ grid-area: option; align-self: center; }
    .lfm-zx .col-image{ grid-area: image; margin-top: 8px; }
    .lfm-zx .col-image img{ max-width: 100%; height: 160px; }
  }

  @media (max-width: 560px){
    .lfm-zx .specs tbody tr{
      display: grid;
    }

    .lfm-zx .specs tbody th,
    .lfm-zx .specs tbody td{
      display: block;
      width: 100%;
      padding: 10px 18px;
    }

    .lfm-zx .specs tbody th{
      padding-bottom: 4px;
      border-bottom: none;
    }

    .lfm-zx .specs tbody td{
      padding-top: 0;
    }
  } 

  .logo-text-01 h3{
    line-height: normal !important;
  }

  