:root {
  --primary: #0B1F3A;
  --accent: #00A99D;
  --cta: #00A99D;
  --bg: #F5F7FA;
  --surface: #FFFFFF;
  --surface-alt: #F5F7FA;
  --text: #1F324D;
  --muted: #5C6E84;
  --white: #FFFFFF;
  --border: #D9E1E8;
  --shadow: 0 14px 36px rgba(11, 31, 58, 0.14);
  --section-pad: clamp(30px, 5vw, 60px);
  --section-gap: clamp(16px, 3vw, 32px);
}

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }
#site-footer { flex-shrink: 0; }
#site-header { position: relative; z-index: 1100; }

section { padding: var(--section-pad) 20px; box-sizing: border-box; }

.section { background: var(--surface); }
.section:nth-of-type(even) { background: var(--surface-alt); }

.section.pt-0, .hero, .page-banner, .stats-section, .products-section, .cta-strip, .contact-section, .map-section, .vision-mission-section, .journey-section, .industries-serve-section, .certifications-section { background: none; }


h1,h2,h3,h4,h5 { font-family: "Manrope", sans-serif; margin: 0; color: var(--primary); }
h1 { font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3.1rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem); line-height: 1.2; }
h3 { font-size: clamp(1.4rem, 1.1rem + 0.9vw, 1.9rem); line-height: 1.25; }
h4 { font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem); line-height: 1.3; }
h1 + p, h2 + p, h3 + p { margin-top: 10px; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
a { color: inherit; text-decoration: none; }
img, picture, video, canvas { max-width: 100%; height: auto; display: block; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: var(--section-pad) 20px; }
.section-head { text-align: center; margin-bottom: 32px; }
.lead { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 12px 22px; border-radius: 999px; border: none;
  font-weight: 700; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 14px 30px rgba(0,169,157,.24); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(0,169,157,.32); }
.btn-ghost { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-ghost:hover { background: rgba(0,169,157,.12); color: var(--primary); box-shadow: 0 10px 22px rgba(11,31,58,.18); }
.btn-secondary { background: transparent; border: 1px solid var(--white); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,.1); }

.text-link { color: var(--accent); font-weight: 700; }
.text-link:hover { color: #0A746E; }

.eyebrow { text-transform: uppercase; letter-spacing: 1.3px; font-size: 12px; color: var(--accent); font-weight: 800; }


/* Header */
.top-strip { display: block; width: 100%; position: relative; z-index: 1000; }
.top-strip.modern-top-strip {
  position: relative;
  z-index: 1101;
  background: var(--primary);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0px -1px 0 rgba(255,255,255,0.06);
  font-family: "Inter", "Arial", sans-serif;
  line-height: 1.3;
}
.top-strip.modern-top-strip .top-strip-wrap {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 16px;
}
.top-strip-left {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  min-width: 0;
  font-size: 14px;
}
.top-strip-right > * + * { margin-left: 0; }
.top-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.3;
  padding: 0;
}
.top-strip-link:hover {
  color: #ffffff;
}
.top-strip-link img {
  width: 16px;
  height: 16px;
  filter: none;
}
.top-strip-right i,
.top-strip-right svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .top-strip.modern-top-strip .top-strip-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px;
    gap: 8px;
  }
  .top-strip-right {
    justify-content: space-between;
    width: 100%;
  }
  .top-strip-left {
    font-size: 13px;
  }
}

.site-header { position: sticky; top: 0; z-index: 999; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header { padding: 8px clamp(16px, 3vw, 28px); background: #FFFFFF; }
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; flex-wrap: wrap; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.nav-list { display: flex; align-items: center; gap: 26px; }
.nav-list a {
  padding: 10px 0;
  margin: 0 18px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  color: #0B1F3A;
  transition: all 0.3s ease;
}
.nav-list a.active { border-color: var(--accent); color: #0B1F3A; }
.nav-list a:hover { color: var(--accent); }
.brand, .logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; color: #0B1F3A; letter-spacing: 0.5px; }
.brand-mark, .logo img { width: 60px; height: auto; max-width: 100%; display: block; border-radius: 10px; object-fit: contain; }
.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  gap: 6px;
}
.brand-title {
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 800;
  color: #0B1F3A;
  letter-spacing: 0.2px;
}
.brand-tagline {
  font-size: clamp(10px, 1.1vw, 11.5px);
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.6px;
}
@media (max-width: 768px) {
  .header { padding: 10px 16px; }
  .brand-mark, .logo img { width: 54px; }
}

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: var(--surface); box-shadow: var(--shadow);
  padding: 12px 10px; border-radius: 12px; display: none; min-width: 180px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); }
.dropdown-menu a:hover { background: rgba(0,169,157,.08); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 9px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-toggle:active { transform: scale(0.97); }

.nav-toggle .icon-burger,
.nav-toggle .icon-close {
  position: relative;
  width: 20px;
  height: 16px;
  display: grid;
  place-items: center;
}
.nav-toggle .icon-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle .icon-burger span:nth-child(1) { transform: translateY(-4px); }
.nav-toggle .icon-burger span:nth-child(3) { transform: translateY(4px); }

.nav-toggle .icon-close {
  display: none;
}
.nav-toggle .icon-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}
.nav-toggle .icon-close span:first-child { transform: rotate(45deg); }
.nav-toggle .icon-close span:last-child { transform: rotate(-45deg); }

