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

  :root {
    --navy: #006790;
    --steel: #2c4a6e;
    --gold: #c9a84c;
    --gold-lt: #e8c96a;
    --cream: #f7f4ef;
    --white: #ffffff;
    --gray: #6b7280;
    --light: #f0ede8;
    --dark: #111827;
    font-size: 18px;
  }

  html {
    scroll-behavior: smooth;
  }
.wpcf7-not-valid-tip {
    font-size: 0.8em;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 0.8em;
}

  /* ─── HERO ────────────────────────────────────────── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 12% 5% 5%;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: linear-gradient(var(--gold) 1px, transparent 1px),
      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 76, .07) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
  }

  .hero-accent img {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 600;
  }

  .hero-title em {
    color: var(--gold);
    font-style: normal;
  }

  .hero-sub {
    color: rgb(255 255 255 / 72%);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 920px;
  }

  .hero-accent figure {
    height: 100%;
  }

  .hero-accent figure img {
    height: 100%;
    object-fit: cover;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: .8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: .9rem;
    transition: background .2s;
  }

  .btn-gold:hover {
    background: var(--gold-lt);
  }

  .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: var(--white);
    padding: .8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    font-size: .9rem;
    transition: border-color .2s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 48rem;
  }

  .hero-stats .hstat {
    max-width: 11rem;
    text-align: center;
  }

  .hstat-num {
    font-size: 1.8rem;
    color: var(--gold);
  }

  .hstat-lbl {
    font-size: .72rem;
    color: rgb(255 255 255);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: .2rem;
  }

  /* ─── SHARED SECTION STYLES ───────────────────────── */
  section {
    padding: 90px 5%;
  }

  .sec-eyebrow {
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: .75rem;
  }

  .sec-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    line-height: 1.25;
  }

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

  .sec-sub {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: .75rem;
    max-width: 700px;
  }

  .sec-sub.light {
    color: rgba(255, 255, 255, .7);
  }

  .divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 1.25rem 0;
  }

  .divider.center {
    margin: 1.25rem auto;
  }

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

  /* ─── ABOUT ───────────────────────────────────────── */
  #about {
    background: var(--cream);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-img-inner {
    text-align: center;
    color: var(--white);
  }

  .about-img-inner img {
    width: 100%;
  }

  .about-img-inner svg {
    width: 80px;
    opacity: .35;
    margin-bottom: 1rem;
  }

  .about-img-inner p {
    font-size: .8rem;
    opacity: .5;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .about-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    padding: .3rem .8rem;
    border-radius: 3px;
    font-size: .72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .about-points {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
  }

  .apoint {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
  }

  .apoint-icon {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: .15rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .apoint-icon svg {
    width: 10px;
    fill: var(--navy);
  }

  .apoint p {
    font-size: .9rem;
    color: #374151;
    line-height: 1.6;
  }

  /* ─── PRODUCT CATEGORIES ──────────────────────────── */
  #products {
    background: var(--white);
  }
.product-slider .card figure {
	height: auto;
	aspect-ratio: 1/1;
}
.product-slider .card figure img {
    object-fit: cover;
    height: 100%;
    object-position: center;
}
.product-slider .card {
	background: white;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
}
.home-v2 .product-slider .card > div {
	bottom: 0;
	padding: 1rem 1rem;
	background: white;
  text-shadow: none;
}
.product-slider .item {
	padding: 8px 8px 10px;
}
  .prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .prod-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    cursor: default;
    position: relative;
  }

  .prod-card a {
    position: absolute;
    inset: 0;
  }

  .prod-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201, 168, 76, .15);
    transform: translateY(-4px);
  }

  .prod-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .prod-icon img {
    margin-inline: auto;
    max-width: 4rem;
  }

  .prod-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: .5rem;
    font-weight: 600;
  }

  .prod-card p {
    color: var(--gray);
    line-height: 1.6;
  }

  .prod-count {
    font-size: .7rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: .5rem;
    text-transform: uppercase;
    font-weight: 600;
  }

  
