/* ============================================
   HOME PAGE SPECIFIC STYLES
   LIGHT THEME — Anti-CLS optimized
   Brand: #0098af Teal
   ============================================ */

/* ---- HERO (Light) ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 1000px;
  background: linear-gradient(145deg, #f0fafb 0%, #e6f7f9 40%, #d0f0f4 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 152, 175, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 168, 191, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Canvas sits behind everything */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  display: block;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

/* Two-column layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}

/* ---- Hero Text ---- */
.hero-title {
  color: #0d2430;
  font-size: 3.1rem;
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Reserve height for typewriter */
.hero-typewriter {
  display: block;
  height: 1.3em;
  margin-top: 6px;
  overflow: hidden;
}

#typewriterText {
  background: linear-gradient(135deg, #0098af, #007a8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.cursor {
  color: #0098af;
  -webkit-text-fill-color: #0098af;
  animation: blink 1s step-end infinite;
  display: inline;
  margin-left: 2px;
}

.hero-subtitle {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6B7280;
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-item i {
  color: #0098af;
  font-size: 0.85rem;
}

/* ---- Hero Visual / Dashboard Card ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-card {
  background: #ffffff;
  border: 1px solid rgba(0, 152, 175, 0.15);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0, 152, 175, 0.14), 0 4px 24px rgba(0, 0, 0, 0.06);
  animation: floatCard 6s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
}

.dash-dots {
  display: flex;
  gap: 5px;
}

.dash-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5e7eb;
}

.dash-dots span:nth-child(1) {
  background: #EF4444;
}

.dash-dots span:nth-child(2) {
  background: #F59E0B;
}

.dash-dots span:nth-child(3) {
  background: #0098af;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0098af;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #0098af;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 5px #0098af;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.dash-stat {
  background: #f8fffe;
  border: 1px solid rgba(0, 152, 175, 0.12);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.dash-stat-value {
  color: #0d2430;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 3px;
}

.dash-stat-label {
  color: #9CA3AF;
  font-size: 0.65rem;
  margin-bottom: 5px;
}

.dash-stat-trend {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 4px;
  display: inline-block;
}

.dash-stat-trend.up {
  color: #0098af;
  background: rgba(16, 185, 129, 0.1);
}

.dash-chart {
  background: #f8fffe;
  border: 1px solid rgba(0, 152, 175, 0.1);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.dash-chart-label {
  color: #9CA3AF;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
}

.dash-bar {
  flex: 1;
  background: rgba(0, 152, 175, 0.15);
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
  transform: translateZ(0);
}

.dash-bar:hover,
.dash-bar.active {
  background: linear-gradient(180deg, #007a8c, #0098af);
}

.dash-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  color: #9CA3AF;
  white-space: nowrap;
}

.dash-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.dash-module {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  padding: 9px 5px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.dash-module:hover {
  background: rgba(0, 152, 175, 0.08);
  border-color: rgba(0, 152, 175, 0.25);
}

.dash-module i {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 3px;
}

.dash-module span {
  color: #374151;
  font-size: 0.62rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}

.dash-module small {
  color: #0098af;
  font-size: 0.58rem;
}

/* Floating Badges */
.hero-float-1,
.hero-float-2,
.hero-float-3 {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0, 152, 175, 0.2);
  border-radius: 50px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0d2430;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0, 152, 175, 0.12);
  will-change: transform;
  transform: translateZ(0);
  z-index: 3;
}

.hero-float-1 {
  top: 8%;
  left: -2%;
  animation: floatBadge1 5s ease-in-out infinite;
}

.hero-float-2 {
  top: 52%;
  right: -5%;
  animation: floatBadge2 7s ease-in-out infinite;
}

.hero-float-3 {
  bottom: 8%;
  left: -2%;
  animation: floatBadge3 6s ease-in-out infinite;
}

.hero-float-1 i {
  color: #0098af;
  font-size: 0.95rem;
}

.hero-float-2 i {
  color: #0098af;
  font-size: 0.95rem;
}

.float-stars {
  color: #F59E0B;
  letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #9CA3AF;
  font-size: 0.72rem;
  z-index: 2;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(0, 152, 175, 0.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: #0098af;
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(7px);
    opacity: 0.3;
  }
}


/* ============================================
   CLIENT LOGOS MARQUEE
   ============================================ */
.client-logos-section {
  background: #f9fafb;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #374151;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.client-logo-item i {
  color: #0098af;
  font-size: 1rem;
}

.marquee-container::before {
  background: linear-gradient(to right, #f9fafb, transparent) !important;
}

.marquee-container::after {
  background: linear-gradient(to left, #f9fafb, transparent) !important;
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: #f9fafb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: white;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #0098af, #007a8c);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 16px 50px rgba(0, 152, 175, 0.12);
  transform: translateY(-4px) translateZ(0);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 152, 175, 0.1), rgba(0, 168, 191, 0.1));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #0098af;
  margin: 0 auto 14px;
}

.stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0098af, #007a8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
  min-width: 56px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-plus {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0098af, #007a8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: top;
  margin-top: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: #6B7280;
  font-weight: 500;
  margin-top: 6px;
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: #ffffff;
}

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

.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  background: white;
}

.service-card-bg {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 152, 175, 0.06) 0%, transparent 70%);
  transition: transform 0.5s;
  pointer-events: none;
}

.service-card:hover .service-card-bg {
  transform: scale(1.6);
}

.service-card:hover {
  box-shadow: 0 20px 55px rgba(0, 152, 175, 0.12);
  transform: translateY(-5px) translateZ(0);
  border-color: rgba(0, 152, 175, 0.25);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0098af, #007a8c);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  /* color: #0d2430; */
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 152, 175, 0.25);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0098af;
  background: rgba(0, 152, 175, 0.08);
  border: 1px solid rgba(0, 152, 175, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.72;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: #374151;
}

.service-features li i {
  color: #0098af;
  font-size: 0.68rem;
  background: rgba(0, 152, 175, 0.1);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0098af;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.3s, gap 0.3s;
  position: relative;
  z-index: 1;
}

.service-link:hover {
  gap: 11px;
  color: #007a87;
}

/* CTA service card — kept with a teal gradient for contrast */
.service-cta-card {
  background: linear-gradient(135deg, #0098af 0%, #007a87 100%) !important;
  border-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-cta-icon {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 18px;
  animation: glow-pulse-light 3s ease-in-out infinite;
  will-change: box-shadow;
}

@keyframes glow-pulse-light {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
  }
}

.service-cta-card h3 {
  color: white !important;
}

.service-cta-card p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.service-cta-features {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.service-cta-features span {
  color: #fff;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-cta-features span i {
  color: #b2f4e9;
  font-size: 0.65rem;
}


/* ============================================
   WHY US
   ============================================ */
.why-section {
  background: linear-gradient(160deg, #f0fafb 0%, #f9fafb 60%, #e8f6f8 100%);
}

/* Two-column grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT ── */
.why-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 440px;
}

/* Quick stats row */
.why-quick-stats {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 152, 175, 0.12);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 4px 20px rgba(0, 152, 175, 0.07);
}

.wqs-item {
  flex: 1;
  text-align: center;
}

.wqs-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0098af;
  line-height: 1;
  margin-bottom: 4px;
}

.wqs-num sup {
  font-size: 1rem;
  font-weight: 700;
}

.wqs-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wqs-sep {
  width: 1px;
  height: 40px;
  background: rgba(0, 152, 175, 0.18);
  margin: 0 4px;
  flex-shrink: 0;
}

.why-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── RIGHT: visual wrap ── */
.why-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Base card style */
.wv-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}

.wv-card:hover {
  box-shadow: 0 10px 40px rgba(0, 152, 175, 0.1);
  transform: translateY(-2px) translateZ(0);
}

/* Card 1: Partner certif */
.wv-card--partner {
  padding: 24px;
}

.why-certif-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.why-certif-header strong {
  display: block;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
}

.why-certif-header span {
  color: #0098af;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.08);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 3px;
}

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

.competency-item {
  text-align: center;
  padding: 12px 8px;
  border-radius: 11px;
  border: 1px solid #f3f4f6;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.competency-item:hover {
  border-color: rgba(0, 152, 175, 0.2);
  background: rgba(0, 152, 175, 0.04);
  transform: translateY(-2px) translateZ(0);
}

.comp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto 6px;
}

.competency-item span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #374151;
}

/* Row of 2 side-by-side cards */
.wv-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Card 2: Stat ring */
.wv-card--stat {
  background: linear-gradient(135deg, #0098af 0%, #007a8c 100%);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
}

.wv-stat-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.wv-ring-svg {
  width: 80px;
  height: 80px;
}

.wv-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.wv-stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.wv-stat-sub {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.wv-stat-sub .fas {
  color: #FFD700;
  font-size: 0.65rem;
}

/* Card 3: Award */
.wv-card--award {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.wv-award-img {
  width: 44px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.wv-award-body strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 3px;
}

.wv-award-body span {
  font-size: 0.7rem;
  color: #6B7280;
}

/* Card 4: Progress ticker */
.wv-card--ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}

.wv-ticker-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 152, 175, 0.12), rgba(0, 168, 191, 0.12));
  color: #0098af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wv-ticker-body {
  flex: 1;
}

.wv-ticker-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 8px;
}

.wv-ticker-bar-wrap {
  background: #f0fafb;
  border-radius: 6px;
  height: 7px;
  overflow: hidden;
  margin-bottom: 6px;
  border: 1px solid rgba(0, 152, 175, 0.1);
}

