@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
}
.img-logo {
  width: 224px;
  height: 70px;
  object-fit: contain;
}
header,
.about,
.testi,
.footer {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

.hero,
.services,
.form {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(img/bg.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 90vh;
  position: relative;
  background-attachment: fixed;
}
.hero h1,
.testi h2 {
  font-family: "Poppins", sans-serif;
}
.hero span {
  font-family: "Poppins", sans-serif;
  color: #2c5364;
}

.btn {
  color: #2c5364;
  border: solid 1px #2c5364;
  transition: 0.3s;
}
.btn:hover {
  letter-spacing: 2px;
  background-color: #2c5364;
  color: white;
}
.hero .card,
.services .card,
.testi .card {
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.about h3 {
  color: #2c5364;
}
.services i {
  color: #0ae2e2;
}
.testimonial-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f8f9fa;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.quote-icon {
  font-size: 2rem;
  color: #6c757d;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin: 1rem 0;
}
.testi .btn,
.form .btn,
.footer .btn {
  background-color: #2c5364;
  border: solid 1px #2c5364;
  transition: 0.3s;
}
.testi .btn:hover,
.form .btn:hover,
.footer .btn:hover {
  letter-spacing: 2px;
}
