a {
  text-decoration: none !important;
}

#company-info {
  --gm-accent: #f4c542;
  --gm-card-bg: var(--glass);
  --gm-border: rgba(11, 18, 32, 0.04);
  --gm-muted: var(--muted);
  background: radial-gradient(
      800px 260px at 8% 12%,
      rgba(244, 197, 66, 0.03),
      transparent 12%
    ),
    #ffffff;
  color: #0b1220;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

header {
  padding: 8px 10px !important;
  position: fixed !important;
  background-color: #ffffff !important;
  z-index: 2000 !important;
  width: 100% !important;
}

/* Card */
.gm-card {
  background: var(--gm-card-bg);
  border: 1px solid var(--gm-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-height: 320px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

/* Icon */
.gm-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 68, 253, 0.12),
    rgba(254, 187, 0, 0.06)
  );
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.06);
}

/* Heading styles */
.gm-title {
  color: #0b1220;
  font-weight: 700;
  margin: 0;
  font-size: 2rem;
}

.gm-lead {
  color: rgba(11, 18, 32, 0.72);
  margin-bottom: 0.25rem;
}

/* Body copy */
.gm-body {
  color: rgba(11, 18, 32, 0.72);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.gm-features .gm-bullet {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #fff);
  color: var(--gm-accent);
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.06);
}

#aurum,
#A {
  color: gold;
}

#logo {
  border-radius: 5px;
  padding: 2px 4px;
  font-weight: 700;
}

/* CTA */
.gm-cta {
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font-weight: 700;
}

.gm-cta.btn-warning {
  background: linear-gradient(90deg, var(--gm-accent), #ffd166);
  border: none;
  color: #0b1220;
  box-shadow: 0 8px 24px rgba(244, 197, 66, 0.12);
}

.gm-card .btn-outline-light {
  color: #0b1220;
  border-color: rgba(11, 18, 32, 0.06);
  background: transparent;
}

/* Vision list dots */
.gm-vision-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffd166, var(--gm-accent));
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(244, 197, 66, 0.08);
}

/* layout niceties */
.gm-card > .d-flex {
  gap: 1rem;
}

.gm-features {
  margin-top: 1rem;
}

/* small screens: tighten spacing */
@media (max-width: 767.98px) {
  #company-info {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .gm-card {
    padding: 1.25rem !important;
    min-height: auto;
  }
  .gm-icon {
    width: 48px;
    height: 48px;
  }
  .gm-features .gm-bullet {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .gm-card:hover {
    transform: translateY(-6px);
    transition: transform 0.28s ease;
    box-shadow: 0 22px 48px rgba(11, 18, 32, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gm-card,
  .gm-icon,
  .gm-vision-dot,
  .gm-bullet {
    transition: none !important;
    transform: none !important;
  }
}

#company-info.light-mode .gm-card {
  background: #fff;
  color: #0b1220;
  border-color: rgba(11, 18, 32, 0.06);
}
#company-info.light-mode .gm-title {
  color: #0b1220;
}
#company-info.light-mode .gm-lead,
#company-info.light-mode .gm-body {
  color: rgba(11, 18, 32, 0.72);
}

.services-card {
  background: var(--glass);
  border: 1px solid rgba(11, 18, 32, 0.04);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-height: 320px;
}

/* badge */
.services-badge {
  background: linear-gradient(90deg, #ffd166, var(--accent));
  color: #0b1220;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  box-shadow: 0 8px 18px rgba(244, 197, 66, 0.08);
}

/* image wrap */
.services-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(11, 18, 32, 0.06);
}

.services-slider-viewport {
  height: 260px;
  position: relative;
  width: 100%;
}

/* the moving list (stacked vertically) */
.services-slider-list {
  display: block;
  transform: translateY(0);
  transition: transform 600ms cubic-bezier(0.22, 0.9, 0.32, 1);
}

/* each slide */
.services-slide {
  padding: 0.5rem 0;
  min-height: 260px;
  box-sizing: border-box;
}

.services-slide h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0b1220;
}

