.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: flex;
  opacity: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  animation: fadeInUp 1s ease-out;
  opacity: 0;
  transform: translateY(50px);
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

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

.slide h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.slide h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.slide p {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.quote {
  font-style: italic;
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #4ade80;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.feature::before {
  content: "✅";
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.cta-button {
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  text-shadow: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.nav-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #ffd700;
  transform: scale(1.2);
}

.emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.stats {
  font-size: 1.5rem;
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 1rem;
}

#heroSection {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#heroSection[style*="display: none"] {
  opacity: 0;
  visibility: hidden;
}

/* ================== Responsive Design ================== */

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

  .slide h2 {
    font-size: 1.8rem;
  }

  .slide p {
    font-size: 1.2rem;
  }

  .quote {
    font-size: 1.4rem;
  }

  .features {
    flex-direction: column;
    gap: 1rem;
  }

  .feature {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
}

/* 💻 Laptops and Desktops (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .slide h1 {
    font-size: 3.5rem;
  }

  .slide h2 {
    font-size: 2.2rem;
  }

  .slide p {
    font-size: 1.8rem;
  }

  .quote {
    font-size: 1.8rem;
  }

  .feature {
    font-size: 1.8rem;
  }

  .cta-button {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
}

/* 📱 Medium-Small Phones (max-width: 600px) */
@media (max-width: 600px) {
  .slide h1 {
    font-size: 2.2rem;
  }

  .slide h2 {
    font-size: 1.6rem;
  }

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

  .quote {
    font-size: 1.2rem;
  }

  .features {
    flex-direction: column;
    gap: 0.8rem;
  }

  .feature {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }

  .emoji {
    font-size: 2.2rem;
  }

  .stats {
    font-size: 1.2rem;
  }
}

/* 📱 Smallest Phones (max-width: 599px) */
@media (max-width: 599px) {
  .slide h1 {
    font-size: 2rem;
  }

  .slide h2 {
    font-size: 1.4rem;
  }

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

  .quote {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }

  .feature {
    font-size: 0.95rem;
  }

  .emoji {
    font-size: 2rem;
  }

  .stats {
    font-size: 1.1rem;
  }
}


