/* Testimonial Section */
#testimonials {
  background-color: #bbbbbb;
  padding: 80px 0;
  height: auto;
}

/* Owl Carousel Styles */
.owl-carousel-testimonials {
  margin-top: 40px;
  position: relative;
  padding-bottom: 50px;
}

.testimonial-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 100px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  text-align: center;
  margin-bottom: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.testimonial-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.rating .ion-ios-star {
  font-size: 18px;
  color: #ffcc00;
}

.owl-carousel-testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.owl-carousel-testimonials .owl-nav button {
  font-size: 30px;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.owl-carousel-testimonials .owl-nav button:hover {
  color: #ffcc00;
}

.fixed-dots {
  position: fixed; /* Set position to fixed */
  bottom: 20px; /* Adjust position from the bottom as needed */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Center horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Place above the testimonial items */
}

.owl-carousel-testimonials .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel-testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transition: background-color 0.3s;
}

.owl-carousel-testimonials .owl-dot.active {
  background-color: #ffcc00;
}

/* Footer Styles */
.footer {
  background-color: #fff;
  color: #080808;
  padding: 80px 80px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
}

.footer__logo img {
  width: 140px;
  height: auto;
}

.footer__contact,
.footer__work-times {
  flex: 1;
  text-align: left; /* Align text to the left */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto; /* Center horizontally */
}

.contact-info,
.work-info {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* Align text to the left */
  padding-left: 0; /* Remove left padding */
}

.contact-info li,
.work-info li {
  margin-bottom: 10px;
}

.contact-info i,
.work-info i {
  margin-right: 10px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__work-times {
  text-align: right;
}

.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #555;
  padding-top: 20px;
  margin-top: 20px;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center; /* Center align content */
  }

  .footer__contact,
  .footer__work-times {
    flex: 1;
    text-align: center; /* Center align content */
  }
}
