/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #336713; /* Updated background color */
  color: #fff;
  padding: 20px 0;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

header h1 {
  font-size: 28px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background-image: url('hero-background.jpg');
  background-size: cover;
  background-position: center;
  padding: 200px 0;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #72be3d; /* Updated button color */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #000; /* Added border property */
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #78aa00;
}

#services .services-columns {
  display: flex;
  justify-content: space-between;
}

#services .column {
  flex-basis: 30%;
}

#services .column h3 {
  font-size: 1.2rem;
}

#services .column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#services .column li {
  margin-bottom: 10px;
}

#services .column li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #c9d891;
  margin-right: 5px;
}

#gallery .image-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

#gallery .image {
  flex-basis: 33.33%;
  padding: 10px;
}

#gallery img {
  max-width: 100%;
}

.contact-details {
  margin-top: 30px;
}

footer {
  background-color: #336713; /* Updated background color */
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 767px) {
  header h1 {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}

#landscape.hero {
  background-image: url('img/banner.png');
  background-size: cover;
  background-position: center;
  padding: 200px 0;
  text-align: center;
  color: #fff;
}

/* ... */

header {
  /* ... */
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ... */


.logo {
  float: right;
}

.logo img {
  max-width: 100%;
  max-height: 60px; /* Adjust the height as needed */
  width: auto;
  height: auto;
}

/* Add this CSS to your existing styles.css file or within a <style> tag in your HTML */

/* Hide the Slick Carousel numbers */
#services-carousel .slick-dots {
  display: none;
}

/* Move the Slick Carousel bars to the bottom center */
#services-carousel .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

#services-carousel .slick-dots li {
  margin: 0 5px;
  width: 10px;
  height: 3px;
  background-color: #000;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#services-carousel .slick-dots li.slick-active {
  opacity: 1;
}

#services-carousel .slick-dots li.slick-active:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 1;
}
#services h2,
#gallery h2,
.contact-heading {
  color: #336713;
}

h2#gallery-heading {
  font-size: 24px; /* Adjust the font size as needed */
}

h2#gallery-heading .view-more {
  text-decoration: none;
  font-size: 40%; /* Adjust the font size as needed */
}

h2#gallery-heading .view-more:hover {
  text-decoration: underline;
}

    #gallery-heading a {
      color: inherit;
    }
	
	/* Loading screen styling */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #336713;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  z-index: 9999;
}