.nav-toggle.is-open .icon-burger { display: none; }
.nav-toggle.is-open .icon-close { display: block; }


/* Hero slider */
.hero {
  position: relative;
  min-height: clamp(320px, 70vh, 640px);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}
.slider-track { display: flex; transition: transform .6s ease; }
.slide {
  position: relative; min-width: 100%; padding: 120px 0;
  background-size: cover; background-position: center;
}
.slide .overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,25,43,.9), rgba(10,179,163,.45)); }
.slide-content { position: relative; z-index: 2; max-width: 640px; }
.slide h1 { color: var(--white); font-size: clamp(2.4rem, 4vw, 3.4rem); }
.slide p { color: rgba(255,255,255,.9); }

.slider-nav { position: absolute; inset: auto 0 30px 0; width: min(1160px,92%); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; z-index: 3; }
.slider-prev, .slider-next {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); color: #fff; cursor: pointer;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; transition: transform .2s, background .2s; }
.slider-dots button.active { background: var(--cta); transform: scale(1.15); }

/* Static hero image */
.hero-static {
  padding: 0;
  min-height: unset;
  background: transparent;
  display: block;
  line-height: 0;
}
.hero-static picture {
  display: block;
  width: 100%;
}
.hero-full-image {
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(260px, 46vw, 520px);
  object-fit: cover;
  object-position: center;
}

/* Keep home banner edge-to-edge on all screen sizes */
body[data-page="home"] .hero.hero-static {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Home hero slider */
.hero-slider {
  padding: 0 !important;
  min-height: 0;
  background: transparent;
  display: block;
  line-height: 0;
  align-items: stretch;
  margin: 0 !important;
}
.hero-slider .slider-track {
  display: flex;
  transition: transform .6s ease;
  width: 100%;
  will-change: transform;
  padding: 0 !important;
  margin: 0 !important;
}
.hero-slider .slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 0 !important;
  background: none;
  line-height: 0;
  overflow: hidden;
  margin: 0 !important;
}
.hero-slider .slide img {
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(260px, 46vw, 520px);
  object-fit: cover;
  object-position: center top;
  vertical-align: top;
  padding: 0 !important;
  margin: 0 !important;
}
.hero-slider .slider-prev,
.hero-slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(11, 31, 58, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(1px);
}
.hero-slider .slider-prev { left: 18px; }
.hero-slider .slider-next { right: 18px; }
.hero-slider .slider-prev:hover,
.hero-slider .slider-next:hover {
  background: rgba(0, 169, 157, 0.9);
  border-color: rgba(255,255,255,0.85);
}
.hero-slider .slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
}
body[data-page="home"] .hero.hero-slider {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body[data-page="home"] main {
  margin-top: 0;
  padding-top: 0;
}
body[data-page="home"] main > .hero.hero-slider {
  margin-top: 0 !important;
}
.hero-slider .hero-slide {
  padding: 0 !important;
  margin: 0 !important;
}
.hero-slider .hero-slide img {
  margin: 0;
}

/* Reduce gap after hero on home */
body[data-page="home"] .hero-static + .section {
  padding-top: var(--section-pad);
}
body[data-page="home"] .hero-slider + .section {
  padding-top: var(--section-pad);
}
body[data-page="about"] .page-hero-section + .section {
  padding-top: 48px;
}

/* Intro hero (below breadcrumb) */
.intro-hero {
  padding: 36px 0 22px;
  background: #fff;
}
.intro-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  align-items: center;
}
.intro-slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 27, 43, 0.14);
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  border: 1px solid rgba(208, 217, 229, 0.9);
  height: clamp(260px, 35vw, 420px);
  max-height: 430px;
}
.intro-slider .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
}
.intro-slider .slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 28px 30px 62px;
}
.intro-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: none;
  background: #fff;
}
.intro-slider .slider-prev,
.intro-slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(22, 41, 66, 0.92);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(15, 27, 43, 0.18);
  font-size: 20px;
  z-index: 2;
}
.intro-slider .slider-prev { left: 14px; }
.intro-slider .slider-next { right: 14px; }
.intro-slider .slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.intro-slider .slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 27, 45, 0.18);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.intro-slider .slider-dots button.active {
  background: #0d1b2d;
  transform: scale(1.08);
}
.intro-hero-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  object-fit: contain;
  background: #f5f7fa;
  aspect-ratio: 4 / 3;
  height: 230px;
  max-height: 240px;
}
.intro-hero-copy {
  align-self: center;
  max-width: 640px;
}
.intro-hero-copy h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  margin-bottom: 16px;
  color: #0d1b2d;
  font-weight: 800;
  line-height: 1.25;
}
.intro-hero-copy p {
  color: #1f2a38;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
@media (max-width: 960px) {
  .intro-hero-grid { grid-template-columns: 1fr; }
  .intro-hero-media img { max-height: 170px; height: 170px; }
  .intro-slider {
    height: clamp(220px, 58vw, 320px);
    max-height: 320px;
    border-radius: 20px;
  }
  .intro-slider .slide {
    padding: 18px 18px 48px;
  }
  .intro-slider .slider-prev, .intro-slider .slider-next {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .intro-hero-copy { max-width: 100%; }
}
@media (max-width: 640px) {
  .intro-slider .slider-prev,
  .intro-slider .slider-next {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .intro-slider .slider-prev { left: 10px; }
  .intro-slider .slider-next { right: 10px; }
}

/* Tighten spacing after intro section on About page */
body[data-page="about"] .vision-mission-section {
  padding-top: 40px;
}

/* Reasons section */
.reasons-section {
  position: relative;
  color: #eef5ff;
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)),
    url('../assets/herobanners/background.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--section-gap);
}
.reason-block h2 {
  color: #f5fbff;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  margin-bottom: 10px;
}
.reason-underline {
  width: 180px;
  height: 6px;
  background: linear-gradient(90deg, #00A99D, #46C8BE);
  margin: 0 0 28px;
  border-radius: 999px;
}
.reason-list { list-style: none; padding: 0; margin: 0; counter-reset: reasons; }
.reason-list li {
  margin-bottom: 26px;
  counter-increment: reasons;
  position: relative;
  padding-left: 32px;
}
.reason-list li::before {
  content: counter(reasons) ".";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
}
.reason-list h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 10px;
  font-weight: 800;
}
.reason-list p {
  color: #E5E7EB;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
}
.reason-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}
.reason-icon svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .reasons-section { padding: 70px 0; }
  .reason-underline { width: 140px; }
}

