/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: transparent;
}

.hero-content {
  position: relative;
  color: #333;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  color: #0066cc;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: none;
  color: #2c3e50;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  background: rgba(0, 102, 204, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: #0066cc;
}

.hero-cert-logo {
  height: 60px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.5rem;
  color: #666;
}

.hero-certifications {
  text-align: center;
  margin-bottom: 2rem;
}

.certification-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.certification-link:hover {
  border-bottom-color: #0066cc;
  text-decoration: none;
  color: #0066cc;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 180px;
  text-align: center;
}

.hero-btn-primary {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.hero-btn-primary:hover {
  background: #e55529;
  border-color: #e55529;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  color: white;
  text-decoration: none;
}

.hero-btn-secondary {
  background: transparent;
  color: #0066cc;
  border-color: #0066cc;
}

.hero-btn-secondary:hover {
  background: #0066cc;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  text-decoration: none;
}

.hero-clients {
  margin-top: 2rem;
  opacity: 0.9;
}

.hero-clients-label {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.6;
  color: #666;
}

.hero-clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-client-logo {
  height: 40px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.hero-client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stat {
    min-width: 100px;
    padding: 0.8rem;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
  }
  
  .hero-cert-logo {
    height: 45px;
    max-width: 60px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-clients-logos {
    gap: 1rem;
  }
  
  .hero-client-logo {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-stat {
    width: 100%;
    margin: 0;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-cert-logo {
    height: 35px;
    max-width: 50px;
  }
}

/* Animation for hero entrance */
.hero-content {
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stat {
  animation: heroStatsSlideIn 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

@keyframes heroStatsSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  animation: heroCTASlideIn 1s ease-out;
  animation-delay: 0.7s;
  animation-fill-mode: both;
}

@keyframes heroCTASlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility improvements */
.hero-btn:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

.hero-section .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print styles */
@media print {
  .hero-section {
    background: white;
    color: black;
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero-carousel {
    display: none;
  }
}