/* Hero section badges */
.hero-badges-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 20, 35, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  transition: all var(--transition-fast);
  pointer-events: auto;
}

/* Strategic positioning for visual appeal */
.badge-1 {
  top: 0%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
  transform: rotate(3deg);
}

.badge-2 {
 top: 25%;
  right: 1%;
  animation: float 6s ease-in-out infinite;
  transform: rotate(3deg);
}

.badge-3 {
  bottom: 35%;
  left: 8%;
  animation: float 8s ease-in-out infinite 1s;
  transform: rotate(1deg);
}

/* Enhanced floating animation */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--rotation, 0deg));
  }
  100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }
}

/* Enhanced hover effect */
.hero-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 229, 255, 0.2);
  border-color: rgba(0, 229, 255, 0.3);
  z-index: 3;
}

/* Badge styling enhancements */
.badge-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.hero-badge:hover .badge-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(0, 229, 255, 0.25);
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.badge-text {
  font-size: 0.85rem;
  color: var(--light-text-muted);
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .hero-badge {
    max-width: 250px;
  }
}

@media screen and (max-width: 992px) {
  .badge-1 {
    top: 5%;
    right: 10%;
  }
  
  .badge-2 {
    top: 40%;
    left: 5%;
  }
  
  .badge-3 {
    bottom: 10%;
    right: 8%;
  }
}

@media screen and (max-width: 768px) {
  .hero-badges-container {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .hero-badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    animation: none;
  }
  
  .hero-badge:hover {
    transform: translateY(-5px) !important;
  }
}
