/* Hero Banner Styles */
.hero-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,102,179,0.90) 0%, rgba(250,23,19,0.25) 100%);
}

.hero-content-container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-main-content {
  color: white;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.hero-red-line {
  width: 100px;
  height: 5px;
  background: #fa1713;
  margin-bottom: 25px;
}

.hero-lead-text {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: 500;
}

.hero-desc-text {
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-cta-primary {
  background: white;
  color: #0066b3;
  border: none;
}

.hero-cta-primary:hover {
  background: #f0f0f0;
  color: #0066b3;
}

.hero-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-cta-outline:hover {
  background: white;
  color: #0066b3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  animation: fadeInUp 2s ease-in-out;
}

.hero-scroll-text {
  color: white;
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-mouse-icon {
  width: 28px;
  height: 48px;
  border: 2px solid white;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.hero-mouse-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { 
    top: 10px; 
    opacity: 1; 
  }
  50% { 
    top: 24px; 
    opacity: 0.5; 
  }
  100% { 
    top: 10px; 
    opacity: 1; 
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Bottom Wave Effect */
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 1;
}

/* Stats Counter */
.hero-stats {
  position: absolute;
  bottom: 100px;
  right: 50px;
  z-index: 3;
  display: flex;
  gap: 30px;
}

.hero-stat-item {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  display: block;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-banner {
    height: 550px;
  }

  .hero-main-title {
    font-size: 2.8rem;
  }

  .hero-lead-text {
    font-size: 1.3rem;
  }

  .hero-stats {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 500px;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .hero-lead-text {
    font-size: 1.1rem;
  }

  .hero-desc-text {
    font-size: 1rem;
  }

  .hero-cta-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .hero-red-line {
    width: 80px;
    height: 4px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 450px;
  }

  .hero-main-title {
    font-size: 1.8rem;
  }

  .hero-lead-text {
    font-size: 1rem;
  }

  .hero-desc-text {
    font-size: 0.95rem;
  }

  .hero-cta-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  .hero-scroll-indicator {
    bottom: 30px;
  }
}
