/* Hero Section Styles */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(57, 72, 81, 0.5), rgba(57, 72, 81, 0.5)), url('/public/banner1.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #ffffff !important; /* Force text color to white */
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: var(--border-radius-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--spacing-md);
}

.welcome {
  padding: var(--spacing-xxxl) 0;
}

.welcome-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxl);
}

.welcome-text {
  flex: 1;
}

.welcome-text p {
  margin-bottom: var(--spacing-md);
  color: var(--gray-700);
  line-height: 1.8;
}

.welcome-text .btn {
  margin-top: var(--spacing-md);
}

.welcome-stats {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.stat-item {
  flex: 1 1 calc(33.333% - var(--spacing-lg));
  background-color: var(--white);
  padding: var(--spacing-xl);
  text-align: center;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.stat-title {
  font-size: 1rem;
  color: var(--gray-700);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .welcome-content {
    flex-direction: column;
  }

  .welcome-text, .welcome-stats {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stat-item {
    flex: 1 1 calc(50% - var(--spacing-lg));
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}