html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  max-width: auto;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #25d06a;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

main {
  width: auto;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

section {
  padding: 2em;
  scroll-margin-top: 200px;
}

button {
  background: green;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 54px;
  cursor: pointer;
}

button:hover {
  background: limegreen;
}

footer {
  text-align: center;
  color: #000;
  margin: 3rem 0 1rem 0;
  background-color: #14e669;
  margin: 0;
}

#privacy-link {
  display: block;
  margin-bottom: 20px;
}

.footer-line {
  width: 100%;
  height: 2px;
  background-color: #000; /* adjust color */
  margin: 40px 0; /* spacing */
}

/* Contact Form */
.footer-contact {
  background: #ffffff;
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 2rem auto;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.footer-contact-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info {
  flex: 0.9;
  min-width: 280px;
  padding: 1.5rem;
  background: #f7f7f7;
  border-radius: 10px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.contact-info p {
  margin: 0.8rem 0;
  color: #555555;
  line-height: 1.5;
}

.contact-info a {
  color: #4caf50;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form-container {
  flex: 1.3;
  min-width: 320px;
}

.contact-form-container h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: #444444;
  font-size: 1rem;
}

input,
select,
textarea {
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
  background: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4caf50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.agreement-box {
  background: #f7f7f7;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #555555;
  font-size: 0.9rem;
}

.checkbox-group {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-text {
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

.privacy-text a {
  color: #4caf50;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

.submit-btn {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: #4caf50;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #45a049;
}

@media (max-width: 800px) {
  .footer-contact-wrapper {
    flex-direction: column;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a8e48;
  padding: 0 2rem; /* Remove vertical padding for tighter fit */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  min-height: 200px; /* Increase this to fit a bigger logo */
  max-width: 100vw; /* Ensure it doesn't exceed viewport width */
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-img {
  max-width: 100vw;
  max-height: 1000vh;
  width: 1351px; /* Fixed width for larger screens */
  height: 798px;
  padding: 50px;
  object-fit: cover;
  object-position: left top;
  display: block;
  margin: 0 auto;
}

.hero-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b;
}

.logo img {
  height: 170px;
  vertical-align: middle;
}

.logo a:focus,
.logo a:active {
  outline: none;
  box-shadow: none;
}

/* Also ensure no border is added to the image inside the link */
.logo a img {
  border: none;
}

#logo-words {
  height: 110px;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: 50px;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #0078d7;
}

.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2),
.animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/* Hamburger always visible, nav always hidden unless open */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; /* Increased width for visibility */
  height: 40px; /* Increased height for visibility */
  background: none;
  border: none;
  cursor: pointer;
  gap: 8px; /* More space between bars */
  margin-left: 0;
  margin-right: 4rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 5px; /* Thicker bars */
  width: 28px; /* Fixed width for bars */
  background: #fff; /* White bars for contrast on green */
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(3) {
  background: #204c00; /* Green color for the X */
}

#nav-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1000;
}
#nav-menu.nav-open {
  display: flex;
}
#nav-menu a {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

#Services {
  text-align: center;
}

#Services h1 {
  font-size: 45px;
  margin-bottom: 0px;
}

.service {
  font-size: 30px;
}

.service p {
  display: inline-block;
}

#service-type:hover {
  background-color: #719e00;
  cursor: pointer;
}

#CB {
  display: block;
}

#HVAC {
  display: block;
}

.HVAC-services {
  display: inline-block;
  font-size: 20px;
  margin: 15px;
}

.HVAC-img {
  display: block;
  height: 100px;
  width: 100px;
  text-align: center;
  margin-left: 40%;
}

.CB-services {
  display: none;
  font-size: 20px;
  margin: 15px;
}

.CB-img {
  display: block;
  height: 100px;
  width: 100px;
  text-align: center;
  margin-left: 40%;
}

#momnt-banner-1 {
  width: 1100px;
  display: block;
  margin: auto;
}

#momnt-banner-2 {
  width: 240px;
  display: inline-block;
  margin: 20px;
  margin-left: 400px;
}

#momnt-widget {
  display: inline-block;
  margin-top: 15px;
  position: absolute;
}