@media (max-width: 900px) {
  .reasons-section { background-attachment: scroll; }
}

/* Cards & grids */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.product-grid .product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.card {
  background: var(--white); border-radius: 16px; padding: 18px; box-shadow: 0 10px 24px rgba(15,31,58,.10);
  transition: transform .28s, box-shadow .28s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(15,31,58,.16); }

.feature-band { background: var(--white); }
.feature-head { text-align: center; margin-bottom: 28px; }
.feature-grid .feature-card { text-align: left; }
.icon-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(31,111,91,.12); color: var(--accent);
  display: grid; place-items: center; font-weight: 800; margin-bottom: 10px;
}

..category-grid .category-card { text-align: left; }
.icon-ring {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(245,134,52,.4);
  display: grid; place-items: center;
  color: var(--cta); font-weight: 800; margin-bottom: 12px;
}

.products-section { background: var(--surface-alt); padding: var(--section-pad) 0; }
.products-section .section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.products-section .section-head h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.products-section .section-head .lead { font-size: 1.13rem; color: var(--muted); }
.products-carousel {
  position: relative;
  --per-view: 3;
  --gap: 20px;
  padding-inline: clamp(10px, 2vw, 24px);
}
.products-viewport {
  overflow: hidden;
  padding-inline: 0;
}
.products-track {
  display: flex;
  gap: var(--gap);
  transition: transform .45s ease;
  will-change: transform;
  align-items: stretch;
}
.product-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  border: 1px solid rgba(11,31,58,.08);
  box-shadow: 0 12px 24px rgba(11,31,58,.12);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  min-height: 250px;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(11,31,58,.18);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
  padding: 14px;
  display: block;
  transition: transform .35s ease;
}
.product-card-contain img {
  object-fit: contain;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.6);
  opacity: 0;
  transition: opacity .3s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card:hover::before { opacity: 1; }
.products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(13, 56, 122, 0.18);
  background: linear-gradient(135deg, #103a72, #1f5fae);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 58, 114, 0.28);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  z-index: 3;
}
.products-nav:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 58, 114, 0.34);
  background: linear-gradient(135deg, #0d2f5d, #184d90);
}
.products-prev { left: clamp(12px, 1.8vw, 24px); }
.products-next { right: clamp(12px, 1.8vw, 24px); }
.products-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  background: linear-gradient(135deg, #103a72, #1f5fae);
}
.products-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.products-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(11,31,58,.12);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.products-dots button.active {
  background: var(--accent);
  transform: scale(1.2);
}
@media (max-width: 960px) {
  .products-carousel { --per-view: 2; }
  .product-card {
    min-height: 230px;
  }
  .product-card img {
    height: 230px;
    padding: 12px;
  }
  .products-nav {
    width: 30px;
    height: 30px;
  }
  .products-prev { left: 8px; }
  .products-next { right: 8px; }
}
@media (max-width: 640px) {
  .products-carousel {
    --per-view: 1;
    --gap: 0px;
    padding-inline: 0;
  }
  .products-viewport { padding-inline: 0; }
  .products-track {
    gap: 0;
  }
  .product-card {
    flex-basis: 100%;
    border-radius: 14px;
    min-height: 240px;
  }
  .product-card img {
    height: clamp(220px, 70vw, 290px);
    padding: 12px;
  }
  .products-dots {
    margin-top: 14px;
  }
  .products-prev, .products-next { display: none; }
}

.infrastructure-section { background: #F5F7FA; padding: var(--section-pad) 0; }
.infrastructure-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--section-gap);
  align-items: center;
}
.infra-label { display: inline-block; text-transform: uppercase; letter-spacing: 1.6px; font-size: 12px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.infrastructure-left h2 { font-size: clamp(2.2rem, 3.2vw, 3rem); margin-bottom: 16px; }
.infrastructure-left p { color: var(--text); font-size: 1.05rem; line-height: 1.6; margin-bottom: 14px; max-width: 500px; }
.infrastructure-images { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; align-items: center; }
.infra-large img { width: 100%; height: 360px; object-fit: cover; object-position: center 24%; }
.infra-stack { display: grid; gap: 12px; }
.infra-stack img { width: 100%; height: 170px; object-fit: cover; }
.infrastructure-images img { border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); transition: transform 0.4s ease; display: block; }
.infrastructure-images img:hover { transform: scale(1.05); }

