body {
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  color: #999999;
  width: 100%;
}
a {
  text-decoration: none;
}
h1,
h2 {
  font-weight: bold;
  color: #ffffff;
}

section {
  padding: 100px 15px;
}

.btn-more {
  background: #a7ff14 !important;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  padding: 12px 42px;
  box-sizing: border-box;
  width: 200px;
}
.btn-more:hover,
.btn-more.active {
  background: #84cd0f !important;
  color: #000 !important;
}

.brand-logo {
  max-width: 115px;
}
.footer-brand-logo {
  max-width: 84px;
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.5);
}
.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  padding-left: 2em;
  padding-right: 2em;
}

.footer-nav .nav-link {
  color: #fff;
  padding-left: 1em;
  padding-right: 1em;
}

/* Banner */
.banner {
  position: relative;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.banner-content {
  position: relative;
  z-index: 1;
}
.banner h1 {
  font-size: 3.8rem;
  margin-bottom: 15px;
}
.banner p {
  font-size: 1.8rem;
  line-height: 1.3em;
  margin-bottom: 30px;
  max-width: 768px;
}

/* Who We Are */
.who-we-are-list {
  list-style: none;
  padding-left: 15px;
}
.who-we-are-list li {
  line-height: 30px;
  vertical-align: middle;
  position: relative;
}
.who-we-are-list li::before {
  content: '●';
  color: #a7ff14;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 20px;
}
.who-images {
  position: relative;
  width: 100%;
  height: 300px;
}
.who-images img {
  width: 220px;
  height: 220px;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.who-images img:nth-child(1) {
  transform: translate(-50%, -90%);
} /* up */
.who-images img:nth-child(2) {
  transform: translate(-75%, 0%);
  width: 380px;
  height: 250px;
  z-index: 3;
} /* left */
.who-images img:nth-child(3) {
  transform: translate(30%, -10%);
  width: 280px;
} /* right */
.mobile-images-block img {
  max-width: 33.33%;
}
/* Expertise */
.expertise-cards img {
  font-size: 80px;
  width: 80px;
  height: 80px;
  color: #a7ff14;
}
.expertise-cards {
  gap: 15px;
  margin-top: 15px;
  color: #ffffff;
  /* max-width: 860px; */
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.expertise-cards .expert-card {
  background: #222;
  /* padding: 10px 40px; */
  border-radius: 20px;
  width: 200px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

/* Map */
.map-card {
  background: #111;

  border-radius: 20px;
  max-width: 80%;
  padding: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.map img {
  height: auto;
  max-width: 600px;
  width: 100%;
}

/* ---------- Work in Action ---------- */
.work-full {
  overflow: hidden;
  background: transparent;
}
/* make the section full-bleed edge-to-edge */
.work-full .edge {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.swiper {
  padding: 30px 0px;
}
.swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  overflow: hidden;
  cursor: grab;
}
.swiper-button-next,
.swiper-button-prev {
  display: none;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Reviews  ---------- */
.reviews .card {
  background: #222;
  border-radius: 12px;
  border: none;
  padding: 18px;
  color: #eaeaea;
}
.review-quote {
  display: block;
  color: #ddd;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-user {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.04);
}

/* ---------- Contact form ---------- */
.contact-card {
  background: #151515;
  padding: 30px;
  border-radius: 16px;
  max-width: 650px;
  margin: 0 auto;
  color: #fff;
}
.contact-card .form-control {
  background: #222;
  color: #fff;
  border: 1px solid #222;
  padding: 0.75rem 0.85rem;
  border-radius: 1px;
}
.contact-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Footer */
footer {
  background: #000;
  padding: 20px 0;
  color: #aaa;
}

@media (max-width: 768px) {
  .swiper {
    padding-left: 18px;
    padding-right: 18px;
  }
  .swiper-slide {
    height: auto;
  }
  .navbar {
    background: rgba(0, 0, 0, 0.7);
  }
  .brand-logo {
    width: 84px;
  }
  section {
    padding: 60px 15px;
  }
  .banner h1 {
    font-size: 2.5rem;
  }
  .banner p {
    font-size: 1.2rem;
    line-height: 1.2em;
  }
  .map-card {
    max-width: 100%;
  }
  .btn-more{
    display: none;
  }
}

@media (max-width: 480px) {
  .expertise-cards .expert-card {
    width: 100%;
  }
}