#about-us-img {
  display: inline-block;
  height: 500px;
}

#about-us-img-more {
  display: inline-block;
  height: 500px;
  margin-bottom: 300px;
}

#about-us-words {
  display: inline-block;
  position: relative;
  text-align: center;
  margin-left: 10%;
}

#about-us-words h1 {
  font-size: 45px;
}

.text-box {
  width: 400px; /* Set a fixed width for the box */
  /* height: 150px;  */
  padding: 10px; /* Add some padding around the text */

  /* Text control properties */
  overflow-wrap: break-word; /* Ensures long words break and wrap within the box */
  text-align: justify;
  font-size: 18px;
}

.text-box-privacy {
  width: 1000px; /* Set a fixed width for the box */
  /* height: 150px;  */
  padding: 10px; /* Add some padding around the text */

  /* Text control properties */
  overflow-wrap: break-word; /* Ensures long words break and wrap within the box */
  text-align: justify;
  font-size: 18px;
}

/* Carousel styles */
.carousel-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 2rem 0;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: 100vw;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out; /* slower, smoother */
}

.carousel-slide {
  flex: 0 0 50%; /* Default: 50% width for small screens */
  box-sizing: border-box;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.carousel-slide img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
  position: relative;
}

.carousel-slide .overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
  pointer-events: none;
}

.carousel-slide:hover .overlay {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #204c00;
  color: #fff;
  border: none;
  border-radius: 999px; /* Oval shape */
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background 0.2s;
  padding: 0;
}
.carousel-btn:hover {
  background: #719e00;
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

.carousel-indicators {
  display: none; /* Hide if not important */
}

/* Modal wrapper */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.show {
  display: flex;
}

/* Modal box */
.modal-content {
  display: flex;
  width: min(1100px, 95vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* LEFT: image section centered */
.modal-carousel {
  flex: 0 0 65%; /* image column width */
  background: #000; /* black backdrop around image */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Carousel track */
.modal-track {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
  width: 100%;
}
.modal-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-slide img,
.modal-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Controls overlayed at bottom */
.modal-controls {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-prev,
.modal-next {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
}
.modal-indicators {
  display: flex;
  gap: 6px;
}
.modal-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
}
.modal-indicators .active {
  background: #4caf50;
}

/* RIGHT: info panel */
.modal-right {
  flex: 1;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
.modal-right h3 {
  margin-top: 30px;
}
.modal-right p {
  margin: 10px 0;
}

/* Date fixed at bottom */
#modal-date {
  margin-top: auto; /* pushes it down */
  font-size: 0.9rem;
  color: #666;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.modal-text {
  margin-left: 50px;
}

.modal-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modal-description {
  flex-grow: 1;
  margin-bottom: 10px;
}
.project-prev,
.project-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2000;
}

.project-prev {
  left: 20px;
}
.project-next {
  right: 20px;
}

.project-prev:hover,
.project-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.highlighted {
  background-color: #037f25;
  border-radius: 10px;
}

/* ALL MOBLIE CHANGES */

/* Styles specifically for screens up to a certain width (e.g., mobile devices) */

@media screen and (max-width: 1024px) {
  /* Styles to apply when the screen width is 1024px or less */

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 200px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
    margin-left: 30px;
  }

  #logo-img {
    display: inline-block;
    height: 140px;
  }

  #logo-words {
    display: inline-block;
    height: 90px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    width: 500px;
    height: 10px;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hamburger {
    margin-right: 0;
  }

  #momnt-banner-1 {
    width: 900px;
    display: block;
    margin: auto;
  }

  #momnt-banner-2 {
    width: 240px;
    display: inline-block;
    margin: 20px;
    margin-left: 230px;
  }

  #momnt-widget {
    display: inline-block;
    margin-top: 15px;
    position: absolute;
  }

  #about-us-img,
  #about-us-img-more {
    height: 450px;
    width: 600px;
    margin-bottom: 50px;
  }

  #about-us-img-more {
    margin-bottom: 500px;
  }

  #about-us-words {
    margin-left: 10px;
  }

  .text-box {
    width: 320px;
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  /* Styles to apply when the screen width is 800px or less */

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 200px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    max-height: 60vh;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
    margin-left: 80px;
  }

  #logo-img {
    display: inline-block;
    height: 140px;
  }

  #logo-words {
    display: inline-block;
    height: 90px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    width: 500px;
    height: 10px;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hamburger {
    margin-right: 0;
  }

  #momnt-banner-1 {
    width: 750px;
    display: block;
    margin: auto;
  }

  #momnt-banner-2 {
    width: 240px;
    display: inline-block;
    margin: 20px;
    margin-left: 150px;
  }

  #momnt-widget {
    display: inline-block;
    margin-top: 15px;
    position: absolute;
  }

  #about-us-img,
  #about-us-img-more {
    height: 450px;
    width: 380px;
    margin-bottom: 50px;
  }

  #about-us-img-more {
    margin-bottom: 400px;
  }

  #about-us-words {
    margin-left: 10px;
  }

  .text-box {
    width: 320px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  /* Styles to apply when the screen width is 768px or less */

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 200px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    max-height: 60vh;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
    margin-left: 8%;
  }

  #logo-img {
    display: inline-block;
    height: 140px;
  }

  #logo-words {
    display: inline-block;
    height: 90px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    width: 500px;
    height: 10px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hamburger {
    margin-right: 0;
  }

  #momnt-banner-1 {
    width: 700px;
    display: block;
    margin: auto;
  }

  #momnt-banner-2 {
    width: 240px;
    display: inline-block;
    margin: 20px;
    margin-left: 100px;
  }

  #momnt-widget {
    display: inline-block;
    margin-top: 15px;
    position: absolute;
  }

  #about-us-words {
    margin-left: 10px;
  }

  #about-us-img,
  #about-us-img-more {
    height: 450px;
    width: 340px;
  }

  .text-box {
    width: 320px;
    font-size: 16px;
  }
}

