body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between; /* Adjusted for better spacing */
  align-items: center;
  padding: 10px 20px;
  background-color: #f3f3f3;
  flex-wrap: wrap; /* Allows items to wrap in smaller screens */
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Allows items within to wrap */
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-left select {
  margin-right: 30px; /* Increased space between select and contact number */
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.header-left .contact-number {
  font-size: 20px; /* Larger font size for contact number */
  font-weight: bold;
  color: #2F4F4F;
}

.company-logo {
  max-height: 100px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allows navigation items to wrap */
}

nav ul li {
  margin-left: 25px;
  white-space: nowrap;
}

nav ul li a {
  text-decoration: none;
  color: #2F4F4F;
}

nav ul li a:hover {
  text-decoration: underline;
}

.social-icon {
  margin-left: 15px;
  font-size: 24px; /* Icon size */
}

.social-icon:hover {
  opacity: 0.8; /* Slightly reduce opacity on hover for a subtle effect */
}
/* Facebook icon color */
.social-icon.facebook i {
  color: #4267B2; /* Facebook's brand blue */
}
/* Instagram icon color */
.social-icon.instagram i {
  color: #C13584; /* Instagram's brand pinkish color */
}
/* Media query for smaller screens */
@media (max-width: 768px) {
  .header-left, .header-right {
    justify-content: center;
    padding: 10px 0; /* Adds padding on top and bottom for spacing */
  }

  nav ul {
    justify-content: center; /* Centers nav items on smaller screens */
  }

  .header-left select, .header-left .contact-number, .social-icon {
    margin: 5px; /* Reduces margin for smaller screens */
  }
}
body {
    text-align: center; /* Centers text and inline elements */
    font-family: Arial, sans-serif; /* Example font */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as needed */
    gap: 5px; /* Reduces the space between images */
    justify-content: center;
    padding: 10px; /* Adjust padding around the grid if necessary */
}

.image-grid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Optional: for a smooth zoom effect */
}

/* Optional: Increase the size of the container to ensure images are larger */
@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, minmax(0, 400px)); /* Example: Adjust minimum size */
    }
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
}
.virtual-tour-container {
    text-align: center; /* Center the content */
    width: 100%; /* Ensure the container takes full width */
    padding: 20px 0; /* Add some padding above and below the section */
}

.virtual-tour-container h2 {
    margin-bottom: 20px; /* Space between the headline and the video */
}

.virtual-tour-container video {
    max-width: 80%; /* Video takes up to 80% of the container width */
    height: auto; /* Maintain aspect ratio */
}
@media (max-width: 768px) {
    .virtual-tour-container video {
        max-width: 95%; /* Allows the video to take up more space on smaller screens */
    }
}
footer {
  background-color: #015e0d;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer {
  background-color: #0d4414;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section p a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section p a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 10px 0;
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  
  .footer-section {
      margin-bottom: 20px;
  }
}


