@font-face {
  font-family: "Aptos";
  src: url(/aptos-font/aptos.ttf);
}
@font-face {
  font-family: "Aptos-bold";
  src: url(/aptos-font/aptos-bold.ttf);
}
@font-face {
  font-family: "Britannic";
  src: url(/Britannic/Britannic\ Bold\ Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: rgb(242, 242, 242);
  font-family: "Aptos", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Britannic", sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  position: sticky;
  background-color: rgb(251, 251, 251);
  border-bottom: 1px solid rgb(221, 221, 221);
  top: 0;
  z-index: 1000;
  max-height: 80px;
}

.sidebar {
  display: none;
}

.hambugerDiv {
  display: none;
}

.logo {
  width: 15%;
}
.logo > img {
  width: 100%;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.menu ul li {
  display: flex;
  align-items: center;
}

.menu ul li img {
  width: 40px;
  cursor: pointer;
}

.menu a {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  transition: color 0.3s;
}

.menu a.active {
  color: #01913b;
  font-weight: bold;
}

.menu a:hover {
  color: #01913b;
}

#home {
  width: 100%;
  min-height: 100vh;
}
#home > .homeBannerDiv {
  width: 100%;
}

#home > .homeBannerDiv > img {
  width: 100%;
  object-fit: contain;
}

#about {
  width: 100%;
  padding: 0 5rem;
  min-height: 100vh;
  padding-top: 80px;
}

.about-content {
  width: 100%;
  margin: 0 auto;
  color: #333;
  line-height: 1.5;
}

.about-content h1 {
  font-size: 2.5rem;
  color: #01913b;
  margin-bottom: 20px;
  text-align: left;
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.house91text {
  font-family: "Aptos-bold", sans-serif;
  font-weight: bolder;
}

.about-content p strong {
  color: #01913b;
  font-weight: bold;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

#services {
  width: 100%;
  padding: 0 4rem;
  min-height: 100vh;
  padding-top: 80px;
}

#services > h1 {
  font-size: 2.5rem;
  color: #01913b;
  margin-bottom: 20px;
  text-align: left;
}

.services-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2em;
}

.service-box {
  flex: 1;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  background-color: white;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.service-box:hover {
  transform: scale(1.05);
}

.service-box img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 1.1em;
  margin: 0.5em 0;
  font-weight: lighter;
}

.service-detail {
  width: 100%;
  margin-top: 4em;
}
.servicedetailbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.servicedetailbox:hover {
  transform: scale(1.03);
}

.service-detail-image {
  width: 38%;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
}
.service-detail-image > img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: bottom;
  cursor: pointer;
}
.service-detail-info {
  width: 60%;
  padding: 10px 20px 10px 30px;
}
.service-detail-info > h2 {
  font-size: 30px;
  font-weight: 550;
  margin-bottom: 10px;
}

.service-detail-info > p {
  font-size: 18px;
  line-height: 1.5rem;
  margin-bottom: 20px;
}

.service-detail-info > ul {
  margin-left: 14px;
  line-height: 2rem;
}
.service-detail-info > ul > li {
  font-size: 18px;
  font-weight: 600;
}

#founders {
  width: 100%;
  padding: 0 4rem;
  min-height: 100vh;
  padding-top: 80px;
}

#founders h1 {
  font-size: 2.5rem;
  color: #01913b;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

#founders h2 {
  text-align: center;
  color: #01913b;
}

.founders-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.founder-box {
  width: 30%;
  text-align: center;
}

.founder-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.founder-box h3 {
  margin-top: 10px;
  font-size: 1.25rem;
  margin-bottom: 8px;
  text-align: left;
}

.founder-box p {
  font-size: 18px;
  line-height: 1.75rem;
  text-align: left;
  margin-bottom: 10px;
  font-family: "Aptos", sans-serif;
}

.founder-story {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 15px;
  text-align: justify;
}
.founder-story > p {
  margin-bottom: 20px;
}
#contactContainer {
  width: 100%;
  padding: 0 10rem;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid grey;
}

#contactContainer > .contactLeft {
  width: 53%;
}
#contactContainer > .contactLeft > h2 {
  font-size: 28px;
  font-weight: 580;
  margin-bottom: 14px;
}
#contactContainer > .contactLeft > h3 {
  font-size: 22px;
  font-weight: 550;
  margin-bottom: 10px;
}
#contactContainer > .contactLeft > p {
  font-size: 16px;
  line-height: 1.5rem;
}
#contactContainer > .contactLeft > ul {
  width: 100%;
  list-style: none;
  margin-top: 20px;
}
#contactContainer > .contactLeft > ul > li {
  width: fit-content;
  margin-bottom: 25px;
}
#contactContainer > .contactLeft > ul > li > a {
  display: flex;
  justify-content: left;
  align-items: center;
  color: black;
  text-decoration: none;
}

#contactContainer > .contactLeft > ul > li > a > img {
  width: 24px;
  height: 24px;
  margin-right: 14px;
}

