
:root {
  --radius: 0.75rem;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.hero {
  background-image: url('https://tree.limatechworks.com/outdoor.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 62vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero .container {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero {
  background-image: url('https://tree.limatechworks.com/outdoor.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 62vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center; /* vertically center content */
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.card {
  border-radius: var(--radius);
}

.card img {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.btn-pill {
  border-radius: 100px;
  padding-inline: 1.1rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f4f1;
}

.gallery-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.6rem;
  width: 100%;
}

figure {
  margin: 0;
}

figure figcaption {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-top: 0.4rem;
}