@media (max-width: 980px) {
  .infrastructure-wrapper { grid-template-columns: 1fr; }
  .infrastructure-images { grid-template-columns: 1fr; }
  .infra-large img { height: 260px; }
  .infra-stack img { height: 180px; }
}

.stats-section {
  position: relative;
  color: #0b1f3a;
  padding: var(--section-pad) 0;
  background: #f6f8fb;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--section-gap);
  justify-items: stretch;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.stat-item {
  position: relative;
  padding: 32px 28px;
  min-height: 240px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15,31,58,0.10);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(15,31,58,0.16);
  filter: brightness(1.02);
}
.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e6f4f1, #d1f0ea);
  color: #0f766e;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, #0a8f85, #0b6ba8);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  transform: translateY(-1px) scale(1.1);
}
.stat-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}
.stat-number {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), #1F3C88);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.8px;
  line-height: 1.05;
  margin-bottom: 6px;
  transition: filter 0.25s ease;
}
.stat-label {
  color: #374151;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 13px;
}
.stat-card { background: var(--white); border-radius: 14px; padding: 18px; text-align: center; box-shadow: 0 10px 20px rgba(15,31,58,.08); }

.split { background: var(--white); }
.split-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; align-items: center; }
.media-card img { width: 100%; border-radius: 16px; height: 100%; object-fit: cover; }

