/* banner-v1.css */
.hero-v1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(13, 47, 107, 0.85) 0%, rgba(13, 47, 107, 0.4) 100%); */
  background: radial-gradient(circle at 31% 49%, rgba(0, 168, 168, 0.1) 0%, rgb(61 203 114 / 12%) 28%, rgb(2 2 2 / 60%) 45%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2; pointer-events: none;
}

.hero-v1-stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 33px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatCard 4s ease-in-out infinite;
  transition: all 0.3s ease;
  max-width: 350px;
}

.hero-v1-stats-card:hover {
  box-shadow: 0 15px 40px rgba(0, 168, 168, 0.3);
  border-color: rgba(0, 168, 168, 0.5);
}

.stat-item-v1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 0.5px solid #ffffee29;
  padding-bottom: 25px;
}

.stat-item-v1:last-child {
  margin-bottom: 0;
  border-bottom: 0px solid #ffffee29;
}

.stat-icon-v1 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* background: rgba(0, 0, 0, 0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.border-green {
  border-color: rgba(107, 203, 61, 0.4) !important;
}

.border-orange {
  border-color: rgba(245, 166, 35, 0.4) !important;
}

.border-teal {
  border-color: rgba(0, 168, 168, 0.4) !important;
}

.icon-green {
  color: var(--v1-green) !important;
}

.icon-orange {
  color: var(--v1-orange) !important;
}

.icon-teal {
  color: var(--v1-teal) !important;
}

.hero-v1-features-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #099085, #4CAF50);
  backdrop-filter: blur(10px);
  z-index: 3;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.5s ease;
}

.feature-item-v1 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--v1-white);
  font-weight: 500;
  /* font-size: 0.9rem; */
  font-size: 1.1rem;
}

.feature-item-v1 i {
  color: var(--v1-orange);
  font-size: 1.2rem;
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

@media (max-width:992px) {
  .hero-v1-overlay {
    background: radial-gradient(circle at 31% 49%, rgb(232 179 6 / 15%) 0%, rgb(251 113 3 / 7%) 28%, rgb(6 161 130 / 10%) 45%, rgb(1 122 133 / 57%) 100%);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Adjust the existing scene-text for V1 layout */
.hero-v1-scene-1-layout {
  display: flex !important;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.hero-v1-text-area {
  animation: fadeUp 1s ease forwards;
  color: var(--v1-white);
  max-width: 600px;
}

/* Specific styling for V1 content container overriding old glass panel */
.hero-content-panel-v1 {
  pointer-events: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  max-width: 100% !important;
}

/* Make sure the bottom features row fades out alongside scene 1 */
#hero-v1-features.hidden {
  opacity: 0;
  pointer-events: none;
}

.text-gradient {
  background: linear-gradient(135deg, var(--caremed-bluish), var(--caremed-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-v1-primary {
  background: linear-gradient(135deg, var(--caremed-bluish), var(--caremed-green)) !important;
  color: #fff !important;
}


.hero-v1-stats-tile {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatCard 4s ease-in-out infinite;
  transition: all 0.3s ease;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hero-v1-stats-tile:last-child {
  margin-bottom: 0;
}

.hero-v1-stats-tile:hover {
  transform: translateY(-5px);
}

.hero-v1-stats-tile.bg-navy {
  background: rgba(13, 47, 107, 0.7);
  border-color: rgba(13, 47, 107, 0.9);
}

.hero-v1-stats-tile.bg-teal {
  background: rgba(0, 168, 168, 0.7);
  border-color: rgba(0, 168, 168, 0.9);
}

.hero-v1-stats-tile.bg-orange {
  background: rgba(245, 166, 35, 0.85);
  border-color: rgba(245, 166, 35, 1);
}

.hero-v1-stats-tile:nth-child(1) {
  animation-delay: 0s;
}

.hero-v1-stats-tile:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-v1-stats-tile:nth-child(3) {
  animation-delay: 0.4s;
}


/* Timeline Stats Card Styles */
.timeline-card {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 40px 30px 30px;
  max-width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stats-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stats-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--v1-teal), var(--v1-green), var(--v1-orange));
  z-index: 1; pointer-events: none;
}

.stats-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.stats-timeline-item::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 44px;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stats-timeline-item:last-child::after {
  display: none;
}

.stats-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background: var(--dot-color);
  border: 4px solid #1a1a1a;
  box-shadow: 0 0 0 1px var(--dot-color), 0 0 15px var(--dot-color);
  z-index: 3;
}

.dot-teal {
  --dot-color: var(--v1-teal);
}

.dot-green {
  --dot-color: var(--v1-green);
}

.dot-orange {
  --dot-color: var(--v1-orange);
}

.text-teal {
  color: var(--v1-teal) !important;
}

.text-green {
  color: var(--v1-green) !important;
}

.text-orange {
  color: var(--v1-orange) !important;
}

.stats-content {
  text-align: left;
}

.stats-content h4 {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.stats-content small {
  font-size: 0.85rem;
}