.wv-ticker-bar {
  height: 100%;
  background: linear-gradient(90deg, #0098af, #007a8c);
  border-radius: 6px;
}

.wv-ticker-meta {
  display: flex;
  justify-content: space-between;
}

.wv-ticker-count {
  font-size: 0.7rem;
  color: #9CA3AF;
}

.wv-ticker-pct {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0098af;
}

/* Card 5: Trust badges */
.wv-card--badges {
  padding: 14px 20px;
}

.wv-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.wv-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
  transition: border-color 0.2s, background 0.2s;
}

.wv-trust-badge:hover {
  border-color: rgba(0, 152, 175, 0.3);
  background: rgba(0, 152, 175, 0.05);
  color: #0098af;
}

.wv-trust-badge i {
  color: #0098af;
  font-size: 0.75rem;
}

/* Old classes kept for safety */
.why-stat-card,
.why-award-card {
  display: none;
}

.why-visual {
  display: none;
}


/* ============================================
   INDUSTRY / SOLUTIONS
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.industry-card:hover {
  box-shadow: 0 18px 48px rgba(0, 152, 175, 0.12);
  transform: translateY(-5px) translateZ(0);
  border-color: rgba(0, 152, 175, 0.2);
}

.industry-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.industry-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.industry-content {
  padding: 22px;
}

.industry-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 7px;
}

.industry-content p {
  font-size: 0.83rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 14px;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0098af;
  font-weight: 600;
  font-size: 0.83rem;
  transition: gap 0.3s, color 0.3s;
}

.industry-link:hover {
  gap: 10px;
  color: #007a87;
}


/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section {
  background: #f0fafb;
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step-new {
  text-align: center;
  padding: 18px 10px;
}

.process-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0098af, #007a8c);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #0d2430; */
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 auto 14px;
  box-shadow: 0 6px 18px rgba(0, 152, 175, 0.28);
}

.process-content i {
  font-size: 1.5rem;
  color: #0098af;
  margin-bottom: 10px;
  display: block;
}

.process-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 7px;
  line-height: 1.3;
}

.process-content p {
  font-size: 0.76rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.process-arrow {
  color: #d4eef2;
  font-size: 1rem;
  padding-top: 24px;
  align-self: start;
}


/* ============================================
   PRODUCTS (POWER PLATFORM)
   ============================================ */
.products-section {
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor: pointer;
  background: white;
}

.product-item:hover {
  box-shadow: 0 14px 38px rgba(0, 152, 175, 0.1);
  transform: translateY(-4px) translateZ(0);
  border-color: rgba(0, 152, 175, 0.2);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.product-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: white;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 18px 48px rgba(0, 152, 175, 0.1);
  transform: translateY(-5px) translateZ(0);
}

.blog-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #9CA3AF;
  font-size: 0.75rem;
}

.blog-content h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.45;
  margin-bottom: 9px;
}

.blog-content p {
  font-size: 0.83rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0098af;
  font-weight: 600;
  font-size: 0.83rem;
  transition: color 0.3s, gap 0.3s;
}

.blog-link:hover {
  gap: 10px;
  color: #007a87;
}


/* ============================================
   FOOTER EXTRAS
   ============================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer-contact-info {
  margin-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-contact-item i {
  width: 18px;
  color: #007a8c;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item a:hover {
  color: #007a8c;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  background: #fff;
  border: none;
  padding: 11px 16px;
  color: #0098af;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 0.88rem;
}

.newsletter-btn:hover {
  opacity: 0.85;
}

.footer-certif {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.certif-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

.certif-item i {
  color: #007a8c;
}


/* Logo image + text-wrap defined globally in style.css */

/* When navbar is on a light background (before scroll on inner pages) */
.navbar-light .logo-text-wrap strong {
  color: #0d2430;
}

.navbar-light .nav-link {
  color: #374151 !important;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link.active {
  color: #0098af !important;
  background: rgba(0, 152, 175, 0.08) !important;
}

.navbar-light .btn-ghost {
  background: rgba(0, 152, 175, 0.08);
  color: #0098af;
  border-color: rgba(0, 152, 175, 0.3);
}

.navbar-light .hamburger span {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 152, 175, .2);
}


/* ============================================
   KEYFRAMES (transform-only)
   ============================================ */
@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-12px) translateZ(0);
  }
}

@keyframes floatBadge1 {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-9px) translateZ(0);
  }
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-11px) translateZ(0);
  }
}

@keyframes floatBadge3 {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-7px) translateZ(0);
  }
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 4px #0098af;
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 10px #0098af, 0 0 20px rgba(16, 185, 129, 0.35);
    opacity: 0.8;
  }
}


