@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  user-select: none;
}

header {
  background-color: #f0f0f0;
  width: 100%;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 200px;
}

.logo {
  width: 12em;
  height: 2.7em;
}

.navigation a {
  color: #000;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 700;
  padding-left: 30px;
}

.navigation a:hover {
  color: #71962c;
}
.dropbtn {
  color: black;
  font-size: 1.1em;
  font-weight: 700;
  padding-left: 30px;
  border: none;
  cursor: pointer;
}
.dropbtn:hover {
  color: #71962c;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 165px;
  text-align: center;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 0.8em;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: red;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
section {
  padding: 100px 200px;
  background-image: url("Pics/1586344.jpg");
}
.main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(Pics/551690.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (min-width: 1600px) {
  .Home-info {
    width: 1000px;
  }
  .main {
    justify-content: center;
  }
}

.main h2 {
  display: inline-block;
  margin-top: 10px;
  font-size: 2.2em;
  font-weight: 600;
  color: #fff;
  margin-left: -80px;
}

.main h3 {
  color: white;
  font-size: 2.2em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
  margin-left: 80px;
}

.main-btn {
  color: white;
  background-color: #71962c;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  display: inline-block;
  padding: 0.9375em 2.1875em;
  letter-spacing: 1px;
  border-radius: 15px;
  margin-bottom: 40px;
  transition: 0.7s ease;
}

.main-btn:hover {
  transform: scale(1.1);
}
.social-icons a {
  color: white;
  font-size: 1.7em;
  padding-right: 35px;
}
.social-icons {
  padding-left: 40px;
}
.title {
  display: flex;
  justify-content: center;
  color: #71962c;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 30px;
}
.content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.card {
  background-color: #fff;
  width: 21.25em;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
  border-radius: 10px;
  padding: 25px;
  border: #000 2px solid;
  margin: 15px;
  transition: 0.7s ease;
}

.card:hover {
  transform: scale(1.1);
}

.icon {
  color: #71962c;
  font-size: 8em;
  text-align: center;
}

.info {
  text-align: center;
}

.info h3 {
  color: #71962c;
  font-size: 1.2em;
  font-weight: 700;
  margin: 10px;
}
.title-projects {
  display: flex;
  justify-content: center;
  -webkit-text-stroke: #000 2px;
  color: white;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 30px;
}
.projects {
  /*background-image: url(https://th.bing.com/th/id/R.e55b471504efdc0d2b0859c1afcce518?rik=cbLwpR%2f%2fdff5fg&riu=http%3a%2f%2fwallup.net%2fwp-content%2fuploads%2f2017%2f11%2f17%2f242026-cranes_machine.jpg&ehk=%2fOkLu6CzhZs5LUUyNaaDf%2bD1oVyziEcGupgvXNEoWBg%3d&risl=&pid=ImgRaw&r=0);*/
  background-image: url(https://th.bing.com/th/id/R.f8bd8f1fdaf33a79844a7597415506f1?rik=Tq5D%2bEiDUlcjWw&pid=ImgRaw&r=0);
  background-size: cover;
  background-repeat: no-repeat;
}
.projects .content {
  margin-top: 30px;
}
.projectCard {
  background-color: white;
  border: 2px solid #000;
  height: 17em;
  width: 15em;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px;
  transition: 0.7s ease;
}
.projectCard:hover {
  transform: scale(1.1);
}
.projectCard:hover .project-img {
  opacity: 0.9;
}
.project-img {
  height: 70%;
}
.project-img img {
  width: 100%;
  height: 100%;
}
.project-info {
  padding: 1em;
}
.project-category {
  font-size: 0.8em;
  color: #000;
}
.project-title {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 10px;
}
.project-title span {
  font-size: 1em;
}
.more-details {
  text-decoration: none;
  color: #71962c;
}
.more-details:hover {
  color: red;
}
.contact .icon {
  font-size: 4.5em;
}
.contact .info h3 {
  color: #000;
}
.contact .info a {
  font-size: 1.2em;
  color: #000;
  text-decoration: none;
}
.footer {
  background-color: #000016;
  color: white;
  padding: 2em;
  display: flex;
  justify-content: space-between;
}
.footer-title {
  font-size: 1.3em;
  font-weight: 600;
}
.footer-title span {
  color: #71962c;
}

.footer .social-icons a {
  font-size: 1.3em;
  padding: 0 35px 0 0;
}

@media (max-width: 1024px) {
  header {
    padding: 12px 20px;
    font-size: 10px;
  }
  .navigation a {
    padding-right: 10px;
    font-size: 16px;
  }
  .title {
    font-size: 1.8em;
  }
  section {
    padding: 80px 20px;
    width: 100%;
  }
  .main h2,
  .main h3 {
    font-size: 1.2em;
  }
  .content {
    flex-direction: column;
    align-items: center;
  }
  .main h2,
  .main h3 {
    margin: 0px;
    margin-left: 20px;
    margin-bottom: 10px;
  }
  .footer {
    font-size: 8px;
  }
  .projectCard {
    height: 12.75em;
    width: 11.25em;
  }
  .project-title span,
  .more-details {
    font-size: 0.7em;
  }
  .project-title {
    margin-bottom: 5px;
  }
  .card {
    height: 14em;
    width: 14em;
  }
  .card .icon {
    font-size: 4em;
  }
  .card .info {
    font-size: 0.8em;
  }
  .main .social-icons {
    margin-top: -20px;
  }
  .project-img {
    height: 65%;
  }
}

.about-us {
  min-height: 100vh;
  width: 100%;
}
.about-us p {
  font-size: 1.3em;
}

@media (max-width: 425px) {
  header {
    font-size: 5px;
  }
  .navigation a {
    font-size: 10px;
    padding-left: 5px;
  }
}
@media (max-width: 375px) {
  header {
    font-size: 6px;
    height: 40px;
  }
  .navigation a {
    font-size: 10px;
  }
  .main h2,
  .main h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .main h3 {
    margin-left: 110px;
    margin-bottom: 40px;
  }
  .service {
    display: none;
  }
  .main-btn {
    font-size: 13px;
  }
  .main .social-icons {
    font-size: 10px;
    margin-top: -30px;
    margin-left: -15px;
  }
  .title {
    font-size: 15px;
  }
  .about-us p {
    font-size: 13px;
  }
}
@media (max-width: 320px) {
  header {
    justify-content: center;
  }
  .navigation a {
    display: none;
  }
  .navigation {
    justify-content: center;
  }
  .main h3,
  .main h2 {
    font-size: 12px;
  }
}
