* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.about-banner {
  background-image: url('./../img/envinronment.jpg');
  background-position: center;
  -webkit-filter: blur();
  filter: blur();
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#mission-vision {
  background-image: url('./../img/bg2.jpg');
  background-repeat: no-repeat;
  background-size: cover;

}

#mission-vision.title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

#mission-vision p {
  text-align: justify;
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}


.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.738);
  z-index: -1;
}

#services {
  color: #fff;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.618) 0%), url('./../img/Banner.png');
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  margin: 0;
  border-radius: 0;
  padding: 20px;
}
.service-btn{
  text-align: center;
}
.container {
  align-items: center;
}

#services ul {
  list-style: none;
  padding: 20px;
}

#services li {
  vertical-align: middle;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 10px 20px;
  background-color: #d13267;
  letter-spacing: 2px;
  color: whitesmoke;
  width: 300px;
  font-family: monospace;
  border: none;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.team {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.description{
  font-family: cursive;
 
}
.address {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.address h2 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.address p {
  font-size: 18px;
  color: #666;
  margin-bottom: 5px;
}

@media screen and (min-width:600px) {

  .about-banner {
    height: 400px;
  }
}