/* ============================================================
   CIFTech Solutions Pvt. Ltd. — Global Stylesheet
   Brand Colors: Red #CC0000 | Green #006633 | Dark #1A1A2E
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap");

:root {
  --red: #cc0000;
  --red-dk: #990000;
  --green: #006633;
  --green-lt: #008844;
  --dark: #2a2f52;
  --dark2: #232a4d;
  --mid: #2d2d2d;
  --light: #f4f6f9;
  --white: #ffffff;
  --muted: #6c757d;
  --border: #e2e8f0;
  --sh: 0 4px 24px rgba(0, 0, 0, 0.08);
  --sh-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --r: 14px;
  --r-lg: 22px;
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--mid);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
a {
  text-decoration: none;
  transition: color var(--tr);
}
img {
  max-width: 100%;
  display: block;
}

/* ── Layout ── */
.sp {
  padding: 88px 0;
}
.sp-sm {
  padding: 56px 0;
}
.bg-light {
  background: var(--light);
}

/* ── Typography ── */
.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: 0;
  text-wrap: balance;
}
.sec-title span {
  color: var(--green);
}
.sec-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}
.divider {
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  border-radius: 4px;
  margin: 15px auto 26px;
}
.divider-l {
  margin: 15px 0 26px;
}
.txt-red {
  color: var(--red) !important;
}
.txt-green {
  color: var(--green) !important;
}

/* ── Buttons ── */
.btn-red {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  border-radius: 50px;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  display: inline-block;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-red:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(204, 0, 0, 0.35);
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-green:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 102, 51, 0.35);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50px;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-outline-w:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  padding: 32px 26px;
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--tr);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: var(--red);
}
.card.card-green:hover {
  border-color: var(--green);
}
.card-link {
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--tr);
}
.card-link:hover {
  gap: 9px;
}
.card-link.red {
  color: var(--red);
}
.card-link.green {
  color: var(--green);
}

/* ── Icon Box ── */
.ib {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.ib-red {
  background: rgba(204, 0, 0, 0.09);
  color: var(--red);
}
.ib-green {
  background: rgba(0, 102, 51, 0.09);
  color: var(--green);
}

/* ── Reveal Animations ── */
.rv,
.rv-l,
.rv-r {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rv {
  transform: translateY(34px);
}
.rv-l {
  transform: translateX(-44px);
}
.rv-r {
  transform: translateX(44px);
}
.rv.on,
.rv-l.on,
.rv-r.on {
  opacity: 1;
  transform: translate(0);
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.28s;
}
.d4 {
  transition-delay: 0.38s;
}
.d5 {
  transition-delay: 0.48s;
}

/* ── Keyframes ── */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(204, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
  }
}
@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(16px, -16px) scale(1.05);
  }
}
@keyframes haIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBob {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(11px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes slideEnter {
  from {
    opacity: 0;
    transform: translateX(80px) scale(1.03);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideExit {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-80px) scale(0.97);
  }
}
@keyframes captionIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes testiScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Back to Top ── */
#btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.4);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#btt.show {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
      NAVBAR
      ============================================================ */
.navbar {
  background: rgba(42, 47, 82, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0px 0;
  transition: all 0.4s ease;
  border-bottom: 2px solid transparent;
}
.navbar.scrolled {
  padding: 0px 0;
  /* border-bottom: 2px solid var(--red); */
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
}
.navbar-brand img {
  height: 76px;
  border-radius: 8px;
  padding: 1px 9px;
  transition: height 0.3s;
}
.navbar-nav .nav-item {
  margin: 0 2px;
}
.navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: all var(--tr);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--tr);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 24px);
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  margin-left: 8px;
  font-size: 0.82rem !important;
}
.nav-cta:hover {
  background: var(--red-dk) !important;
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.4);
}
.nav-cta::after {
  display: none !important;
}
.navbar-toggler {
  border: 2px solid rgba(204, 0, 0, 0.45);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
      HERO — BG IMAGE SLIDER
      ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 40px;
}

/* ---------- Slider container ---------- */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---------- Individual slide ---------- */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(80px) scale(1.04);
  transition:
    opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.hero-slide.exit {
  opacity: 0;
  transform: translateX(-80px) scale(0.97);
}

/* Local hero slider images */
.slide-1 {
  background-image: url("../images/herosection/backgroundimage.png");
}

/* ---------- Dark gradient overlay (keeps text readable on any image) ---------- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(10, 10, 28, 0.9) 0%,
    rgba(22, 33, 62, 0.8) -10%,
    rgba(10, 10, 33, 0.5654) 64%
  );
}

/* ---------- Grid pattern (sits above overlay) ---------- */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(204, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---------- Decorative orbs ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbDrift 8s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.orb1 {
  width: 500px;
  height: 500px;
  background: var(--red);
  top: -180px;
  right: -80px;
}
.orb2 {
  width: 340px;
  height: 340px;
  background: var(--green);
  bottom: -140px;
  left: -80px;
  animation-delay: 3s;
}
.orb3 {
  width: 200px;
  height: 200px;
  background: var(--red);
  top: 55%;
  left: 42%;
  animation-delay: 5s;
}

/* ---------- Hero content (above everything) ---------- */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* ---------- Hero badge ---------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(204, 0, 0, 0.14);
  border: 1px solid rgba(204, 0, 0, 0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff7070;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

/* ---------- Hero text ---------- */
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.35rem, 3.5vw, 2.45rem);
  font-weight: 550;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0;
  margin-top: 42px;
  margin-bottom: 22px;
  max-width: 720px;
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}
.hero-title .ac-r,
.hero-title .ac-g {
  display: inline;
  font-weight: 800;
}
.hero-title .ac-r {
  color: #ff5b5b;
}
.hero-title .ac-g {
  color: #5ee09a;
}
.hero-sub {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
  text-wrap: pretty;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 40px;
}