.about-section { background: #F5F7FA; padding: var(--section-pad) 0; }
.about-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
  align-items: center;
}
.about-left, .about-right { width: 100%; }
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 18px 0 6px;
  max-width: 640px;
  width: 100%;
}
.about-left, .about-right { width: 100%; }
.about-left .eyebrow { color: var(--accent); letter-spacing: 1.4px; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.about-left h2 { font-size: clamp(2rem, 2.7vw, 2.8rem); margin-bottom: 18px; line-height: 1.2; }
.about-left p { color: var(--text); font-size: 1.05rem; max-width: 550px; margin-bottom: 14px; line-height: 1.6; }
.about-left .btn-primary { margin-top: 16px; }
.about-right .about-media { position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transition: transform .28s ease, box-shadow .28s ease; }
.about-right img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  height: clamp(220px, 54vw, 420px);
  transition: transform .3s ease;
}
.about-right .about-media:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.about-right .about-media:hover img { transform: scale(1.03); }
.about-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 18px 0 6px; max-width: 620px; }
.about-highlight {
  background: #ffffff;
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 14px;
  padding: 18px 16px 16px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(15,31,58,0.10);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.highlight-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0,169,157,0.18), rgba(40,183,255,0.24));
  color: #0b1f3a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 10px 18px rgba(0,0,0,0.08);
  transition: transform .24s ease, background .24s ease, color .24s ease;
}
.highlight-icon-wrap svg { width: 28px; height: 28px; }
.about-highlight h4 { margin: 0; color: #0B1F3A; font-size: 15px; font-weight: 800; letter-spacing: 0.1px; }
.about-highlight small { color: #4f627b; font-weight: 600; letter-spacing: 0.3px; }
.about-highlight:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 30px rgba(15,31,58,0.16);
  background: linear-gradient(135deg, #ffffff, #f2f7fb);
}
.about-highlight:hover .highlight-icon-wrap {
  transform: scale(1.05);
  background: linear-gradient(135deg, #0fcda2, #28b7ff);
  color: #ffffff;
}

@media (max-width: 960px) {
  .about-section-content { grid-template-columns: 1fr; }
  .about-right img { height: auto; }
}

.check-list { padding-left: 18px; color: var(--muted); }
.check-list li { margin-bottom: 8px; }
.check-list li::marker { color: var(--accent); font-weight: 700; }

.pill-list { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { padding: 8px 12px; border-radius: 999px; background: #eef2f8; color: var(--primary); font-weight: 700; }

.cta-band { background: linear-gradient(120deg, #0f1f3a, #173563); color: var(--white); }
.cta-shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta-shell h2, .cta-shell p { color: var(--white); }

.download-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
}

.certs .cert-card { text-align: center; }
.cert-text h2 { text-align: center; width: 100%; }

/* Certifications */
.certifications-section { background: var(--surface-alt); }
.cert-head { display: none; }
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
}
.pill-tag.success { background: rgba(0,169,157,.14); color: #0A746E; }
.pill-tag.info { background: rgba(11,31,58,.08); color: var(--primary); }
.cert-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.cert-card {
  background: var(--surface);
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 14px 32px rgba(11, 35, 68, 0.08);
  display: grid;
  gap: 10px;
  min-height: 170px;
}
.cert-card h3 { margin: 0; color: var(--primary); font-size: 1.05rem; }
.cert-card p { margin: 0; color: #5c6f86; font-weight: 600; }
.cert-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #0f1b2b;
}
.cert-icon-wrap i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-size: 22px;
  color: inherit;
  line-height: 1;
}
.cert-icon-wrap.green { background: rgba(0,169,157,.12); color: #0A746E; }
.cert-icon-wrap.blue { background: rgba(11,31,58,.08); color: #1F3C88; }
.cert-icon-wrap.amber { background: rgba(0,169,157,.08); color: #0A746E; }
.cert-icon-wrap.teal { background: rgba(0,169,157,.12); color: #0D8C8C; }
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
}
.ghost-link:hover { text-decoration: underline; }

.cert-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(11, 35, 68, 0.10);
}
.cert-main.cert-single {
  grid-template-columns: 1fr;
}
.cert-main-media img {
  width: 100%;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4eaf3;
  box-shadow: 0 12px 28px rgba(12, 35, 68, 0.12);
}
.cert-main-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: #0f1b2b;
}
.cert-main-copy p { color: #4f647d; margin: 0 0 14px; }
.cert-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 12px 0 18px;
}
.cert-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dfe8f5;
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: 0 10px 24px rgba(15,31,58,0.08);
  min-height: 160px;
}
.cert-highlight h4 { margin: 0; font-size: 1rem; }
.cert-highlight small { color: #647a96; display: block; }
.cert-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 22px;
}

@media (max-width: 900px) {
  .cert-main { grid-template-columns: 1fr; }
}


.timeline { background: var(--white); border-radius: 16px; padding: 20px; box-shadow: 0 10px 24px rgba(15,31,58,.08); }
.timeline ol { padding-left: 20px; color: var(--muted); }
.timeline li { margin-bottom: 10px; }

.industries-serve-section {
  background: #f5f8ff;
  padding: 90px 0;
}
.industries-serve-section .section-head { margin-bottom: 38px; }
.industries-serve-section h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); color: #0f1b2b; }
.industries-serve-section .section-head p { color: #6c7b90; margin: 6px 0 0; font-size: 1.05rem; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.industry-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 31, 58, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(15, 31, 58, 0.12);
}
.industry-icon {
  font-size: 40px;
  line-height: 1;
}
.industry-card h3 {
  margin: 0;
  color: #0f1b2b;
  font-size: 1.18rem;
}

/* Product detail */
.product-list { display: grid; gap: 22px; }
.product-detail { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: center; }
.detail-img img { width: 100%; border-radius: 14px; height: 100%; object-fit: cover; }
.spec-list { padding-left: 18px; color: var(--muted); }

/* Contact */
.contact-section {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--section-gap);
}
.contact-left, .contact-right {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(15, 31, 58, 0.10);
}
.contact-left h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 10px;
}
.contact-left p { color: var(--muted); margin-bottom: 20px; }
.contact-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px 18px;
  border: 1px solid rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  box-shadow: 0 12px 28px rgba(15, 31, 58, 0.08);
}
.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  color: #1a2740;
  font-weight: 700;
  padding: 14px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,169,157,0.08), rgba(11,31,58,0.04));
  border: 1px solid rgba(0,169,157,.14);
  box-shadow: 0 10px 22px rgba(15, 31, 58, 0.06);
  word-break: break-word;
}
.contact-icon {
  font-size: 18px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(0,169,157,.14);
  border: 1px solid rgba(0,169,157,.28);
  flex-shrink: 0;
}
.contact-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}
.contact-item strong {
  display: block;
  font-size: 13px;
  color: #42516b;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.contact-item span + strong { margin-left: 2px; }
.contact-text-block { display: grid; gap: 4px; }
.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #516177;
  font-weight: 800;
}
.contact-text {
  display: block;
  color: #0f1b2b;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  line-height: 1.55;
}
.contact-text:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-item { align-items: flex-start; }
}
.contact-right h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.form-grid textarea { grid-column: 1 / -1; min-height: 140px; resize: vertical; }
input, textarea {
  width: 100%; border: 1px solid #dfe6f2; border-radius: 12px; padding: 13px 14px; font: inherit; background: var(--white);
}
input:focus, textarea:focus { outline: 2px solid rgba(31,111,91,.25); border-color: var(--accent); }
.form-status { color: var(--accent); font-weight: 700; min-height: 20px; }
.contact-section .btn-primary {
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(0,169,157,0.26);
}
.contact-section .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(0,169,157,0.33);
}

/* Pro contact form */
.contact-form-pro {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 18px;
  padding: 26px 22px 24px;
  box-shadow: 0 22px 48px rgba(15, 31, 58, 0.10);
}
.contact-form-pro .form-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.contact-form-pro .form-head h3 { margin: 0 0 6px; font-size: 1.55rem; }
.contact-form-pro .form-subtext { margin: 0 0 18px; color: var(--muted); }
.contact-form-pro .form-grid { gap: 14px; }
.contact-form-pro .form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.floating {
  position: relative;
}
.floating input,
.floating textarea {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dfe6f2;
  padding: 16px 14px 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.floating label {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #7a889b;
  font-size: 14px;
  pointer-events: none;
  transition: transform .18s ease, color .18s ease, font-size .18s ease, top .18s ease;
}
.floating input:focus,
.floating textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,169,157,0.15);
  outline: none;
}
.floating input:not(:placeholder-shown),
.floating textarea:not(:placeholder-shown),
.floating input:focus,
.floating textarea:focus {
  padding-top: 22px;
}
.floating input:not(:placeholder-shown) + label,
.floating textarea:not(:placeholder-shown) + label,
.floating input:focus + label,
.floating textarea:focus + label {
  top: 6px;
  font-size: 12px;
  color: #1f6fb0;
}
.textarea-field textarea { min-height: 150px; resize: vertical; }