.product-slider .card {
  background: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
.product-slider .item {
  padding: 8px 8px 10px;
}

.product-slider .card .content-wrap a {
  border: 1px solid #c9a84c;
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 600;
  color: #006790;
  display: inline-block;
}
.product-slider .card .content-wrap a:before {
    content: "";
    inset: 0;
    position: absolute;
}
.product-slider .card .content-wrap h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px
}
.product-slider .card .content-wrap h2:before {
  content: "";
  width: 6rem;
  height: 2px;
  background: #d09d5b;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.product-slider .card .content-wrap h2:after {
  content: "";
  width: 30px;
  height: 4px;
  background: #d09d5b;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0
}
.product-slider .card .content-wrap h2 small {
    font-size:0.838em;
    display: block;
}
.product-slider .card > div {
    padding: 1.5rem 1rem;
}

  /* ─── WHY CHOOSE ──────────────────────────────────── */
  #why {
    background: var(--navy);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .why-card {
    border: 1px solid rgb(255 255 255);
    border-radius: 8px;
    padding: 2.25rem 2rem;
    transition: border-color .25s, background .25s;
  }

  .why-card:hover {
    border-color: rgba(201, 168, 76, .5);
    background: rgba(201, 168, 76, .04);
  }

  .why-num {
    font-size: 3rem;
    color: rgb(201 168 76);
    line-height: 1;
    margin-bottom: .75rem;
  }

  .why-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: .6rem;
  }

  .why-card p {
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
  }

  /* ─── FEATURED PRODUCTS ───────────────────────────── */
  #featured {
    background: var(--cream);
  }

  .feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .feat-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: box-shadow .25s, transform .25s;
  }

  .feat-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    transform: translateY(-5px);
  }

  .feat-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
  }

  .feat-img.navy {
    background: linear-gradient(135deg, var(--navy), var(--steel));
  }

  .feat-img.gold-bg {
    background: linear-gradient(135deg, #8b6914, var(--gold));
  }

  .feat-img.dark-bg {
    background: linear-gradient(135deg, #1f2937, #374151);
  }

  .feat-body {
    padding: 1.5rem;
  }

  .feat-body h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: .4rem;
  }

  .feat-body p {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .feat-tag {
    display: inline-block;
    background: rgba(201, 168, 76, .12);
    color: #8b6914;
    font-size: .7rem;
    padding: .25rem .65rem;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: .5px;
  }

  /* ─── MANUFACTURING ───────────────────────────────── */
  #manufacturing {
    background: var(--white);
  }

  .mfg-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
  }

  .mfg-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mfg-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--light);
  }

  .mfg-step:last-child {
    border-bottom: none;
  }

  .mfg-step-n {
    font-size: 2.5rem;
    color: rgba(201, 168, 76, .3);
    flex-shrink: 0;
    width: 48px;
    line-height: 1;
  }

  .mfg-step h4 {
    font-size: .95rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: .35rem;
  }

  .mfg-step p {
    font-size: .83rem;
    color: var(--gray);
    line-height: 1.65;
  }

  .mfg-visual {
    background: linear-gradient(135deg, var(--navy), var(--steel));
    border-radius: 10px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .mfg-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 168, 76, .15) 0%, transparent 60%);
  }

  .mfg-cert {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(201, 168, 76, .4);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: .5rem;
  }

  .mfg-cert h4 {
    color: var(--gold);
    font-size: 1.75rem;
  }

  .mfg-cert p {
    color: rgba(255, 255, 255, .65);
    margin-top: .25rem;
  }

  /* ─── INDUSTRIES ──────────────────────────────────── */
  #industries {
    background: var(--light);
  }

  .ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .ind-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-left: 3px solid transparent;
    transition: border-color .25s, box-shadow .25s;
  }

  .ind-card:hover {
    border-left-color: var(--gold);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  }

  .ind-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .ind-card h4 {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 600;
  }

  .ind-card p {
    color: var(--gray);
    margin-top: .2rem;
    line-height: 1.5;
  }

  /* ─── STATS ───────────────────────────────────────── */
  #stats {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
    padding: 70px 5%;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .stat-item {
    padding: 2rem;
    border: 1px solid rgb(255 255 255);
    border-radius: 8px;
  }

  .stat-num {
    font-size: 3rem;
    color: var(--gold);
  }

  .stat-lbl {
    color: rgba(255, 255, 255, .6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: .4rem;
  }

  /* ─── TESTIMONIALS ────────────────────────────────── */
  #testimonials {
    background: var(--cream);
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  }

  .testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .testi-card blockquote {
    color: #374151;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
  }

  .testi-avatar {
    width: 42px;
    height: 42px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .testi-name {
    font-size: .88rem;
    color: var(--navy);
    font-weight: 600;
  }

  .testi-role {
    font-size: .75rem;
    color: var(--gray);
    margin-top: .15rem;
  }

  /* ─── FAQ ─────────────────────────────────────────── */
  #faq {
    background: #f7f4ef;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }

  .faq-item {
    border: 1px solid #0c6387;
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-q {
    padding: 1.1rem 1.4rem;
    background: #0a6389;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  .faq-layout {
    max-width: 70rem;
    margin-inline: auto;
  }

  .faq-q .faq-arrow {
    color: var(--gold);
    font-size: 1.8rem;
    transition: transform .25s;
    flex-shrink: 0;
    line-height: 0;
  }

  .faq-a {
    padding: 0 1.4rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
  }

  .faq-a.open {
    max-height: 200px;
    padding: 1rem 1.4rem 1.25rem;
  }

  .faq-a p {
    color: var(--gray);
    line-height: 1.75;
  }

  .faq-q.active .faq-arrow {
    transform: rotate(45deg);
  }

  .faq-side {
    position: sticky;
    top: 90px;
  }

  .faq-side-box {
    background: var(--navy);
    border-radius: 10px;
    padding: 2.5rem;
  }

  .faq-side-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-side-box p {
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 1.75rem;
  }

  .faq-contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
  }

  .faq-contact-item span {
    color: var(--gold);
    font-size: 1.1rem;
  }

  .faq-contact-item p {
    color: rgba(255, 255, 255, .8);
  }

  /* ─── CTA ─────────────────────────────────────────── */
  #cta {
    text-align: center;
    padding: 100px 5%;
    overflow: hidden;
    background: #000000 url(https://www.veltrix.in/wp-content/uploads/2026/06/Home-image.png);
    position: relative;
    background-attachment: fixed;
    background-size: cover;
  }

  #cta:after {
    content: "";
    background: rgb(0 0 0 / 72%);
    inset: 0;
    position: absolute;
  }

  #cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, .07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201, 168, 76, .07) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
  }

  .cta-inner .sec-eyebrow {
    display: block;
  }

  .cta-inner .sec-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .cta-inner p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    line-height: 1.8;
    margin: 1rem 0 2.5rem;
  }

  .cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cta-contacts {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .cta-contact-item {
    text-align: center;
  }

  .cta-contact-item .icon {
    font-size: 1.4rem;
    margin-bottom: .4rem;
  }

  .cta-contact-item .lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .cta-contact-item .val {
    font-size: .95rem;
    color: var(--white);
    font-weight: 500;
    margin-top: .2rem;
  }

  #cta .custom-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  #cta .column-left {
    width: 54%;
  }

  #cta .column-right {
    width: 42%;
  }

  #cta .column-right .wpcf7 {
    background: white;
    padding: 2rem;
  }

  #cta .column-right .wpcf7 p {
    margin: 0;
  }

  #cta .column-right .wpcf7 select {
    vertical-align: middle;
    height: 100%;
  }

  .app-icon img {
    max-width: 18px;
  }


  .site-apps {
    padding: 52px 24px 60px;
    text-align: center;
    background: #fff;
  }

  /* optional eyebrow — add <span class="sa-tag">What we build</span> above h2 */
  .sa-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9984a;
    margin-bottom: 12px;
  }

  .sec-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
    letter-spacing: -0.4px;
  }

  .divider.center {
    width: 36px;
    height: 3px;
    background: #c9984a;
    border-radius: 99px;
    margin: 0 auto 44px;
  }

  .apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
  }

  .app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding: 26px 10px 22px;
    border-radius: 16px;
    border: 1.5px solid #f2ede4;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.22s, transform 0.22s, background 0.22s;
  }

  /* .app-item:hover {
  border-color: #c9984a;
  transform: translateY(-4px);
  background: #fffaf4;
} */

  .app-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fdf6ec;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s;
  }

  /* .app-item:hover .app-icon {
  background: #c9984a;
} */

  .app-icon svg {
    width: 30px;
    height: 30px;
    fill: #c9984a;
    transition: fill 0.22s;
  }

  /* .app-item:hover .app-icon svg {
  fill: #fff;
} */

  .app-label {
    font-weight: 600;
    color: #555;
    letter-spacing: 0.15px;
  }







  /*  */

  /* ── POPUP OVERLAY ── */
  #popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 99999;
  }

  #popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  #popup-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 6px;
    padding: 36px 32px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease forwards;
  }

  @keyframes slideUp {
    from {
      transform: translateY(24px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Close button */
  #popup-close {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1;
  }

  #popup-close:hover {
    background: #333;
  }

  /* Form styles */
  .popup-title-small {
    font-size: 12px;
    font-weight: 600;
    color: #c0392b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .popup-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.25;
  }

  .popup-form input,
  .popup-form select {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
  }

  .popup-form input:focus {
    border-color: #999;
  }

  .popup-form input::placeholder {
    color: #aaa;
  }

  .popup-form button[type="submit"] {
    background: #fff;
    border: 1.5px solid #bbb;
    color: #333;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .popup-form button[type="submit"]:hover {
    background: #111;
    color: #fff;
    border-color: #111;
  }


  #popup-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    /* no dark backdrop */
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 99999;
    pointer-events: none;
    /* clicks pass through backdrop */
  }

  #popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  #popup-box {
    background: #fff;
    width: 100%;
    max-width: 360px;
    border-radius: 10px 10px 0 0;
    padding: 36px 32px 32px;
    position: relative;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    animation: slideUp 0.3s ease forwards;
    margin: 0 24px;
    pointer-events: all;
    /* re-enable clicks on box */
  }


   .product-specification-section {
        padding: 44px 0;
        border-top: 1px solid #e4e7ea;
    }

    /* 
    .product-specification-section h2 {
        color: #1b6685;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 6px;
    } */

    .product-specification-section .title-rule {
        width: 52px;
        height: 3px;
        background: #c9974e;
        margin-bottom: 22px;
    }

    .section-intro {
        color: #5b6670;
        font-size: 15px;
        max-width: 780px;
        margin: 0 0 24px;
    }

    /* ===== Specs table ===== */
    .spec-card {
        background: #f7f8f9;
        border: 1px solid #e4e7ea;
        border-radius: 6px;
        overflow: hidden;
    }

    .spec-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        border-bottom: 1px solid #e4e7ea;
        font-size: 1em;
    }

    .spec-row:last-child {
        border-bottom: none;
    }

    .spec-row .k {
        padding: 14px 20px;
        font-weight: 600;
        color: #1b6685;
        background: #f0ede8;
    }

    .spec-row .v {
        padding: 14px 20px;
        color: #5b6670;
    }

    /* Links inside spec values (Category / Manufacturer rows) */
    .spec-row .note-link {
        font-size: 1em;
        color: #1b6685;
        font-weight: 600;
        text-decoration: none;
    }

    .spec-row .note-link:hover {
        text-decoration: underline;
    }


    .product-guideline-section {
        padding: 44px 0;
        border-top: 1px solid #e4e7ea;
    }

    .product-guideline-section ul {
    list-style: disc;
}

    .product-guideline-section h2 {
        color: #1b6685;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 6px;
    }

    .product-guideline-section .title-rule {
        width: 52px;
        height: 3px;
        background: #c9974e;
        margin-bottom: 22px;
    }

    /* Two-column layout */
    .info-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .info-2col h3 {
        color: #1b6685;
        font-size: 17px;
        margin: 0 0 10px;
    }



    .info-2col p,
    .info-2col ul {
        color: #5b6670;
        font-size: 1em;
        margin: 0 0 12px;
    }

    .info-2col ul {
        padding-left: 18px;
    }

    .info-2col li {
        margin-bottom: 6px;
    }

    /* Inline link inside the paragraph */
    .info-2col .note-link {
        font-size: 1em;
        color: #1b6685;
        font-weight: 600;
        text-decoration: none;
    }

    .info-2col .note-link:hover {
        text-decoration: underline;
    }

    /* Stack to a single column on smaller screens */
    @media(max-width:900px) {
        .info-2col {
            grid-template-columns: 1fr;
        }
    }