/* ---------- Hero stats ---------- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 49px;
}
.hero-stat {
  padding: 0 20px 0 0;
}
.hero-stat:first-child {
  padding-left: 0;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 20px 0 0;
}
.stat-n {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-n span {
  color: var(--red);
}
.stat-l {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.46);
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* ---------- Hero caption card (desktop right col) ---------- */
.hero-caption-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 290px;
  width: 100%;
  animation: captionIn 0.5s ease both;
}
.hcc-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: #fff;
}
.hcc-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.hcc-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.hcc-product {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
}

/* ---------- Slide dots ---------- */
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
  outline: none;
}
.hero-dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.6);
}
.hero-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--red);
  border-color: var(--red);
}

/* ---------- Hero entrance animations ---------- */
.ha {
  animation: haIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ha1 {
  animation-delay: 0.1s;
}
.ha2 {
  animation-delay: 0.25s;
}
.ha3 {
  animation-delay: 0.4s;
}
.ha4 {
  animation-delay: 0.55s;
}
.ha5 {
  animation-delay: 0.7s;
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 20;
}
.scroll-mouse {
  width: 23px;
  height: 37px;
  border: 2px solid rgba(255, 255, 255, 0.23);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px;
  height: 7px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollBob 2s ease-in-out infinite;
}

/* ============================================================
      TRUSTED BY BAR
      ============================================================ */
.trusted-bar {
  background: #fff;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.trusted-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  opacity: 0.42;
}
.trusted-logos span {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--mid);
  white-space: nowrap;
}
.client-stats .row > [class*="col-"] {
  display: flex;
}
.client-stats .row > [class*="col-"] > div {
  width: 100%;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.client-stats .row > [class*="col-"] > div > div:first-child {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* ============================================================
      ABOUT SECTION
      ============================================================ */
.about-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--light);
}
.about-highlight i {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-highlight.red {
  border-left: 4px solid var(--red);
}
.about-highlight.green {
  border-left: 4px solid var(--green);
}
.about-highlight strong {
  font-size: 0.92rem;
  display: block;
  margin-bottom: 3px;
}
.about-highlight p {
  color: var(--muted);
  font-size: 0.83rem;
  margin: 0;
}

.numbers-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: 22px;
  padding: 38px;
}
.numbers-panel h5 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 0.98rem;
  font-family: "Montserrat", sans-serif;
}
.num-box {
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.num-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 18% 12%,
    rgba(255, 255, 255, 0.16),
    transparent 42%
  );
  opacity: 0;
  transition: opacity var(--tr);
  pointer-events: none;
}
.num-box.red {
  background: rgba(204, 0, 0, 0.12);
}
.num-box.green {
  background: rgba(0, 102, 51, 0.12);
}
.num-box.featured-num {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(0, 0, 0, 0.14);
}
.num-box.featured-num:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.22);
}
.num-box.featured-num:hover::before {
  opacity: 1;
}
.num-val {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.num-box.red .num-val {
  color: var(--red);
}
.num-box.green .num-val {
  color: #44dd88;
}
.num-lbl {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 600;
  margin-top: 7px;
  position: relative;
  z-index: 1;
}
.numbers-quote {
  margin-top: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--red);
}
.numbers-quote p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  margin: 0;
  font-style: italic;
}
.numbers-quote-attr {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 7px;
  font-weight: 600;
}

/* ============================================================
      TESTIMONIALS
      ============================================================ */
.testi-marquee {
  overflow: hidden;
  position: relative;
  padding: 6px 0 12px;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}