#contactContainer > .contactRight {
  width: 45%;
}
#contactContainer > .contactRight > h2 {
  font-size: 28px;
  font-weight: 580;
  margin-bottom: 14px;
}
#contactContainer > .contactRight > form {
  width: 100%;
}

.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: calc(50% - 8px);
  padding: 15px 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.form-group textarea {
  width: 100%;
}

.submit-btn {
  width: 100%;
  align-self: center;
  padding: 15px 40px;
  font-size: 18px;
  background-color: #01913b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: rgb(0, 87, 0);
}

.contact-info {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.contact-info ul {
  width: 45%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.contact-info > ul > li {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 10px;
  border-radius: 10px;
}

.contact-info ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
}

.contact-info ul li img {
  margin-bottom: 10px;
  width: 24px;
  height: 24px;
}

.contact-info ul li span {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.contact-info ul li a {
  text-decoration: none;
  color: inherit;
}

.contact-info ul li a:hover {
  color: #01913b;
}

#footer {
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  background-color: rgb(0, 0, 0);
  color: white;
  margin-top: 40px;
  font-size: 18px;
}

.viewPropertyBtn {
  padding: 7px 10px;
  font-size: 16px;
  font-weight: 550;
  background-color: #01913b;
  color: white;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  outline: none;
}

.viewPropertyBtn:hover {
  background-color: rgb(0, 87, 0);
}

@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 0 0.5rem;
  }

  .hambugerDiv {
    width: 50%;
    display: block;
  }

  .hambugerDiv > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
  }
  .hambugerDiv > img {
    width: 100%;
    object-fit: contain;
  }

  .viewPropertyBtn {
    padding: 8px;
    font-size: 14px;
  }

  .logo {
    width: 40%;
  }
  .menu {
    display: none;
  }

  #home {
    width: 100%;
    min-height: auto;
  }
  #home > .homeBannerDiv {
    width: 100%;
  }

  #about {
    width: 100%;
    padding: 0 1rem;
    min-height: 100vh;
    padding-top: 10px;
  }

  .about-content {
    line-height: 1.4;
  }

  .about-content h1 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: 200px;
  }

  #services {
    padding: 0 1rem;
    min-height: 100vh;
    padding-top: 40px;
  }

  #services h1 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .services-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1.5em;
  }

  .service-box {
    flex: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
  }

  .service-box img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .service-box h3 {
    font-size: 1.1em;
    margin: 0.5em 0;
  }

  .service-detail {
    width: 100%;
    margin-top: 4em;
  }
  .servicedetailbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
  }

  .servicedetailboxRev {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
  }

  .service-detail-image {
    width: 100%;
    min-height: 100%;
  }
  .service-detail-image > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
    cursor: pointer;
  }
  .service-detail-info {
    width: 100%;
    padding: 20px;
  }
  .service-detail-info > h2 {
    font-size: 24px;
  }

  #founders {
    width: 100%;
    padding: 0 1rem;
    min-height: 100vh;
    padding-top: 20px;
  }

  #founders h1 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .founders-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .founder-box {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .founder-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
  }

  #contactContainer {
    width: 100%;
    padding: 0 1rem;
    min-height: fit-content;
    padding-top: 20px;
    flex-direction: column;
  }

  #contactContainer > .contactLeft {
    width: 100%;
  }
  #contactContainer > .contactLeft > h2 {
    font-size: 26px;
    text-align: left;
  }
  #contactContainer > .contactLeft > h3 {
    font-size: 20px;
  }
  #contactContainer > .contactLeft > p {
    font-size: 16px;
  }
  #contactContainer > .contactLeft > ul > li {
    margin-bottom: 20px;
  }

  #contactContainer > .contactRight {
    width: 100%;
    margin-top: 30px;
  }
  #contactContainer > .contactRight > h2 {
    font-size: 26px;
    text-align: left;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 10px;
  }

  .submit-btn {
    width: 100%;
    align-self: center;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
  }
  /* .sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: #ffffff;
    background-color: transparent;
    color: rgb(0, 0, 0);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid grey;
  }

  .sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    background-color: transparent;
  }

  .sidebar-header img {
    width: 25px;
    cursor: pointer;
  }

  .sidebar-menu {
    padding: 10px 20px 20px 20px;
    background-color: white;
  }

  .sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-menu ul li {
    margin-bottom: 7px;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
  }

  .sidebar-menu ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
  }

  .sidebar-menu ul li img {
    width: 30px;
  } */
  .scroll-link i {
    margin-right: 8px; /* Add space between icon and text */
    color: #333; /* Customize icon color */
  }

  .scroll-link {
    text-decoration: none;
    font-size: 16px;
  }
  .fab.fa-whatsapp {
    color: #25d366;
    font-size: 24px;
  }
  .whatsapp-icon-li {
    display: flex;
    align-items: center;
  }
}