@media (max-width: 768px) {
  .contact-form-pro { padding: 22px 18px; }
  .contact-form-pro .form-actions { flex-direction: column; align-items: flex-start; }
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-mini-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid #e4eaf3;
  box-shadow: 0 10px 22px rgba(15, 31, 58, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 105px;
}
.contact-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 31, 58, 0.12);
  border-color: rgba(0,169,157,0.24);
}
.contact-mini-icon {
  font-size: 18px;
  line-height: 1;
  background: #eef6ff;
  border-radius: 10px;
  padding: 9px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #0b7280;
}
.contact-mini-card h3 { margin: 2px 0 6px; }
.contact-mini-card .muted { color: #6c7b90; margin: 0; }
.trust-badge {
  margin-top: 20px;
  background: #eef6ff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  color: #0f1b2b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6e7ff;
}
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 16px 38px rgba(15, 31, 58, 0.12);
}
.contact-form-card h3 { margin: 0 0 6px; font-size: 1.6rem; }
.form-subtext { color: #6c7b90; margin: 0 0 12px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0,169,157,0.35);
}
.btn-whatsapp:hover {
  box-shadow: 0 16px 32px rgba(0,169,157,0.45);
}

.map-section { background: linear-gradient(135deg, #f5f8ff 0%, #eef2fb 50%, #ffffff 100%); padding: 70px 0; }
.map-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}
.map-info {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 18px 42px rgba(15, 31, 58, 0.12);
  border: 1px solid #e0e7f4;
}
.map-info h3 { margin: 6px 0 10px; font-size: 1.5rem; }
.map-info p {
  color: #2f3f58;
  line-height: 1.7;
  letter-spacing: 0.2px;
  font-weight: 700;
  font-size: 1.04rem;
}
.map-card {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 42px rgba(15, 31, 58, 0.12);
  border: 1px solid #e0e7f4;
}
.map-embed {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .map-layout { grid-template-columns: 1fr; }
}

.pq-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}
.pq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.pq-card {
  background: #fff;
  border: 1px solid #e4eaf3;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(15,31,58,0.08);
  padding: 22px 20px 20px;
}
.pq-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #0f1b2b;
}
.pq-bar {
  display: inline-block;
  width: 180px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5ea2ff, #6fd1ff);
  margin-bottom: 16px;
}
.pq-card p {
  margin: 0;
  color: #1f2a38;
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-strip {
  background: linear-gradient(120deg, #0f1f3a, #173563);
  color: #fff;
  padding: 48px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-strip h2 { margin: 0; color: #fff; }

/* Page hero (shared across pages) */
.page-hero-section {
  position: relative;
  padding: 80px 0 60px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(8,25,43,0.8), rgba(0,169,157,0.45)),
    url('../assets/herobanners/BREADCRUB (2).jpg') center/cover no-repeat;
}
.page-hero-section h1 { color: #fff; font-size: 48px; font-weight: 800; }
.page-hero-section .banner-subtext {
  margin: 12px auto 14px;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.6;
}
.page-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,25,43,0.25), rgba(8,25,43,0.65));
  pointer-events: none;
}
.page-hero-section .container { position: relative; z-index: 1; }
.page-hero-section .breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.page-hero-section .breadcrumbs a { color: rgba(255,255,255,0.8); }
body[data-page="products"] .page-hero-section {
  padding: 66px 0 42px;
}

@media (max-width: 768px) {
  .page-hero-section { padding: 64px 0 46px; }
  .page-hero-section h1 { font-size: 32px; }
  .page-hero-section .banner-subtext { font-size: 15px; padding: 0 14px; }
  body[data-page="products"] .page-hero-section { padding: 54px 0 34px; }
}

/* Get in Touch */
.get-in-touch { padding: 54px 0 44px; background: #f4f7fb; }
.get-in-touch .section-head { margin-bottom: 24px; }
.get-in-touch .section-head.center { text-align: center; }
.get-in-touch .section-subtitle { color: #55657c; margin-top: 6px; }
.get-in-touch .section-head.center h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.get-in-touch .section-head.center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #1F3C88);
  opacity: 0.9;
}
.git-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.git-card {
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(11,31,58,0.06);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 16px 34px rgba(15,31,58,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.git-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,169,157,0.28);
  box-shadow: 0 18px 40px rgba(15,31,58,0.14);
}
.git-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ab8a6, #1f3c88);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(31,60,136,0.18);
  margin-bottom: 4px;
}
.git-icon i,
.git-icon svg {
  color: inherit;
  width: 20px;
  height: 20px;
  display: block;
}
.git-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #24354f;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.git-detail {
  margin: 0;
  color: #3d4e66;
  line-height: 1.6;
  font-weight: 700;
  font-size: 1.02rem;
}
.git-detail.address span { display: block; }

@media (max-width: 992px) {
  .git-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .git-grid { grid-template-columns: 1fr; }
}