.testi-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testiScroll 42s linear infinite;
  will-change: transform;
}
.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}
.testi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  height: 100%;
}
.testi-track .testi {
  width: 360px;
  min-height: 292px;
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi.featured {
  border-color: rgba(204, 0, 0, 0.35);
}
.testi-stars {
  color: #ffd700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.testi-quote {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
}
.testi-role {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}
.client-voices-section > .container > .row.g-4 {
  display: none;
}

/* ============================================================
      CTA BANNER
      ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(80, 0, 0, 0.82), rgba(10, 10, 28, 0.78)),
    url("../images/officeimage.jpg") center center / cover no-repeat;
  padding: 86px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(204, 0, 0, 0.64) 0%,
    rgba(153, 0, 0, 0.58) 48%,
    rgba(26, 26, 46, 0.74) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}
.cta-banner .container {
  z-index: 2;
}
.cta-icon {
  font-size: 2.8rem;
  margin-bottom: 13px;
}
.cta-title {
  color: #fff;
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 520;
  margin-bottom: 13px;
  line-height: 1.25;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--tr);
  display: inline-block;
}
.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   /* ============================================================
      PAGE HEADER (inner pages)
      ============================================================ */
.page-hdr {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 138px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hdr::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hdr.about-hero {
  background: url("../images/herosection/backgroundimage1.png") center center / cover
    no-repeat;
}
.page-hdr .sec-title {
  font-size: clamp(2.15rem, 4.6vw, 2.45rem) !important;
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 0;
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}
.page-hdr .sec-title span {
  color: #5ee09a;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
  font-size: 0.8rem;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
      FOOTER
      ============================================================ */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 68px 0 0;
}
.ft-logo img {
  height: 80px;
  border-radius: 8px;
  padding: 1px 9px;
  margin-bottom: 16px;
}
.ft-desc {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.ft-iso {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 51, 0.2);
  border: 1px solid rgba(0, 102, 51, 0.4);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.74rem;
  color: #44cc88;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.ft-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  margin-right: 7px;
  transition: all var(--tr);
}
.ft-social a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
}
.ft-h {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.ft-h::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  border-radius: 3px;
}
.ft-links {
  list-style: none;
  padding: 0;
}
.ft-links li {
  margin-bottom: 8px;
}
.ft-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ft-links a::before {
  content: "›";
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
}
.ft-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.ft-ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 13px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
}
.ft-ci-icon {
  color: var(--red);
  font-size: 0.92rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ft-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.ft-bottom a {
  color: rgba(255, 255, 255, 0.55);
}
.ft-bottom a:hover {
  color: var(--red);
}

/* ============================================================
      PRODUCTS PAGE
      ============================================================ */
.prod-tabs {
  background: var(--dark);
  padding: 14px 0;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.prod-tab {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.25s;
  white-space: nowrap;
}
.prod-tab:hover,
.prod-tab.active {
  background: rgba(204, 0, 0, 0.18);
  color: #fff;
}
.prod-section {
  padding: 78px 0;
  border-bottom: 1px solid var(--border);
}
.prod-section:last-of-type {
  border-bottom: none;
}
.prod-section:nth-child(even) {
  background: var(--light);
}
.prod-visual {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 310px;
}
.prod-emoji {
  font-size: 4.5rem;
  margin-bottom: 18px;
}
.prod-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  width: 100%;
}
.prod-mod {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prod-mod .md {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pb-red {
  background: rgba(204, 0, 0, 0.1);
  color: var(--red);
  border: 1px solid rgba(204, 0, 0, 0.2);
}
.pb-green {
  background: rgba(0, 102, 51, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 102, 51, 0.2);
}
.ftag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(204, 0, 0, 0.07);
  border: 1px solid rgba(204, 0, 0, 0.14);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  font-family: "Montserrat", sans-serif;
  transition: all 0.25s;
}
.ftag:hover {
  background: rgba(204, 0, 0, 0.12);
  border-color: var(--red);
}
.ftag.g {
  background: rgba(0, 102, 51, 0.07);
  border-color: rgba(0, 102, 51, 0.14);
}
.ftag.g:hover {
  background: rgba(0, 102, 51, 0.12);
  border-color: var(--green);
}
.ftag i {
  color: var(--red);
  font-size: 0.85rem;
}
.ftag.g i {
  color: var(--green);
}
.tech-pill {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 5px 13px;
  font-size: 0.76rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: inline-block;
  margin: 3px;
}

/* ============================================================
      ABOUT PAGE
      ============================================================ */
.tl-line {
  position: relative;
  padding-left: 28px;
  border-left: 2px dashed rgba(204, 0, 0, 0.22);
  margin-left: 20px;
}
.tl-dot {
  position: absolute;
  left: -13px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.val-card {
  border-radius: var(--r);
  padding: 26px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  transition: all var(--tr);
  height: -webkit-fill-available;
}
.val-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.val-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 13px;
}
.team-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  text-align: center;
  transition: all var(--tr);
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 92px;
  background: linear-gradient(
    135deg,
    rgba(204, 0, 0, 0.12),
    rgba(0, 102, 51, 0.12)
  );
  pointer-events: none;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--red);
}
.team-photo {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.16);
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center 38%,
      rgba(255, 255, 255, 0.9) 0 17px,
      transparent 18px
    ),
    radial-gradient(
      ellipse at center 82%,
      rgba(255, 255, 255, 0.84) 0 34px,
      transparent 35px
    ),
    linear-gradient(135deg, var(--dark), var(--dark2));
}
.team-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(204, 0, 0, 0.12);
  background: var(--light);
}
.team-photo img[src=""] {
  display: none;
}
.team-name {
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  font-size: 1.05rem;
  color: var(--dark);
}
.team-role {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  padding: 5px 16px;
  border-radius: 50px;
  background: rgba(0, 102, 51, 0.09);
  color: var(--green);
  border: 1px solid rgba(0, 102, 51, 0.16);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cert-card {
  background: #fff;
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--tr);
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--green);
}

/* ============================================================
      SERVICES PAGE
      ============================================================ */
.svc-card {
  border-radius: var(--r-lg);
  padding: 32px;
  height: 100%;
  background: #fff;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  transition: all var(--tr);
}
.svc-card.g {
  border-left-color: var(--green);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  margin-bottom: 9px;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.checklist li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
      CLIENTS PAGE
      ============================================================ */
.sector-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 230px;
  cursor: pointer;
  transition: all var(--tr);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.sector-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  position: relative;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
}
.sector-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.82));
}
.sector-emoji {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.8rem;
  opacity: 0.42;
  transition: all 0.3s;
}
.sector-card:hover .sector-emoji {
  opacity: 0.8;
  transform: scale(1.1);
}
.sector-content {
  position: relative;
  z-index: 1;
}
.sector-tag {
  background: var(--red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 6px;
}
.sector-tag.g {
  background: var(--green);
}
.client-box {
  background: #fff;
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--tr);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--red);
}

/* ============================================================
      CONTACT PAGE
      ============================================================ */
