@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* ==========================================================
      OCEAN THEME TOKENS (Premium + Industrial)
    ========================================================== */
:root {
  --font: "Inter", sans-serif;

  --bg: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 48%, #EAF2F7 100%);
  --surface: #ffffff;
  --soft: #F4F8FB;
  --soft2: #EAF2F7;

  --text: #1f2d38;
  --muted: rgba(31, 45, 56, 0.75);

  --border: #d6e2eb;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);

  --accent: #2F6F91;
  /* ocean */
  --accent2: #245A74;
  /* hover */
  --chip: #E6F0F7;

  --radius: 18px;
  --radius2: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: 93%;
  max-width: 1240px;
  margin: 0 auto
}

.muted {
  color: var(--muted)
}

.pill {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--chip);
  color: var(--accent);
  font-weight: 800;
  font-size: .78rem;
  border: 1px solid var(--border)
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.section {
  padding: 3.2rem 0
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: .6rem
}

.section-sub {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  font-size: 14px;
}

/* Consistent primary buttons */
.btn.primary,
button.primary,
a.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 34px rgba(47, 111, 145, 0.20);
}

.btn.primary:hover,
button.primary:hover,
a.primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.05)
}

/* Primary (default): ocean gradient */
.btn:not(.ghost) {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 18px 34px rgba(47, 111, 145, 0.20);
}

.btn:not(.ghost):hover {
  transform: translateY(-1px);
  filter: saturate(1.05)
}

/* Ghost: clean white/outline */
.btn.ghost {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 111, 145, 0.35);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.98);
}

/* ==========================================================
      HEADER + MEGA MENU + MOBILE MENU
    ========================================================== */
/* TOPBAR */
header {
  position: relative;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Becomes floating once you start scrolling */
header.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4000;
}

.header-spacer {
  height: 0;
  display: none;
}

.header-spacer.on {
  display: block;
  height: var(--headerH, 76px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
    font-weight: 1000;
    letter-spacing: .2px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-badge{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.brand-badge, .fbrand .mark {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.footer-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-heading h3{
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #222;
    line-height: 1.1;
    position: relative;
    top: 4px;
}

.footerTag {
    color: #b03a2e;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .3px;
    text-align: center;
    position: relative;
    right: 4px;
    top: 0px;
}

/* .footerTag {
    color: #b03a2e;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .3px;
    text-align: center;
    position: relative;
    right: 4px;
    top: -3px;
} */

/* .footerTag {
  color: var(--muted);
  font-weight: 850;
  font-size: .92rem;
  margin-top: 0px
} */
.nav-links {
  display: flex;
  gap: .15rem;
  align-items: center
}

.nav-links a {
  padding: .5rem .85rem;
  border-radius: 12px;
  font-weight: 900;
  color: var(--text);
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--accent)
}

/* Mega menu */
.has-mega {
  position: relative
}

.mega {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: min(920px, 92vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  padding: 1rem;
  display: none;
}

.has-mega:hover .mega {
  display: block
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.mega-left {
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.mega-left h4 {
  font-size: 1.1rem;
  font-weight: 1000
}

.mega-left p {
  color: var(--muted);
  font-weight: 700
}

.mega-col h5 {
  font-weight: 1000;
  margin-bottom: .5rem
}

.mega-col a {
  display: flex;
  gap: .55rem;
  align-items: center;
  padding: .5rem .6rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  color: var(--muted);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.mega-col a:hover {
  background: var(--soft);
  color: var(--accent);
  border-color: var(--border);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08)
}

/* Mobile nav */
.hamburger {
  display: none
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  padding: .9rem 0 1rem;
}

.mobile-panel a {
  display: block;
  padding: .7rem .6rem;
  border-radius: 12px;
  font-weight: 900;
  color: var(--text);
}

.mobile-panel a:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--accent)
}







/* Responsive header behavior */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-panel {
    display: none;
  }

  .mobile-panel.show {
    display: block;
  }

  .mega {
    display: none !important;
  }

  /* mega menu disabled on mobile; use Products link */
}

/* ==========================================================
      HERO SLIDER
    ========================================================== */
.hero-wrap {
  padding: 1.6rem 0 0
}

.slider {
  margin: 1rem auto 0;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--soft2);
  position: relative;
  box-shadow: var(--shadow);
}

.slides {
  display: flex;
  height: 100%;
  transition: transform .65s ease
}

.slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.hero-left {
  flex: 1 1 44%
}

.hero-left h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: .8rem;
  font-weight: 1000
}

.hero-left p {
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 1rem
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap
}

.hero-right {
  flex: 1 1 56%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04)
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .7s ease, filter .25s ease
}

