body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
}


nav {
  background-color: #0047AB;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}

.logo img {
  height: 60px;
  width: 100%;
}


.menu .nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin-right: 20px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu li a:hover {
  background-color: green;
  border: 1px solid grey;
}

.toggle-button {
  display: none; /* Initially hide toggle button */
  flex-direction: column;
  cursor: pointer;
}

.toggle-button span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 3px 0;
}

@media screen and (max-width: 600px) {
  .toggle-button {
    display: flex; /* Show toggle button on small screens */
  }

  .menu .nav-links {
    display: none; /* Hide menu items by default on small screens */
    flex-direction: column;
    background-color: #accfff;
    position: absolute;
    top: 60px; /* Adjust according to your design */
    left: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .menu li {
    margin-right: 0;
  }

  .menu li a {
    display: block;
    padding: 10px 0;
  }

  .menu li a:hover {
    background-color: green;
    border: none;
  }

  .menu.active .nav-links {
    display: flex; /* Show menu items when toggle button is clicked */
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  margin-bottom: 20px; /* Adjust this margin to add space between navbar and slideshow */
  /* Your navigation bar styles go here */
}

.slideshow-container {
  max-width: 1080px;
  margin: 30px auto; /* Adjust this margin to add space between navbar and slideshow */
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  position: relative;
  min-width: 100%;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.prev-btn {
  left: 10px;
  color: rgb(13, 17, 13); /* Set color for previous button */
}

.next-btn {
  right: 10px;
  color: rgb(10, 10, 14); /* Set color for next button */
}



.welcome-message {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f4f4f4;
  border: 2px solid #4CAF50; /* Set border color to green */
  border-radius: 8px;
  text-align: center;
}

h1 {
  color: #333;
}

p {
  color: #555;
  margin-bottom: 15px;
}


.services-section {
  max-width: 1500px;
  margin: 20px auto;
  padding: 20px; /* Add padding to the entire section */
  text-align: center;
  border-radius: 8px;
}

.services-section h2 {
  color: #333;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-card {
  width: calc(50% - 20px);
  margin-bottom: 20px;
  background-color: #fff; /* Set background color */
  border-radius: 8px; /* Add border radius */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
  padding: 20px; /* Add padding */
}

.service-card:hover {
  border: 2px solid #4CAF50; /* Change border color to green on hover */
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .services {
    justify-content: space-around;
  }

  .service-card {
    width: calc(25% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .services {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: calc(100% - 20px);
  }
}


.portfolio-section {
  padding: 20px;
}

.portfolio-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-card {
  width: 200px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card:hover {
  border: 2px solid #4CAF50;
}

.carousel-container {
  margin-top: 20px;
  overflow-x: auto;
}

.carousel {
  display: flex;
  gap: 10px;
}

.carousel img {
  width: 100px;
  height: auto;
}






.portfolio-gallery {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}





div.scroll-container {
  
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
  
  
}

div.scroll-container img {
  width: 50%; /* Make the image fill the card */
  min-width: 300px; /* Minimum width for the floor plan */
  height: auto; /* Maintain aspect ratio */
  padding: 10px;
  border-radius: 10px; /* Rounded corners for the card */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Box shadow for depth effect */
  overflow: hidden; /* Hide overflow content (if any) */
  margin: 0 20px 20px 20px; /* Add margin on both sides and bottom */
  border: 2px solid rgba(0, 255, 0, 0.5); /* Green border */
}







 /* About Us Section Styles */
 .about-us {
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid #ccc; /* Border properties */
    padding: 20px;
    border-radius: 8px;
}
.about-us h2 {
  color: #333;
  font-size: 36px;
  margin-bottom: 10px;
}
.about-us p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

/* Our Values Section Styles */
.our-values {
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid #ccc; /* Border properties */
    padding: 20px;
    border-radius: 8px;
}
.our-values h2 {
  color: #333;
  font-size: 36px;
  margin-bottom: 10px;
}
.our-values p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

/* Our Mission Section Styles */
.our-mission {
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid #ccc; /* Border properties */
    padding: 20px;
    border-radius: 8px;
}
.our-mission h2 {
  color: #333;
  font-size: 36px;
  margin-bottom: 10px;
}
.our-mission p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}



.main-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


 /* Responsive Styles */
 @media only screen and (min-width: 600px) {
  .main-container {
    display: flex;
    flex-direction: column;
  }
  .section {
    width: auto;
  }
}



footer {
  background-color: #93c572;
  color: #21558e;
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 0 0 30%;
  max-width: 30%;
}

.footer-column h3 {
  text-align: center;
  color: #21558e;
  margin-bottom: 20px;
}

.footer-column ul {
  text-align: center;
  list-style: none;
  
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  padding: 0;
}

.social-icons li {
  margin-right: 10px;
}

.social-icons li:last-child {
  margin-right: 0;
}

.social-icons li a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  background-color: #467F21;
  padding: 10px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}


/* Responsive styles */
@media screen and (max-width: 768px) {
  .footer-column {
    flex: 0 0 calc(50% - 20px); /* Adjust column width for smaller screens */
    max-width: calc(50% - 20px); /* Adjust maximum width of columns for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .footer-column {
    flex: 0 0 100%; /* Display columns as full width on even smaller screens */
    max-width: 100%; /* Set maximum width to full width */
  }

  .footer-column h3 {
    margin-bottom: 10px; /* Reduce margin for smaller screens */
  }
}




video {
  width: 800px; /* Set video width to fill its container */
  max-width: 100%; /* Ensure the video does not exceed its original width */
  display: block; /* Ensure the video is a block-level element */
  margin: 0 auto; /* Center the video horizontally */
  height: auto; /* Allow the video to maintain its aspect ratio */
  padding: 10px; /* Add padding around the video */
  box-sizing: border-box; /* Include padding in the width calculation */
  background-color: #f4f4f4; /* Add a light background color */
  border-radius: 5px; /* Add rounded corners */
  outline: none; /* Remove default outline */
}

/* Optional: Add additional styling for when the video is in full-screen mode */
video:-webkit-full-screen {
  width: 100vw; /* Set width to full viewport width */
  height: 100vh; /* Set height to full viewport height */
}

video:-moz-full-screen {
  width: 100vw;
  height: 100vh;
}

video:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
}

video:fullscreen {
  width: 100vw;
  height: 100vh;
}

.video-controls {
  text-align: center; /* Center the buttons horizontally */
}

button {
  background-color: #007bff; /* Blue button background */
  color: #fff; /* White button text */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin: 0 5px; /* Add some space between buttons */
}

button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}



/* Back-to-Top Button Styles */
#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

#back-to-top-btn:hover {
  background-color: #0056b3;
}


