body {
  font-family: 'Livvic', sans-serif; /* 'Poppins', 'Livvic', sans-serif */
}

.topbar {
  background: #0b1c2d;
  color: #fff;
  font-size: 14px;
}

.navbar {
  background: linear-gradient(90deg, #fff, #fff);
}

.nav-link {
  color: #000 !important;
  margin-left: 15px;
  position: relative;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #2f51b9;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.hero {
  height: 95vh;
  background:
    linear-gradient(rgba(11,28,45,.85), rgba(47, 69, 131, 0.85)),
    url('../images/mimi-thian-t1bz9XpJ2-Y-unsplash.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
}

.btn-gradient {
  background: linear-gradient(90deg, #1744bf, #3c5dbf);
  color: #fff;
  border: none;
}

.section {
  padding: 80px 0;
}

.bg-soft {
  background: #f5f8ff;
}

.about-box {
  background: #f5f8ff;
  padding: 30px;
  border-left: 5px solid #1744bf;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(126, 140, 230, 0.08);
  transition: 0.4s;
}

.service-card i {
  font-size: xx-large;
  margin-bottom: 15px;
  color: #1744bf;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(131, 157, 228, 0.85);
  border: 2px solid #1744bf;
}

.icon-lg {
  font-size: 40px;
  color: #1744bf;
  margin-bottom: 15px;
}

.impact {
  background: linear-gradient(90deg, #1744bf, #0b1c2d);
  color: white;
  padding: 70px 0;
}

.counter {
  font-size: 46px;
  font-weight: 700;
}

.gradient-dark {
  background: linear-gradient(90deg, #0b1c2d, #000);
}

.sub-text {
  font-size: 14px;
  line-height: 2rem;
  color: #aaa;
}

.services a, .company a, .contact-info {
    font-size: 14px;
    line-height: 2rem;
    color: #aaa;
}
.services a:hover, .company a:hover {
    color: #1744bf;
    text-decoration: none;
}

.team-member {
  padding: 10px;
  border: 2px solid #a1b9f0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(126, 140, 230, 0.08);
  transition: 0.4s;
}
.team-member .img {
    width: 60%;
    height: 250px;
    /* background: url('../images/grace-linsoft.png') center/cover no-repeat; */
    margin: 0 auto 15px auto;
}
.team-member .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member:hover {
    transition: 0.4s;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(131, 157, 228, 0.85);
    border: 2px solid #a1b9f0;
}

.testimonial-card {
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    border-left: 5px solid #1744bf;
}
.testimonial-card:hover {
    transform: scale(1.05) skew(-2deg);
    box-shadow: 0 0 30px rgba(131, 157, 228, 0.85);
    transition: 0.4s;
    background-color: #f5f8ff;
}

.contact-info i {
    color: #1744bf;
    margin-right: 10px;
}

.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