.slide:hover .hero-right img {
  transform: scale(1.04);
  filter: contrast(1.02) saturate(1.03)
}

/* ===== FIXED: Arrow controls redesigned so they DON'T block hero text =====
       - Moved to bottom-right corner
       - Smaller, premium "pill" look
       - On desktop: show on slider hover
       - On mobile: always visible
    */
.nav-arrows {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.slider:hover .nav-arrows {
  opacity: 1;
  pointer-events: auto;
}

.nav-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 1000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  transition: transform .12s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.nav-arrows button:hover {
  border-color: rgba(47, 111, 145, 0.45);
  color: var(--accent);
  transform: translateY(-1px) scale(1.03);
  background: rgba(255, 255, 255, 0.98);
}

.nav-arrows button:active {
  transform: translateY(0) scale(0.99)
}

/* ==========================================================
      CTA STRIP
    ========================================================== */
.cta-strip {
  margin-top: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-weight: 1000;
  line-height: 1.2
}

.cta-strip p {
  color: var(--muted);
  font-weight: 800
}

/* ==========================================================
      PRODUCTS: Search + Filters + Grid
    ========================================================== */
.filters {
  margin-top: 1.1rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.input,
select {
  padding: .7rem .9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  background: #fff;
  font-weight: 800;
}

.input:focus,
select:focus {
  border-color: var(--accent)
}

.product-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1rem;
}

.product {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}

.product:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 145, 0.35);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08)
}

/* PRODUCT IMAGE: Fill the full frame */
.p-img {
  height: 190px;
  /* you can keep 170px if you want */
  background: white;
  display: block;
  /* remove grid centering */
  padding: 0;
  /* remove any spacing */
  overflow: hidden;
  /* crop nicely */
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT: fills frame */
  object-position: center;
  /* center crop */
  display: block;
}

.p-body {
  padding: .95rem;
  background: var(--chip);
}

.p-title {
  font-weight: 1000;
  line-height: 1.2
}

.p-meta {
  margin-top: .35rem;
  color: var(--muted);
  font-weight: 800;
  font-size: .86rem
}

.p-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .65rem
}

.chip {
  font-size: .72rem;
  font-weight: 1000;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.02)
}

.p-actions {
  display: flex;
  gap: .5rem;
  margin-top: .85rem;
  flex-wrap: wrap
}

/* ==========================================================
      CAPABILITIES / METRICS
    ========================================================== */
.metrics {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.metric .num {
  font-size: 1.75rem;
  font-weight: 1000;
  color: var(--accent);
  line-height: 1
}

.metric .lbl {
  font-weight: 1000;
  margin-top: .5rem
}

.metric .txt {
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
  margin-top: .35rem
}

/* ==========================================================
      CERTIFICATION / QUALITY STRIP
    ========================================================== */
.strip {
  margin-top: 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.strip .item {
  display: flex;
  gap: .7rem;
  align-items: center;
  padding: .65rem .75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.015);
  font-weight: 1000;
}

.badge-ic {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--chip);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 1000;
}

/* ==========================================================
      PROCESS TIMELINE
    ========================================================== */
.timeline {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .8rem;
  align-items: stretch;
}

.step {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: .9rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(47, 111, 145, 0.25), transparent 60%);
}

.step .snum {
  font-weight: 1000;
  color: var(--accent)
}

.step .stitle {
  font-weight: 1000;
  margin-top: .35rem;
  line-height: 1.2
}

.step .stxt {
  color: var(--muted);
  font-weight: 800;
  font-size: .85rem;
  margin-top: .35rem
}

/* ==========================================================
      INDUSTRIES + CASE STUDIES
    ========================================================== */
