body {
  font-family: 'Exo', sans-serif;
  background-color: #141414;
  color: #FFFFFF;
}
.accent-green-text { color: #00d139; }
.accent-green-bg { background-color: #00d139; }
.dark-bg-primary { background-color: #141414; }
.dark-bg-secondary { background-color: #1F1F1F; }
.section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #00d139;
}

.card {
  background-color: #141414;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);      /* Slightly thicker for visibility */
  transition: 
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s,
    border-width 0.3s;
}

/* Cards inside primary background sections use secondary background */
.dark-bg-primary .card {
  background-color: #1F1F1F;
}
.dark-bg-secondary .card {
  background-color: #141414;
}
.card:hover {
  /* transform: translateY(-5px) scale(1.03); */ /* Remove for sharp text */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  border-color: #00d139;
  border-width: 3px;
}
.card.no-animate:hover {
  transform: none;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5), 0 4px 6px -4px rgba(0,0,0,0.4);
  border-color: rgba(255, 255, 255, 0.1);
  border-width: 2px;
}

.cta-button {
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
}
.cta-primary {
  background-color: #00d139;
  color: #FFFFFF;
  border-color: #00d139;
}
.cta-primary:hover {
  background-color: #00b32e;
  border-color: #00b32e;
  /* transform: scale(1.05); */ /* Remove for sharp text */
  box-shadow: 0 0 15px 0 #00d13980;
}
.cta-secondary {
  background-color: transparent;
  color: #00d139;
  border: 2px solid #00d139;
}
.cta-secondary:hover {
  background-color: #00d139;
  color: #FFFFFF;
  /* transform: scale(1.05); */ /* Remove for sharp text */
}
.nav-bg {
  background-color: #1F1F1F;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.7), 0 2px 4px -2px rgba(0, 0, 0, 0.7);
}

/* Base hero styles */
.hero-section-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 600px;
  min-height: 400px;
  max-height: 800px;
}

/* Page-specific hero backgrounds */
.hero-index {
  background-image: url('assets/HeroIndex.png');
  background-size: 100%; /* Zoom out to 90% - adjust as needed */
  background-position: center 25%; /* Shift down - was "center" */
}

.hero-how {
  background-image: url('assets/HeroHow.png');
}

.hero-audit {
  background-image: url('assets/HeroAudit.png');
}

.hero-about {
  background-image: url('assets/HeroAbout.png');
}

.hero-blog {
  background-image: url('assets/HeroBlog.png');
}
.hero-QuoteIQ {
  background-image: url('assets/HeroQuote.png');
}
.hero-document {
  background-image: url('assets/HeroDocument.png');
}
.hero-bi {
  background-image: url('assets/HeroBI.png');
}

.hero-white {
  background-image: url('assets/HeroWhite.png');
}

.hero-blog {
  background-image: url('assets/HeroBlog.png');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 20, 20, 0.3);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%; /* Makes content container fill hero height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
}

/* Ticker Section Styles */
.ticker-depth {
  box-shadow: 0 -8px 25px -5px rgba(0, 0, 0, 0.7);
  background-color: #141414;
}

/* Ticker Marquee */
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

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

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-content {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.marquee-content span {
  padding: 8px 16px; /* Add some padding for better visual weight */
}

/* Ticker gradient overlay - reusable class */
.ticker-gradient {
  background: linear-gradient(to right, #141414 10%, transparent 30%, transparent 70%, #141414 90%);
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #1F1F1F;
  min-width: 220px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 100;
  border-radius: 0.5rem;
  padding: 0;
  margin-top: 0;
}
.dropdown-menu a {
  color: #d4d4d4;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background-color: #222;
  color: #00d139;
}
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover,
.dropdown-menu:focus-within {
  display: block;
}
.problem-card {
  background-color: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: #f0f0f0;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  will-change: transform;
  min-height: 112px; /* Adjust as needed for your content and hover effect */
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.problem-card:hover {
  /* Remove transform for zero blurriness */
  /* transform: translateY(-2.5px); */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  border-color: #ff2222;
  border-width: 3px;
}
.problem-card h4 {
  color: #ffaaaa;
}
.problem-card svg {
  color: #ff7777;
}

.wheel-container {
  position: relative;
  width: 420px;
  height: 180px;
  margin: 48px auto;
}

.wheel-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 48px;
  margin: -24px 0 0 -80px;
  background: #1F1F1F;
  color: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo', sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(0,0,0,0.13);
  transition: background 0.2s, color 0.2s, font-size 0.2s;
  z-index: 2;
}
.wheel-item.active {
  background: #00d139;
  color: #fff;
  z-index: 3;
  font-size: 1.19rem;
}
.tooltip {
  position: relative;
  cursor: pointer;
}
.tooltip-top::after,
.tooltip:not(.tooltip-bottom)::after { /* Default is top */
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 110%;         /* Above the card */
  transform: translateX(-50%);
  min-width: 300px;
  padding: 8px 16px;
  color: #fff;
  background: #222d;
  border-radius: 8px;
  font-size: 0.97rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  z-index: 40;
  text-align: center;
  white-space: pre-line;
  box-shadow: 0 4px 32px #0007;
}
.tooltip-bottom::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: 110%;            /* Below the card */
  transform: translateX(-50%);
  min-width: 300px;
  padding: 8px 16px;
  color: #fff;
  background: #222d;
  border-radius: 8px;
  font-size: 0.97rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  z-index: 40;
  text-align: center;
  white-space: pre-line;
  box-shadow: 0 8px 24px #0008;
}
.tooltip:hover::after,
.tooltip:focus::after {
  opacity: 1;
}

.hexagon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  z-index: 50; 
}

.hexagon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1F1F1F; 
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background-color 0.3s;
  z-index: 5;
}

.hexagon:hover::before {
  background-color: rgba(255, 255, 255, 0); 
}

.hexagon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #1F1F1F;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 52;
}

.hexagon-content {
  position: relative;
  z-index: 53;
  text-align: center;
  width: 100%;
}

.vendor-card {
  background-color: #1F1F1F;
  border: 2px solid #1F1F1F;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  z-index: 10;
}

.vendor-card:hover {
  border-color: #282828;
  border-width: 3px;
}

.vendor-card span {
  text-align: center;
  font-size: 0.75rem;
}