/* styles.css */

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #414141;
  line-height: 1.6;
}

/* Main Container for max width */
.main-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

hr {
  border: none; /* Remove default styling */
  height: 0.5px; /* Set thickness */
  background-color: #cccccc36; /* Light gray color */
  padding: 4px 0; /* Top and bottom padding */
}

/* Slider Row */
.slider-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 15px;
}

.slider {
  position: relative;
  width: 100%;
  height: 341px;
  overflow: hidden;
  border-radius: 6px;
}

.slides img {
  width: 100%;
  height: 341px;
  display: none;
}

/* Text Row */
.text-row {
  margin-bottom: 20px;
}

.text-row p,
.text-row ul {
  margin-bottom: 10px;
}

.text-row strong {
  display: block;
  margin-bottom: 5px;
}

/* Gallery Row */
.gallery-row {
  display: none; /* Hidden by default */
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.gallery-row img {
  width: 100%;
  height: auto; /* Ensure the height scales proportionally */
  max-width: 984px; /* Constrain the maximum width */
  max-height: 341px; /* Constrain the maximum height */
  margin-bottom: 10px;
}

/* About Text Row */
.about-text-row {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light grayish shadow */
  margin-bottom: 20px;
  text-align: justify;
  margin-top: 20px;
}

/* Service Section */
.service-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light grayish shadow */
  margin-bottom: 20px;
  margin-top: 15px;
}

.service-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}

.about-text-row img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Contact Us Image */
.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  margin-top: 15px;
}

/* Contact Text Row */
.contact-text-row {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light grayish shadow */
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .gallery-row {
    display: flex; /* Display gallery row on desktop/web */
  }
}

@media (max-width: 767px) {
  .slider {
    height: 180px;
  }
}