.grid-3 {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.case {
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.case h4 {
  font-weight: 1000;
  margin-top: .55rem
}

.case p {
  color: var(--muted);
  font-weight: 800;
  margin-top: .45rem
}

.case .mini {
  margin-top: .85rem;
  border-top: 1px dashed var(--border);
  padding-top: .75rem;
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

/* ==========================================================
      TESTIMONIALS + LOGOS
    ========================================================== */
.logos {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
}

.logo-box {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  height: 64px;
  display: grid;
  place-items: center;
  color: rgba(31, 45, 56, 0.55);
  font-weight: 1000;
}

.test-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.test {
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.stars {
  color: var(--accent);
  font-weight: 1000
}

.who {
  margin-top: .8rem;
  font-weight: 1000
}

.who span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: .88rem
}

/* ==========================================================
      FAQ ACCORDION
    ========================================================== */
/* FAQ (compatible with .faq-item / .faq-q / .faq-a HTML) */
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 26px;
}

/* FAQ: prevent side overlap + keep space for floating buttons on small screens */
.faq {
  max-width: 100%;
}

.faq summary {
  overflow-wrap: anywhere;
}

@media (max-width:640px) {
  .faq {
    padding-right: 84px;
    margin-bottom: 110px;
  }
}

.faqHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.faqHead h3 {
  font-size: 1.2rem;
  font-weight: 1000;
  color: var(--accent)
}

.faqHead span {
  color: var(--muted);
  font-weight: 900
}

details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(31, 45, 56, 0.02);
  margin-top: 10px;
}

summary {
  cursor: pointer;
  font-weight: 1000;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

summary::-webkit-details-marker {
  display: none
}

.chev {
  font-weight: 1000;
  color: var(--accent2)
}

details p {
  color: var(--muted);
  font-weight: 850;
  margin-top: 8px
}

/* ==========================================================
      FLOATING ACTIONS + MODAL ENQUIRY
    ========================================================== */
.fab-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab-item{
    position:relative;
}

.fab-label{
    position:absolute;
    right:60px;
    top:50%;
    transform:translateY(-50%);
    background:#333;
    color:#fff;
    padding:6px 12px;
    border-radius:5px;
    white-space:nowrap;

    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.fab-item:hover .fab-label{
    opacity:1;
    visibility:visible;
}
.fab{
    width:48px;
    height:47px;
    background:#fff;
    cursor:pointer;
    display:flex;
    border-radius: 14px;
    align-items:center;
    justify-content:center;
   font-weight: 900;
   border: 1px solid #d6e2eb;
    padding: 5px 8px;
    font-size: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.fab.toTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.fab.toTop {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}
.fab-item{
    position: relative;
    display: flex;
    align-items: center;
}

/* .fab{
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
} */

.fab-label{
    position: absolute;
    right: 60px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.fab-item:hover .fab-label{
    opacity: 1;
    visibility: visible;
}

/* .enquiry-img{
    width:28px;
    height:28px;
    object-fit:contain;
} */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 10000;
}

.modal.show {
  display: flex;
}

.modal-card {
  width: min(720px, 94vw);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.modal-head {
  padding: 1rem 1.1rem;
  background: var(--soft);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal-head h3 {
  font-weight: 1000
}

.close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-weight: 1000;
}

.modal-body {
  padding: 1.1rem
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

.field label {
  display: block;
  font-weight: 1000;
  margin-bottom: .35rem
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 800;
  outline: none;
}

.field textarea {
  min-height: 100px;
  resize: vertical
}

.modal-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1rem
}

/* ==========================================================
      SCROLL REVEAL
    ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0)
}

/* ==========================================================
      FOOTER
    ========================================================== */
.htcFooter {
  margin-top: 26px;
  padding: 10px 0 18px;
  background: linear-gradient(180deg, #fff, var(--soft));
  border-top: 1px solid var(--border);
}

.footerCard {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.footerGrid {
  padding: 16px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 16px;
}

.footerCol {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 14px;
}

.footerCol h4 {
  font-weight: 1000;
  margin-bottom: 10px;
  color: var(--accent);
}

.footerAbout {
  position: relative;
  overflow: hidden
}

.footerAbout::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 15% 0%, rgba(47, 111, 145, 0.14), transparent 55%);
  pointer-events: none;
}

.footerAbout>* {
  position: relative;
  z-index: 1
}

.footerBrand {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.footerLogo {
    width: 50px;
    height: 66px;
    border-radius: 14px;
    /* background: var(--chip); */
    /* border: 1px solid var(--border); */
    display: flex;
    justify-content: center;
    align-items: center;
    place-items: center;
    position: relative;
    top: 6px;
}

.footerLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footerName {
 margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #222;
    /* font-family: "Times New Roman", serif; */
    position: relative;
    top: 9px;
}



.footerBadge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip);
  color: var(--accent2);
  font-weight: 1000;
  font-size: .82rem;
  margin-bottom: 10px;
}

.footerDesc {
  color: var(--muted);
  font-weight: 850;
  margin-bottom: 12px
}

.footerBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.fLink {
  display: block;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

.fLink:hover {
  background: var(--soft);
  border-color: var(--border);
  color: var(--accent);
  transform: translateY(-1px);
}

.fItem {
  color: var(--muted);
  font-weight: 850;
  margin-top: 8px
}

.fItem b {
  color: var(--text)
}

.subBox {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(31, 45, 56, 0.02);
}

.subTitle {
  font-weight: 1000;
  margin-bottom: 8px
}

.subRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.subInput {
  flex: 1;
  min-width: 200px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 900;
  outline: none;
  background: #fff;
}

.subInput:focus {
  border-color: rgba(47, 111, 145, 0.40);
  box-shadow: 0 0 0 4px rgba(47, 111, 145, 0.10);
}

.subNote {
  color: var(--muted);
  font-weight: 850;
  font-size: .9rem;
  margin-top: 8px
}

.footerStrip {
  padding: 14px 16px;
  border-top: 1px dashed var(--border);
  background: rgba(0, 0, 0, 0.01);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stripLeft {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.stripBtn {
    width: 46px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: transform .15s ease, border-color .2s ease, color .2s ease;
    font-size: 21px;
    padding: 4px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; z-index: 9999; pointer-events: auto;
    
}

/* .stripBtn:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 111, 145, 0.35);
  color: var(--accent);
} */

.stripTip {
  color: var(--muted);
  font-weight: 900
}

.footerBottom {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 850;
  font-size: .92rem;
}

.footerLegal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.footerLegal a {
  color: var(--muted);
  font-weight: 900
}

.footerLegal a:hover {
  color: var(--accent)
}

/* Responsive */
@media(max-width:980px) {
  .footerGrid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .footerGrid {
    grid-template-columns: 1fr
  }

  .footerStrip {
    align-items: flex-start
  }
}

/* middle strip */
.footer-mid {
  padding: 1.1rem 1.6rem;
  border-top: 1px dashed var(--border);
  background: rgba(0, 0, 0, 0.01);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.social {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap
}

.sbtn {
  width: 48px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 1000;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s ease, color .2s ease;
}

.sbtn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--accent)
}

/* bottom bar */
.footer-bottom {
  padding: 1rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.footer-bottom a {
  color: var(--muted);
  font-weight: 900
}

.footer-bottom a:hover {
  color: var(--accent)
}

.legal {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  align-items: center
}

@media(max-width:980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-mid {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

/* NEW: “Category highlights” strip */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 16px;
}

.hl {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 12px;
  position: relative;
  overflow: hidden;
  min-height: 92px;
}

.hl::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 0%, rgba(47, 111, 145, 0.12), transparent 55%);
  pointer-events: none;
}

.hl>* {
  position: relative;
  z-index: 1
}

.hl b {
  font-weight: 1000
}

.hl p {
  color: var(--muted);
  font-weight: 850;
  font-size: .92rem;
  margin-top: 6px
}

@media(max-width:980px) {
  .highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:560px) {
  .highlights {
    grid-template-columns: 1fr
  }
}

/* SECTION HEAD */
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}

.sectionHead h2 {
  font-size: 1.35rem;
  font-weight: 1000;
  color: var(--accent);
  letter-spacing: -0.2px
}

.sectionHead span {
  color: var(--muted);
  font-weight: 900
}

/* GRID (3 per row) */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px
}

/* CARD */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 111, 145, 0.35);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.10);
}

.thumb {
  height: 210px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 111, 145, 0.12), transparent 60%),
    linear-gradient(180deg, var(--soft), #fff);
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
  position: relative;
}