.contact-form-cta {
  padding: 54px 0 46px;
  background: #f8fafc;
}
.contact-form-cta-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.cf-left h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #0b1f3a;
}
.cf-left p {
  margin: 0 0 14px;
  color: #55657c;
}
.cf-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.cf-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: #0f2a42;
  font-weight: 700;
}
.cf-points i { color: var(--accent); }
.cf-right {
  display: flex;
  justify-content: flex-end;
}
.cf-card {
  background: #fff;
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 16px 36px rgba(15,31,58,0.10);
  width: 100%;
}
.cf-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: #0b1f3a;
}
.cf-form {
  display: grid;
  gap: 12px;
}
.cf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.cf-form input,
.cf-form textarea {
  width: 100%;
  border: 1px solid #dfe6f2;
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}
.cf-form input:focus,
.cf-form textarea:focus { outline: 2px solid rgba(31,111,91,.25); border-color: var(--accent); }
.cf-status { min-height: 18px; color: var(--accent); font-weight: 700; }
.cf-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 11px 18px;
  border-radius: 999px;
}
@media (max-width: 860px) {
  .contact-form-cta-inner { grid-template-columns: 1fr; }
  .cf-right { justify-content: stretch; }
}
@media (max-width: 640px) {
  .contact-form-cta { padding: 46px 0 40px; }
  .cf-grid { grid-template-columns: 1fr; }
}
/* Product hero */
.product-hero { background: #fff; padding: 90px 0; }
.product-hero-wrap { display: flex; align-items: center; gap: 40px; }
.product-hero-media, .product-hero-content { flex: 1 1 50%; }
.product-hero-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 38px rgba(8, 25, 43, 0.16);
  background: #e9eff6;
}
.product-hero-title { font-size: clamp(2.1rem, 3vw, 2.8rem); margin-bottom: 16px; }
.product-hero-desc { color: var(--muted); font-size: 1.05rem; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  gap: 12px;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary);
}
.hero-points .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cta), var(--accent));
  box-shadow: 0 0 0 6px rgba(10, 179, 163, 0.12);
  flex-shrink: 0;
}

