/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  position: fixed;
  height: 10%;
  width: 100%;
  background-color: rgba(185, 182, 182, 0); /* Slightly transparent background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  backdrop-filter: blur(5px); /* Optional: Adds a slight blur effect behind the navbar */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  transition: background-color 0.3s ease-in-out; /* Smooth transition for background */
}

/* Add background when scrolling */
.navbar.scrolled {
  background-color: rgba(185, 182, 182, 0.7);
}

/* Logo */
.logo img {
  max-height: 180px;
  margin-left: 25px;
}

/* Navbar links */
.navbar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.navbar-links li {
  margin-left: 20px;
}

.navbar-links li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}

/* Hover effect on navbar links */
.navbar-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px auto;
}

/* Phone Number Styling */
.phone-number {
  font-size: 1.7rem;
  color: white;
  text-decoration: none;
  margin: 0 auto;
  padding: 10px 20px;
  display: block;
  text-align: center;
}

.phone-number:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Hide the phone number on mobile and show the icon instead */
.phone-number .phone-text {
  display: inline-block;
}

.phone-number i {
  display: none; /* Hide the icon by default */
}

/* Responsive design for mobile screens */
@media (max-width: 767px) {
  .phone-number .phone-text {
    display: none; /* Hide phone number text on mobile */
  }
  .phone-number i {
    display: inline-block; /* Show the phone icon */
    font-size: 2rem; /* Larger icon on mobile */
  }
  .navbar {
    justify-content: center;
  }
  /* Navbar links */
  .navbar-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(185, 182, 182, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .navbar-links.active {
    display: flex;
  }
  .navbar-links li {
    width: 100%;
    padding: 15px;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
  }
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center the content */
  align-items: center; /* Horizontally center the content */
  background-color: rgba(185, 182, 182, 0.5);
  min-height: 100vh; /* Minimum height for content to ensure it's large enough */
}
.content h1 {
  margin: 0;
  font-size: 2rem;
  color: black;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.content #content-body {
  width: 100%;
  text-align: center;
  color: black;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.8);
}

.page {
  display: flex;
  flex-direction: column;
  height: 100vh; /* Full viewport height */
}
.page .navbar {
  z-index: 10; /* Ensure it stays on top of the content */
}
.page .content {
  flex-grow: 1; /* Automatically fill the remaining space */
  display: flex; /* Use flexbox to align content */
  flex-direction: column; /* Keep content in a column */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
}

/* Banner Styling */
.banner {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  background-color: rgba(185, 182, 182, 0.5); /* Darker transparent background */
  min-height: -moz-fit-content;
  min-height: fit-content; /* Ensure a minimum height for the banner */
  width: 100%;
  flex-wrap: wrap; /* Allow items to wrap */
  padding: 20px 0; /* Add some padding */
}

.banner-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content inside the item */
  color: black; /* Set text color */
  margin: 0 20px; /* Add spacing between banner items */
  text-align: center; /* Center the text */
}

.banner-item img {
  width: 40px; /* Icon size */
  height: 40px;
  margin-bottom: 10px; /* Space between icon and text */
}

.banner-item p {
  font-size: 1.2rem; /* Adjust font size */
  margin: 0; /* Remove default margin */
}

