/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

nav {
  position: sticky;
  top: 0;
  background-color: #222;
  padding: 10px;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mySlides {
  display: none;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 24px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff6700;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
}

/* Features Section */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  font-size: 36px;
}

.feature-card {
  display: inline-block;
  width: 30%;
  padding: 20px;
  margin: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
}

/* Testimonials Section */
.testimonial-carousel {
  display: flex;
  overflow: hidden;
  margin-top: 30px;
}

.testimonial {
  min-width: 100%;
  padding: 20px;
  background-color: #f9f9f9;
  margin: 0 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.testimonial p {
  font-size: 18px;
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}