.thumb img {
  width: 86%;
  height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.12));
  transition: transform .45s ease;
}

.card:hover .thumb img {
  transform: scale(1.04) translateY(-2px)
}

.ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 1000;
  font-size: .78rem;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ribbon i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block
}

.cardBody {
  padding: 12px 12px 14px
}

.title {
  font-weight: 1000;
  font-size: 1.08rem;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin-bottom: 6px
}

.desc {
  color: var(--muted);
  font-weight: 800;
  font-size: .93rem;
  min-height: 44px;
  margin-bottom: 10px
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px
}

.tag {
  background: var(--chip);
  border: 1px solid rgba(47, 111, 145, 0.18);
  color: var(--accent2);
  padding: 7px 9px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: .78rem;
}

.cardFoot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center
}

.open {
  flex: 1;
  text-align: center;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 1000;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}

.open:hover {
  transform: translateY(-1px);
  filter: saturate(1.05)
}

.mini {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 1000;
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.mini:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 111, 145, 0.35);
  color: var(--accent)
}






/* Client logos */
/* ===== Client logos (default color, hover becomes grayscale) ===== */
 .logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.logo-box {
  height: 70px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

 /* default: full color  */
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

 /* hover: turn grayscale + slightly faded  */
.logo-box:hover img {
  filter: grayscale(1);
  opacity: .70;
  transform: scale(1.02);
}

/* mobile responsive */
@media (max-width:980px) {
  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:560px) {
  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-box {
    height: 62px;
  }
}

/* WhatsApp button: outline only, no fill */
.sbtn.wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgb(114 114 114 / 67%);
    color: #25D366;
    padding: 3px 5px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 900;
    transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.sbtn.wa:hover{
  transform:translateY(-1px);
  border-color:#c8c8c8;
  box-shadow:0 12px 24px rgba(77, 77, 77, 0.18);
  background:rgba(75, 75, 75, 0.06);
}

/* WhatsApp logo image */
.wa-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  border-radius: 30px;
}

