* {
  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;
  background-color: #e1e1e4;
}

#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;
}

.error{
  color: red;
}

#contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  background-color: #e1e1e4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-box h2{
  font-size: 30px;
  margin-bottom: 20px;
  color: #010101;
}


#contact-box {
  margin-left: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.text-box {
  margin: 10px;
  padding: 8px;
  width: 300px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background-color: #123c69;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ac3b61;
}

#contact-text {
  width: 600px;
  color: #010101;
}

#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;
    } */



  #contact-box{
    margin: 20px 0;
    
  }
  #contact-text{
    margin-top: 25px;
  }

  #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;
  }

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

  #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);
    }
  }



  .error-message {
    color: red;
}

#faq{
  display: flex;
  background-color: #e1e1e4;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.faqs{
  border-bottom: 2px solid grey;
  width: 80vw;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

#faq h1{
  margin-bottom: 20px;
  color: #010101;
  text-decoration: underline;
}

.faqs {
  cursor: pointer;
  margin-bottom: 10px;
}

.faqs img {
  margin-right: 5px;
}

.faq-content {
  display: none;
}


.container h1{
  margin-bottom: 30px;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  background-color: #e1e1e4;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

button {
  background-color: #123c69;
  color: #000000;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}


#faq{
  display:none !important;
}