.info-card {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 36px;
  color: #fff;
  height: 100%;
}
.ci-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(204, 0, 0, 0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.frm-lbl {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.81rem;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}
.frm-ctrl {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 9px;
  font-size: 0.88rem;
  font-family: "Open Sans", sans-serif;
  color: var(--mid);
  outline: none;
  transition: border-color 0.25s;
  background: #fff;
}
.frm-ctrl:focus {
  border-color: var(--red);
}
textarea.frm-ctrl {
  min-height: 122px;
  resize: vertical;
}
.frm-success {
  display: none;
  background: rgba(0, 102, 51, 0.1);
  border: 1px solid var(--green);
  border-radius: 9px;
  padding: 14px 18px;
  color: var(--green);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
}

/* ============================================================
      PROCESS STEPS
      ============================================================ */
.ps-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps-item {
  display: flex;
  gap: 16px;
  padding-bottom: 26px;
  position: relative;
  padding-left: 16px;
  border-left: 2px dashed rgba(204, 0, 0, 0.22);
  margin-left: 20px;
}
.ps-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.ps-dot {
  position: absolute;
  left: -13px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

/* ============================================================
      RESPONSIVE
      ============================================================ */
@media (max-width: 1199px) {
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 991px) {
  .sp {
    padding: 62px 0;
  }
  .sp-sm {
    padding: 36px 0;
  }
  .hero {
    padding-top: 92px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 8px;
  }
  .hero-stat {
    padding: 0 12px 0 0;
  }
  .hero-stat-divider {
    margin: 0 12px 0 0;
  }
  .stat-n {
    font-size: 1.5rem;
  }
  .orb {
    opacity: 0.07;
  }

  #mainNav .navbar-collapse {
    background: var(--dark2);
    border-radius: var(--r);
    padding: 13px;
    margin-top: 9px;
    border: 1px solid rgba(204, 0, 0, 0.2);
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 7px;
  }
}

@media (max-width: 767px) {
  .sp {
    padding: 46px 0;
  }
  .sec-title {
    font-size: 1.65rem;
  }
  .hero-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  .hero-stats {
    gap: 4px;
  }
  .hero-stat {
    padding: 0 8px 0 0;
  }
  .hero-stat-divider {
    margin: 0 8px 0 0;
    height: 28px;
  }
  .stat-n {
    font-size: 1.3rem;
  }
  .stat-l {
    font-size: 0.66rem;
  }
  .hero-dots {
    bottom: 18px;
  }
  /* Heavier overlay on mobile for text contrast */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      110deg,
      rgba(10, 10, 28, 0.9) 0%,
      rgba(22, 33, 62, 0.8) -10%,
      rgba(10, 10, 33, 0.5654) 64%
    );
  }
  .trusted-logos span {
    font-size: 0.8rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 14px;
  }

  .testi-track {
    gap: 16px;
    animation-duration: 50s;
  }

  .testi-track .testi {
    width: 300px;
    min-height: 318px;
    flex-basis: 300px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 22px;
  }
  .hero-stat {
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
  }
  .hero-stat-divider {
    display: none;
  }
}
.ft-ci a:hover {
  color: var(--red) !important;
}

/* ============================================================
   GOOGLE MAP — RESPONSIVE EMBED
   ============================================================ */
.map-section {
  background: var(--light);
  padding: 0 0 72px;
}

.map-info {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  padding: 34px;
}

.map-title {
  font-size: 1.55rem;
  margin-bottom: 0;
}

.map-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.map-detail i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(204, 0, 0, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-detail + .map-detail i {
  background: rgba(0, 102, 51, 0.1);
  color: var(--green);
}

.map-detail p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  background: #fff;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .map-section {
    padding-bottom: 58px;
  }
  .map-wrap {
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .map-section {
    padding-bottom: 44px;
  }
  .map-info {
    padding: 24px 20px;
  }
  .map-wrap {
    height: 290px;
    min-height: 290px;
    border-width: 6px;
  }
}

