.hero-section {
  padding: 140px 0;
  background: url("../images/img-7.jpg") center/cover no-repeat;
  color: white;
  text-align: left;
  position: relative;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 5%;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: bold;
}
.hero-section p {
  font-size: 18px;
  margin-top: 15px;
}

.services-section {
  padding: 80px 0;
  background: #f7f9fb;
}

.service-box {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  height: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-box h4 {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-choose-us {
  padding: 80px 0;
}

.point-box {
  padding: 25px;
  border-left: 4px solid var(--primary);
  background: var(--primary-light-3);
  border-radius: 6px;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.point-box:hover {
  background: #eef3f8;
}

.point-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-section {
  padding: 60px 0;
  text-align: center;
  background: var(--primary);
  color: white;
}
.cta-section a {
  background: white;
  color: var(--primary);
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}
.cta-section a:hover {
  background: #e1e1e1;
}