@media screen and (max-width:1439px) {
.hero-stats .hstat {
    max-width: 9rem;
    text-align: center;
}
	.hstat-lbl {
		
		letter-spacing: 0px;		
	}
	.hstat-num {
		font-size: 1.5rem;		
	}
}
  @media screen and (max-width:1199px) {
    :root {
      font-size: 16px;
    }

    .hero-content {
      max-width: 470px;
    }

    .hero-title {
      font-size: clamp(2.4rem, 5vw, 3rem);
    }

    .hero-stats .hstat {
      max-width: 11rem;
      background: #046185;
      padding: 20px;
    }

    .hero-stats {
      max-width: 38rem;
      justify-content: flex-start;
    }

    .hstat-num {
      font-size: 1.3rem;
    }

    .about-grid {
      gap: 2rem;
    }
  }

  @media screen and (max-width:991px) {
    .about-grid {
      display: flex;
      gap: 2rem;
      margin-top: 0;
      flex-direction: column;
    }

    .prod-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    section {
      padding: 50px 5%;
    }

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

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

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

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

    .hero-accent {
      position: static;
      width: 100%;
      height: auto;
      background: inherit;
      clip-path: none !important;
      margin-bottom: 30px;
    }

    .hero-content {
      max-width: 100%;
      padding: 0 5%;
    }

    #hero {
      min-height: auto;
      padding: 0;z                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
      flex-direction: column;
    }

    .hero-stats {
      max-width: 100%;
      padding: 0 5% 50px;
    }

    #cta {
      padding: 50px 5%;
    }

    .custom-contact-form textarea {
      max-height: 80px;
    }

    #cta .column-right {
      width: 60%;
      margin-inline: auto;
    }

    #cta .column-left {
      width: 100%;
      margin-bottom: 2rem;
    }
  }


  @media screen and (max-width:767px) {
    .apps-grid {
      grid-template-columns: repeat(3, 1fr);
      max-width: 580px;
    }

    #cta .column-right {
      width: 100%;
    }
  }

  @media screen and (max-width:575px) {
    .hero-stats .hstat {
      max-width: 21rem;
    }

    .prod-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .why-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .ind-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .stats-inner {
      grid-template-columns: repeat(1, 1fr);
    }

    .testi-grid {
      grid-template-columns: repeat(1, 1fr);
    }

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