.services-slide p {
  margin-bottom: 0.5rem;
  color: rgba(11, 18, 32, 0.75);
}

.services-slide ul {
  margin: 0;
  padding-left: 1.05rem;
  color: rgba(11, 18, 32, 0.72);
}

.services-controls .btn {
  border-radius: 999px;
}

.services-indicators .indicator {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.64;
  transition: opacity 0.2s ease, transform 0.18s ease;
  border: 1px solid rgba(11, 18, 32, 0.06);
  background: #fff;
}

.services-indicators .indicator.active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
  background: linear-gradient(90deg, #ffd166, var(--accent));
}

@media (max-width: 991.98px) {
  .services-slider-viewport {
    height: 300px;
  }
  .services-slide {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .services-slider-viewport {
    height: 290px;
  }
  .services-slide {
    min-height: 290px;
  }
  .services-card {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-slider-list {
    transition: none !important;
  }
}

/* small polish */
.services-card .text-muted {
  color: rgba(11, 18, 32, 0.45);
}

/* stats  */
/* stats.css — responsive stats cards + subtle styling (uses your root vars) */

#company-stats {
  background: transparent;
  color: inherit;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* stat card */
.stat-card {
  background: var(--glass);
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.04);
  box-shadow: var(--shadow);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* hover/focus lift */
@media (hover: hover) and (pointer: fine) {
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(11, 18, 32, 0.08);
  }
}

/* icon */
.stat-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(244, 197, 66, 0.12),
    rgba(244, 197, 66, 0.06)
  );
  color: var(--gm-accent, #f4c542);
  margin: 0 auto;
}

/* value */
.stat-value {
  color: #0b1220;
  font-weight: 700;
  line-height: 1;
}

/* label */
.stat-label {
  color: var(--muted);
}

/* responsive spacing */
@media (max-width: 575.98px) {
  .stat-card {
    min-height: 120px;
    padding: 1rem;
  }
  .stat-icon {
    width: 44px;
    height: 44px;
  }
}

/* reduced motion: remove transitions and show values directly */
@media (prefers-reduced-motion: reduce) {
  .stat-card {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Scoped styles (unique class names to avoid collisions) */
.rbf-wa-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}

.rbf-wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366; /* WhatsApp green */
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.22);
  text-decoration: none;
  transition: transform 0.12s ease;
}

.rbf-wa-button:active {
  transform: scale(0.98);
}
.rbf-wa-button:focus {
  outline: 3px solid rgba(37, 211, 102, 0.2);
  outline-offset: 4px;
}

.rbf-wa-icon {
  width: 34px;
  height: 34px;
  display: block;
}

/* Optional label (desktop only) */
.rbf-wa-label {
  display: none;
  margin-right: 12px;
  background: #fff;
  color: #0f1720;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
  white-space: nowrap;
  align-self: center;
}

@media (min-width: 720px) {
  .rbf-wa-container {
    right: 28px;
    bottom: 28px;
  }
  .rbf-wa-label {
    display: inline-block;
  }
}

/* Video card styles (add to your main CSS) */
.stock-video-figure {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
}
.stock-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Keep overlay visual consistent with other cards */
.stock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.45) 100%
  );
  color: #fff;
  padding: 16px;
  transition: background 0.18s ease;
  pointer-events: none; /* let children be clickable via pointer-events auto below */
}
.stock-overlay-inner {
  pointer-events: auto;
  width: 100%;
}

/* Title/desc similar to your existing classes */
.stock-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.stock-desc {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Overlay actions (play + chat) */
.overlay-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Play/pause button visual */
.video-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.video-play-btn:active {
  transform: scale(0.98);
}
.video-play-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.12);
  outline-offset: 2px;
}

/* Ensure the overlay is visible on hover or when figure is focused */
.stock-video-figure:focus .stock-overlay,
.stock-video-figure:hover .stock-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 20%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Small responsive tweaks, adapt to your grid */
@media (min-width: 720px) {
  .stock-overlay {
    padding: 18px;
  }
  .video-play-btn {
    padding: 10px 12px;
  }
}
