.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('path/to/hero-image.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}
.hero-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.hero-subheading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.hero-subheading1 {
  font-size: 0.9rem; /* Adjust the font-size value as needed */
  margin-bottom: 2rem;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
  background-color: #ff9800;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff6600;
}
.swiper-container {
            width: 100%;
            height: 100vh; /* Set a fixed height for the container */
        }

/* Responsive Styles */

@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