@media screen and (max-width: 700px) {
  /* Styles to apply when the screen width is 700px or less */

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 200px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
    margin-left: 40px;
  }

  #logo-img {
    display: inline-block;
    height: 110px;
  }

  #logo-words {
    display: inline-block;
    height: 70px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    width: 500px;
    height: 10px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  #momnt-banner-1 {
    width: 650px;
    display: block;
    margin: auto;
  }

  #momnt-banner-2 {
    width: 240px;
    display: inline-block;
    margin: 20px;
    margin-left: 80px;
  }

  #momnt-widget {
    display: inline-block;
    margin-top: 15px;
    position: absolute;
  }

  #about-us-words {
    margin-left: 10px;
  }

  #about-us-img,
  #about-us-img-more {
    height: 400px;
    width: 280px;
  }

  .text-box {
    width: 320px;
    font-size: 16px;
  }
}

/* Styles specifically for screens up to a certain width (e.g., mobile devices) */
@media screen and (max-width: 640px) {
  /* Styles to apply when the screen width is 640px or less */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 120px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
  }

  #logo-img {
    display: inline-block;
    height: 100px;
  }

  #logo-words {
    display: inline-block;
    height: 70px;
    margin-bottom: 20px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 37%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    max-width: 1080px; /* Ensure content fits within the hero image */
    max-height: 898px; /* Ensure content fits within the hero image */
    height: 30px;
  }

  .hero-content h1 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 12px;
  }

  #momnt-banner-1 {
    width: 570px;
    display: block;
    margin: auto;
  }

  #momnt-banner-2 {
    width: 240px;
    display: inline-block;
    margin: 20px;
    margin-left: 30px;
  }

  #momnt-widget {
    display: inline-block;
    margin-top: 15px;
    position: absolute;
  }

  #about-us-words {
    margin-left: 10px;
  }

  #about-us-img,
  #about-us-img-more {
    height: 320px;
    width: 220px;
  }

  #about-us-img-more {
    display: none;
  }

  .text-box {
    width: 320px;
    font-size: 16px;
  }
}

