/* Ensure html and body take full width and no extra spacing */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Full-width slider container */
.slider {
  position: relative;
  width: 100vw; /* Full viewport width */
  overflow: hidden;
}

/* Flex container for slides */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each slide takes full viewport width */
.slide {
  width: 100%;
  flex-shrink: 0;
}

/* Responsive image styling */
.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation buttons styling */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


#fh5co-contact {
  background: url(../images/contact_us.png) no-repeat center bottom;
  background-size: 40%;
  padding: 80px 0;
}

#fh5co-contact .container {
  padding: 30px;
  border-radius: 10px;
}

#fh5co-contact .form-group input,
#fh5co-contact .form-group textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  color: #333;
}

#fh5co-contact .btn-primary {
  background: #ff5a5f;
  border: none;
}


.desktop-slider {
  display: block;
}

.mobile-slider {
  display: none;
}

@media (max-width: 768px) {
  .desktop-slider {
      display: none;
  }
  
  .mobile-slider {
      display: block;
  }
}