/* ============================================================
   MOBILE RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 991px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    padding: 4px 0;
  }

  .navbar-brand img,
  .ft-logo img {
    height: 58px;
  }

  #mainNav .navbar-collapse {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar-nav .nav-link {
    padding: 11px 12px !important;
  }

  .nav-cta {
    display: block;
    text-align: center;
  }

  .page-hdr {
    padding: 112px 0 52px;
  }

  .divider-l {
    margin-left: auto;
    margin-right: auto;
  }

  .prod-section {
    padding: 56px 0;
  }

  .prod-section .row,
  .sp .row {
    --bs-gutter-y: 2rem;
  }

  .prod-visual,
  .info-card,
  .svc-card,
  .numbers-panel,
  .card {
    padding: 26px 22px;
  }

  .footer {
    padding-top: 48px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.65;
  }

  .sp {
    padding: 42px 0;
  }

  .sp-sm {
    padding: 30px 0;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 2px;
  }

  .sec-title {
    font-size: clamp(1.48rem, 7vw, 2rem);
    text-align: center;
  }

  .sec-desc {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
    padding-bottom: 52px;
  }

  .hero-title {
    margin-top: 12px;
    font-size: clamp(1.75rem, 10vw, 2.45rem);
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-btns {
    margin-bottom: 26px;
  }

  .hero-btns .btn-red,
  .hero-btns .btn-outline-w,
  .cta-banner .btn-outline-w,
  .cta-banner .btn-cta-ghost {
    width: 100%;
    max-width: 290px;
    text-align: center;
  }

  .hero-grid {
    background-size: 42px 42px;
  }

  .hero-dots {
    bottom: 12px;
  }

  .trusted-bar {
    padding: 26px 0;
  }

  .trusted-label {
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .trusted-logos {
    gap: 10px;
  }

  .trusted-logos span {
    width: 100%;
    text-align: center;
  }

  .page-hdr {
    padding: 104px 0 42px;
    text-align: center;
  }

  .breadcrumb {
    justify-content: center;
    margin-bottom: 8px;
  }

  .card,
  .val-card,
  .team-card,
  .cert-card,
  .svc-card,
  .testi,
  .info-card,
  .numbers-panel {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .ib,
  .val-icon {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .about-highlight {
    padding: 12px;
  }

  .team-photo {
    width: 112px;
    height: 112px;
    margin-bottom: 16px;
  }

  .num-box {
    padding: 16px 10px;
  }

  .num-val {
    font-size: 1.55rem;
  }

  .prod-visual {
    min-height: auto;
    padding: 24px 18px;
  }

  .prod-emoji {
    font-size: 3.4rem;
    margin-bottom: 14px;
  }

  .prod-modules {
    grid-template-columns: 1fr;
  }

  .prod-mod,
  .ftag,
  .tech-pill {
    width: 100%;
    min-width: 0;
  }

  .prod-mod,
  .ftag {
    overflow-wrap: anywhere;
  }

  .prod-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
    text-align: center;
    justify-content: center;
  }

  .sector-card {
    height: 190px;
  }

  .sector-bg {
    padding: 18px;
  }

  .client-box {
    min-height: 104px;
    padding: 16px 10px;
  }

  .ci-row,
  .ft-ci {
    gap: 10px;
  }

  .ci-icon {
    width: 38px;
    height: 38px;
  }

  .frm-ctrl {
    font-size: 16px;
  }

  .cta-banner {
    padding: 52px 0;
  }

  .cta-title {
    font-size: 1.55rem;
  }

  .footer .row {
    --bs-gutter-y: 2rem;
  }

  .ft-bottom {
    margin-top: 34px;
  }

  .ft-bottom p {
    line-height: 1.7;
  }

  #btt {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .navbar-brand img,
  .ft-logo img {
    height: 66px;
  }

  .navbar-toggler {
    padding: 5px 8px;
  }

  .hero {
    padding-top: 86px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stat-l {
    white-space: normal;
  }

  .btn-red,
  .btn-green,
  .btn-outline-w,
  .btn-cta-ghost {
    width: 100%;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-center.mt-5.rv .btn-red,
  .text-center.mt-5.rv .btn-green {
    display: block;
    margin: 0 0 12px !important;
  }

  .page-hdr {
    padding-top: 92px;
  }

  .breadcrumb {
    font-size: 0.72rem;
  }

  .sec-title {
    font-size: clamp(1.38rem, 8vw, 1.85rem);
  }

  .prod-section {
    padding: 44px 0;
  }

  .tl-line {
    margin-left: 12px;
    padding-left: 20px;
  }

  .ps-item {
    margin-left: 12px;
    padding-left: 12px;
    gap: 10px;
  }

  .footer {
    text-align: left;
  }

  .footer .col-6 {
    width: 100%;
  }

  .ft-social a {
    margin-right: 5px;
  }

  .ft-ci a,
  .ft-ci span,
  .ci-row a,
  .ci-row div {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testi-track {
    animation: none;
    width: 100%;
    scroll-snap-type: x mandatory;
  }

  .testi-track .testi {
    scroll-snap-align: start;
  }
}

/* ============ HIMS MODULE CATALOGUE ============ */
.hims-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  padding: 20px;
  margin-bottom: 28px;
}
.hims-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.hims-col {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.hims-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.hims-head {
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  line-height: 1.3;
  text-align: center;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 88px;
  justify-content: center;
}
.hims-col:nth-child(even) .hims-head {
  background: linear-gradient(135deg, var(--green), #004422);
}
.hims-head i {
  font-size: 1.3rem;
}
.hims-body {
  background: var(--dark);
  flex: 1;
}
.hims-item {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  padding: 11px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.4;
}

/* ── Tablet: 3 columns ── */
@media (max-width: 991px) {
  .hims-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Mobile: stacked single-column "accordion" style cards ── */
@media (max-width: 767px) {
  .hims-wrap {
    padding: 14px;
    border-radius: var(--r);
  }
  .hims-catalog {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hims-col {
    border-radius: 10px;
  }
  .hims-head {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    min-height: unset;
    padding: 12px 14px;
    font-size: 0.82rem;
    gap: 10px;
  }
  .hims-head i {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .hims-body {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
  }
  .hims-item {
    border-top: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 0.72rem;
    width: auto;
  }
}

/* ============================================================
   PRODUCT IMAGE CARD — Interactive image replacement
   ============================================================ */
.prod-img-card {
  position: relative;
  padding: 10px;
}

.prod-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--sh-lg);
  border: 6px solid #fff;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}

.prod-img-frame img {
  width: 100%;
  height: 100%;
  /* min-height: 340px; */
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-img-frame:hover img {
  transform: scale(1.08);
}

.prod-img-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0) 55%,
    rgba(26, 26, 46, 0.55) 100%
  );
  pointer-events: none;
}

/* Floating stat chips */
.prod-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--sh-lg);
  padding: 12px 16px;
  animation: float 4s ease-in-out infinite;
}

.prod-float i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: rgba(204, 0, 0, 0.1);
  color: var(--red);
  flex-shrink: 0;
}

.prod-float:nth-child(3) i {
  background: rgba(0, 102, 51, 0.1);
  color: var(--green);
}
.prod-float:nth-child(4) i {
  background: rgba(204, 0, 0, 0.1);
  color: var(--red);
}

.pf-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.1;
}