/* optional: keep text tight */
.wa-text {
  line-height: 1;
}

#quality{
  scroll-margin-top: 50px;
}


/* Enquiry Form Css */

.form-control-feedback {
  display: none;
}

.has-feedback label~.form-control-feedback {
  top: 0 !important;
}

.error {
  text-align: left !important;
  display: table !important;
}

.thnak4 {
  margin-top: 50px;
}

.has-feedback .form-control {
 
  padding: 12px;
}

.form-group {
  margin: 15px 0 !important;
}

.form-group input {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 14px;
  /* border-bottom: 2px solid #A12E0C; */
  color: #000;
}
.has-feedback .form-control::placeholder{
  color: rgb(31 45 56 / 75%);
  font-size: 14px;
}
.has-feedback .form-control{
  color: rgb(31 45 56 / 75%);
  width: 100%;

}
.form-group textarea {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 14px;
}

.form-group select {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 14px;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  width: 100% !important;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  width: 100% !important;
  border-bottom: 2px solid #A12E0C;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin: 20px 0;
  width: 100% !important;
}

.Submit-box {
  background: linear-gradient(135deg, #2F6F91, #245A74);
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 12px;
  transition: 0.3s ease;
  font-weight: 600;
}

.Submit-box:hover {
  transform: translateY(-1px);
  cursor: pointer;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #000 !important;
  border-bottom: 2px solid #182852;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
.fill {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.get {
  margin-top: 35px;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -0.4px;
  text-align: center;
  margin-bottom: 20px;
}
.button-time{
  display: flex;
  gap: 5px;
}
.enq-foot{
  margin-top: 50px;
}
.thank-image{
  text-align: center !important;
  width: 100%;
  padding-top: 50px;
}
.thank-image img{
  margin: 0 auto;
}
.thank-page{
  text-align: center !important;
}

/* Enquiry form css end */












/* Media Query Start */

@media only screen and (max-width: 1199px) {

  .product-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr))
  }

  .section {
    padding: 2rem 0;
  }

  .strip {
    justify-content: flex-start;
  }

  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footerGrid .footerCol:last-child {
    grid-column: 1 / -1;
    /* pura row cover karega */
  }

  .heroLeft h1 {
    font-size: 2.1rem;
  }

  .statsRow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal.show {
    display: flex;
    justify-content: center;
    align-items: baseline;
    overflow: auto;
  }
 
.footerBrand {
    
    gap: 5px;
}
.footerName {
    font-size: 23px;

}
.footerTag {
    font-size: 15px;
}



}


