@charset "utf-8";
/* CSS Document */
/* Stats Section */
.stats {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-top: 3px solid #FFD700;
  border-bottom: 3px solid #FFD700;
}

.stats-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-background {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.stats-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-10px);
}

.stats-item span {
  font-size: 3.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stats-item p {
  font-size: 1.2rem;
  margin: 0;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .stats {
    height: auto;
    min-height: 500px;
    padding: 20px 0;
  }

  .stats-item {
    padding: 7px;
  }

  .stats-item span {
    font-size: 2.2rem;
  }

  .stats-item p {
    font-size: 1rem;
  }
}

/* For very small screens */
@media (max-width: 576px) {
  .stats {
    min-height: 600px;
  }

  .stats-item {
    margin-bottom: 20px;
  }
}