.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 2;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.prev {
  transform: translateX(-100%);
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding: 0 3rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 102, 0, 0.8);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.3s forwards;
}

.badge-text {
  color: #ff6600;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  max-width: 600px;
}

.title-line {
  display: block;
  transform: translateY(100px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }

.highlight {
  background: linear-gradient(45deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #ff6600, #ff8533);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 0.8s ease-out 1.2s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.9s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 1.1s forwards;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.cta-button.primary {
  background: linear-gradient(45deg, #ff6600, #ff8533);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 102, 0, 0.8);
  color: #ff6600;
  transform: translateY(-3px);
}

.button-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.cta-button:hover .button-ripple {
  width: 300px;
  height: 300px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 1.3s forwards;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ff6600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 4;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff6600;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav:hover {
  background: rgba(255, 102, 0, 0.2);
  border: 1px solid rgba(255, 102, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev { left: 2rem; }
.hero-nav.next { right: 2rem; }

.hero-nav svg {
  width: 20px;
  height: 20px;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1200px) {
  .hero-content {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 600px;
  }
  
  .hero-content {
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
  }
  
  .cta-button {
    padding: 0.875rem 2rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .hero-nav {
    width: 40px;
    height: 40px;
  }
  
  .hero-nav.prev { left: 1rem; }
  .hero-nav.next { right: 1rem; }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .hero-nav {
    width: 35px;
    height: 35px;
  }
  
  .hero-nav svg {
    width: 16px;
    height: 16px;
  }
}
/* General Logo Styling */
.logo {
  display: inline-block;
  height: 78px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect (optional) */
.logo:hover {
  transform: scale(1.05);
}

/* Dark Backgrounds */
.logo-dark-bg {
  filter: brightness(0) invert(1); /* Turns black logos white */
}

/* Light Backgrounds */
.logo-light-bg {
  filter: none;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .logo {
    height: 36px;
  }
}