@media only screen and (max-width: 991px) {

  .product-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerGrid .footerCol:last-child {
    grid-column: auto;
  }
  .htcFooter {
    padding: 10px 0 10px;
}

}


@media only screen and (max-width: 767px) {

  .slide {
    padding: 1rem;
    display: grid;
  }

  .hero-left h1 {
    font-size: 2rem;
    margin-top: 0.8rem;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .test-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .faq {
    padding-right: 14px;
    margin-bottom: 0;
  }

  .footerGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .get{
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .fill{
    font-size: 18px;
  }
  

}

@media only screen and (max-width: 576px) {

  .hero-wrap {
    padding: 1rem 0 0;
  }

  .hero-left h1 {
    font-size: 1.6rem;
  }

  .hero-left p {
    font-weight: 700;
  }

  .cta-strip h3 {
    padding-bottom: 5px;
  }

  .cta-strip p {
    font-weight: 700;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .product-grid {
    grid-template-columns: repeat(1, minmax(220px, 1fr));
  }

  .p-img {
    height: auto;
  }

  .strip .item {
    width: 100%;
  }

  .metrics {
    grid-template-columns: repeat(1, 1fr);
  }

  .metric .num {
    font-size: 1.4rem;
  }

  .metric .lbl {
    font-weight: 800;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  summary {
    font-weight: 700;
  }

  .section {
    padding: 1.5rem 0;
  }

  .logo-box {
    height: 85px;
  }

  .footerBottom {
    gap: 0;
    justify-content: center;
    font-weight: 800;
    text-align: center;
  }

  .footerLegal a {
    font-weight: 800;
  }

  .stripTip {
    font-weight: 800;
    text-align: center;
  }

  .footerStrip {
    justify-content: center;
  }

  .fab-wrap {
    right: 10px;
  }

  .fLink {
    padding: 6px 10px 6px 10px;
  }

  .footerCol h4 {
    margin-bottom: 5px;
  }

  .footerDesc {
    font-weight: 700;
  }

  .form-grid{
    grid-template-columns: repeat(1, 1fr);
  }

  .get{
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .fill{
    font-size: 18px;
    display: none;
  }

}

@media only screen and (max-width:450px) {

  .hero-left h1 {
    font-size: 1.4rem;
  }
  .hero-left p {
    font-weight: 600;
  }
  .stripTip {
    font-weight: 700;
  }
  details p {
    font-weight: 700;
  }
  .footerDesc {
    font-weight: 600;
  }
  .btn {
    font-weight: 700;
    padding: 8px 10px;
  }
  .fLink {
    font-weight: 700;
    padding: 4px 10px 4px 10px;
  }
  .statsRow {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .heroLeft h1 {
    font-size: 1.8rem;
  }
  .vmPill span {
    margin-top: 7px;
  }
  .get{
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .htcFooter {
    padding: 10px 0 10px;
}
  .thank-image {
    padding-top: 25px;
  }
  .footerBrand {
    gap: 5px;
}
.brand {
    gap: 5px;
}
.box {
    padding: 14px 10px;
}

}

@media only screen and (max-width:400px){

  .get{
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .brand-badge {
    width: 42px;
    height: 43px;
    flex-shrink: 0;
}
.footer-heading h3 {
    font-size: 20px;
        top: 3px;
}
.brand {
    gap: 5px;
}
.footerTag {
    font-size: 14px;
    
}
.footerName {
    font-size: 24px;
    top: 9px;
}
.footerBrand {
    gap: 5px;
}
    .footerLogo {
        width: 45px;
        height: 63px;
        position: relative;
        top: 4px;
    }
    .footerCol {
    padding: 14px 8px;
}
    
}

@media only screen and (max-width:350px){

       .brand-badge {
        width: 40px;
        height: 43px;
    }
        .footer-heading h3 {
        font-size: 20px;
        top: 3px;
    }
    .footerLogo {
    width: 47px;
    height: 56px;
}
.footerName {
    font-size: 22px;
}
.footerLogo {
        width: 43px;
        height: 55px;
    }
    .footerBrand {
    gap: 6px;
}
.footerTag {
    right: 3px;
}
.footerCol {
    padding: 14px 8px;
}
}