/* Styles specifically for screens up to a certain width (e.g., mobile devices) */
@media screen and (max-width: 600px) {
  /* Styles to apply when the screen width is 600px or less */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 150px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 13px;
  }

  #logo-img {
    display: inline-block;
    height: 100px;
  }

  #logo-words {
    display: inline-block;
    height: 60px;
    margin-bottom: 20px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    max-width: 1080px; /* Ensure content fits within the hero image */
    max-height: 898px; /* Ensure content fits within the hero image */
    width: 405px;
    height: 10px;
  }

  #momnt-banner-1 {
    display: none;
  }

  #momnt-banner-2 {
    width: 215px;
    display: inline-block;
    margin: 20px;
    margin-left: -15px;
  }

  #momnt-widget {
    display: inline-block;
    margin-top: 15px;
    position: absolute;
  }

  #about-us-words {
    margin-left: 20%;
  }

  #about-us-img,
  #about-us-img-more {
    display: none;
  }
}

/* Styles specifically for screens up to a certain width (e.g., mobile devices) */
@media screen and (max-width: 500px) {
  /* Styles to apply when the screen width is 500px or less */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 120px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    max-height: 50vh;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
  }

  #logo-img {
    display: inline-block;
    height: 90px;
  }

  #logo-words {
    display: inline-block;
    height: 40px;
    margin-bottom: 20px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    max-width: 1080px; /* Ensure content fits within the hero image */
    max-height: 898px; /* Ensure content fits within the hero image */
    width: 350px;
    height: 10px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 16px;
  }

  .service-type {
    font-size: 23px;
  }

  #about-us-words {
    margin-left: 20%;
  }
}

/* Styles specifically for screens up to a certain width (e.g., mobile devices) */
@media screen and (max-width: 450px) {
  /* Styles to apply when the screen width is 450px or less */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 100px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
  }

  #logo-img {
    display: inline-block;
    height: 60px;
  }

  #logo-words {
    display: inline-block;
    height: 40px;
    margin-bottom: 20px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    max-width: 1080px; /* Ensure content fits within the hero image */
    max-height: 898px; /* Ensure content fits within the hero image */
    width: 310px;
    height: 10px;
  }

  .hero-content p {
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: 14px;
  }

  #contact-content {
    color: #19da66;
  }

  .service p {
    font-size: 20px;
  }

  #about-us-words {
    margin-left: 20%;
  }

  #about-us-more #about-us-words {
    margin-left: 10%;
  }

  #contact p {
    color: black;
  }

  #contact h1 {
    color: black;
  }
}

@media screen and (max-width: 430px) {
  /* Styles to apply when the screen width is 430px or less */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 100px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
  }

  #logo-img {
    display: inline-block;
    height: 55px;
  }

  #logo-words {
    display: inline-block;
    height: 30px;
    margin-bottom: 20px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    max-width: 1080px; /* Ensure content fits within the hero image */
    max-height: 898px; /* Ensure content fits within the hero image */
    width: 320px;
    height: 10px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 15px;
  }

  #contact-content {
    color: #19da66;
  }

  .service p {
    font-size: 18px;
  }

  #about-us-words {
    margin-left: 7%;
  }

  #about-us-more #about-us-words {
    margin-left: 6%;
  }

  #about-us-words h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 425px) {
  /* Styles to apply when the screen width is 425px or less */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a8e48;
    padding: 0 2rem; /* Remove vertical padding for tighter fit */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 100px; /* Increase this to fit a bigger logo */
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    width: auto;
    position: sticky;
  }

  .hero-img {
    max-width: 100vw;
    width: 80vw;
    height: 200vh;
    padding: 50px;
    object-fit: scale-down;
    object-position: left top;
    display: block;
    margin: 0 auto;
  }

  #logo-img {
    display: inline-block;
    height: 55px;
  }

  #logo-words {
    display: inline-block;
    height: 30px;
    margin-bottom: 20px;
  }

  .hero-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
    max-width: 1080px; /* Ensure content fits within the hero image */
    max-height: 898px; /* Ensure content fits within the hero image */
    width: 320px;
    height: 10px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 15px;
  }

  #contact-content {
    color: #19da66;
  }

  .service p {
    font-size: 18px;
  }

  #about-us-words {
    margin-left: 7%;
  }

  #about-us-more #about-us-words {
    margin-left: 6%;
  }

  #about-us-words h1 {
    font-size: 30px;
  }
}