.pf-lbl {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.pf-1 {
  top: -14px;
  left: -14px;
  animation-delay: 0s;
}
.pf-2 {
  bottom: 30px;
  right: -18px;
  animation-delay: 1.3s;
}
.pf-3 {
  bottom: -14px;
  left: 24px;
  animation-delay: 2.4s;
}

@media (max-width: 767px) {
  .prod-img-frame {
    min-height: 260px;
  }
  /* .prod-img-frame img { min-height: 260px; } */
  .prod-float {
    padding: 9px 12px;
    gap: 7px;
  }
  .prod-float i {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .pf-num {
    font-size: 0.92rem;
  }
  .pf-lbl {
    font-size: 0.62rem;
  }
  .pf-1 {
    top: -10px;
    left: -10px;
  }
  .pf-2 {
    bottom: 16px;
    right: -12px;
  }
  .pf-3 {
    bottom: -10px;
    left: 14px;
  }
}



/* ============================================================
   REPLACE the existing block in style.css that starts with:
     .catalog-wrap { overflow-x: auto; ... }
   and ends after:
     .catalog-col .catalog-item:last-child { border-radius: 0 0 10px 10px; }

   Same colors (#8fa887 heads / #a6987f items) — switched from
   a horizontal-scrolling flex row to a responsive grid, so it wraps
   into small boxes that fit the browser width on any screen.
   Includes a staggered fade/slide-in entrance animation that plays
   on every page load/refresh.
   You can also remove the "catalog-wrap-scroll" class in the HTML
   for the STD panel — it's no longer needed since nothing scrolls.
   ============================================================ */

.catalog-wrap {
  overflow: visible;
  padding-bottom: 0;
}

.catalog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 4px 2px 12px;
}

.catalog-col {
  flex: 0 0 calc((100% - 9 * 10px) / 10);
  max-width: calc((100% - 9 * 10px) / 10);

  /* --- entrance animation --- */
  opacity: 0;
  transform: translateY(18px);
  animation: catalogColIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* ---------- Base: 10 columns per row ---------- */
.catalog-col:nth-child(10n + 1)  { animation-delay: 0.03s; }
.catalog-col:nth-child(10n + 2)  { animation-delay: 0.08s; }
.catalog-col:nth-child(10n + 3)  { animation-delay: 0.13s; }
.catalog-col:nth-child(10n + 4)  { animation-delay: 0.18s; }
.catalog-col:nth-child(10n + 5)  { animation-delay: 0.23s; }
.catalog-col:nth-child(10n + 6)  { animation-delay: 0.28s; }
.catalog-col:nth-child(10n + 7)  { animation-delay: 0.33s; }
.catalog-col:nth-child(10n + 8)  { animation-delay: 0.38s; }
.catalog-col:nth-child(10n + 9)  { animation-delay: 0.43s; }
.catalog-col:nth-child(10n + 10) { animation-delay: 0.48s; }

@keyframes catalogColIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-head {
  background: #8fa887;
  color: #1f2d1c;
  border-radius: 10px 10px 0 0;
  padding: 14px 8px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100px;
}
.catalog-head i {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: #1f2d1c;

  /* subtle pop on the icon, timed with its column's entrance */
  animation: catalogIconPop 0.4s ease-out backwards;
  animation-delay: inherit;
}
.catalog-head span {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
}

@keyframes catalogIconPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.catalog-item {
  background: #a6987f;
  color: #2b241a;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  line-height: 1.28;
}
.catalog-col .catalog-item:last-child {
  border-radius: 0 0 10px 10px;
}

/* Respect users who disable motion */
@media (prefers-reduced-motion: reduce) {
  .catalog-col,
  .catalog-head i {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive: smaller boxes on narrower screens ---------- */
@media (max-width: 991px) {
  .catalog-grid {
    gap: 8px;
  }
  .catalog-col {
    flex: 0 0 calc((100% - 5 * 8px) / 6);
    max-width: calc((100% - 5 * 8px) / 6);
  }
  .catalog-head {
    min-height: 92px;
    padding: 12px 6px 8px;
  }
  .catalog-head i {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  .catalog-head span {
    font-size: 0.74rem;
  }
  .catalog-item {
    font-size: 0.68rem;
    padding: 8px 5px;
  }
}

@media (max-width: 575px) {
  .catalog-grid {
    gap: 6px;
  }
  .catalog-col {
    flex: 0 0 calc((100% - 2 * 6px) / 3);
    max-width: calc((100% - 2 * 6px) / 3);
  }
  .catalog-head {
    min-height: 82px;
    padding: 10px 5px 7px;
  }
  .catalog-head i {
    font-size: 1.15rem;
    margin-bottom: 5px;
  }
  .catalog-head span {
    font-size: 0.68rem;
  }
  .catalog-item {
    font-size: 0.64rem;
    padding: 7px 4px;
  }
}

/* ---------- Bottom curve divider ---------- */
.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  z-index: 15;
  pointer-events: none;
  line-height: 0;
}
.hero-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-curve-fill {
  fill: var(--light);
}
.hero-curve-glow {
  fill: none;
  stroke: url(#heroCurveGradient);
  stroke-width: 2.4;
  opacity: 0.65;
  filter: drop-shadow(0 0 7px rgba(204, 0, 0, 0.45))
    drop-shadow(0 0 7px rgba(0, 102, 51, 0.35));
  animation: curveGlowPulse 4s ease-in-out infinite;
}
@keyframes curveGlowPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

@media (max-width: 767px) {
  .hero-curve {
    height: 54px;
  }
}
@media (max-width: 480px) {
  .hero-curve {
    height: 38px;
  }
}




/* ============================================================
   HERO READABILITY + GLASSMORPHISM PATCH
   Append this block to the END of css/style.css
   (same selectors, later in the cascade = these win)
   ============================================================ */

/* 1) Guaranteed contrast pool under the text — independent of
      whichever slide image is showing. This is the key fix:
      instead of relying on one flat diagonal overlay, we drop a
      soft dark "spotlight" exactly where the headline/body copy
      sits, so it never fights with faces, screens or watermark
      text baked into the photos. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    ellipse 820px 680px at 8% 46%,
    rgba(6, 8, 20, 0.88) 0%,
    rgba(6, 8, 20, 0.66) 36%,
    rgba(6, 8, 20, 0.22) 62%,
    rgba(6, 8, 20, 0) 78%
  );
}

/* 2) Slightly deepen the base overlay so every slide starts from
      a consistent contrast floor, not just the left edge. */
/* .hero-overlay {
  background:
    linear-gradient(
      110deg,
      rgba(8, 8, 22, 0.92) 0%,
      rgba(18, 26, 50, 0.84) 30%,
      rgba(8, 9, 26, 0.62) 64%,
      rgba(8, 9, 26, 0.5) 100%
    ) !important;
} */

/* 3) Crisper, layered text shadow — a tight dark edge for legibility
      plus the existing soft glow for depth. */
.hero-title {
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.55),
    0 18px 42px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* 4) Real glassmorphism for the caption card — opaque enough to read
      cleanly over ANY part of the photo (face, glass, building),
      instead of the near-transparent 7% tint that let the image
      bleed through unpredictably. */
.hero-caption-card {
  /* background: rgba(9, 12, 28, 0.58); */
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hcc-text {
  color: rgba(255, 255, 255, 0.88);
}

/* 5) Small "tech" accent — thin gradient top border on the card so it
      reads as a distinct UI surface, not a random blurred rectangle. */
.hero-caption-card {
  position: relative;
  overflow: hidden;
}
.hero-caption-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--green));
  opacity: 0.8;
}

/* 6) Stats row — nudge contrast up slightly, sits inside the same
      spotlight zone so no extra work needed, just tightening labels. */
.stat-l {
  color: rgba(255, 255, 255, 0.58);
}

/* 7) Mobile: the vignette above already stacks fine with the existing
      heavier mobile overlay, no changes needed there. */

.sector-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sector-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 30%,
    rgba(0, 0, 0, 0.88) 100%
  );
}
.sector-emoji {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 1;
  z-index: 1;
}
.sector-card:hover .sector-emoji {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON — stacked above back-to-top,
   same scroll-triggered visibility as #btt
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 78px;
  right: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr);
}
.whatsapp-float.show {
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-float:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 14px;
    bottom: 64px;
    width: 40px;
    height: 40px;
  }
}
/* ============================================================
   FOOTER — LEGAL LINKS
   ============================================================ */