/* Product gallery */
.gallery-section { background: #fff; padding: 72px 0; }
.gallery-shell { max-width: 1080px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(15,31,58,0.14);
  background: #eef3fa;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(8,25,43,0.05), transparent);
  pointer-events: none;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-card:hover img { transform: scale(1.03); }

/* Product specs */
.specs-section { background: #f5f7fb; padding: 80px 0; }
.specs-shell { max-width: 760px; margin: 0 auto; }
.section-head.narrow { text-align: center; margin-bottom: 28px; }
.specs-table {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 31, 58, 0.08);
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e7edf6;
}
.spec-row:last-child { border-bottom: none; }
.spec-row.alt { background: #f9fbff; }
.spec-label { font-weight: 700; color: var(--primary); }
.spec-value { color: var(--muted); font-weight: 600; }

/* Product overview */
.overview-section { background: #f7fafc; padding: 80px 0; }
.overview-shell {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4eaf3;
  border-radius: 18px;
  padding: 32px 34px;
  box-shadow: 0 18px 36px rgba(15, 31, 58, 0.12);
}
.overview-head { margin-bottom: 18px; }
.overview-head h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}
.overview-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
  display: grid;
  gap: 14px;
}

/* Vision Mission Values */
.vision-mission-section { background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 60%); }
.vision-mission-section .section-head.left { text-align: center; max-width: 780px; margin: 0 auto 26px; }
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.vm-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15,31,58,0.12);
  display: flex;
  flex-direction: column;
  border: 1px solid #e6ecf4;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  height: 100%;
}
.vm-media { position: relative; }
.vm-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .3s ease;
}
.vm-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
}
.vm-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.vm-body h3 { margin: 0; color: #0f1b2b; }
.vm-body p { margin: 0; color: #526078; line-height: 1.7; flex: 1 1 auto; }
.vm-body strong { color: #0f1b2b; }
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 46px rgba(15,31,58,0.18);
  border-color: rgba(31, 95, 174, 0.22);
}
.vm-card:hover .vm-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.vm-card:hover .vm-label {
  background: linear-gradient(135deg, #0d3a66, #1f5fae);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 58, 114, 0.24);
}
.vm-card:hover .vm-body h3 {
  color: #103a72;
}

/* Journey timeline */
.journey-section { background: var(--surface-alt); }
.journey-section .section-head { text-align: center; max-width: 780px; margin: 0 auto 40px; }
.journey-section h2 { margin-bottom: 6px; letter-spacing: 0.6px; }
.journey-section .lead { color: var(--muted); }
.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 10px 0 10px 0;
}
.journey-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #0B1F3A 0%, #1F3C88 100%);
  transform: translateX(-50%);
  border-radius: 999px;
}
.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 120px;
}
.journey-item:nth-child(odd) { grid-template-columns: 1fr 1fr; }
.journey-item:nth-child(even) { grid-template-columns: 1fr 1fr; }
.journey-dot {
  position: absolute;
  left: 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transform: translate(-50%, 0);
  border: 6px solid var(--surface-alt);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.journey-item:nth-child(1) .journey-dot { background: var(--accent); }
.journey-item:nth-child(2) .journey-dot { background: #1F3C88; }
.journey-item:nth-child(3) .journey-dot { background: #0B1F3A; }
.journey-item:nth-child(4) .journey-dot { background: rgba(0,169,157,.8); }
.journey-item:nth-child(5) .journey-dot { background: #1B4D76; }
.journey-item:nth-child(6) .journey-dot { background: #0D3A66; }
.journey-item:nth-child(7) .journey-dot { background: #0B1F3A; }
.journey-item:nth-child(8) .journey-dot { background: #1B4D76; }
.journey-item-future .journey-dot {
  background: linear-gradient(135deg, #00a99d, #1f78c8);
  box-shadow: 0 14px 32px rgba(16, 97, 156, 0.28);
}
.journey-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 18px 32px rgba(15,31,58,0.12);
  border: 1px solid #e7ebf2;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.journey-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.05);
}
.journey-item:nth-child(odd) .journey-card { grid-column: 2; margin-left: 18px; }
.journey-item:nth-child(odd) .journey-card::before { left: -8px; }
.journey-item:nth-child(even) .journey-card { grid-column: 1; margin-right: 18px; }
.journey-item:nth-child(even) .journey-card::before { right: -8px; }
.journey-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(15,31,58,0.16); }
.journey-year {
  font-weight: 800;
  color: #0f1b2b;
  font-size: 1.25rem;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.journey-card h3 {
  margin: 0 0 8px;
  color: #0f1b2b;
}
.journey-card p {
  margin: 0;
  color: #4f627a;
  line-height: 1.65;
}
.journey-item-future .journey-card {
  background: #fff;
  border-color: rgba(31, 120, 200, 0.22);
  box-shadow: 0 22px 44px rgba(21, 91, 152, 0.14);
}
.journey-item-future .journey-card::before {
  background: #fff;
}
.journey-item-future .journey-year {
  color: #1270b8;
}
.journey-item-future .journey-card h3 {
  color: #0a3f73;
}
.journey-item-future .journey-card p {
  color: #486684;
}

/* Trim extra gap before footer on products page */
body[data-page="products"] .section:last-of-type {
  padding-bottom: 36px;
}

/* Footer */
.site-footer {
  color: #dfe7f1;
  margin-top: 0;
  background: #0b1f3a;
  font-size: 15px;
}
.site-footer .container {
  width: min(1080px, 90%);
  margin: 0 auto;
}
.footer-brand-column {
  padding-right: 18px;
}
.footer-links-column,
.footer-contact-column {
  padding-top: 10px;
}
.footer-logo-main-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  margin: 2px 0 18px;
}
.footer-logo-main {
  width: 102px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.14));
}
.footer-brand-text {
  gap: 5px;
}
.footer-brand-title {
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
}
.footer-brand-tagline {
  color: rgba(233,238,247,0.82);
  font-size: clamp(10px, 1vw, 11.5px);
  line-height: 1.35;
  letter-spacing: 0.7px;
}
.footer-socials-inline {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-socials-inline a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.footer-socials-inline a i { font-size: 17px; line-height: 1; }
.footer-socials-inline a:hover {
  background: #1ab8a6;
  color: #0b1f3a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.site-footer a { color: #e5edf7; transition: color .2s ease, opacity .2s ease; }
.site-footer a:hover { color: #9fe3d9; opacity: 0.94; transform: translateY(-1px); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.7fr) minmax(260px, 1fr);
  column-gap: 56px;
  row-gap: 24px;
  padding: 44px 0 28px;
  align-items: start;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer h4 {
  color: #ffffff;
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-underline {
  display: inline-block;
  width: 76px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin: 6px 0 16px;
}
.footer-text {
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
  max-width: 330px;
  font-size: 14px;
  margin: 0;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; color: rgba(233,238,247,0.82); }
.site-footer li { margin-bottom: 10px; }
.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-column li,
.footer-contact li {
  margin-bottom: 0;
}
.footer-links-column a {
  font-size: 15px;
  line-height: 1.5;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.6;
}
.footer-icon { width: 20px; text-align: center; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: rgba(229,237,247,0.9); }
.footer-contact .footer-icon {
  margin-top: 3px;
}
.footer-icon svg { width: 18px; height: 18px; }
.footer-bottom {
  background: rgba(255,255,255,0.06);
  padding: 16px 0;
  color: rgba(233,238,247,0.82);
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy { text-align: center; }

/* Floating action buttons */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1200;
}
.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform .3s ease, box-shadow .3s ease, opacity .2s ease;
}
.fab-btn svg { width: 22px; height: 22px; display: block; }
.back-to-top span { font-size: 22px; line-height: 1; }
.fab-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.back-to-top {
  background: var(--primary);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* WhatsApp FAB (matches back-to-top sizing/behavior) */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 160px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}
.wa-fab.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.wa-fab:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
}
.wa-fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.35), 0 6px 15px rgba(0, 0, 0, 0.25);
}
.wa-fab i {
  font-size: 22px;
  line-height: 1;
}
.wa-fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #0b1413;
  color: #d6e5e1;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.wa-fab:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  opacity: 0;
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(0.7); opacity: 0.55; }
  60% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 640px) {
  .wa-fab {
    right: 16px;
    bottom: 140px;
    width: 48px;
    height: 48px;
  }
  .wa-fab i { font-size: 22px; }
}

/* Reveal animation */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
