



/* Page Header */
.header-bg {
  background: linear-gradient(rgba(33, 82, 61, 0.7), rgba(33, 82, 61, 0.7)),
    url("img/img-1/fc1.jpg") center/cover no-repeat;
  color: #fff;
}
.header-bg h1 {
  font-weight: 700;
  letter-spacing: -1px;
}
.breadcrumb a {
  text-decoration: none;
  color: #ddd;
}
.breadcrumb .active {
  color: #ffc107;
}

/* Features Section */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.single-feature {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.single-feature i {
  font-size: 32px;
  color: #21523d;
  margin-bottom: 12px;
}
.single-feature h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.single-feature span {
  font-size: 14px;
  color: #666;
}
.single-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Service Blocks */
.service-block {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.service-block:hover {
  transform: translateY(-6px);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.service-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-info h2 {
  font-size: 26px;
  font-weight: 700;
  color: #21523d;
  margin-bottom: 15px;
}
.service-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}
.service-info .btn {
  background: #21523d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}
.service-info .btn:hover {
  /* background: #0d6efd; */
  color: #fff;
}