.ft-legal {
  margin-top: 8px;
  font-size: 0.78rem;
}
.ft-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}
.ft-legal a:hover {
  color: var(--red);
}
.ft-legal-sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

@media (max-width: 575px) {
  .ft-legal-sep {
    margin: 0 6px;
  }
}

/* Center just the eyebrow label on mobile for the About section —
   the heading (.sec-title) and divider already center there;
   body copy/highlights/button stay left-aligned as designed. */
@media (max-width: 767px) {
  .about-copy .eyebrow {
    display: block;
    text-align: center;
  }
}

/* ============================================================
   HERO ORBIT SYSTEM — scattered product constellation
   ============================================================ */
.orbit-col {
  position: relative;
  z-index: 10;
}

.orbit-system {
  position: relative;
  width: clamp(300px, 32vw, 460px);
  aspect-ratio: 1 / 1;
  margin: 24px auto 0;
}

/* Soft dark vignette behind the tile — depth, no color, blends with hero bg */
.orbit-vignette {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, transparent 68%);
  pointer-events: none;
}

/* Faint guide circles — barely visible, just enough to read as "orbits" */
.orbit-ring-line {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ring-line-a {
  width: 56%;
  height: 56%;
}
.ring-line-b {
  width: 84%;
  height: 84%;
}

/* Center emblem — glass tile with brand glow, logo centered inside */
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  aspect-ratio: 1 / 1;
  border-radius: 26%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 40px rgba(204, 0, 0, 0.45),
    0 0 70px rgba(0, 102, 51, 0.25);
}
.orbit-core-logo {
  width: 62%;
  height: 62%;
  object-fit: contain;
}
.orbit-core-pulse {
  position: absolute;
  inset: -16%;
  border-radius: 26%;
  border: 1px solid rgba(204, 0, 0, 0.5);
  animation: pulse-ring 2.6s ease-out infinite;
}

/* Scattered buttons — placed by percentage coordinates, no rotation/rings math */
.orbit-slot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  z-index: 6;
}

.orbit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 14, 28, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.6rem, 1.5vw, 0.76rem);
  letter-spacing: 0.2px;
  padding: 0.6em 1em;
  border-radius: 50px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease;
}
.orbit-btn i {
  flex-shrink: 0;
  width: 1.8em;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.82em;
  color: var(--red);
  background: rgba(204, 0, 0, 0.14);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.orbit-slot:nth-child(odd) .orbit-btn i {
  color: var(--green);
  background: rgba(0, 102, 51, 0.16);
}

.orbit-btn:hover,
.orbit-btn:focus-visible {
  background: linear-gradient(
    135deg,
    rgba(204, 0, 0, 0.92),
    rgba(0, 102, 51, 0.88)
  );
  border-color: #fff;
  transform: translate(0, 0) scale(1.08);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.14),
    0 12px 28px rgba(204, 0, 0, 0.5);
  outline: none;
}
.orbit-btn:hover i,
.orbit-btn:focus-visible i {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .orbit-core-pulse {
    animation: none;
  }
}

/* ── Responsive scaling — only the container needs breakpoints,
      everything inside is percentage/clamp based ── */
@media (max-width: 991px) {
  .orbit-system {
    width: 360px;
    margin-top: 34px;
  }
}
@media (max-width: 767px) {
  .orbit-system {
    width: 300px;
  }
  .orbit-btn i {
    width: 1.7em;
    height: 1.7em;
  }
}
@media (max-width: 420px) {
  .orbit-system {
    width: 250px;
    margin-top: 26px;
  }
  .orbit-btn span {
    display: none;
  }
  .orbit-btn {
    padding: 0.5em;
    border-radius: 50%;
  }
  .orbit-btn i {
    width: 1.9em;
    height: 1.9em;
    margin: 0;
  }
}

/* ============================================================
   HERO CAPTION CARD — MOBILE VISIBILITY
   ============================================================ */
@media (max-width: 991px) {
  .hero-caption-card {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 22px;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 480px) {
  .hero-caption-card {
    padding: 20px 18px;
  }
  .hcc-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .hcc-text {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
}

/* ============================================================
   HERO SLIDE IMAGE — MOBILE FRAMING FIX
   ============================================================ */
@media (max-width: 767px) {
  .hero-slide {
    background-position: top center; /* keep the top of the subject in frame */
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    background-position: top center;
  }
}

.hero-sub-long {
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ============================================================
   CIFTHEALTH ET / STD EDITION UI
   Extends style.css — uses the same brand tokens (--red, --green,
   --dark, --border, --sh, --r, --r-lg) defined there.
   ============================================================ */

/* ---------- Edition intro cards (ET / STD) ---------- */
.ch-edition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.ch-edition-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--r);
  padding: 20px 20px 18px;
  box-shadow: var(--sh);
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.ch-edition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.ch-edition-card.is-primary {
  border-left-color: var(--red);
  background: linear-gradient(
    180deg,
    rgba(204, 0, 0, 0.04),
    rgba(204, 0, 0, 0) 60%
  );
}

.ch-edition-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204, 0, 0, 0.09);
  border: 1px solid rgba(204, 0, 0, 0.18);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.ch-edition-tag.ch-tag-green {
  color: var(--green);
  background: rgba(0, 102, 51, 0.09);
  border-color: rgba(0, 102, 51, 0.18);
}

.ch-edition-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.ch-edition-card h4 sup {
  font-size: 0.62em;
  font-weight: 700;
  color: var(--red);
  top: -0.6em;
}
.ch-edition-card.is-primary h4 sup {
  color: var(--red);
}
.ch-edition-card:not(.is-primary) h4 sup {
  color: var(--green);
}

.ch-edition-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.ch-edition-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--light);
  border-radius: 50px;
  padding: 5px 12px;
}
.ch-edition-meta i {
  color: var(--red);
}
.ch-edition-card:not(.is-primary) .ch-edition-meta i {
  color: var(--green);
}

