* {
  padding: 0px;
  margin: 0px;
  font-family: "sans-serif", poppins;
}

/* Navbar */

nav {
  width: 100%;
  height: 12vh;
  background-color: rgb(224, 222, 222);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav1 {
  width: 15%;
  display: flex;
  justify-content: center;
}
.nav1 h1 {
  font-weight: lighter;
  letter-spacing: 3px;
  font-size: 25px;
}
.nav2 {
  width: 45%;
  display: flex;
  justify-content: space-evenly;
}
.nav2 a {
  text-decoration: none;
  color: rgb(123, 121, 121);
  font-size: 18px;
  font-weight: lighter;
  padding: 5px;
  cursor: pointer;
}
.nav2 a:hover {
  box-shadow: 0px 0px 5px turquoise;
}
.nav3 {
  width: 15%;
  display: flex;
  justify-content: space-evenly;
  padding-right: 15px;
}
.nav3 a {
  color: rgb(84, 83, 83);
}
.nav3 i {
  font-size: 20px;
}
.nav3 i:hover {
  color: rgb(46, 200, 184);
}

/* Service */

.services-container {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.services-title {
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-title p {
  font-size: 1.1rem;
  color: darkgray;
  margin-bottom: 20px;
}

.services-grid {
  width: 85%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.service-card p {
  line-height: 1.3;
  color: gray;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Footer */

footer {
  background-color: lightgray;
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

footer p {
  font-size: 17px;
  color: gray;
}

footer strong {
  color: rgb(51, 184, 168);
}
footer a {
  text-decoration: none;
}

footer i {
  font-size: 20px;
  background-color: transparent;
  border: 1px solid gray;
  padding: 9px;
  color: gray;
  border-radius: 50%;
}

footer i:hover {
  color: rgb(51, 184, 168);
  border: 1px solid rgb(51, 184, 168);
}