button {
  background-color: #5AD55A;
  color: white;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background-image: linear-gradient(145deg, #5AD55A, #97e597);
  /* Reuse the button style mixin */
}
button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 213, 90, 0.5);
}
button:hover {
  background-image: linear-gradient(145deg, #83df83, #33c933);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
}
button:active {
  transform: scale(0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile-first responsiveness */
@media (max-width: 767px) {
  .banner {
    flex-direction: column; /* Stack items vertically */
    padding: 10px 0; /* Adjust padding for mobile */
  }
  .banner-item {
    margin: 10px 0; /* Space between items */
    width: 80%; /* Make each banner item take up most of the width */
  }
  .banner-item img {
    width: 30px; /* Smaller icons for mobile */
    height: 30px;
  }
  .banner-item p {
    font-size: 1rem; /* Smaller font size for mobile */
  }
  button {
    background-color: #5AD55A; /* Ensure the button uses main color */
  }
}
/* General styling for the input form */
.input-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 600px;
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 15px;
}

label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

input, select {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type=tel], input[type=email], input[type=text], select {
  height: 40px;
}

button.submit-button {
  background-color: #4CAF50;
  color: white;
  padding: 15px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

button.submit-button:hover {
  background-color: #45a049;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .input-form {
    padding: 15px;
  }
  .form-group input, .form-group select {
    font-size: 0.9rem;
    padding: 10px;
  }
  button.submit-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
/* For additional styling like banner, navbar, etc., if needed */
/* Add mobile styling for the navbar here if needed */
.banner.photo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-item {
  text-align: center;
  color: black;
  margin-bottom: 20px;
}
.banner-item h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.banner-item p {
  font-size: 1rem;
}

.photo-card {
  position: relative;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.photo-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.photo-card .photo-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  text-align: center;
  padding: 10px;
  transition: opacity 0.3s ease;
  text-decoration: none; /* Remove underline from the link */
}
.photo-card:hover {
  transform: scale(1.02);
}
.photo-card:hover .photo-card-hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .banner.photo-banner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .banner-item {
    flex: 1 1 100%;
  }
  .photo-card {
    flex: 1 1 calc(30% - 20px);
    margin: 10px;
  }
}
.photo-card-hover p {
  font-size: 0.9rem; /* Decrease the font size slightly */
  line-height: 1.4; /* Adjust line height for better readability */
  margin: 0; /* Remove extra margins to save space */
}

#pricing {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.pricing-slider {
  width: 100%;
  margin-bottom: 30px;
}

#squareFootage {
  width: 80%;
  margin: 20px 0;
  accent-color: #5AD55A; /* This will change the thumb and active track to $maincolor */
}

.pricing-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.pricing-card.popular::before {
  content: "MOST POPULAR";
  background: #ff6347;
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  font-size: 12px;
}

.pricing-card h3 {
  margin-top: 0;
  color: #333;
}

.pricing-card .price {
  font-size: 24px;
  color: #5AD55A;
  margin: 10px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #555;
}

.pricing-card ul li {
  margin: 10px 0;
}

.book-now {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #5AD55A;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.book-now:hover {
  background: #2eb52e;
}

@media (min-width: 768px) {
  .pricing-options {
    display: flex;
    flex-direction: row;
  }
}
.business-type {
  text-align: center;
  background-color: rgba(185, 182, 182, 0);
}
.business-type h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}
.business-type .business-types-container {
  display: flex; /* Default is flex for desktop */
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.business-type .business-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.business-type .business-type:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.business-type .business-type i {
  font-size: 2rem;
  color: #5AD55A; /* Replace $maincolor with your primary color */
  margin-bottom: 15px;
}
.business-type .business-type span {
  font-size: 1rem;
  color: #333;
  text-align: center;
}
.business-type .business-type a {
  text-decoration: none;
}

/* Mobile-first responsiveness */
@media (max-width: 767px) {
  .business-types-container {
    display: grid; /* Switch to grid for mobile */
    grid-template-columns: repeat(2, 1fr); /* Create 2x2 grid */
    gap: 20px; /* Maintain spacing */
    justify-content: center; /* Center grid in container */
  }
  .business-type {
    width: 100%; /* Make each item stretch in grid */
    max-width: 140px; /* Optional: Control max width */
    padding: 15px; /* Adjust padding */
    display: contents;
  }
  .business-type i {
    font-size: 2rem; /* Adjust icon size */
  }
  .business-type span {
    font-size: 0.9rem; /* Smaller font size for mobile */
  }
}
/* Styling for h1 */
/* Styling for body */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Styling for the main container */
.main {
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
}

/* Style for the Return to Top button */
.return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.return-to-top.show {
  opacity: 1;
}

.return-to-top:hover {
  background-color: #0056b3;
}

.return-to-top:focus {
  outline: none;
}

.content1 {
  justify-content: center;
  /* Adjust the path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0; /* Adds vertical padding for spacing */
  min-height: 100vh; /* Minimum height for content to ensure it's large enough */
  align-items: center; /* Centers vertically */
  flex-direction: column; /* Stacks elements vertically */
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9); /* Optional: Slightly shrink for a smooth pop-in effect */
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Logo styling */
.logo-fade-in {
  max-width: 500px; /* Adjust size as needed */
  animation: fadeIn 1.5s ease-in-out; /* Fade in over 1.5 seconds */
  opacity: 1; /* Ensure visibility after the animation */
}

@media (max-width: 767px) {
  .content1 {
    background-size: contain; /* Ensure the full image is visible */
    background-position: center center; /* Keep the image centered */
  }
}/*# sourceMappingURL=index.css.map */