body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #030b48;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 2em 0;
}

nav ul li {
  display: inline;
  margin: 0 10px;
  padding: 1em;
  background-color: #454965;
  color: #fff;
  font-weight: bold;
  margin: 1em;
}
@media (max-width: 641px) {
  nav ul {
    display: flex;
    flex-direction: column;
  }
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.contact-info {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

section {
  padding: 2rem;
  display: flex;
}

#services {
  display: flex;
}
@media (max-width: 641px) {
  #services {
    flex-direction: column;
  }
}

.service {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  padding: 2em;
  background-color: aliceblue;
  text-align: center;
}

.service img {
  max-width: 100%;
  height: auto;
}
#welcome {
  flex-direction: column;
  text-align: center;
  background: center / cover no-repeat url("./index_files/bg-img.webp");
  min-height: 40vh;
}

#welcome p {
  background-color: #ffffff99;
  padding: 4em;
  margin: 2em;
  max-width: 400px;
  font-size: 1.5em;
  font-weight: 400;
}

@media (max-width: 641px) {
  #welcome p {
    background-color: #ffffff99;
    margin: 2em;
    font-size: 1em;
    font-weight: 400;
  }
}

#quote {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

#quote h2 {
  font-size: 3em;
  font-weight: 500;
  letter-spacing: 0.2em;
}

#testimonials {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: rgb(0, 0, 72);
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  min-width: 50%;
}

form label {
  margin: 0.5rem 0 0.25rem;
}

form input,
form textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
}

form button {
  padding: 0.75rem;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  padding: 1rem;
  text-align: center;
}

.slide.active {
  display: block;
  border: 4px solid #fff;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev {
  left: 0;
}

button.next {
  right: 0;
}
