body {
  background-image: url(../img/ServiceBackground.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  font-family: coolvetica;
  color: black;
  padding-top: 160px;
  /* allow space for fixed header + nav */
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 120px;
  background-image: url(img/ServiceBackground.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}


.maintitle {
  font-size: 90px;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 70px;
  z-index: 1;
  color: white;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.subtitle {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 10px;
  z-index: 1;
  color: rgb(0, 0, 0);
}

.stext {
  font-size: 20px;
  margin: 0;
  z-index: 1;
  color: rgb(0, 0, 0);
  font-family: nexa;
}


/*---------------------------------------------*/
/*-----------Contact Button-----------*/


.btn-success {
  background-color: #196b2c;
  border: none;
  border-radius: 20px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  display: contents;
  text-decoration: none;
  font-size: 40px;
  cursor: pointer;
  display: block;
  margin: 80px auto;
  /* 80px top/bottom, auto left/right */
  width: fit-content;
}


/*---------------------------------------------*/
/*-----------Text1-----------*/


.text1 {
  font-size: 20px;
  text-align: center;
  margin: 50px;
  margin-left: 200px;
  margin-right: 200px;
  font-family: nexa;
  color: white;
}


/*---------------------------------------------*/
/*-----------Navigation-----------*/


.navbar-expand-sm {
  background-color: #ffffff;
  border: solid 0.1px white;
  border-radius: 50px;
  margin-left: 300px;
  margin-right: 300px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  padding-top: 4px;
  padding-bottom: 4px;
  min-height: unset;
  /* make navigation bar fixed so it stays with the header and does not scroll */
  position: fixed;
  /* position just below the black info bar and overlap by a few pixels */
  top: 70px;
  left: 0;
  right: 0;
  z-index: 101;
  /* higher than .box so it overlaps */
  display: flex;
  justify-content: center;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: black;
  font-size: 30px;
}

.nav-link:hover,
.nav-link:focus {
  color: black !important;
}

.nav-link1 {
  color: rgb(255, 255, 255);
  font-size: 30px;
  text-decoration: none;
  background-color: #196b2c;
  border: solid 0px;
  padding: 20px;
  border-radius: 20px;
}

.hamburger {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: black;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.dropdown-menu-custom.active {
  max-height: 500px;
  /* adjust based on content */
}

.dropdown-menu-custom .dropdown-item {
  padding: 15px;
  color: black;
  text-decoration: none;
  font-size: 20px;
  width: 100%;
  text-align: center;
}

.search-input-mobile {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact-btn-mobile {
  background-color: #196b2c;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin: 10px 0;
  display: block;
  text-align: center;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .navbar-expand-sm {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 20px;
    top: 99px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .navbar-container {
    padding: 0 10px;
  }

  body {
    background-size: 170% auto;
    background-position: top center;
  }

  .hamburger {
    font-size: 24px;
  }
}

header {
  background-color: rgb(32, 32, 32);
  color: white;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.box .border {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.box .m-2 {
  border: none !important;
  background-color: transparent !important;
}

/*---------------------------------------------*/
/*-----------no idea-----------*/


.me-2 {
  height: 60px;
  width: 300px;
  border-radius: 30px;
  border: solid black 2px;
  background-color: #cacaca;
  padding-left: 30px;
}

.me-2:hover {
  background-color: #b0b0b0;
  transition: 0.5s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}


/*---------------------------------------------*/


.box .group {
  position: fixed;
  top: -810px;
  left: -802px;
  width: 1440px;
  height: 99px;
  display: flex;
  background-color: #222222;
}

.box .div {
  display: inline-flex;
  margin-top: 27px;
  width: 991px;
  height: 24px;
  margin-left: 92px;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.box .frame {
  width: 318px;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  margin-left: 460px;
}

.box .img {
  width: 20px;
  height: 20px;
  position: relative;
  aspect-ratio: 1;
}

.box .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Coolvetica-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.box .frame-2 {
  width: 439px;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
}

.box .frame-3 {
  width: 130px;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
}

.box .vector {
  width: 22px;
  height: 22px;
  margin-left: -1.00px;
  position: relative;
  aspect-ratio: 1;
}

.box {
  width: 100%;
  height: 99px;
}

.box .group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 99px;
  display: flex;
  background-color: #222222;
  z-index: 100;
}

.box .div {
  display: inline-flex;
  margin-top: 27px;
  height: 24px;
  margin-left: 92px;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.box .frame {
  width: 318px;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
}

.box .img {
  width: 20px;
  height: 20px;
  position: relative;
  aspect-ratio: 1;
  margin-bottom: 17px;
}

.box .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: Coolvetica, regular;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  text-decoration: none;
  font-style: normal;
}

.box .frame-2 {
  width: 439px;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
}

.box .frame-3 {
  width: 130px;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  font-style: normal;
}

.box .vector {
  width: 22px;
  height: 22px;
  margin-left: -1.00px;
  position: relative;
  aspect-ratio: 1;
}


/*---------------------------------------------*/
/*-----------Bottom Page-----------*/


.info-section {
  background-color: #ffffff;
}

.bi-box {
  font-size: 10rem;
  margin-right: 90px;
}

.btn4 {
  background-color: #196b2c;
  border: none;
  border-radius: 10px;
  color: white;
  padding-bottom: 13px;
  padding-top: 13px;
  text-align: left;
  display: contents;
  text-decoration: none;
  font-size: 20px;
  cursor: pointer;
  display: block;
  margin-top: 20px;
}

.col-md-4 {
  margin-left: 200px;
  margin-right: 99px;
}

header,
.navbar-expand-sm {
  transition: transform 0.5s ease;
}

header.hidden,
.navbar-expand-sm.hidden {
  transform: translateY(-139%);
}

.btn-primary {
  color: rgb(255, 255, 255);
  font-size: 20px;
  text-decoration: none;
  background-color: #196b2c;
  border: solid 0px;
  padding: 10px;
  border-radius: 10px;
}

/* footer */
.footer-logo {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}