* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", Courier, monospace;
}
body {
  background-color: #fefefe;
  overflow-x: hidden;
}

p{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#blank-element {
  width: 100vw;
  height: 20vh;
}

#header-for-phone {
  display: none;
}

#header ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #e1e1e4;
  flex-wrap: wrap;
  text-align: center;
  color: rgb(0, 0, 0);
}

#header ul li {
  margin: 10px 50px;
  text-decoration: none;
  list-style: none;
  text-align: center;
}

#header {
  text-align: center;
}

#navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000;
}

#navbar ul {
  background-color: #123c69;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  margin: 0;
}

#navbar ul li a {
  text-decoration: none;
  color: white;
  padding: 20px;
  display: block;
}

.box {
  cursor: pointer;
}

#navbar ul li {
  transition: background-color 0.3s ease;
  border-radius: 20px;
}

#navbar ul li:hover {
  background-color: #ac3b61;
}

.menu-icon {
  background-color: #123c69;
  display: none;
  padding: 0px 2%;
  font-size: 24px;
  cursor: pointer;
  position: sticky;
  top: 10;
}

#head2 {
  display: flex;
  align-items: center;
  width: 100vw;
  height: 30vh;
  background-color: #123c69d5;
}

#head2 h1 {
  margin-left: 10%;
  color: #e1e1e4;
  font-size: 3em;
}

#about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
}

#about #about-pic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px; /* Set the width of the image container */
  margin-right: 20px; /* Add some margin between the image and text */
}

#about #about-pic img {
  width: 100%; /* Make the image take full width of its container */
  height: auto; /* Maintain the aspect ratio of the image */
}

#about-text {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  
  justify-content: center;
  width: 60%; /* Set the width of the text container */
}

#about-text p {
  margin: 20px 0px;
}

#heading-our-clients {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#heading-our-clients h1 {
  text-decoration: underline;
}

#our-clients {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px;
  flex-wrap: wrap;
}

#last-2 {
  width: 100vw;
  height: 10vh;
  background: linear-gradient(rgba(53, 53, 53), rgba(53, 53, 53));
}

#last {
  width: 100vw;
  height: 40vh;
  color: #e1e1e4;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(rgba(53, 53, 53), rgba(53, 53, 53));
}

#last h2,
h4 {
  margin: 10px;
}

#last h4 li {
  margin: 0 20px;
}

#last h2 {
  text-decoration: underline;
}

#last h4 li:hover,
#last h4 li:hover a {
  text-decoration: underline;
}

#last h4 li:hover {
  color: #123c69;
}

#last h4 a {
  text-decoration: none;
  color: #e1e1e4;
  list-style: circle;
}

#address-last {
  width: 400px;
  margin: 0 50px;
  margin-left: 5%;
}



#quick-links-last {
  width: 300px;
  margin-right: 5%;
}

#services-last {
  width: 300px;
}

@media (max-width: 768px) {
  /* body{
        max-width: 100vw;
        overflow-x: hidden;
    } */

  #header-for-phone {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 9%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #123c69;
  }

  #header-for-phone h1 {
    color: #e9e5e5;
    font-size: 35px;
  }

  #navbar {
    z-index: 1001;
  }

  #navbar ul {
    flex-direction: column;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #123c69;
    display: none;
  }

  .menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    position: fixed;
  }

  #navbar ul.show {
    z-index: 1000;
    display: flex;
  }

  #navbar ul li {
    z-index: 1000;
    text-align: center;
    padding: 15px;
    width: 100%;
  }

  #navbar img {
    z-index: 1000;
    width: 100px;
  }

  .menu-icon img {
    z-index: 1000;
    margin-top: 5px;
    width: 40px;
    font-size: 40px;
  }

  #header {
    display: none;
  }

  #about-pic {
    margin-top: 20px;
    width: 100vw;
  }
  #about-text {
    margin-left: 0px;
    margin-top: 50px;
    width: 100vw;
    text-align: center;
    margin-bottom: 50px;
  }
  #head2 {
    height: 20vh;
  }

  #address-last {
    width: 100vw;
    height: 30vh;
    margin-left: 5%;
  }

  #quick-links-last {
    width: 100vw;
    margin: 0;
    height: 30vh;
  }

  #services-last {
    width: 100vw;
    margin: 0;
    height: 30vh;
  }

  #last {
    height: 90vh;
  }
}
@media (max-width: 768px) {
  #last {
    height: auto; /* Remove fixed height for smaller screens */
    padding: 20px; /* Add padding for better spacing */
    display: flex;
    flex-direction: column; /* Change to column layout on smaller screens */
  }

  #address-last,
  #quick-links-last,
  #services-last {
    width: 100%; /* Make the sections full width on smaller screens */
    margin: 10px 0;  /* Add some margin for better spacing */
  }
}
#last{
  height: 100%;
}

#services-last {
  margin-left: 5%; 
}

#phone {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  margin: 10px; /* Add some margin for better appearance */
}

#whatsapp {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  margin: 10px; /* Add some margin for better appearance */
}




#navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}