html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Set your desired background color */
  z-index: -1;
}

.hero {
  position: relative;
  overflow: hidden;
}

#galaxy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.hero h1 {
  color: #fff;
  font-size: 3rem;
}

.hero p {
  color: #fff;
}

.hero .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.section-visible {
  opacity: 1;
}

.services {
  background-color: #000;
  color: #fff;
}

.services .container {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service {
  flex: 0 0 33.33%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

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

/* Testimonials Section */
.testimonials {
  background-color: #000;
  color: #fff;
}

.testimonials .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.testimonial {
  padding: 20px;
  text-align: center;
}

.testimonial p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 1.2rem;
  font-style: italic;
}

/* Slick Carousel Styles */
.slick-slide {
  outline: none;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: #000;
  color: #fff;
}

.slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

.slick-dots li.slick-active button {
  background-color: #000;
}

.contact {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}

.contact .container {
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #fff;
  color: #000;
}

.contact-form textarea {
  height: 150px;
}

.contact-form button {
  padding: 10px 20px;
  border: none;
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #000;
  color: #fff;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 0;
}

.footer .container {
  text-align: center;
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer p {
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
}