/* ============================================
   TEAM MAKES A DIFFERENCE SECTION
   ============================================ */
.team-diff-section {
  background: linear-gradient(160deg, #f0fafb 0%, #ffffff 50%, #e8f6f8 100%);
}

/* ---- Two-column body ---- */
.team-diff-body {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 52px;
  align-items: center;
}

/* ---- Image column ---- */
.team-diff-image {
  position: relative;
}

.team-diff-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 152, 175, 0.18);
}

.team-diff-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* teal accent corner decoration (outside the wrapper) */
.team-diff-bar {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0098af, #007a8c);
  z-index: -1;
  opacity: 0.4;
}

/* Floating stat pills on the photo */
.team-diff-pill {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0, 152, 175, 0.22);
  border: 1px solid rgba(0, 152, 175, 0.14);
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-width: 82px;
  z-index: 4;
}

.team-diff-pill--tl {
  top: 14px;
  left: -16px;
  animation: floatBadge1 4s ease-in-out infinite;
}

.team-diff-pill--br {
  bottom: 62px;
  right: -16px;
  animation: floatBadge2 4.5s ease-in-out infinite;
  animation-delay: 1s;
}

.tdp-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0098af;
  line-height: 1;
  display: block;
}

.tdp-num sup {
  font-size: 0.8rem;
  font-weight: 700;
}

.tdp-lbl {
  font-size: 0.61rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  margin-top: 2px;
}

/* Stats strip overlaid at bottom of photo */
.team-diff-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 152, 175, 0.92) 0%, rgba(0, 168, 191, 0.92) 100%);
  backdrop-filter: blur(6px);
  padding: 14px 20px;
  z-index: 3;
}

.tds-item {
  flex: 1;
  text-align: center;
}

.tds-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 2px;
}

.tds-num sup {
  font-size: 0.82rem;
  font-weight: 700;
}

.tds-lbl {
  font-size: 0.64rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.tds-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  flex-shrink: 0;
}

/* ---- Content / right column ---- */
.team-diff-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Inline heading block inside right column */
.team-diff-heading {
  margin-bottom: 20px;
}

.tdf-intro {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 480px;
  margin-top: 10px;
}

.tdf-intro strong {
  color: var(--text-primary);
}

/* Feature list */
.team-diff-features {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 24px;
}

.tdf-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 13px;
  border: 1px solid transparent;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  cursor: default;
}

.tdf-item:hover {
  background: linear-gradient(135deg, #f0fafb 0%, #e6f7f9 100%);
  border-color: rgba(0, 152, 175, 0.15);
  box-shadow: 0 4px 16px rgba(0, 152, 175, 0.08);
}

.tdf-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 152, 175, 0.1) 0%, rgba(0, 168, 191, 0.1) 100%);
  color: #0098af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s;
}

.tdf-item:hover .tdf-icon {
  background: linear-gradient(135deg, #0098af 0%, #007a8c 100%);
  color: #ffffff;
}

.tdf-body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.tdf-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.58;
  margin: 0;
}

/* CTA row */
.team-diff-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-left: 14px;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: 1/-1;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }

  .process-arrow {
    display: none;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-visual-wrap {
    max-width: 540px;
    margin: 0 auto;
  }

  .why-quick-stats {
    flex-wrap: wrap;
  }

  .team-diff-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-diff-pill--tl {
    left: 10px;
    top: 10px;
  }

  .team-diff-pill--br {
    right: 10px;
    bottom: 50px;
  }

  .tdf-intro {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .wv-row2 {
    grid-template-columns: 1fr;
  }

  .wv-badge-row {
    justify-content: flex-start;
  }

  .why-quick-stats {
    gap: 8px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero-float-1,
  .hero-float-2,
  .hero-float-3 {
    display: none;
  }

  .team-diff-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-diff-pill--tl {
    left: 10px;
    top: 10px;
  }

  .team-diff-pill--br {
    right: 10px;
    bottom: 56px;
  }

  .team-diff-cta {
    flex-direction: column;
  }

  .team-diff-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

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

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



/* ═══════════════════════════════════════════
   CLIENT LOGOS MARQUEE — clean, visible
═══════════════════════════════════════════ */
.cli-section {
  padding: 36px 0 28px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}

.cli-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 24px;
}

.cli-track-wrap {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.cli-track-wrap::before,
.cli-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.cli-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.cli-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.cli-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: cli-scroll 30s linear infinite;
}

.cli-track:hover {
  animation-play-state: paused;
}

@keyframes cli-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Individual logo card */
.cli-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 80px;
  border-right: 1px solid #f3f4f6;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cli-card:hover {
  background: rgba(0, 152, 175, 0.04);
}

.cli-card img {
  max-height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: grayscale(30%) opacity(0.75);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.cli-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}