@media (max-width: 767px) {
  .ch-edition-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Edition tab toggle (module catalogue) ---------- */
.ch-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 720px;
}

.ch-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1 1 260px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 12px 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--tr);
}
.ch-tab i {
  font-size: 1rem;
  margin-right: 4px;
}
.ch-tab sup {
  font-size: 0.68em;
}

.ch-tab-sub {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.75;
  margin-top: 2px;
}

.ch-tab:hover {
  border-color: var(--red);
  color: var(--dark);
}

.ch-tab.active {
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  border-color: var(--red);
  color: #fff;
}
.ch-tab.active .ch-tab-sub {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
}
.ch-tab.active[data-ch-tab="std"] {
  background: linear-gradient(135deg, var(--green), #004422);
  border-color: var(--green);
}

/* ---------- Edition panels ---------- */
.ch-panel {
  display: none;
}
.ch-panel.active {
  display: block;
  animation: chPanelIn 0.45s ease both;
}
@keyframes chPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ch-optional-note {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--light);
  border: 1px dashed var(--border);
  border-radius: var(--r);
  padding: 12px 18px;
}
.ch-optional-note i {
  color: var(--green);
  margin-right: 6px;
}
.ch-optional-note sup {
  font-size: 0.7em;
}

@media (prefers-reduced-motion: reduce) {
  .ch-panel.active {
    animation: none;
  }
}

.ch-tab-name {
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}
.ch-tab-name sup {
  font-size: 0.62em;
  font-weight: 700;
  margin-left: 2px;
  top: -0.5em;
}
/* ============================================================
   CIFTHEALTH ET / STD — CENTER EDITION TAG ON MOBILE
   ============================================================ */
@media (max-width: 767px) {
  #cifthealth .ch-edition-tag {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    text-align: center;
  }
}

.hero-para {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.8;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.hero-para:last-child {
  margin-bottom: 0;
}

/* Base hidden state before animation runs */
.ha {
  opacity: 0;
  transform: translateY(24px);
}

.ha.ha-run {
  animation: heroReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered delays */
.ha2.ha-run {
  animation-delay: 0.1s;
}
.ha3.ha-run {
  animation-delay: 0.25s;
}
.ha5.ha-run {
  animation-delay: 0.4s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   NAVBAR — PRODUCTS DROPDOWN
   ============================================================ */

.ciftech-dropdown {
  background: var(--dark2);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 10px;
  min-width: 250px;
  margin-top: 0 !important; /* was 12px — margin breaks the hover chain */
  animation: ddIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Invisible bridge that fills the old gap — part of the menu's own
   box (a pseudo-element), so hovering it still counts as hovering
   the menu, keeping the dropdown open while the mouse travels down. */
.ciftech-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

@keyframes ddIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ciftech-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.22s ease;
}
.ciftech-dropdown .dropdown-item span sup {
  font-size: 0.62em;
  color: var(--red);
  margin-left: 1px;
}
.ciftech-dropdown .dropdown-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.22s ease;
}
.ciftech-dropdown .dropdown-item i.dd-red {
  background: rgba(204, 0, 0, 0.14);
  color: var(--red);
}
.ciftech-dropdown .dropdown-item i.dd-green {
  background: rgba(0, 102, 51, 0.16);
  color: #44dd88;
}
.ciftech-dropdown .dropdown-item:hover,
.ciftech-dropdown .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transform: translateX(3px);
}
.ciftech-dropdown .dropdown-item:hover i {
  background: var(--red);
  color: #fff;
}

/* Desktop: open on hover, like the rest of the nav feels */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ---------- Mobile: always show the submenu, expanded, under Products ----------
   Touch devices have no hover, and there's no click-toggle wired up, so on
   mobile we just render the product list as a permanently-open nested list
   inside the collapsed nav. Tapping "Products" itself still navigates to
   products.html since it's a real link; users can also tap any item below it. */
@media (max-width: 991px) {
  .ciftech-dropdown {
    position: static;
    display: block !important;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    margin-top: 6px !important;
    margin-bottom: 6px;
    animation: none;
    padding: 8px;
  }
  .ciftech-dropdown::before {
    display: none;
  }
}

/* Small caret indicator — purely visual, link itself still navigates */
.nav-link-dd {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.dd-caret {
  font-size: 0.62rem;
  opacity: 0.55;
  transition: transform var(--tr), opacity var(--tr);
}
.nav-item.dropdown:hover .dd-caret {
  transform: rotate(180deg);
  opacity: 0.95;
}
@media (max-width: 991px) {
  .dd-caret {
    opacity: 0.5;
    transform: none !important;
  }
}

/* ===== Hero Caption Card — container-only animation ===== */
.hcc-anim {
  opacity: 0;
  transform: translateX(60px);
  animation: hccEnter 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s forwards,
             hccFloat 4s ease-in-out 1.3s infinite;
}

@keyframes hccEnter {
  0%   { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes hccFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hcc-anim:hover {
  animation-play-state: paused;
  transform: translateY(-14px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .hcc-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }
}




