body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-image: url("https://images.ctfassets.net/yixw23k2v6vo/1VALavTrdd6p2Q2TaRfyxO/2e19c887386c5f8469027a94f32f8dd4/GettyImages-1254788325-3000x2000.jpg?fm=webp&fit=thumb&q=65&w=864&h=576"); */
  background-size: cover;
}
.im{
  background-image: url("https://images.pexels.com/photos/8731526/pexels-photo-8731526.jpeg?auto=compress&cs=tinysrgb&w=1600");

}

header {
  background-color: #f7ecec;
  padding: 10px;
  color: rgb(3, 3, 3);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
header div a {
  text-decoration: none;
}
nav {
  display: flex;
}

nav a {
  color: rgb(3, 3, 3);
  text-decoration: none;
  padding: 10px;
  margin: 0 10px;
}

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

#menu-btn {
  display: none;
  cursor: pointer;
  color: rgb(3, 3, 3);
  font-size: 1.5em;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: rgb(3, 3, 3);
  flex-direction: column;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.9s ease;
  width: 80%;
  margin-top: 13%;
}

#mobile-menu a {
  padding: 20px;
  margin: 0;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 20px;
}

@media only screen and (max-width: 600px) {
  nav {
    display: none;
  }

  #menu-btn {
    display: block;
  }

  #mobile-menu {
    display: flex;
  }

  #mobile-menu.active {
    transform: translateX(0);
  }

}

.main-content {
  background-image: url("https://images.ctfassets.net/yixw23k2v6vo/1VALavTrdd6p2Q2TaRfyxO/2e19c887386c5f8469027a94f32f8dd4/GettyImages-1254788325-3000x2000.jpg?fm=webp&fit=thumb&q=65&w=864&h=576");
  background-size: cover;
  background-position: center;
  height: 100vh; /* Adjust to your preferred height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.shaded-background {
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust the alpha (fourth parameter) for the shade intensity */

  max-width: 700px;
  border-radius: 10px;
}

.call-us-button {
  display: inline-block;
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 5px;
}

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

.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
  /* width: ; */
  transition: transform 0.3s;
}

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

.service-card img {
  width: 100%;
  height: 150px; /* Adjust to your preferred height */
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.service-card-header {
  background-color: #817b7b;
  color: white;
  padding: 10px;
  text-align: center;
}

.service-card-content {
  padding: 20px;
}

.service-card h2 {
  color: #f3eeee;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 14px;
}

.endOfTenancy {
  font-size: 23.2px;
}

@media only screen and (max-width: 500px) {
  .main-content {
    background-image: url("https://images.ctfassets.net/yixw23k2v6vo/1VALavTrdd6p2Q2TaRfyxO/2e19c887386c5f8469027a94f32f8dd4/GettyImages-1254788325-3000x2000.jpg?fm=webp&fit=thumb&q=65&w=864&h=576");

    background-size: cover;
    background-position: center;
    height: 60vh; /* Adjust to your preferred height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  .shaded-background {
    background-color: rgba(
      0,
      0,
      0,
      0.5
    ); /* Adjust the alpha (fourth parameter) for the shade intensity */
    padding: 10px;
    max-width: 700px;
    border-radius: 10px;
    height: 96%;
  }
  .service-card {
    width: 40%; /* Display two cards on smaller screens */
  }
  .services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
  }

  .service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
    width: 150px;
    transition: transform 0.3s;
  }

  .service-card-header {
    background-color: #817b7b;
    color: white;
    padding: 5px;
    text-align: center;
  }

  .service-card-content {
    padding: 10px;
  }

  .service-card h2 {
    color: #f3eeee;
    margin-bottom: 10px;
    font-size: 11px;
  }
}

.all-services-button {
  text-align: center;
  margin-top: 20px;
}

.all-services-button a {
  display: inline-block;
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.all-services-button a:hover {
  background-color: #45a049;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.faq-question {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-answer {
  margin-bottom: 20px;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

.why-choose-us {
  background-color: #f8f8f8;
  padding: 10px 0;
  text-align: center;
}

.choose-us-card {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  
}
.choose-us-card2 {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;  
}


.choose-us-card h2 {
  color: rgb(39, 179, 39);
  font-size: 2rem;
  margin-bottom: 20px;
}

.choose-us-card p {
  color: #666;
  line-height: 1.6;
}

.contact-us-link {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

* {
  font-family: Nunito, sans-serif;
}

.responsive-cell-block {
  min-height: 75px;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;

}

.main {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: space-evenly;
  
}

.service-head-text {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  color: rgb(9, 5, 65);
}

.service-head-text {
  line-height: 50px;
  width: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.container {
  max-width: 1380px;
  margin-top: 60px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 30px;
  /* padding-bottom: 0px; */
  padding-left: 30px;
}

.card {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-right: 25px;
  /* padding-bottom: 5px; */
  padding-left: 25px;
}

.card-container {
  width: 280px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 25px;
  margin-left: 10px;
}

.name {
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 800;
}

.position {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.feature-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  color: rgb(122, 122, 122);
  line-height: 30px;
}

.social-icons {
  width: 35px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.service-image-wrapper {
  clip-path: circle(50% at 50% 50%);
  width: 190px;
  height: 190px;
}

.service-member-image {
  max-width: 100%;
}
h4, h6{
  font-size: 20px;
}
@media only screen and (max-width: 600px) {
  h4 {
    font-size: 18px; /* Adjust the size for smaller screens */
    /* Add any other styles specific to smaller screens here */
  }
}
@media (max-width: 500px) {
  .card-container {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .h4{
    font-size: 8px;
  }
  .h6{
    font-size: 6px;
  }
  .im{
    background-image: none;
  }
}
.green-checkmark {
  position: relative;
  display: inline-block;
  width: 20px; /* Adjust the size of the checkmark */
  height: 20px; /* Adjust the size of the checkmark */
}

.green-checkmark::before {
  content: "\2713"; /* Unicode character for a checkmark */
  color: #4caf50; /* Green color */
  font-size: 16px; /* Adjust the size of the checkmark */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
  padding-right: 0px;
}

.contact-us-section {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
}

.contact-us-section h2 {
  font-size: 24px;
  color: #333;
}

.contact-us-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 15px 0;
}

.phone-number {
  font-weight: bold;
  color: #4caf50;
  text-decoration: none;
}
.highlight {
  
    padding: 5px;

}
.highlight span {
  background-color: rgb(218, 216, 253);
  padding: 5px;
}