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;
  }
}
